1746bd72c44833bab8ee55c24c77f804982c55e2
[mono.git] / mono / metadata / ChangeLog
1
2 Thu Jul 15 18:44:44 CEST 2010 Paolo Molaro <lupus@ximian.com>
3
4         * reflection.c, class-internals.h, class.c, icall.c: support
5         reflection of default constant value for Re.Emit properties.
6
7 2010-07-14  Miguel de Icaza  <miguel@novell.com>
8
9         * reflection.c (load_cattr_value): Add support for encoding
10         DateTime constants into the blob.    Turns out that this is
11         required by .NET, it was only documented post 1.0.
12
13         * icall.c (ves_icall_type_GetTypeCodeInternal): Guard test for
14         System.Decimal and System.DateTime inside a mono_is_corlib_image
15         call.   A sample program showed that we could return the wrong
16         TypeCode just by creating a class with those names. 
17
18         * class.c (mono_is_corlib_image): Exposed this to other metadata/
19         code.
20
21 2010-07-14  Sebastien Pouliot  <sebastien@ximian.com>
22
23         * security-core-clr.c: Don't abort (only warn) if we cannot find 
24         a caller for relfecting code (transparent is assumed). Fix
25         get_method_access_exception to accept a NULL caller.
26
27 2010-07-14  Mark Probst  <mark.probst@gmail.com>
28
29         * sgen-gc.c: Heavy statistics on the internal allocator.
30
31 2010-07-13  Mark Probst  <mark.probst@gmail.com>
32
33         * sgen-marksweep.c, sgen-gc.h: Keep track of num_empty_blocks
34         properly and in a thread-safe way.
35
36 2010-07-13  Mark Probst  <mark.probst@gmail.com>
37
38         * sgen-gc.c, sgen-marksweep.c: Make object marking thread-safe.
39
40 2010-07-13  Mark Probst  <mark.probst@gmail.com>
41
42         * sgen-gc.c: Versions of safe_object_get_size() and
43         copy_object_no_checks() that work without the object's vtable
44         intact, by passing the correct vtable as an argument.
45
46 2010-07-13  Mark Probst  <mark.probst@gmail.com>
47
48         * sgen-marksweep.c: Make allocation of major sections thread-safe.
49
50 2010-07-13  Mark Probst  <mark.probst@gmail.com>
51
52         * sgen-gc.c, sgen-gc.h, sgen-los.c, sgen-major-copying.c,
53         sgen-marksweep.c: Update the heap boundaries thread-safe and lock
54         free if parallel mark is enabled.
55
56 2010-07-13  Mark Probst  <mark.probst@gmail.com>
57
58         * sgen-gc.c, sgen-gc.h, sgen-major-copying.c: Lock the internal
59         allocator if parallel mark (not committed yet) is enabled.
60
61 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
62
63         * reflection.c (inflate_mono_method): Handle dynamic
64         generic instances that have method.count set but
65         methods not. Fixes another crash from boo's test suite.
66
67 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
68
69         * icall.c (ves_icall_MonoMethod_get_base_method): If
70         the method slot is bigger than the class vtable, return
71         the original method. Makes booc work again.
72
73 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
74
75         * verify.c (mono_generic_param_is_constraint_compatible):
76         The candidate type itself might satisty the required
77         constraints.
78
79         Fixes #621599.
80
81 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
82
83         * reflection.c (fix_partial_generic_class): Inflate the
84         generic instance parent in case it was changed after
85         MonoGenericClass was instantiated.
86
87         Fixes one of the issues from #389886.
88
89 2010-07-10  Mark Probst  <mark.probst@gmail.com>
90
91         * sgen-gray.c: Store only a pointer to one end of the gray queue.
92
93 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
94
95         * loader.c (mono_method_signature_checked): Release the domain
96         lock on failure.
97
98 2010-07-10  Mark Probst  <mark.probst@gmail.com>
99
100         * sgen-gc.c: Store the forwarding address in the first word of an
101         object, where the forwarding bit is stored.
102
103 2010-07-10  Mark Probst  <mark.probst@gmail.com>
104
105         * gc.c, gc-internal.h, sgen-gc.c, sgen-gc.h, sgen-os-mach.c: An
106         interface to register our Mach exception thread which will not be
107         suspended by stop-the-world.
108
109 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
110
111         * loader.c (mono_get_method_constrained): Properly unlock the
112         domain lock on failure. Use checked variant of
113         inflate_generic_signature.
114
115 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
116
117         * loader.c (mono_method_signature_checked): Use checked
118         variant of inflate_generic_signature.
119
120         Fixes #606353.
121
122 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
123
124         * metadata.c (mono_metadata_parse_type_internal): Don't use
125         cannonical types when a transient type was requested.
126
127         Fixes #608626.
128
129 2010-07-10  Mark Probst  <mark.probst@gmail.com>
130
131         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
132         All functions that touch the gray queue directly or indirectly now
133         take it as an argument.
134
135 2010-07-10  Mark Probst  <mark.probst@gmail.com>
136
137         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
138         Put the gray queue data into a struct and pass it around.
139
140 2010-07-09 Rodrigo Kumpera  <rkumpera@novell.com>
141
142         * class.c (mono_method_can_access_method_full): Handle type
143         accessibility with very deep nested types.
144
145         * class.c (mono_method_can_access_field_full): Ditto.
146
147         Fixes #619300.
148
149 2010-07-10  Mark Probst  <mark.probst@gmail.com>
150
151         * sgen-gc.c, sgen-los.c, sgen-major-copying.c, sgen-marksweep.c,
152         sgen-scan-object.h: Use a macro for rounding up sizes and
153         addresses to ALLOC_ALIGN.
154
155 2010-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
156
157         * file-io.c: fix GetFileSystemEntries for patterns containing
158         directories.
159
160 2010-07-09  Mark Probst  <mark.probst@gmail.com>
161
162         * sgen-marksweep.c (major_finish_major_collection): Don't free
163         major heap blocks on 32 bit platforms because it can lead to
164         address space fragmentation.  We'll figure this out later.
165
166 2010-07-09  Mark Probst  <mark.probst@gmail.com>
167
168         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c: Free major
169         heap blocks for mark&sweep eventually.
170
171 2010-07-09  Mark Probst  <mark.probst@gmail.com>
172
173         * sgen-protocol.c: Fix build when binary protocol is disabled.
174
175 2010-07-09  Mark Probst  <mark.probst@gmail.com>
176
177         * sgen-protocol.c, sgen-gc.c: Make binary protocol lock-freely
178         thread-safe.
179
180 2010-07-08 Neale Ferguson <neale@sinenomine.net>
181
182         * sgen-archdep.h: Add support for s390x
183         * domain.c: Use gsize so that 64-bit big endian systems produce 
184         bitmap.
185
186 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
187
188         * pedump.c (verify_image_file): Initialize the vtable as well.
189
190 2010-07-07  Geoff Norton  <gnorton@novell.com>
191
192         * sgen-gc.h:  Not every system has sys/signal.h.  Prefer the posix
193         header.
194
195 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
196
197         * assembly.c (mono_assembly_load_reference): Replace a g_warning
198         with a mono_trace calls. This makes compiling MD a lot less scary.
199
200 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
201
202         * verify.c (do_stobj): Improve error message.
203
204 2010-07-08  Mark Probst  <mark.probst@gmail.com>
205
206         * sgen-gc.c (OBJ_COMPLEX_ARR_FOREACH_PTR): Don't load the vtable
207         from the object because it might have pinned/forwarding bits set.
208
209 2010-07-06  Zoltan Varga  <vargaz@gmail.com>
210
211         * Makefile.am (sgen_sources): Add missing sgen files.
212
213 2010-06-07  Martin Baulig  <martin@ximian.com>
214
215         * mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
216         New helper function since mono_thread_get_abort_signal() is now
217         internal.
218
219 2010-06-07  Martin Baulig  <martin@ximian.com>
220
221         * mono-debug.h, debug-mono-symfile.h: Kill glib dependencies.
222
223 2010-07-02  Michael Hutchinson  <mhutchinson@novell.com>
224
225         * object-internals.h, object.h: Make mono_string_to_utf_8_checked 
226         public, as mono_string_to_utf_8 is deprecated.
227
228         * object.(c|h): Added mono_object_to_string, a public helper function 
229         that calls ToString on a MonoObject and returns a MonoString.
230
231         * object.c (mono_print_unhandled_exception): Use mono_object_to_string.
232
233 2010-07-01  Zoltan Varga  <vargaz@gmail.com>
234
235         * filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
236         from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
237         match their declarations and vice-versa.
238
239
240 Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com>
241
242         * class-internals.h, domain-internals.h: mark functions that are
243         needed by the llvm module.
244
245 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
246
247         * assembly.c (framework_assemblies): Add 3.5 assemblies.
248
249         * domain-internals.h (MonoRuntimeInfo): Increase version_sets
250         by one to have room to remap 3.5 assemblies.
251
252         * domain.c (supported_runtimes): Add 3.5 remapping information.
253
254 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
255
256         * reflection.c (mono_image_create_token): Handle a
257         FieldBuilder from a different assembly.
258
259         Fixes #611836.
260
261 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
262
263         * verify.c (do_store_static_field): Improve error
264         message.
265
266 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
267
268         * assembly.c: Revert r159692 since it breaks loading 3.5
269         assemblies under 2.0.
270
271 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
272
273         * icall.c (ves_icall_Type_make_array_type): Raise a TLE if a
274         TypedByRef is passed.
275
276         * icall.c (ves_icall_Type_make_byref_type): Ditto.
277
278         * icall.c (ves_icall_Type_MakePointerType): Ditto.
279
280         Fixes #612780.
281
282 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
283
284         * assembly.c: Add a few more assemblies to the list of framework
285         assemblies.
286
287         Fixes #617714.
288
289 2010-06-28  Zoltan Varga  <vargaz@gmail.com>
290
291         * class.c (mono_class_get_vtable_entry): Avoid a crash if mono_class_setup_vtable ()
292         fails.
293
294 2010-06-25  Mark Probst  <mark.probst@gmail.com>
295
296         * class.c (mono_class_inflate_generic_method_full_checked): Added
297         a comment regarding a hack in mini-trampolines.c.
298
299 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
300
301         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Use SIZEOF_VOID_P instead of
302         sizeof(SIZEOF_VOID_P) which is 4.
303
304         * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c.
305
306 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
307
308         * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these
309         GCs too.
310
311         * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs.
312
313         * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move
314         objects.
315
316         * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in
317         desktop mode.
318
319 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
320
321         * *-gc.c (mono_gc_get_description): New function returning a human readable
322         description of the current GC.
323
324 2010-06-24  Miguel de Icaza  <miguel@novell.com>
325
326         * mono-hash.c: Moved here from mono/utils as this file is
327         GC-aware, and the utils directory is not.
328
329 2010-06-23  Miguel de Icaza  <miguel@novell.com>
330
331         * Makefile.am: Add support for building a sgen-aware versions of
332         the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la,
333         they share all the components of the default, but use a differen
334         set of CFLAGS to enable SGEN instead.
335
336         Put the BOEHM defines in the CFLAGS definition. 
337
338         * domain-internals.h (MonoJitInfo): this structure used to have
339         different sizes depending on the GC that was configured (Boehm vs
340         SGen).   I have removed this difference for the sake of avoiding
341         the complexity of dealing with the mono/arch directory requiring
342         GC-specific changes to their Makefiles.
343
344 2010-06-23  Mark Probst  <mark.probst@gmail.com>
345
346         * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.
347
348 2010-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
349
350         * metadata.c (mono_metadata_type_hash): Don't hash
351         the type kind for dynamic types since it can change.
352
353 2010-06-22 Geoff Norton  <gnorton@novell.com>
354
355         * sgen-os-mach.c: We cannot call malloc from the gc, so we need to use
356         alloca instead to prevent a deadlock.
357
358 2010-06-22  Geoff Norton  <gnorton@novell.com>
359
360         * domain.c: Allow gettings the tls key, since we need it for
361         cross thread tls poking in sgen-mach
362         * sgen-gc.(c|h), gc-internal.h: Rework sgen into having some functions
363         in external files for platform specific STW support.
364         * sgen-os-mach.c: Add a new mach kernel backend implementation of STW.
365         * sgen-os-posix.c: Move the existing posix signal based STW here.
366
367 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
368
369         * marshal.c (mono_array_to_lparray): Allow MONO_TYPE_PTR. Fixes #615952.
370
371 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
372
373         * object-internals.h: Map new PropertyBuilder fields.
374
375         * reflection.c (property_encode_signature): Emit an instance
376         signature if property's callconv is hasthis.
377
378         * appdomain.c: Bump corlib version.
379
380 2010-06-20  Jb Evain  <jbevain@novell.com>
381
382         * metadata-verify.c: do not consider the assembly invalid if it
383         doesn't have a #Blob stream as resource assemblies don't
384         necessarily have one.
385
386 2010-06-17  Geoff Norton  <gnorton@novell.com>
387
388         * sgen-archdep.h: sgen support for arm linux and darwin.
389
390 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
391
392         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
393         has a faulty header.
394
395 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
396
397         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
398         way to mono_gc_wbarrier_value_copy but takes a bitmap that
399         indicates which slots need a write barrier.
400
401 2010-06-14  Jonathan Pryor <jpryor@novell.com>
402
403         * Makefile.am (EXTRA_DIST): Add runtime.h.
404
405 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
406
407         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
408
409 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
410
411         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
412         IMT slot which is passed to callbacks.get_imt_trampoline.
413
414 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
415
416         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
417         imt trampoline per imt slot when using LLVM.
418
419 2010-06-10  Jonathan Pryor <jpryor@novell.com>
420
421         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
422           runtime.c:mono_runtime_shutdown().
423         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
424           AppDomain.ProcessExit event in all AppDomains.
425
426 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
427
428         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
429         done by the caller.
430
431 2010-06-05  Mark Probst  <mark.probst@gmail.com>
432
433         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
434         up freeing.
435
436 2010-06-05  Mark Probst  <mark.probst@gmail.com>
437
438         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
439         segments of memory at once, to reduce the number of mmap/munmap
440         calls.
441
442 2010-06-05  Mark Probst  <mark.probst@gmail.com>
443
444         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
445         allocations and distinguish between normal, degraded and pinned
446         allocations.
447
448 2010-06-05  Mark Probst  <mark.probst@gmail.com>
449
450         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
451         allocations count toward major collections and trigger major
452         collections from degraded allocations if appropriate.
453
454 2010-06-05  Mark Probst  <mark.probst@gmail.com>
455
456         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
457
458 2010-06-05  Mark Probst  <mark.probst@gmail.com>
459
460         * sgen-gc.c: Enable mark&sweep again.
461
462 2010-06-05  Mark Probst  <mark.probst@gmail.com>
463
464         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
465
466 2010-06-05  Mark Probst  <mark.probst@gmail.com>
467
468         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
469         major heap allowance for minor collections, instead of two
470         separate ones for small and large objects.  This reduces the
471         number of major collections.
472
473 2010-06-04  Marek Habersack  <mhabersack@novell.com>
474
475         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
476         the BFLAGS_IgnoreCase is raised
477
478 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
479
480         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
481         all information in a single structure. Return information about scopes as well.
482
483         * mono-debug.c (mono_debug_lookup_locals): Ditto.
484
485 2010-06-02  Geoff Norton  <gnorton@novell.com>
486
487         * appdomain.c: If we are running with IOMAP we might
488         have been provided a string that isn't case-aware for our file-
489         system, so we need to use io-portability to check if the file 
490         exists, rather than a simple glib test.
491
492         Fixes #608849
493
494 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
495
496         * verify.c (verify_generic_parameters): Verify if
497         there are not loops in constraints.
498
499 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
500
501         * verify.c (is_compatible_boxed_valuetype): Constaints
502         must be recursively checked if one generic argument
503         has a constraint on another.
504
505         Fixes #610625.
506
507 2010-05-31  Miguel de Icaza  <miguel@novell.com>
508
509         * console-unix.c (terminal_get_dimensions): Fix my previous
510         botched commit and return the actual value obtained from the ioctl.
511
512 2010-05-29  Mark Probst  <mark.probst@gmail.com>
513
514         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
515         references so that we don't have to do the cache-cold fetch of the
516         class in copy_object_no_checks().
517
518 2010-05-29  Robert Jordan  <robertj@gmx.net>
519
520         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
521         mono_marshal_string_to_utf16_copy () to avoid memory allocation
522         mismatches under Windows. Fixes pinvoke2:test_0_asany.
523
524 2010-05-28  Mark Probst  <mark.probst@gmail.com>
525
526         * sgen-gc.c: Change default nursery size to 4MB, because it
527         improves performance on many applications and benchmarks.
528
529 2010-05-28  Mark Probst  <mark.probst@gmail.com>
530
531         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
532         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
533         the GC descriptor by one bit, and don't encode the size for value
534         types not containing references.  Also get rid of
535         DESC_TYPE_STRING.
536
537 2010-05-28  Mark Probst  <mark.probst@gmail.com>
538
539         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
540         other than for remset processing.
541
542 2010-05-28  Mark Probst  <mark.probst@gmail.com>
543
544         * sgen-gc.c: More and better remset consistency checks.
545
546 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
547
548         * sgen-gc.c: Add a note about the int[] trick to avoid some
549         memset.
550
551 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
552
553         * sgen-gc.c (sort_addresses): Use heap sort since it has better
554         performance.
555
556         This helps programs with lots of threads or thread with big stacks
557         since the bottleneck the pin queue can get quite big.
558
559 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
560
561         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
562         a separate function called setup_fragment.
563
564         * sgen-gc.c (search_fragment_for_size_range): Variant of
565         search_fragment_for_size that does search for a secondary smaller
566         size.
567
568         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
569         for tlab allocation so small fragments are used.
570
571         This patch uses small fragments for tlab allocation when possible in order
572         to improve nursery utilization. With a fixed size tlab this patch is not very
573         usefull but once size gets dynamically adjusted, this will be invaluable.
574
575         Performance under pystone 500k is unchanged. Nursery utilization improves by
576         3.5% and 18 more fragments are used per minor GC.
577
578         Performance under modified binary-tree is unchanged. Nursery utilization
579         improves by 0.5% and 3 more fragments are used per minor GC.
580
581         These numbers make sense since as more pinning happens, more fragments are
582         created and so are the chances of having a bunch of small ones.
583
584 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
585         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
586         the current fragment when allocating a TLAB.
587
588         Reduces number of pystone 500k minor collections by 7%.
589
590 2010-05-25  Martin Baulig  <martin@ximian.com>
591
592         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
593
594         * debug-mono-symfile.c: Release memory from symfiles that were
595         loaded from memory.
596
597 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
598
599         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
600         during shutdown.
601
602 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
603
604         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
605         target class and remove some dead code.
606
607 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
608
609         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
610         the MonoTypes inside method headers can be freed when the header is freed.
611
612 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
613
614         * threadpool.c: Fix the DISABLE_SOCKETS build.
615
616 2010-05-19 Martin Baulig  <martin@novell.com>
617
618         Fix #604911.
619
620         * threads.c (wait_for_tids_or_state_change): Use an
621         alertable WaitForMultipleObjectsEx().
622         (wait_for_tids): Likewise.
623
624 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
625
626         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
627         icall.
628
629         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
630         gc tracked memory.
631
632         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
633         argument from a gchandle.
634
635         * marshal.c: Get rid of the delegate_target_locations hash table.
636
637         Fixes #605295.
638
639 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
640
641         * sgen-gc.c: Use _fast variants for string and array length.
642
643 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
644
645         * sgen-gc.c: Fix counters to be 64 bits.
646
647         * sgen-gc.c (dump_heap): Fix formating strings.
648
649 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
650
651         * sgen-gc.c (global_remset_location_was_not_added): New
652         function that implements a 2 element LRU cache for just
653         added remsets. It is used to avoid adding duplicate ones.
654
655         * sgen-gc.c (add_to_global_remset): Check cache before
656         adding new entry.
657
658         * sgen-gc.c (scan_from_remsets): Don't process global remsets
659         that fail the cache test.
660
661         * sgen-gc.c (scan_from_remsets): Simplify the global remset
662         loop removing one condtion that is not possible.
663
664         A 2 element LRU cache was chosen by profiling IronPython 2.6
665         pytones with 1M passes and corlib compilation.
666
667         For the ipy test duplication was originally 940.92, measured
668         by "Store remsets" divided by "Unique store remsets".
669
670         With a 2-element LRU, duplication went to 1.007. Without the
671         check in scan_from_remsets 1.438.
672
673         With a 16-elements LRU, duplication reduction was negligibe.
674         A single element cache was basically of no use.
675
676         With corlib compilation duplication went from  1.4 to 1.02.
677
678         Performance results is a 20% time decrease for ipy and 2%
679         with corlib.
680 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
681
682         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
683
684 2010-05-15  Geoff Norton  <gnorton@novell.com>
685
686         * mono-debug.c: Fix a leak of the global table on shutdown.
687
688 2010-05-15  Geoff Norton  <gnorton@novell.com>
689
690         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
691         to clean up MonoDebugSourceLocation's.
692
693 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
694
695         * class.c (mono_class_create_from_typedef): Fail a class
696         if there is a loop with its parent.
697
698         Fixes #598239.
699
700 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
701
702         * loader.c (mono_loader_set_error_type_load): Convert
703         a g_warninig to mono_trace_warning.
704
705 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
706
707         * class.c (mono_class_get_full): Release strings on failure
708         to avoid leaking them.
709
710 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
711
712         * class.c (mono_class_create_from_typedef): Only return
713         the class if no exceptions were detected.
714
715         * class.c (mono_class_create_from_typedef): Don't remove
716         broken classes from class_cache. Just set failure and
717         bail out.
718
719         This fixes a memory a memory leak where resolving the same
720         broken class multiple times resulted in a memory leak.
721
722         The right behavior would be to actually return the class
723         a let the caller figure it out.
724
725 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
726
727         * mono-ptr-array.h: Add mono_ptr_array_sort.
728
729         * reflection.c (mono_image_build_metadata): Replace that ugly
730         qsort call with mono_ptr_array_sort.
731
732 2010-05-13  Mark Probst  <mark.probst@gmail.com>
733
734         * sgen-gc.c: Switch to the copying major collector, because
735         Mark&Sweep is still buggy.
736
737 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
738
739         * reflection.c (mono_image_build_metadata): Don't put managed
740         references on non-tracked memory.
741
742 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
743
744         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
745
746 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
747
748         * icall.c: Switch to mono-ptr-array.h.
749
750 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
751
752         * Makefile.am: Add mono-ptr-array.h.
753
754         * mono-ptr-array.h: New header that implements
755         a GC tracked equivalent of g_ptr_array. 
756
757 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
758
759         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
760         method to avoid initializing the class.
761
762         Fixes #605115.
763
764 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
765
766         * icall.c (ves_icall_System_MonoType_getFullName): It
767         doesn't require to init the class.
768
769 2010-05-11  Miguel de Icaza  <miguel@novell.com>
770
771         * console-unix.c: Signal handlers now save and restore errno.   We
772         have never had a bug report about this, ioctl does change errno. 
773
774         Hide the unused method.   
775
776         Remove internal declarations from public headers.
777
778         Document what the signal handler is doing
779
780 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * sgen-gc.c (clear_unreachable_ephemerons): Clear
783         unreachable keys with a tombstone.
784
785         * sgen-gc.c (mark_ephemerons_in_range): Ignore
786         tombstone keys.
787
788 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
789
790         * icall-def.h:
791         * gc-internals.h:
792         * gc.c: New GC:get_ephemeron_tombstone.
793
794 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
795
796         * appdomain.c (create_exceptions): Rename to
797         create_domain_objects. Create the ephemeron tombstone object.
798
799         * domains-internals.h (MonoDomain): Add new field for the
800         ephemeron tombstone.
801
802         * domain.c (mono_domain_free): Set ephemeron_tombstone to
803         NULL.
804
805 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
806
807         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
808         and dislinks must be processed before LOS since they
809         could end up with pointers to memory returned to the
810         OS.
811
812 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
813
814         * class.c (mono_class_alloc): New helper function to centralize memory allocation
815         for classes, allocates either from the image mempool or from the heap.
816
817         * class.c: Use mono_class_alloc to allocate memory owned by classes.
818
819         * metadata.c (free_generic_class_dependents): Free more items belonging to
820         generic classes.
821
822 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
823
824         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
825         as well. Fixes #604054.
826
827 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
828
829         * metadata-verify.c: MS doesn't mind duplicates in the
830         typeref table. Move it to full verification.
831
832         Fixes #600508.
833
834 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
835
836         * image.c (do_mono_image_load): Report verification
837         errors when loading an image fails.
838
839 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
840
841         * reflection.c (mono_type_get_object): Remove chunk of code
842         no longer in use.
843
844 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
845
846         * icall-def.h
847         * icall.c: Delete some unused icalls.
848
849 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
850
851         * appdomain.c (mono_domain_has_type_resolve): Check for
852         NULL domain objects to make pedump happy.
853
854         * object.c (mono_field_get_value): Assert on NULL object.
855         It's the caller resposibility to check for this.
856
857         * object.c (mono_field_get_value_object): Ditto.
858
859         Fixes #601384.
860
861 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
862
863         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
864         checks can avoid doing a mono_class_init.
865
866         * icall.c: Remove mono_class_init from a bunch of icalls that
867         don't need it.
868
869         Hopefully we're now lazy enough to fix most victims of #601431.
870
871 2010-05-07  Mark Probst  <mark.probst@gmail.com>
872
873         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
874
875 2010-05-07  Mark Probst  <mark.probst@gmail.com>
876
877         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
878
879 2010-05-07  Marek Habersack  <mhabersack@novell.com>
880
881         * culture-info-tables.h: updated to include en-TT culture. Fixes
882         bug #594035
883
884 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
885
886         Move mono_class_init from mono_type_get_object to icalls.
887         This causes massive memory savings for Assembly::GetTypes () and
888         make it fail a lot less due to missing dependencies.
889
890         This is a conservative, naive change as it doesn't remove some
891         mono_class_init from places that might not need them. Carefull
892         review of those should follow.
893
894         * reflection.c (mono_type_get_object): Don't mono_class_init the
895         returning type.
896
897         * reflection.c:
898         * cominterop.c:
899         * icall.c:
900         * marshal.c: Call mono_class_init in functions receiving a MonoType
901         object.
902
903         First step into fixing #601431.
904
905 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
906
907         * gc-internal.h: Add new functions required for ephemeron support.
908
909         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
910
911         * icall-def.h: Add GC::register_ephemeron_array.
912
913         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
914         under sgen. Its fields must not be marked.
915
916         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
917
918         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
919         handling finalizable objects. Clean dead ones after all finalizable
920         handling.
921
922         * sgen-gc.c (dump_heap): Add new kind of internal memory.
923
924         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
925         arrays from the dead domain.
926
927         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
928
929         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
930         whose keys are reachable.
931
932         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
933         list of live ephemeron arrays.
934
935 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
936
937         * class.c (mono_class_layout_fields): Don't perform alignment
938         if align is zero.
939
940         * class.c (mono_class_layout_fields): Init field related information
941         to sane defaults.
942
943 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
944
945         * verify.c (mono_verifier_verify_class): Verify the constraint
946         of generic type definitions.
947
948 2010-05-04  Mark Probst  <mark.probst@gmail.com>
949
950         * sgen-marksweep.c: Simplify free list maintenance in sweep.
951
952 2010-05-02  Mark Probst  <mark.probst@gmail.com>
953
954         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
955         major_do_collection() across the two major collectors.
956
957 2010-05-02  Mark Probst  <mark.probst@gmail.com>
958
959         * sgen-gc.c: Add heavy statistics counter for re-added global
960         remsets.
961
962 2010-05-02  Mark Probst  <mark.probst@gmail.com>
963
964         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
965         get rid of a division in critical code.
966
967 2010-04-29  Mark Probst  <mark.probst@gmail.com>
968
969         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
970         blocks for objects without references in mark&sweep, to improve
971         performance.
972
973 2010-04-28  Mark Probst  <mark.probst@gmail.com>
974
975         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
976         statistics up-to-date.
977
978 2010-04-27  Mark Probst  <mark.probst@gmail.com>
979
980         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
981         heap-dump for mark&sweep.
982
983 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
984
985         * loader.c (mono_method_get_header): Move the is_inflated case before the
986         wrapper case, as a method can be both.
987
988 2010-04-27  Mark Probst  <mark.probst@gmail.com>
989
990         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
991         separate pass to scan pinned and large object but use the gray
992         queue like for regular objects.
993
994 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
995
996         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
997         string.h for memmove.
998
999         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
1000         ipaddress_to_struct_in6_addr() is only needed when
1001         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
1002
1003 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1004
1005         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
1006         separate copy_object functions for major vs nursery.  Allows us to
1007         get rid of a few checks and the start and end parameters for many
1008         functions.
1009
1010 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1011
1012         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
1013         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
1014         collector.
1015
1016 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
1017
1018         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
1019         calling setup_mono_type () since the nested parent could recursively reference
1020         the nested class using generic constraints. Fixes #599469.
1021
1022 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1023
1024         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
1025         abstraction.
1026
1027 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1028
1029         * sgen-gc.c: Remove more unneeded code.
1030
1031 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1032
1033         * sgen-gc.c: Disable managed allocator and wbarrier when the
1034         binary protocol is enabled.
1035
1036 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1037
1038         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
1039
1040 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1041
1042         * sgen-gc.c: Remove a few commented out and unneeded bits.
1043
1044 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1045
1046         * threadpool.c: patch from Robert Nagy that fixes a nullref and
1047         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
1048
1049 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
1050
1051         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
1052         types.
1053
1054         Fixes #331126
1055
1056 2010-04-21  Mark Probst  <mark.probst@gmail.com>
1057
1058         * sgen-gc.c: Turn off semi-precise stack mark.
1059
1060 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
1061
1062         * reflection.c (mono_custom_attrs_from_index): Use right function
1063         to free 'list' (i.e. g_list_free) if the verifier fails.
1064
1065 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1066
1067                 * verify.c: Handle the case where mono_type_get_underlying_type_any
1068                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
1069                 and MONO_TYPE_VALUETYPE in those case.
1070
1071                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
1072
1073                 Hopefully Fixes #564253.
1074
1075 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
1076
1077         * domain-internals.h: made threadpool_jobs volatile.
1078         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
1079         all local jobs.
1080         * threadpool.c:
1081                 -When two threads try to initialize the socket IO pool,
1082                 the second one waits until the intialization is finished
1083                 instead of continuing right away.
1084                 -Add checks for domain unload: no items added in this case.
1085                 -Only measure the time every 10 elements added to the queue.
1086                 This is an experiment since linux x86 gettimeofday() sucks.
1087                 -Create new thread if there are none waiting for work items.
1088                 -There was a missing decrement of the busy threads.
1089                 -Make sure the local queue is cleaned up before exiting the
1090                 thread when the program ends.
1091
1092 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1093
1094         * reflection.c (mono_type_get_object): Normalize generics types
1095         as to how managed code expect them to be. A generic instance over
1096         the GTD arguments must have the same mirror as the GTD itself.
1097
1098         Fixes #473289.
1099
1100 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
1101
1102         * locales.c: Implement support for DISABLE_NORMALIZATION.
1103
1104 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1105
1106         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
1107         since it is not a MonoMethod.
1108
1109 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
1110
1111         * icall-def.h: Add get_RequiresElevatedPermissions icall to
1112         System.Security.SecurityManager - used only by Moonlight
1113         * security-core-clr.c|h: Add Elevated Trust/Permission support
1114         for CoreCLR / Moonlight
1115
1116 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1117
1118         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
1119         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
1120
1121 2010-04-16  Marek Habersack  <mhabersack@novell.com>
1122
1123         * mono-perfcounters.c: added code for the "Mono
1124         Memory/Total Physical Memory" performance counter.
1125
1126         * mono-perfcounters-def.h: added definition of the "Mono
1127         Memory/Total Physical Memory" performance counter.
1128
1129 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1130
1131         * class.c (mono_class_get_method_by_index): Return NULL
1132         on type load failures.
1133
1134 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1135
1136         * class.c (mono_class_from_typeref): Check if the supplied
1137         image has an assembly bound to it.
1138
1139         Fixes #567884.
1140
1141 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1142
1143         * loader.c (mono_method_get_signature_full): Use new function
1144         inflate_generic_signature_checked to check for errors.
1145
1146         Fixes #560839.
1147
1148 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1149
1150         * loader.c (inflate_generic_signature): Add _checked variant
1151         and move this function to use it.
1152
1153 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1154
1155         * class.c (mono_class_setup_vtable_general): Use error checking
1156         version of mono_class_inflate_generic_method_full.
1157
1158         Fixes #596975.
1159
1160 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1161
1162         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
1163         error handling passing MonoError around.
1164
1165         Fixes #560336.
1166
1167 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1168
1169         * socket-io.c: make GetHostByName ("") work on windows.
1170         Fixes bug #456723.
1171
1172 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1173
1174         * object-internals.h:
1175         * threads.c: use a spin lock when accesing the per-thread appdomain
1176         list.
1177
1178 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1179
1180         * threads.c: no need to take the threads lock in push/pop appdomain.
1181
1182 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * reflection.c (_mono_reflection_parse_type): MS supports
1185         non-assembly-qualified types in a generic type parameter list
1186         when enclosed in '[]' (which signals that they should be a fqn).
1187
1188         This breaks ECMA specs for how type names are encoded in cattr
1189         blobs but F# does it.
1190
1191         Fixes #576342.
1192
1193 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1194
1195         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
1196         for instance methods/ctors.
1197
1198         Fixes #422113.
1199
1200 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1201
1202         * reflection.c: Use the new verifier support for checking
1203         custom attributes.
1204
1205         Fixes #595306.
1206
1207 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1208
1209         * metadata-verify.c: Implement structural verification
1210         of custom attributes. This check requires access to the
1211         loader since to resolve the size of an enum we have to
1212         look it up.
1213         We don't check if named argumenments are encoded in a
1214         compatible fashion to their underlying field/prop.
1215         Maybe we should?
1216
1217         * verify-internals.h: Add two new cattr verification API.
1218
1219 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1220
1221         * metadata-verify.c (decode_signature_header): Fix signature.
1222
1223 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1224
1225         * verify.c (mono_verifier_is_enabled_for_method): Handle
1226         assembly less images.
1227
1228         * verify.c (mono_verifier_is_class_full_trust): Ditto.
1229
1230 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1231
1232         * loader.c (mono_method_signature_checked): Properly
1233         init MonoError.
1234
1235         * loader.c (mono_method_signature): It's the calee
1236         resposibility to init the error object.
1237
1238 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1239
1240         * metadata-verify.c (decode_signature_header): Do proper
1241         overflow checking.
1242
1243 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
1244
1245         * reflection.c: maintain the invariants required by
1246         mono_class_layout_fields() also in typebuilder_setup_fields ().
1247
1248 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
1249
1250         * security-core-clr.c: Call mono_class_setup_methods in 
1251         get_default_ctor before checking klass->methods. Fix typo in
1252         comment
1253
1254 2010-04-10  Jb Evain  <jbevain@novell.com>
1255
1256         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
1257         add .net 4.0 RTM version.
1258
1259 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1260
1261         * reflection.c (resolve_object): Properly inflate generic
1262         methods when a context is supplied.
1263
1264         Fixes #591226.
1265
1266 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1267
1268         * verify.c (mono_method_verify): A switch op don't empty
1269         the stack for the next one. Fixes a bug when running fsi
1270         under --verify-all.
1271
1272 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1273
1274         * metadata-verify.c (is_valid_standalonesig_blob): Accept
1275         fields as valid standalone sig too. F# does generate them.
1276
1277         * metadata-verify.c (verify_typedef_table_full): Ignore
1278         what <module> extends.
1279
1280 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1281
1282         * verify.c (do_invoke_method): It's ok to do use call with
1283         virtual, non-final methods if their class is sealed.
1284
1285 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1286
1287         * icall.c (ves_icall_MonoField_GetValueInternal): This function
1288         is a near identical copy of mono_field_get_value_object. So simply
1289         call it.
1290
1291         * object.c (mono_field_get_value_object): Handle literal fields
1292         on open generic classes.
1293
1294         Fixes #594942.
1295
1296 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1297
1298         * reflection.c (mono_reflection_create_runtime_class): Setup
1299         parent/supertype information again since it can be changed
1300         without notice.
1301
1302 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1303
1304         * verify.c (verify_type_compatibility_full): Properly handle
1305         stores between arrays of primitives.
1306
1307         Fixes the verifier side of #555950.
1308
1309 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1310
1311         class.c (mono_bounded_array_class_get): Properly init
1312         cast_class to take the fact that uint[] and int[] can be
1313         casted between each other.
1314
1315         Fixes #555950.
1316
1317 2010-04-07  Geoff Norton  <gnorton@novell.com>
1318
1319         * domain.c: Avoid a deadlock on osx.  Fixes #565765
1320
1321 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1322
1323         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
1324         builders. Fixes #594464.
1325
1326 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1327
1328         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
1329         waiting for all threads to suspend, as those threads can't be suspended.
1330
1331 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1332
1333         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
1334         to avoid crashes on newly created threads.
1335
1336 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1337
1338         * file-io.c: reset the MonoIOStat structure in case of error.
1339         Fixes bug #582667.
1340
1341 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
1342
1343         * class.c (print_implemented_interfaces): Print proper type name.
1344
1345         * class.c (mono_class_setup_vtable): Don't try that hard to produce
1346         the override map for generic instances since it later ignored.
1347
1348         * class.c (mono_class_implement_interface_slow): Don't break for
1349         dynamic generic instances.
1350
1351         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
1352
1353         * reflection.c (mono_reflection_method_get_handle): New method that
1354         resolves a method handle.
1355
1356         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
1357         case when we override methods from a dynamic generic instance interface.
1358
1359         Fixes #575941.
1360
1361 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1362
1363         * threadpool.c: don't attempt to close the pipe when it has not been
1364         created.
1365
1366 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1367
1368         * threadpool.c: if there are no waiting threads, try to start a new
1369         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1370         No need to use InterlockedCompareExchange to read volatile variables.
1371
1372 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1373
1374         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1375         and reference types that point to the same class.
1376
1377         Fixes #565598.
1378
1379 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1380
1381         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1382         when verifying compatibility between a generic instance and a generic
1383         parameter.
1384
1385         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1386
1387         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1388         name.
1389
1390         Fixes #587849.
1391
1392 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1393
1394         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1395
1396 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1397
1398         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1399
1400 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1401
1402         * process.c: when cross-compiling with MinGW, force GetProcessId
1403         lookup using GetProcAddress.
1404
1405 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1406
1407         * sgen-gc.c: parse_environment_string_extract_number() must be
1408         static.
1409
1410 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1411
1412         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1413         gray_object_dequeue(), to make sure they're inlined.
1414
1415 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1416
1417         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1418         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1419
1420 2010-04-02  Jb Evain  <jbevain@novell.com>
1421
1422         * exception.c: remove dead code.
1423
1424 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1425
1426         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1427         with mono-gc.h.
1428
1429 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1430
1431         * sgen-gc.c: Make the nursery size adjustable by the
1432         MONO_GC_PARAMS environment variable.
1433
1434         Code is contributed under MIT/X11 license.
1435
1436 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1437
1438         * threadpool.c: threadpool threads wait is alertable.
1439         Fixes bug #592964.
1440         Reduced the stack size of the *poll_wait thread.
1441
1442 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1443
1444         * exception.c|metadata-internals.h: Add new mono_get_exception_
1445         field_access_msg and mono_get_exception_method_access_msg 
1446         functions that accept a const char* parameter to provide more 
1447         details when the exception is thrown.
1448         * security-core-clr.c|h: Rework code to allow logging exceptions
1449         (export MONO_LOG_MASK="security") and to supply more details in
1450         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1451         mono_security_core_clr_is_field_access_allowed and 
1452         mono_security_core_clr_is_call_allowed to return an exception,
1453         with messages and logging, that can be emitted by method-to-ir.c
1454
1455 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1456
1457         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1458         pinned object.
1459
1460 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1461
1462         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1463         the assembly name is not well formed utf8. Fixes #567882.
1464
1465 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1466
1467         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1468         the generic parameters from the builder. Fixes #473298.
1469
1470 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1471
1472         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1473
1474         * marshal.c (emit_marshal_boolean): Eliminate possible
1475         uninitialized local warning. 
1476
1477 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1478
1479         * class.c (mono_class_init): Postpone coreclr inheritance check
1480         until the end of the initialization (so we can check up the 
1481         default ctor manually for the core-clr inheritance rules).
1482         * security-core-clr.c: Add the missing (undocumented) checks on
1483         default constructors when verifying inheritance rules.
1484
1485 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1486
1487         * domain-internals.h (MonoJitExceptionInfo): Add new field
1488         handler_end to the data union. To be used to point the end
1489         of a finally block.
1490
1491 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1492
1493         * reflection.c: Add support for new v4 type
1494         System.Reflection.MonoModule that is the concrete version
1495         of Module which is abstract unver v4.
1496
1497 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1498
1499         * class.c (mono_class_init): Don't set class failure after
1500         inited = 1 is set. It must be done before.
1501
1502 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1503
1504         * mono-config.c: Add support for OS "haiku"
1505         * ChangeLog: Fix UTF-8 encoding
1506
1507         Code is contributed under MIT/X11 license.
1508
1509 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1510
1511         * console-unix.c: fixed include logic for sys/ioctl.h.
1512
1513 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1514
1515         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1516         systems.
1517
1518 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1519
1520         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1521         unfinished/broken typebuilders.
1522
1523 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1524
1525         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1526         for the minor section allowance.
1527
1528 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1529
1530         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1531         "NoOptimization".
1532
1533 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1534
1535         * sgen-gc.c: Count bytes allocated with heavy statistics.
1536
1537 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1538
1539         * sgen-gc.c: More detailed time statistics.
1540
1541 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1542
1543         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1544         fix the user defined mark interface to pass a pointer
1545         to the object location and not the object itself.
1546
1547 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1548
1549         * reflection.c (mono_method_body_get_object): Release
1550         the method header before the call to CACHE_OBJECT since
1551         this is a macro that returns.
1552
1553 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1554
1555         * class.c (inflate_generic_type): mono_metadata_type_dup
1556         already dupes array information, the g_memdup was just
1557         leaking memory.
1558
1559 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1560
1561         * verify.c: Add stack_peek function. Fix CEE_DUP
1562         to not read from invalid memory if push did expand
1563         the stack.
1564
1565 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1566
1567         * verify.c: Remove old table verification code that has
1568         been superseeded by the new metadata verifier.
1569
1570         * verify.h: Remove mono_image_verify_tables from the public
1571         API.
1572
1573         * pedump.c: Fix for removed bits.
1574
1575 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1576
1577         * verify.c: Allocate stack slows lazily to reduce stack usage
1578         in case of methods with huge stacks. Reduces memory consumption
1579         for mcs yyparse from 459Mb to 1.8Mb.
1580
1581 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1582
1583         * threadpool.c: don't try executing items from domains being
1584         unloaded. Fixes appdomain-async-invoke test.
1585
1586 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1587
1588         * threadpool.c: spin while the threadpool initializes.
1589         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1590         down, don't do anything.
1591
1592 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1593
1594         * threads.c (mono_thread_create_internal): Set the GC type of the
1595         threads_starting_up hash table.
1596
1597 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1598
1599         * threadpool.c: reset 'state' to avoid returning non-null when the
1600         event type is not found.
1601
1602 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1603
1604         * sgen-gc.c: make copy_object () take the address of the
1605         slot holding the reference. This allows saving memory stores
1606         when not needed and it allows keeping track of oldspace->nursery
1607         references for the card table code.
1608
1609 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1610
1611         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1612
1613         Code is contributed under MIT/X11 license.
1614
1615 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1616
1617         * object.c, threads.c, threads-types.h, threads.h: make the
1618         managed thread local storage references precisely tracked.
1619
1620 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1621
1622         * threadpool.[ch]: reworked the threadpool:
1623                 -Threadpool threads use a work-stealing queue. Adding a work
1624                 item from a threadpool thread will queue it in the thread
1625                 local queue without locking (in most cases).
1626                 -epoll events are coalesced before being added to the IO
1627                 queue.
1628                 -Dynamically change the number of active threads
1629                 -Changed the global queue to be more GC friendly
1630
1631         * class-internals.h: add 2 new performance counters for the number of
1632         threads in the threadpool and the IO threadpool.
1633
1634         * object-internals.h: new field in MonoAsyncResult.
1635         * icall-def.h: new internal call for queueing work items.
1636
1637         * Makefile.am: add 2 new files.
1638
1639         * appdomain.c: bump up corlib version.
1640
1641         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1642
1643         * mono-perfcounters-def.h:
1644         * mono-perfcounters.c: added 2 new performance counters.
1645
1646 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1647
1648         * sgen-gc.c: More FIXME/TODO updates.
1649
1650 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1651
1652         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1653         function mono_gc_invoke_with_gc_lock() which invokes a function
1654         with the guarantee that no collection will occur during its execution.
1655
1656 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1657
1658         * sgen-gc.c: Update a few comments.
1659
1660 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1661
1662         * reflection.c: Add support for new v4 type
1663         System.Reflection.MonoAssembly that is the concrete version
1664         of Assembly which is abstract unver v4.
1665
1666 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1667
1668         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1669         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1670
1671         Expose a few macros that are needed for SR but not SRE to the
1672         world (previous inside the SRE ifdef)
1673
1674 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1675
1676         * sgen-gc.c (gc_register_current_thread): We need
1677         stack_start_limit as well in the non-attribute pthread case.
1678
1679 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1680
1681         * threads.c: Fix windows build.
1682
1683 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1684
1685         * thread-types.h: Add mono_thread_resume_interruption.
1686
1687         * threads.c: Add mono_thread_resume_interruption, this
1688         function should be called after the last protected handler
1689         found at interruption time has finished.
1690
1691 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1692
1693         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1694         Check MonoInternalThread's ::state instead of ::abort_exc
1695         since the later can be lazily created.
1696
1697         This is specially problematic when running a finally block
1698         under AbortRequested state. ResetAbort must work, but the
1699         abort_exc object has not been created because interruption
1700         has not began.
1701
1702 2010-03-22  Geoff Norton  <gnorton@novell.com>
1703
1704         * locales.c: Its possible for CFStringGetCStringPtr
1705         to return null and not convert encodings.  Use
1706         CFStringGetCString instead.
1707
1708 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1709
1710         * class-internals.h, class.c, object.c: introduce compressed
1711         interface bitmaps (for now only under small config): this saves
1712         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1713         startups.
1714
1715 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1716
1717         * mono-debug.c: don't try to get the method header, it causes a
1718         deadlock and it is not used for anything anymore.
1719
1720 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1721
1722         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1723         broken by the last change.
1724
1725 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1726
1727         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1728         SOCK_RDM.
1729         
1730         Code is contributed under MIT/X11 license.
1731
1732 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1733
1734         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1735         nursery.
1736
1737         Code is contributed under MIT/X11 license.
1738
1739 2010-03-19  Martin Baulig  <martin@ximian.com>
1740
1741         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1742         dummy field, containing an empty string.
1743         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1744
1745
1746 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1747
1748         * class.c: setup_interface_offsets() refactor to not call
1749         mono_class_get_implemented_interfaces () more times than needed and
1750         to reduce the runtime memory requirements to be O(num_interfaces)
1751         instead of O(max_interface_id).
1752
1753 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1754
1755         * mono-mlist.[ch]: add mono_mlist_set_next ().
1756
1757 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1758
1759         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1760         associated changes to support holes in the protected range of a
1761         try block.
1762
1763         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1764         retrieves the holes table from a given MonoJitInfo.
1765
1766 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1767
1768         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1769         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1770         hide the contents of the MonoString and MonoArray structs from the
1771         public API. Change the accessor macros to accessors functions where
1772         needed. Adjusted the array API to allow for pointer-sized lengths and
1773         starting positions, so 64 bit arrays can be optionally provided in an
1774         API compatible way if needed on 64 bit systems.
1775
1776 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1777
1778         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1779         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1780
1781 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1782
1783         * class-internals.h: remove the method header from MonoMethod since
1784         from now on it will be transient. We have a header pointer for method
1785         wrappers, since in that case we need to keep track of it. For this
1786         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1787         structs now. The same happens with MonoMethodInflated.
1788         * class.c: reset the sre_method flag for inflated method structures:
1789         this makes the code that cares look at the header in the MonoMethodInflated
1790         structure.
1791         * loader.c: lookup the method header in the appropriate field now that
1792         it is removed from MonoMethod.
1793         * metadata-internals.h: add a flag to the method header to know if it
1794         can be freed inside mono_metadata_free_mh ().
1795         * method-builder.c: updates after moving the header field from
1796         MonoMethod to MonoMethodWrapper.
1797         * reflection.c: MonoMethods generated from Reflection.Emit use
1798         MonoMethodWrapper structs if they need a method header now (later take
1799         advantage of this and remove all the current unsafe uses of method_aux_hash).
1800         * metadata.c: make method header parsing not leak when verification
1801         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1802         These changes save a few hundred KB of runtime memory in a mcs
1803         bootstrap or a monodevelop startup.
1804
1805 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1806
1807         * verify.c: Improve error message.
1808
1809 2010-03-12  Jb Evain  <jbevain@novell.com>
1810
1811         * reflection.c (add_exported_type): populate the exported
1812         table with the type's nested type.
1813
1814 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1815
1816         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1817         can't read parentheses.
1818
1819 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1820
1821         * threads.c (thread_cleanup): Add a guard to dereferencing
1822         "thread" to avoid an unlikely race condition.
1823
1824 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1825
1826         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1827         instead of an empty string.
1828
1829 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1830
1831         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1832         convert to a boolean, recent gcc versions compile this differently.
1833
1834 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1835
1836        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1837        inlined.
1838
1839 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1840
1841         * sgen-gc.c (STRING_SIZE): Off by one.
1842
1843 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1844
1845         * sgen-archdep.h: Fix the signal context register access for
1846         AMD64.
1847
1848 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1849
1850         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1851
1852 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1853
1854         * verify.c: Store the initial basic block returned by mono_basic_block_split
1855         so we can release the whole list and not just the first one.
1856
1857 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1858
1859         * verify.c, debug-helpers.c, profiler.c, loader.c,
1860         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1861         MonoMethodHeader a transient entity.
1862
1863 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1864
1865         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1866         uncontrolled growth of the gray stack.
1867
1868         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1869         added items are removed first, improving cache locality. Avoid freeing queue
1870         segments in the fast path, use the list of segments as the free list, truncate
1871         it to its max size at the start of collection.
1872
1873 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1874
1875         * metadata-internals.h: more memory savings, both with small config and without.
1876
1877
1878 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1879
1880         * appdomain.c, domain-internals.h, domain.c, object.c:
1881         make class_vtable_hash into an array to reduce memory usage.
1882
1883 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1884
1885         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1886         object-internals.h, object.c, reflection.c, threadpool.c:
1887         reduce resource usage when the small config is selected.
1888         In particular, up to 64K of methods/fields/properties/events
1889         are allowed and "other" methods in events are ignored.
1890
1891 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1892
1893         * threads.c: reduce resource usage when compiled for a small config.
1894
1895 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1896
1897         * sgen-gc.c: Also collect number of degraded-alloced objects with
1898         heavy statistics.
1899
1900 2010-03-04  Geoff Norton  <gnorton@novell.com>
1901
1902         * assembly.c: Only support OSX bundling if the bundle is 
1903         actually detectable.
1904
1905 2010-03-04  Geoff Norton  <gnorton@novell.com>
1906
1907         * loader.c: The marshal specs are freed at the end of the call
1908         but it explicitly frees the strings as well as the container,
1909         so we need to dup them too to avoid referencing free'd memory.
1910
1911 2010-03-04  Geoff Norton  <gnorton@novell.com>
1912
1913         * icall-def.h:
1914         * icall.c: Add a new private internal icall to construct
1915         an object from its type without running the ctor.
1916
1917 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1918
1919         * profiler.c: allow multiple profiler engines to be loaded
1920         at the same time.
1921
1922 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1923
1924         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1925         profiler event to track object moves.
1926
1927 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1928
1929         * object.c, profiler.c, profiler.h, string-icalls.c:
1930         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1931
1932 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1933
1934         * decimal.c (mono_double2decimal): Add support for reducing the
1935         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1936         expected.
1937
1938 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1939
1940         * icall-def.h:
1941         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1942
1943 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1944
1945         * mono-config.c (mono_config_parse_assembly_bindings): added -
1946         parses assembly binding redirections from appdomain's config
1947         file.
1948
1949         * metadata-internals.h: added definition of a new function -
1950         mono_config_parse_assembly_bindings - to support parsing assembly
1951         binding redirections defined in appdomain's config file.
1952
1953         * domain-internals.h: added two new fields to _MonoDomain - a list
1954         of assembly bindings and a flag to parse the config file only
1955         once.
1956
1957         * assembly.c (assembly_binding_maps_name): empty culture name and
1958         NULL culture name are considered equal.
1959         (mono_assembly_apply_binding): added support for domain specific
1960         assembly binding redirections, read from the appdomain's
1961         configuration file. Fixes bug #580185
1962
1963 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1964
1965         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1966         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1967         support.
1968
1969 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1970
1971         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1972         from this function. The new function receive the parent token instead of a type.
1973
1974         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1975         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1976         typebuilders. This make it possible to properly encode generic type builders since
1977         their unmanaged type don't have generics data while unfinished.
1978
1979         Fixes #583655.
1980
1981 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1982
1983         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1984         writing binary log files (can be enabled by #define'ing
1985         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1986         bugs in longer running programs.
1987
1988 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1989
1990         * metadata.c: added some API documentation.
1991
1992 2010-03-01  Robert Jordan  <robertj@gmx.net>
1993
1994         * filewatcher.h: Include glib.h to fix the MSVC build.
1995
1996 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1997
1998         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1999         a GC handle instead. This is a bit slower to access, but avoids burdening the
2000         GC with 100s of individual roots.
2001
2002         * reflection.c (mono_class_get_ref_info):
2003         (mono_class_set_ref_info):
2004         (mono_class_free_ref_info): New internal helper fuctions.
2005
2006         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
2007         of accessing klass->reflection_info directly.
2008
2009         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
2010         words.
2011
2012         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
2013         the previous array.
2014
2015 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
2016
2017         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
2018         needs an indirection.
2019
2020 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2021
2022         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
2023         so all generic sharing code is in one place.
2024
2025         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
2026         we don't call setup_interface_offsets () for unfinished types.
2027
2028 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2029
2030         * class.c (mono_class_generic_sharing_enabled): Move this to
2031         generic-sharing.c.
2032
2033         * image.c: Add an unload hook which is called before an image is unloaded.
2034
2035         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
2036         metadata.c having to depend on generic sharing.
2037
2038 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2039
2040         * class.c: reduce size of ridiculously large cache.
2041
2042 2010-02-26  Martin Baulig  <martin@ximian.com>
2043
2044         * mono-debug.h
2045         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
2046
2047         * threads.c (mono_thread_internal_reset_abort): New method; resets
2048         the abort, but doesn't throw any exception if no abort was requested.
2049
2050 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2051
2052         * class.c (get_implicit_generic_array_interfaces): Call
2053         mono_class_setup_interface_offsets () before accessing
2054         eclass->interface_offsets_count. This only shows up on platforms without IMT for
2055         some reason.
2056
2057 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
2058
2059         * environment.c, environment.h, icall.c: make the GetOSVersionString()
2060         icall internal.
2061
2062 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
2063
2064         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
2065         direct access to the MonoType fields.
2066
2067 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
2068
2069         * threads.h: Move some internal functions which were added to this header by
2070         mistake to threads-types.h.
2071
2072         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
2073
2074 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
2075
2076         * class-internals.h, class.h, object.h: make MonoRemoteClass
2077         and mono_remote_class() internal.
2078
2079 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2080
2081         * metadata-internals.h, class-internals.h, metadata.h: make the
2082         MonoType guts internal as well.
2083
2084 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
2085
2086         * reflection.h: the MonoTypeNameParse guts are internal now.
2087         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
2088         are internal now, provide accessors as needed.
2089         * metadata.h, metadata-internals.h: the MonoMethodSignature
2090         guts are internal now.
2091         * Makefile.am: mempool.h is an internal header now.
2092         * *.h, *.c: remove glib.h usage from the public headers.
2093
2094 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
2095
2096         * culture-info-table.h : regenerated.
2097
2098 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
2099
2100         * metadata.c: Add mono_method_get_header_summary which returns minimal
2101         information about the header of a method. This is the information used
2102         by the inline oracle to reject methods.
2103
2104         This method doesn't decode local variables and doesn't cache it's result,
2105         so it should cause a minimal reduction in memory usage.
2106
2107         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
2108         mono_method_get_header_summary.
2109
2110 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
2111
2112         * threads.c (mono_thread_exit): Make sure that the main thread is
2113         non-null before dereferencing it.
2114
2115 2010-02-21  Geoff Norton  <gnorton@novell.com>
2116
2117         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
2118         locale.
2119         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
2120         before falling back to the posix lookup.
2121
2122 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
2123
2124         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
2125         the DONT_MANAGE flag set.
2126
2127 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2128
2129         * domain.c: Remove old v1 version strings. Let the runtime
2130         default to 2.0 instead of failing because it can't find a
2131         working 1.0 instalation.
2132
2133 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2134
2135         * domain.c: Add v4 RC version string.
2136
2137 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2138
2139         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
2140         of overflow checking function.
2141
2142 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
2143
2144         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
2145         generic methods.
2146
2147         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
2148         cases for ParameterInfo.
2149
2150         Fixes #579493.
2151
2152 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
2153
2154         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
2155         have has_cctor set. Fixes #575946.
2156
2157 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
2158
2159         * appdomain.c: display a warning if the parsing the config file
2160         produces any error.
2161         Skip the BOM in UTF-8 files.
2162         Copy the AppDomainSetup before setting the privateBinPath so that the
2163         correct configuration file is read.
2164
2165 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
2166
2167         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
2168         vtable trampoline per vtable slot index. Not used yet.
2169
2170 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2171
2172         * icall-def.h:
2173         * icall.c: add internal call that returns the system page size.
2174
2175 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
2176
2177         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
2178         'int' for system classes.
2179
2180 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
2181
2182         * icall.c, icall-def.h: new icall to check for sufficient
2183         stack space.
2184
2185 2010-02-12  Mark Probst  <mark.probst@gmail.com>
2186
2187         * reflection.c (ensure_complete_type): Check that reflection_info
2188         is set, too.  Fixes crash of corlib testsuite with -O=-all.
2189
2190 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
2191
2192         * attrdefs.h:
2193         * tabledefs.h: Add NoOptimization flag.
2194
2195 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2196
2197         * sgen-gc.c: Don't consider it a missing remset if the target
2198         object is pinned - we might have done the store but not added the
2199         remset yet.
2200
2201 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2202
2203         * sgen-gc.c: When checking for missing remsets, don't assert on
2204         the first one, but print them all and then assert.
2205
2206 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2207
2208         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
2209
2210 2010-02-09  Miguel de Icaza  <miguel@novell.com>
2211
2212         * console-unix.c: On OSX Control-Y is assigned to
2213         VDSUSP (non-Posix), the
2214         suspend-program-next-time-it-tries-to-read-input command (this is
2215         different than C-z, which suspends immediately).
2216
2217         Do the same thing that bash does and ignore this setting,
2218         making our repl/getline support pasting.
2219
2220 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2221
2222         * sgen-gc.c: Simple plausibility check for scan_starts.
2223
2224 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2225
2226         * sgen-gc.c: Round up when calculating the number of scan starts.
2227
2228 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2229
2230         * reflection.c: Export mono_get_object_from_blob.
2231
2232         * object-internals.h: Ditto.
2233
2234         * icall.c: New icall property_info_get_default_value to get the default
2235         value of a property. Since using this is not common, no caching is done.
2236
2237         * icall-def.h: Add new icall.
2238
2239 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2240
2241         * class.c: Add mono_class_get_property_default_value.
2242
2243         * class-internal.h: Export mono_class_get_property_default_value.
2244
2245 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2246
2247         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
2248
2249 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
2250
2251         * sgen-gc.c: introduced critical regions to allow some lockless
2252         operations and increase scalability.
2253
2254 2010-02-10  Geoff Norton  <gnorton@novell.com>
2255
2256         * reflection.c: Support building with DISABLE_REFLECTION
2257
2258 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
2259
2260         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
2261         Closes bug #566057.
2262
2263         * exception.c: fix typo in comment.
2264
2265 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
2266
2267         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
2268         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
2269
2270         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
2271
2272         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
2273         the internal API.
2274
2275         Fixes #574434.
2276
2277 2010-02-09  Mark Probst  <mark.probst@gmail.com>
2278
2279         * threads.c: Removed two assertions that were too strict.  Added a
2280         clarifying comment.  Fixes #577090.
2281
2282 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
2283
2284         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
2285         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
2286
2287         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
2288
2289         * verify.c (mono_type_get_stack_name): Fix a warning.
2290
2291 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
2292
2293         * marshal.c (mono_marshal_get_wrapper_info): Rename from
2294         mono_marshal_wrapper_info_from_wrapper.
2295
2296         * marshal.c (mono_marshal_set_wrapper_info): Rename from
2297         mono_marshal_method_set_wrapper_data, and export.
2298
2299         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
2300         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
2301         by calling mono_marshal_get_wrapper_info ().
2302
2303         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
2304         small objects which does no size checks.
2305
2306 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
2307
2308         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
2309
2310 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2311
2312         * verify.c (mono_method_verify): Use the new basic block formation pass
2313         to avoid verifying dead basic blocks. This is the same behavior as the
2314         runtime MS verifier.
2315
2316 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2317
2318         * mono-basic-block.c:
2319         * mono-basic-block.h: New implementation of a basic block formation pass.
2320         The formation pass does static liveness analysis as well to detect dead
2321         basic blocks.
2322
2323 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2324
2325         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
2326         'this' argument in icalls.
2327
2328 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2329
2330         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
2331
2332 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2333
2334         * object.c, domain.c: When using SGen, we must register
2335         vtable->type as a root if it's not a MonoType, because then it
2336         wasn't pin-alloced.
2337
2338 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2339
2340         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
2341         at the start of nursery collections, because we might have had
2342         degraded allocations which changed next_data.
2343
2344 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2345
2346         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
2347         custom attr so this function works in cross-compiling mode.
2348
2349 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2350
2351         * class.c (make_generic_param_class): Initialize interface offsets since we
2352         set klass->inited. Fixes #574819.
2353
2354 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2355
2356         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
2357         calling the JIT domain cleanup hook.
2358
2359 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2360
2361         * pedump.c (main): Properly set the verifier mode when running the metadata
2362         verifier.
2363
2364 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2365
2366         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
2367         overlapping fields now that we're called before has_references is set.
2368
2369         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2370         method. Otherwise all sort of weird stuff happens.
2371
2372 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2373
2374         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2375         Fixes #572874.
2376
2377 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2378
2379         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2380         Fixes #573322.
2381
2382 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2383
2384         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2385         pin_staging_area_index is greater than 0.
2386
2387 2010-01-22 Miguel de Icaza (miguel@novell.com)
2388
2389         * loader.c: Since we do nothing with the error returned, pass NULL
2390         to ignore the error.
2391
2392 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2393
2394         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2395         happened before starting to encode the actual fields. This avoid ciclic
2396         dependencies and eventual crashes.
2397
2398         Fixes #572660.
2399
2400 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2401
2402         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2403         atomic and remove the half-constructed hack in SGen.
2404
2405 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2406
2407         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2408         has a recursive reference to itself.
2409
2410         Fixes #571863.
2411
2412 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2413
2414         * loader.c (mono_method_signature): Fix error message.
2415
2416 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2417
2418         * sgen-gc.c: Reuse to-space sections between nursery collections.
2419
2420 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2421
2422         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2423         from the current assembly or mscorlib. Fixes bug #322957.
2424
2425 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2426
2427         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2428         get_wrapper_target_class.
2429
2430 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2431
2432         * sgen-gc.c: Fix warnings.
2433
2434 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2435
2436         * verify.c (store_local): Better error message.
2437
2438 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2439
2440         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2441         arguments.
2442
2443 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2444
2445         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2446         function is generics variance aware.
2447
2448 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2449
2450         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2451         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2452
2453 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2454
2455         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2456           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2457
2458         Code is contributed under MIT/X11 license.
2459
2460 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2461
2462         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2463         on a GTD.
2464
2465 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2466
2467         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2468         return a point to a wrapper specific info structure describing the wrapper.
2469         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2470  
2471 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2472  
2473         * sgen-gc.c: Make minor collection section allowance adaptive,
2474         depending on the amount of memory reclaimed in the last major
2475         collection.  If more memory was reclaimed (i.e. more garbage
2476         produced), do the next collection earlier.
2477
2478 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2479
2480         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2481         to itself.
2482
2483         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2484         the token as parameter.
2485
2486         * verify-internals.h: Ditto.
2487
2488         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2489
2490         Fixes #571460.
2491
2492 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2493
2494         * sgen-gc.c: Make store_remset_buffer_index long.
2495
2496 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2497
2498         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2499
2500         Fixes #569579.
2501
2502 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2503
2504         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2505         off precise marking if it is available.
2506         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2507
2508 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2509
2510         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2511
2512         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2513         pinned objects.
2514
2515         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2516         to the array allocator.
2517
2518 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2519
2520         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2521         result of mono_compile_method (), it already includes an ftnptr.
2522
2523 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2524
2525         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2526
2527 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2528
2529         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2530         hash value which doesn't depend on glib/eglib versions.
2531         (mono_metadata_type_hash): Use it.
2532
2533         * object.c (mono_method_get_imt_slot): Ditto.
2534
2535 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2536
2537         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2538         independently of the GTD.
2539
2540         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2541
2542         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2543         to the upper limit since instance_size includes this amount.
2544
2545         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2546
2547         Fixes #569544.
2548
2549 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2550
2551         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2552         with static methods.
2553
2554         * object.c (build_imt_slots): Avoid asserting when static methods are
2555         encountered in an interface.
2556
2557 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2558
2559         * sgen-gc.c (to_space_expand): Fix assertion.
2560
2561 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2562
2563         * string-icalls.c: missing declaration fixes.
2564         * sgen-gc.c: portability fixes.
2565
2566 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2567
2568         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2569
2570         * class.c:
2571         * cominterop.c:
2572         * icall.c:
2573         * object.c: 
2574         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2575
2576 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2577
2578         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2579         it can fail loading the type.
2580
2581         * class.c: Add mono_class_inflate_generic_class_checked.
2582
2583         * class.c:
2584         * verify.c:
2585         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2586
2587 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2588
2589         * loader.c (mono_method_signature_checked): New internal function taking an
2590         MonoError argument.
2591
2592         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2593         Fixes build on rh 7.3.
2594
2595 2010-01-10  Aaron Bockover  <abockover@novell.com>
2596
2597         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2598         at runtime in the same way as on Windows, which yields a relocatable
2599         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2600         of the running mono process.
2601
2602         On TARGET_ARM, fallback () will always be executed.
2603
2604 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2605
2606         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2607
2608 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2609
2610         * class.c (mono_class_is_assignable_from_slow): Support variant
2611         generic delegates.
2612
2613         * class.c (mono_class_implement_interface_slow): Support types with
2614         variant generic arguments.
2615
2616 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2617
2618         * verify.c: Remove some code duplication.
2619
2620 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2621
2622         * object.c: Update docs.
2623
2624 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2625
2626         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2627
2628         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2629         fallback trampoline as well.
2630
2631         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2632         out argument that is set to TRUE if the match was direct. 
2633
2634         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2635
2636         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2637
2638 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2639
2640         * class.c: Add mono_class_interface_offset_with_variance function that does same
2641         as mono_class_interface_offset but takes variance into account.
2642
2643         * class-internal.h: Export mono_class_interface_offset_with_variance.
2644
2645         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2646
2647 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2648
2649         * object.c:
2650         * icall.c:
2651         * class.c: Add some FIXME for due to variant generic arguments.
2652
2653         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2654         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2655         the bitfield check fails.
2656
2657 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2658
2659         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2660         to be easier to read and fix bugs in the case a non generic type implements a variant
2661         interface.
2662
2663         * class.c (mono_class_has_variant_generic_params): Make non static.
2664
2665         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2666         the private API.
2667
2668 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2669
2670         * assembly.c: fix MONO_PATH debug output.
2671
2672 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2673
2674         * culture-info-table.h : regenerated.
2675
2676 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2677
2678         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2679         types that are meant to not have a parent.
2680
2681 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2682
2683         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2684         from the image mempool, so it is not leaked.
2685
2686 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2687
2688         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2689
2690 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2691
2692         * verify.c (verify_valuetype_layout_with_target): Fix case
2693         that can lead to infinite recursion. Fix bug #567861
2694
2695 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * pedump.c: Run code verifier even if image verification fails
2698         due to a failed type we. This allows more errors to be shown.
2699
2700 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2701
2702         * class.c (count_virtual_methods): Remove the assert and now
2703         fail properly.
2704         
2705         * class.c (setup_interface_offsets): This can fail now.
2706
2707         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2708         errors. Check setup_interface_offsets errors.
2709
2710         * class.c (setup_interface_offsets): Simplify the return error logic
2711         and remove class_init_ok.
2712
2713         Fixes #560327.
2714
2715 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2716
2717         * class.c (mono_class_init): Do class verification at the beginning. Add
2718         some asserts to avoid tripping into invalid memory.
2719
2720         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2721         g_error and a decent message.
2722
2723         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2724
2725         Fixes #567548.
2726
2727 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2728
2729         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2730         as inline functions instead of defining them in mempool.c.
2731
2732         * metadata-internals.h (MonoImageSet): New structure representing a set of
2733         MonoImages, which own a collection of generic instances.
2734
2735         * metadata.c: Get rid of the global generic caches, instead assign each generic
2736         instance to the image set which consists of all the images referenced by the
2737         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2738         the memory used by generic instances to be allocated from a per image-set mempool
2739         later.
2740
2741 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2742
2743         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2744
2745 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2746
2747         * appdomain.c (zero_static_data): Fix a warning.
2748
2749         * locales.c (construct_culture_from_specific_name): Applied patch from
2750         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2751         not found. Fixes #567900.
2752
2753 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2754
2755         * loader.c (mono_method_get_signature_full): Remove two asserts.
2756         Return NULL instead so that the verifier can handle both cases 
2757         gracefully.
2758
2759 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2760
2761         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2762         so we can properly fail types instead of crashing.
2763
2764         Fixes #567676.
2765
2766 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2767
2768         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2769         generic method.
2770
2771 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2772
2773         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2774
2775 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2776
2777         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2778         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2779         we can't remove it from it since we don't hold the lock.
2780         (mon_new): Free the orphaned events here when a mon structure is added to the
2781         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2782         this down.
2783
2784 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2785
2786         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2787         as max stack might be zero.
2788
2789         Fixes #562320.
2790
2791 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2792
2793         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2794
2795         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2796         instances if the GTD did.
2797
2798         * class.c (mono_class_setup_properties): Ditto.
2799
2800         * class.c (mono_class_setup_events): Ditto.
2801
2802         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2803
2804         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2805         error setting.
2806
2807         * class.c (mono_class_init): Fail if GTD did.
2808
2809         * cominterop.c:
2810         * generic-sharing.c:
2811         * icall.c:
2812         * loader.c:
2813         * object.c:
2814         * verify.c: Properly handle failure of mono_class_setup_methods.
2815
2816 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2817
2818         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2819         mono_class_inflate_generic_method_full internal.
2820
2821         * class.c (inflate_generic_context): Now takes a MonoError argument.
2822
2823         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2824         errors.
2825
2826 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2827
2828         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2829         they cannot be patched. Partly fixes #564408.
2830
2831 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2832
2833         * metadata-internals.h, reflection.c: Use the
2834         MonoDynamicImage.handleref hash table only with unmanaged keys,
2835         and add a managed hash table handleref_managed for managed keys.
2836
2837 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2838
2839         * sgen-gc.c: Unset to-space bumper between collections.  It might
2840         become invalid due to degraded allocations.
2841
2842 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2843
2844         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2845         with the one from the original method.
2846
2847         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2848         compatibility.
2849
2850         * verify-internals.h: Add new function to the internal API.
2851
2852 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2853
2854         * culture-info-tables.h: regenerated it to include the Georgian culture.
2855
2856 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2857
2858         * sgen-gc.c: Include mono/utils/memcheck.h.
2859
2860         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2861         instead of the current domain, since the two might not match if this is called
2862         from the debugger.
2863
2864         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2865         domain which created this assembly.
2866
2867 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2868
2869         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2870
2871 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2872
2873         * sgen-gc.c: Managed implementation of the specialized generic
2874         store write barrier.
2875
2876 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2877
2878         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2879         A private virtual newslot method is used to implement an interface method without exposing
2880         it to users. When querying for public instance methods, such method would hide a public one
2881         on a parent type.
2882
2883         Fixes #564379.
2884
2885 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2886
2887         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2888         conventions.
2889
2890 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2891
2892         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2893
2894 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2895
2896         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2897         as they are no longer used.
2898         
2899          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2900
2901         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2902
2903 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2904
2905         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2906         if the owner class has not been finished before returning reflection_info.      
2907
2908         Fixes #565127.
2909
2910 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2911
2912         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2913         param doesn't have custom attributes. Fixes #565117.
2914
2915         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2916         #565120.
2917
2918 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2919
2920         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2921
2922 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2923
2924         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2925         same amount done by a core-clr enabled runtime.
2926
2927 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2928
2929         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2930         the target files is reset to writable by owner and readable by
2931         everyone else to prevent problems when updating shadow copies of
2932         files whose source is read-only. Fixes bug #556884
2933
2934 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2935
2936         * class.c (mono_generic_class_get_class): Allocate the generic
2937         class via malloc again, so that it can be freed when any one of
2938         the images of its constituent types is closed.
2939
2940         * metadata.c: When closing an image, don't free generic insts and
2941         generic classes right away, but put them into a list for later
2942         freeing.
2943
2944         * image.c, metadata-internals.h: Store the free list and in the
2945         second pass of closing an image, free it.
2946
2947 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2948
2949         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2950
2951         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2952         types in type_hash.
2953
2954         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2955
2956 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2957
2958         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2959         user type.
2960
2961         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2962         is used.
2963
2964 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2965
2966         * verify.c (mono_method_verify): The Unused opcodes produce an
2967         InvalidProgramException on .NET
2968
2969 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2970
2971         * loader.c (mono_method_get_header): Move assert after the verifier
2972         has been called on the method header.
2973
2974 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2975
2976         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2977
2978         * appdomain.c: Bump corlib version.
2979
2980 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2981
2982         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2983         types as well since otherwise generic instances would not return UT as arguments but
2984         their undelying system type.
2985
2986         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2987         to reflect the fact that they can have now multiple different types.
2988
2989         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2990
2991         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2992
2993         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2994
2995         * reflection.c (mono_reflection_register_with_runtime): Init super types
2996         if the image is not dynamic.
2997
2998         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2999         check if the generic type definition is a TypeBuilder.
3000
3001         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
3002         doesn't belong to a dynamic image, skip initialization.
3003
3004         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
3005         base definition is not a dynamic type.
3006
3007 2009-12-11  Marek Habersack  <mhabersack@novell.com>
3008
3009         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
3010         mono_profiler_string_allocation
3011
3012         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
3013         if string profiling is enabled, call
3014         mono_profiler_string_allocation
3015
3016         * profiler.h: added two MonoProfileFlags -
3017         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
3018         installation functions for the hooks below.
3019
3020         * profiler-private.h, profiler.c: added two hooks:
3021         mono_profiler_string_allocation called whenever a string is
3022         allocated by InternalAllocateStr and mono_profiler_iomap called
3023         whenever IOMAP code performs an adjustement on a file path.
3024
3025 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
3026
3027         * boehm-gc.c: fixed race condition while getting the target of a
3028         disappearing link (bug #522233).
3029
3030 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3031
3032         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
3033         the error.
3034
3035 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3036
3037         * reflection.c: Add mono_reflection_register_with_runtime icall to
3038         allow a MonoGenericClass to register itself as the managed mirror of
3039         a given generic instance.
3040         This is a temporary workaround until all MGC instantiation happens in
3041         managed code.
3042
3043         * object-internals.h: Ditto.
3044
3045         * icall-def.h: Ditto.
3046
3047 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3048
3049         * sgen-gc.c (find_in_remsets): Also search the generic store
3050         remsets.
3051
3052 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3053
3054         * sgen-gc.c: Don't access class names in debugging code when
3055         unloading a domain, because they might not be valid anymore.
3056
3057 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3058
3059         * domain.c, domain-internals.h: New function mono_domain_unset().
3060
3061         * appdomain.c (unload_thread_main): Detach the thread again at the
3062         end.
3063
3064         * threads.c: When a thread exists or is detached, unset its domain
3065         so that it's NULL when, for example, a pthread destructor runs.
3066
3067         * sgen-gc.c: Assert that there is no domain set after a thread is
3068         done.
3069
3070 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3071
3072         * class.c (mono_generic_class_get_class),
3073         metadata.c (free_generic_class): Allocate generic MonoClass's from
3074         the image mempool, not via malloc.  The problem with malloc is
3075         that when unloading a domain those classes are freed before
3076         clearing the heap and SGen needs the classes.  Rewriting the
3077         unloading code to do the free later would be more work and there's
3078         no point in using malloc anyway.
3079
3080 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
3081
3082         * loader.c (mono_method_signature): Always call mono_loader_unlock 
3083         before returning.
3084
3085 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3086
3087         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
3088         user string blobs.
3089
3090         * verify-internals.h: Add new function to the internal API.
3091
3092         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
3093         check if it's a valid string.
3094
3095         * object.c (mono_ldstr): Ditto.
3096
3097         Fixes #561943.
3098
3099 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3100
3101         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
3102         from a method before returning it. This is the expected behavior.
3103
3104 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3105
3106         * reflection.c (inflate_method): Handle the case of a regular system type.
3107
3108 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3109
3110         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
3111         gathering code.
3112
3113         * mempool.c, mempool-internals.h: New function
3114         mono_mempool_get_bytes_allocated().
3115
3116         * Makefile.am: sgen-pinning-stats.c added.
3117
3118 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3119
3120         * sgen-gc.c (create_allocator): Only use the fast path if the
3121         object size is within the small object size limit.
3122
3123 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3124
3125         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
3126         possibly adding padding to sizeof (GCMemSection).
3127
3128 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3129
3130         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
3131         reference is not in the nursery.
3132
3133 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
3134
3135         * class.c (mono_class_from_typeref): Bounds check idx against the 
3136         assemblyref table.
3137
3138 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3139
3140         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
3141         through the potential roots, then sort the results and find the
3142         pinned objects from there.
3143
3144         * Makefile.am: sgen-pinning.c added.
3145
3146 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3147
3148         * sgen-gc.c: Record generic stores in specialized remset buffers.
3149
3150 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3151
3152         * sgen-gc.c: Make pinned chunks the same size as major heap
3153         sections, and align them as well, so that we can check whether an
3154         object is in a pinned chunk or a major section in constant time.
3155
3156 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3157
3158         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
3159
3160 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3161
3162         * sgen-gc.c: Make all major heap sections the same size (currently
3163         128k) and allocate them on aligned addresses.  Small heap sections
3164         give us better granularity with pinned objects - we can free up
3165         much more memory.
3166
3167 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3168
3169         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
3170         output removed.
3171
3172 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3173
3174         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
3175
3176         * mono/metadata/assembly.c: When opening an assembly image, pass the real
3177         names in addition to the runtime generated one.
3178
3179         * mono/metadata/image.h: Add a function to take the real name of the assembly
3180         image.
3181
3182         * mono/metadata/image.c: If a real name has been passed to load an assembly,
3183         use it instead of the runtime generated one.
3184
3185         Code is contributed under MIT/X11 license.
3186
3187 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3188
3189         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
3190         before the other checks to prevent problems if the DateTime class is blittable.
3191         Hopefully fixes #559600.
3192
3193 2009-12-05  Mark Probst  <mark.probst@gmail.com>
3194
3195         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
3196         returns the largest string length that will not be put into the
3197         LOS.
3198
3199         * sgen-gc.c, gc-internal.h: New function that returns the largest
3200         object size that will not be put into the LOS.
3201
3202         * appdomain.c: Bump corlib version.
3203
3204 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3205
3206         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3207
3208         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3209
3210 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3211
3212         * reflection.c (inflate_method): Fix signature.
3213
3214         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
3215         in managed code.
3216
3217 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3218
3219         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
3220
3221 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3222
3223         * sgen-gc.c: Abstract to-space handling.
3224
3225 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
3226
3227         * loader.c (find_method_in_class): Ignore methods with broken signatures.
3228
3229         Fixes #559906.
3230
3231 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3232
3233         * sgen-gc.c: Only add references from outside the nursery to
3234         within the nursery to the global remset list.
3235
3236 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3237
3238         * appdomain.c (create_exceptions): Set the domain temporarily if
3239         necessary to avoid cross-domain references.
3240
3241 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3242
3243         * verify.c (get_stack_type): Return that the type is invalid instead of
3244         asserting.
3245
3246         * verify.c (mono_method_verify): Verify that all locals and arguments
3247         have valid stack types.
3248
3249         Fixes #559913.
3250
3251 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3252
3253         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
3254         bounds checking overflow aware.
3255
3256         Fixes #559910.
3257
3258 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3259
3260         * verify.c (do_invoke_method): Check for invalid method signatures.
3261
3262         Fixes #553450.
3263
3264 2009-12-02  Jb Evain  <jbevain@novell.com>
3265
3266         * appdomain.c (MONO_CORLIB_VERSION): bump.
3267         * icall-def.h (get_base_definition): renamed to get_base_method
3268         and add a boolean argument indicating we want the original
3269         method definition, or the immediate base method.
3270         * icall.c: apply the get_base_definition to get_base_method change.
3271
3272 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3273
3274         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
3275
3276         Fixes #558042.
3277
3278 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
3279
3280         * class.c: remove asserts for invalid type token in
3281         mono_class_name_from_token(), mono_assembly_name_from_token() and
3282         mono_class_create_from_typedef () (fixes bug #553318).
3283
3284 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
3285
3286         * metadata.c, class.c, loader.c: remove assert after bsearch() for
3287         incorrect assemblies (bug #553322).
3288
3289 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3290
3291         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
3292
3293         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
3294
3295         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
3296
3297         * class.c (inflate_generic_context): Ditto.
3298
3299         * loader.c (method_from_methodspec): Ditto.
3300
3301         Fixes #558230.
3302
3303 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3304
3305         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
3306
3307         * class.c (mono_class_create_from_typespec): Ditto.
3308
3309         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
3310
3311         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
3312
3313         Fixes #558184.
3314
3315 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3316
3317         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
3318
3319         * verify.c (verify_delegate_compatibility): Ditto.
3320
3321         * verify.c (do_newobj): Ditto.
3322
3323         Fixes #558046.
3324
3325 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3326
3327         * sgen-gc.c: Use a gray queue instead of requiring that gray
3328         objects are in a contiguous region.
3329
3330         * sgen-gray.c: The gray queue implementation.
3331
3332         * Makefile.am: sgen-gray.c added.
3333
3334 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3335
3336         * appdomain.c: When unloading a domain, zero its static data and
3337         perform a minor collection when using SGen.  That will get rid of
3338         all the remsets pointing into that domain's static data.
3339
3340         * sgen-gc.c: Allow remsets into static data.  By doing this we
3341         need less checks so we're more efficient.
3342
3343 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3344
3345         * verify.c (mono_method_verify): Check for catch clauses with broken
3346         types.
3347
3348         Fixes #558465.
3349
3350 2009-12-01  Jb Evain  <jbevain@novell.com>
3351
3352         * class.c (make_generic_param_class): set the namespace of
3353         the generic parameter class from its owner, if available.
3354
3355 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3356
3357         * verify.c (code_bounds_check): Do proper overflow checking.
3358
3359         * verify.c (mono_method_verify): The number of switch entries is
3360         an unsigned int. Properly bounds check it.
3361
3362         Fixes #558594.
3363
3364 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3365
3366         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
3367         mono_metadata_method_has_param_attrs which only checks if a given param
3368         list has a non zero flags entry.
3369
3370         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3371         to inform how many params should we expect to decode.
3372
3373         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3374         as it's faster than mono_metadata_get_param_attrs.
3375
3376         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3377         add mono_metadata_method_has_param_attrs.
3378
3379 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3380
3381         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3382         failures.
3383
3384         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3385         is -1 but its class is broken.
3386
3387         Fixes #558522.
3388
3389 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3390
3391         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3392         for parameter overflow.
3393
3394         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3395         of mono_metadata_get_param_attrs.
3396
3397         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3398         API.
3399
3400         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3401
3402 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3403
3404         * class.c (mono_class_setup_fields): Check for fields with broken types.
3405
3406         Fixes #558741.
3407
3408 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3409
3410         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3411         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3412         its TypeBuilder::CreateType ().
3413
3414         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3415         if not needed.
3416
3417         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3418         to make setup_interface_offsets happy.
3419
3420         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3421         compilation now works.
3422
3423 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3424
3425         * appdomain.c (create_exceptions): New helper function extracted from
3426         mono_runtime_init () to precreate objects used during exception handling.
3427         (mono_runtime_init): Call it.
3428         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3429
3430 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3431
3432         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3433         compilation until the proper one is found.
3434
3435 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3436
3437         * class.c (mono_class_setup_vtable_general): Cache the result of
3438         get_virtual_methods () since it can be slow because of the metadata
3439         optimization.
3440
3441         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3442         from a MonoValueHashTable for now, since the later is based on an earlier
3443         version of hpj's internal probing code and seems to have serious collision
3444         issues.
3445
3446         * loader.c (mono_get_method_full): Update after the change above.
3447
3448 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3449
3450         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3451
3452 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3453
3454         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3455         the GTD instead of the DGC instead of crashing.
3456
3457         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3458         required. Inflate fields if needed.
3459
3460         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3461         finished. Renamed.
3462
3463 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3464
3465         * class.c (check_interface_method_override): Check for NULL signatures and fail
3466         the type.
3467
3468         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3469
3470         Fixes #553428.
3471
3472 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3475         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3476
3477 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3478
3479         * loader.c (field_from_memberref): Resolve the class first then the field
3480         signature. Remove a lot of duplicated code and make sure we don't pass valid
3481         values to mono_loader_set_error_field_load.
3482
3483         Fixes #553306.
3484
3485 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3486
3487         * class.c (inflate_generic_type): Change code to use new signature of
3488         mono_error_set_bad_image.
3489
3490         Fixes #558124.
3491
3492 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3493
3494         * verify.c (mono_method_verify): Don't free ctx.params items if 
3495         we aborted while inflating the ctx.locals. Complete previous fix
3496
3497 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3498
3499         * verify.c (mono_method_verify): Use the uninflated type name, 
3500         when the inflated is null, to report errors. Also take care when
3501         freeing, not to free everything since, in case of an error, some
3502         stuff would be copies (i.e. not allocated by the function itself)
3503         Fix bug #558145
3504
3505 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3506
3507         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3508         or overflow. The caller must have done this check explicitly. This guard us
3509         from accessing invalid memory.
3510
3511         * verify.c (do_push_static_field): Check for stack overflow.
3512
3513         Fixes #553333.
3514
3515 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3516
3517         * loader.c (find_method_in_class): Don't crash if the signature cannot
3518         be resolved.
3519
3520         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3521         of asserting for the case of invalid params.
3522
3523         Fixes #553304.
3524
3525 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3526
3527         * image.c (mono_image_load_module): Fix crash when a bad assembly
3528         has no module at all (fix bug #553412) and also replace the 
3529         g_assert with a return NULL (documented return value for failure)
3530
3531 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3532
3533         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3534
3535 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3536
3537         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3538         file attribute to managed code and avoid doing the mask/attribute
3539         checks here. 
3540
3541 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3542
3543         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3544         the managed world.
3545
3546         * icall-def.h: New entry points.
3547         
3548 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3549
3550         * process.c: Don't put references to managed objects into a
3551         g_ptr_array.
3552
3553 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3554
3555         * class.c (can_access_internals): Allow CoreCLR to participate in
3556         allowing (or not) [InternalsVisibleTo] between assemblies.
3557         * security-core-clr.c|h: Make sure that only trusted code (a 
3558         superset of platform code) can access the internals of platform
3559         code.
3560
3561 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3562
3563         * reflection.c: use the correct base class to get the virtual method
3564         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3565
3566 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3567
3568         * security-core-clr.c (get_caller_no_reflection_related): 
3569         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3570         it's still reflection and must be filtered correctly.
3571
3572 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3573
3574         * object.c (compute_class_bitmap): Fix for large bitmaps.
3575
3576 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3577
3578         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3579
3580         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3581         koush@koushikdutta.com). Disable GC_no_dls on android.
3582
3583 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3584
3585         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3586         tlab_next points outside the TLAB because the allocator was
3587         interrupted.
3588
3589 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3590
3591         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3592
3593 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3594
3595         * object-internals.h: Change signature for mono_string_to_utf8_image.
3596
3597         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3598         argument.
3599
3600         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3601         exceptions due to mono_string_to_utf8.
3602
3603 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3604
3605         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3606
3607         * object.c (mono_remote_class): Make sure all resources are released before
3608         raising an exception.
3609
3610         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3611
3612 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3613
3614         * mono-perfcounters.c (network_get_impl): Change variable initialization
3615         ordering to fix potential memory leak in case of exceptions.
3616
3617         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3618         encoded strings.
3619         
3620 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3621
3622         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3623         variable initialization ordering to fix potential memory leak in case
3624         of exceptions.
3625
3626 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3627
3628         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3629         needed.
3630
3631 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3632
3633         * appdomain.c: Fix shadow path code to better deal with exceptions.
3634
3635 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3636
3637         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3638         exception in the middle of the runtime code.
3639
3640 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3641
3642         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3643         leak memory with broken envvar value.
3644
3645 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3646
3647         * reflection.c (mono_reflection_setup_internal_class): Because
3648         nested classes are not added to the name cache, we must put them
3649         in the reflection_info_unregister_classes list.
3650
3651 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3652
3653         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3654         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3655         platform (trusted) code. Instead we return a TypeLoadException to
3656         be thrown later. This is the exception thrown by Silverlight 2 if
3657         a type, inside application (user) code is marked with [ComImport]
3658
3659 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3660
3661         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3662         mono_is_debugger_attached () too.
3663
3664         * mono-debug.c (mono_is_debugger_attached): New helper function.
3665         (mono_set_is_debugger_attached): Ditto.
3666
3667 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3668
3669         * object-internals.h: Add mono_string_to_utf8_checked.
3670
3671         * object.c: Implement mono_string_to_utf8_checked.
3672
3673 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3674
3675         * class.c: Add missing check for load errors after every
3676         call to mono_class_setup_fields
3677
3678         Fixes #552282.
3679
3680 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3681
3682         metadata-verify.c (verify_tables_schema): Fix the error message.
3683
3684 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3685
3686         * metadata.c: Change event table schema to use TDOR for event type
3687         as this is what it's meant to be.
3688
3689         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3690         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3691         entry.
3692
3693         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3694         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3695         rows in MONO_TABLE_GENERICPARAM.
3696
3697         Fixes #552289.
3698
3699 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3700
3701         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3702         insertion.
3703
3704         * reflection.c (mono_reflection_setup_internal_class): Avoid
3705         registering a gc root the same MonoClass multiple times.
3706         Don't register nested types on the global scope as they should
3707         not be available there.
3708
3709 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3710
3711         * culture-info-tables.h: regenerated.
3712
3713 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3714
3715         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3716
3717 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3718
3719         * string-icalls.c|h: Remove string internal calls that are not 
3720         used anymore by the class libraries.
3721         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3722         which is not used in the class librairies.
3723         * icall-def.h: Update tables.
3724
3725 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3726
3727         * class.h: Move mono_class_inflate_generic_type_checked...
3728
3729         * class-internals.h: to here and make it internal. We don't want to
3730         further expose MonoGenericContext. 
3731
3732 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3733
3734         * verify.c (mono_method_verify): Improve error message.
3735
3736 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3737
3738         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3739         the token is already properly encoded. Fixs 4.0 build.
3740
3741 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3742
3743         * locales.c (construct_number_format): Check if the number index is
3744         valid before trying to use it, if not, just return.
3745         
3746 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3747
3748         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3749         since that loses the abort state. Fixes #539394.
3750
3751 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3752
3753         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3754         explicit this argument to the call signature.
3755         (mono_marshal_get_icall_wrapper): Ditto.
3756
3757 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3758
3759         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3760         to indicate which assembly to use when resolving a custom-mod.
3761
3762         Fixes handling of volatile fields used across assemblies as reported in #551513.
3763
3764 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3765
3766         * loader.c: Improve error messages.
3767
3768 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3769
3770         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3771         of interfaces. Fixes IKVM.
3772
3773         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3774
3775 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3776
3777         * verify.c (verifier_inflate_type): Return the inflated type on success.
3778
3779 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3780
3781         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3782
3783         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3784
3785         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3786
3787         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3788         flag set.
3789
3790         * profiler.c: Add new profiler callbacks for runtime invoke.
3791
3792         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3793
3794 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3795
3796         * sgen-gc.c: Keep track of the reason for a major collection and
3797         write it to the heap-dump file.
3798
3799 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3800
3801         * threads.c: refactor the code that initializes the
3802         thread_start_args into a reusable function and use this in the two
3803         methods that start up threads.
3804
3805 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3806
3807         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3808         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3809
3810 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3811
3812         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3813         Until now, we only had the per-cpu(core) counters.
3814
3815 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3816
3817         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3818         mono_gc_get_suspend_signal(), which returns the suspend signal
3819         number used by the GC.
3820
3821 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3822
3823         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3824
3825         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3826         signalling start_notify.
3827
3828 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3829
3830         * appdomain.c: do not test the st_mode field for shadow-copies.
3831         Fixes bug #545276.
3832
3833 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3834
3835         * threadpool.[ch]: added hooks for thread start/finish and item
3836         processing begin/end. For monotouch use only.
3837
3838 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3839
3840         * threads.c (mono_thread_get_name): New helper function.
3841
3842         * reflection.c (resolve_object): Set handle_class for strings too.
3843         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3844         a cattr blob into a set of arrays and structures without creating the custom
3845         attributes themselves.
3846         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3847
3848         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3849
3850         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3851         function.
3852
3853 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3854
3855         * verify.c: Replace calls to mono_class_inflate_generic_type with
3856         mono_class_inflate_generic_type_checked. Fixes #480005.
3857
3858 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3859
3860         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3861         object since not all paths lead to callees initing it.
3862
3863 2009-10-23  Alp Toker  <alp@nuanti.com>
3864
3865         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3866         header and should not be shipped:
3867
3868         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3869         which is specific to the mono build. Not going to work.
3870
3871 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3872
3873         * security-manager.c: Report if core-clr is active from
3874         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3875         to allow Moonlight BCL to behave appropriately (both in browser
3876         and outside, e.g. smcs)
3877
3878 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3879
3880         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3881         Fixes bug #549108.
3882
3883 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3884
3885         * class.c: fix typo.
3886
3887 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3888
3889         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3890         a MonoError parameter.
3891
3892         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3893         version that can does proper error handling.
3894
3895         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3896
3897         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3898
3899         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3900
3901 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3902
3903         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3904         NO_UNALIGNED_ACCESS is defined.
3905
3906 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3907
3908         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3909         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3910         Fixes #549173.
3911
3912 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3913
3914         * sgen-gc.c: Shorten sections whenever possible.
3915
3916 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3917
3918         * sgen-gc.c: Use our portable semaphore #defines.
3919
3920 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3921
3922         * sgen-gc.c: A debug option for dumping the heap layout to a file
3923         after each collection.
3924
3925 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3926
3927         * sgen-gc.c: Make managed write barriers atomic via
3928         thread-restarts.
3929
3930 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3931
3932         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3933         methods. Fixes #543021.
3934
3935 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3936
3937         * socket-io.[ch]: fix VS build.
3938
3939 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3940
3941         * icall-def.h:
3942         * socket-io.[ch]: implemented SendFile.
3943
3944 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3945
3946         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3947         before the interfaces to avoid crashes later if class initialization fails.
3948         Fixes #548417.
3949
3950         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3951         Fixes #548276.
3952
3953 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3954
3955         * domain.c: Bump 4.0 version.
3956
3957 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3958
3959         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3960         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3961         check since 'pubkey' can't be NULL at this stage
3962         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3963         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3964         initialization of 'iter'
3965
3966 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3967
3968         * cominterop.c : Search the interface parts of vtable to find 
3969           method matches.  Fixes 547030.
3970
3971         Code is contributed under MIT/X11 license.
3972
3973 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3974
3975         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3976         multiple targets. Fixes bug #574426.
3977
3978 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3979
3980         * profiler.h: Put here the definition of
3981         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3982         (and fix the build...).
3983
3984 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3985
3986         * profiler.c, profiler.h, profiler-private.h:
3987         Added support for different ways of getting call chains in stat mode.
3988
3989 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3990
3991         * object.c, object-internals.h: New function for computing the
3992         size of an array, factored out of mono_array_new_full().  Use
3993         SGen's functions for allocating arrays and vectors.
3994
3995         * sgen-gc.c, gc-internal.h: Special functions for allocating
3996         arrays and vectors without race conditions.  A managed array
3997         allocator method.
3998
3999         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
4000
4001 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4002
4003         * object.c, object.h, icall.c: Write barriers do the copying now,
4004         as well, so no need for an additional memcpy.
4005
4006         * sgen-gc.c: Lock when storing remsets.  Do the memory
4007         copying/moving in the write barriers.
4008
4009         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
4010
4011         * reflection.c: Added an assert.
4012
4013 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4014
4015         * threads.c, process.c: A few missing write barriers.
4016
4017 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
4018
4019         * mono-perfcounters.c, mono-perfcounters-def.h: Add
4020         network performance counters for bytes sent per second, bytes
4021         received per second, and bytes total per second.
4022
4023         Code is contributed under MIT/X11 license.
4024
4025 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4026
4027         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4028         Fix warning.
4029
4030 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4031
4032         * threads.c, object-internals.h, object.c: Move code for
4033         transferring an object to a different domain (via
4034         serialization/remoting) to object.c.
4035
4036         * object.c (call_unhandled_exception_delegate): If the exception
4037         is in a different domain than the delegate, transfer the exception
4038         to that domain.
4039
4040 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
4041
4042         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
4043         Fixes #322934.
4044
4045 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
4046
4047         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
4048
4049 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4050
4051         * object.c (mono_method_return_message_restore): Handle the case
4052         where the argument is an instance of a generic type.  Fixes
4053         #544446.
4054
4055 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4056
4057         * object.c (set_value): Write barrier fix - we must pass the
4058         count, not the size.
4059
4060 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
4061
4062         * domain.c (mono_init_internal): Print a useful error message when encountering
4063         an old mscorlib, instead of crashing. Fixes #544307.
4064
4065 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
4066
4067         * appdomain.c (copy_app_domain_setup): Fix a warning.
4068
4069         * debug-helpers.c (dis_one): Ditto.
4070
4071 2009-10-04  Mark Probst  <mark.probst@gmail.com>
4072
4073         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
4074         into the new domain, instead of referencing the original one.
4075
4076         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
4077         non-static.
4078
4079         * appdomain.c: Corlib version bump.
4080
4081 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4082
4083         * threadpool.c: one more...
4084
4085 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4086
4087         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
4088         threads to die because we're shutting down. delgate5.exe works again.
4089
4090 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
4091
4092         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
4093           ccw_interface_hash table when a ccw is finalized.
4094
4095         Code is contributed under MIT/X11 license.
4096
4097 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4098
4099         * assembly.c, domain.c, image.c, metadata-internals.h: Split
4100         domain and image unloading into two steps.  We must do this
4101         because clearing the domain in SGen requires the class metadata to
4102         be intact, but we need to free the mono_g_hash_tables in case a
4103         collection occurs during domain unloading and the roots would trip
4104         up the GC.
4105
4106 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4107
4108         * object-internals.h: Remove serialized culture fields from
4109         MonoInternalThread.
4110
4111         * icall-def.h, thread-types.h, threads.c: Remove serialized
4112         culture icalls.
4113
4114         * appdomain.c: Corlib version bump.
4115
4116 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
4117
4118         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
4119         Fixes #543133.
4120
4121 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4122
4123         * sgen-gc.c: Try to shorten the new section after a major
4124         allocation to avoid ever-growing sections.
4125
4126 2009-10-13  Martin Baulig  <martin@ximian.com>
4127
4128         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
4129         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
4130         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
4131         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4132
4133         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
4134
4135 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
4136
4137         * threadpool.c: fixed the order in which 'completed' and the wait
4138         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
4139         No need to use the wait_handle field of ASyncCall. Make sure the
4140         threadpool is active when adding a job or queueing an idle thread.
4141
4142 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
4143
4144         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
4145
4146         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
4147         when using --compile-all.
4148
4149 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4150
4151         * metadata.c (free_generic_class): Unregister the field_objects
4152         roots if we're using SGen.
4153
4154 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4155
4156         * reflection.c (mono_dynamic_image_free): Deregister the GC root
4157         for GenericParamTableEntry.gparam.
4158
4159 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4160
4161         * marshal.c: don't create the handle when calling. It is created later
4162         if needed.
4163
4164 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4165
4166         * sgen-gc.c: Warning fixes.
4167
4168 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4169
4170         * sgen-gc.c: New debug option "xdomain-checks", which scans the
4171         whole heap for cross-domain references before each collection.
4172
4173         * sgen-scan-object.h: The scan action can now use SCAN to scan the
4174         object.
4175
4176         * threadpool-internals.h, threadpool.c: New function
4177         mono_thread_pool_is_queue_array() for checking whether a given
4178         array is used as a (cross-domain) queue by the thread pool code.
4179
4180 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4181
4182         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
4183         searches the whole heap for objects containing a specific
4184         reference.  Only for debugging.
4185
4186 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4187
4188         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
4189
4190         * icall-def.h, threads.c, threads-types.h: New icalls for copying
4191         byte arrays between domains.
4192
4193 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4194
4195         * threadpool.c:
4196         * class-internals.h:
4197         * mono-perfcounters-def.h:
4198         * mono-perfcounters.c:
4199         -There is a list of idle threads
4200         -Each of those idle threads wait on their own WaitHandle instead
4201         of all of them using the same semaphore. When a new work item is
4202         added, the job is assigned directly to an idle thread or a newly
4203         created one if possible and then the handle for that thread is
4204         signaled. Compare that to the current approach where all the
4205         threads in the pool compete to dequeue a job from the same
4206         queue.
4207         -New struct ThreadPool that brings together the bunch of static
4208         variable for each threadpool (IO and regular).
4209         -New performance counters: # of items added and its rate per
4210         threadpool. The rate will be used later, perhaps together with
4211         other perf. counters, to decide when idle threads should exit.
4212
4213 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
4214
4215         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
4216         Fix typo on Windows build.      
4217         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
4218         
4219         Code is contributed under MIT/X11 license.
4220
4221 2009-09-25  Mark Probst  <mark.probst@gmail.com>
4222
4223         * object-internals.h: The Thread class is split up into Thread and
4224         InternalThread now.  We have exactly one InternalThread per
4225         thread, and at most one Thread per appdomain per thread.  Most
4226         data is stored in InternalThread.  All InternalThread objects live
4227         in the root domain.
4228
4229         * class-internals.h: Add internal_thread_class to MonoDefaults.
4230
4231         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
4232         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
4233         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
4234         resulting from the split of the Thread class.
4235
4236         * gc-internal.h: Prototype for new function for checking whether a
4237         thread is the finalizer thread.
4238
4239         * appdomain.c: Corlib version bump.
4240
4241 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4242
4243         * appdomain.c|h: Add a mono_domain_try_unload method which is
4244         equivalent to mono_domain_unload, except that it returns an exception
4245         instead of throwing it. Make mono_domain_unload use the
4246         mono_domain_try_unload method to avoid code-duplication.
4247
4248 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
4249
4250         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
4251         a problem.
4252
4253 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
4254
4255         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
4256         aborting when a conversion is not implemented.
4257
4258 2009-09-23  Miguel de Icaza  <miguel@novell.com>
4259
4260         * verify.c: when comparing culture strings, use g_ascii_strcmp
4261
4262         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
4263         when comparing public key tokens to use memcmp on 16 bytes.   I do
4264         not believe this ever worked as advertised in the past.
4265
4266         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
4267         which would have always failed earlier.
4268
4269 2009-06-25  Miguel de Icaza  <miguel@novell.com>
4270
4271         * gc.c: Raise a NullArgumentException if the object passed is
4272         null.
4273
4274 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
4275
4276         * image.c (mono_image_close): Atomically decrement the reference count and
4277         remove the image from the hash tables, to prevent another thread from seeing a
4278         dying MonoImage. Fixes #541194.
4279
4280 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4281
4282         * threadpool.c: actually use the minimum number of 'completion ports'
4283         (for us is just a potential worker thread).
4284
4285 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4286
4287         * threadpool.c: remove ares_htable. It does not make sense any more
4288         since the same objects are now stored in GC-tracked arrays while they are
4289         in the queue.
4290
4291 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4292
4293         * threadpool.c: increase the minimum length of the queues to 128.
4294         Remove warning.
4295
4296 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
4297
4298         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
4299         return the modified signature used by string ctors.
4300
4301 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
4302
4303         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
4304         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
4305         method, to be used by full-aot.
4306
4307 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
4308
4309         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
4310         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
4311         be known to be good.
4312
4313         * class.c (mono_class_init): Fail array types if their element type fails initialization
4314         as well.
4315
4316         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
4317         initialization, additionally we request the element_type vtable to be initialized as well.
4318
4319         This is fine and should not increase the working set in any meaningful way since it's reasonable
4320         to assume       that most code will create an array and eventually populate it, which will require the
4321         type's vtable to be initialized.
4322
4323         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
4324
4325 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
4326
4327         * normalization-tables.h : regenerated.
4328
4329 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4330
4331         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
4332         a leb128 encoding can take up to 5 bytes.
4333
4334 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4335
4336         * class.c (verify_class_overrides): Remove useless argument.
4337
4338         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
4339         before interface enumeration as this is no longer required.
4340
4341 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4342
4343         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
4344         used under mono_class_init context. This functions avoid any code path that
4345         calls mono_class_init, which leads it to be slow as some things like the interface
4346         bitmap are not available.
4347
4348         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
4349         of it's own broken version. Fixes the verifier part of #538588.
4350
4351         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
4352         API.
4353
4354 2009-09-15  Mark Probst  <mark.probst@gmail.com>
4355
4356         * class.c (mono_class_init): Always set an exception in a class if
4357         vtable setup fails.  Fixes #538577.
4358
4359         * generic-sharing.c: Raise an exception if mono_class_vtable()
4360         returns NULL.
4361
4362 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
4363
4364         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
4365         methods of vtypes, as they could be incorrectly shared with static methods
4366         taking an IntPtr argument.
4367
4368 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4369
4370         * domain.c:
4371         * object.c:
4372         * class-internals.h: renamed waithandle_class to
4373         manualresetevent_class.
4374         * marshal.c: propagate the exception if a remoting BeginInvoke call
4375         fails.
4376
4377 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4378
4379         * object.c: Properly handle vtable failures.
4380
4381 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4382
4383         * socket-io.c: Assert on vtable failure.
4384
4385         * mono-mlist.c: Assert on vtable failure.
4386
4387 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4388
4389         * marshal.c: Assert on vtable failure.
4390
4391 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4392
4393         * icall.c: Properly handle vtable failures.
4394
4395 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4396
4397         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4398
4399 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4400
4401         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4402
4403         * console-unix.c (do_console_cancel_event): Same.
4404
4405 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4406
4407         * class-internals.h: Add mono_class_vtable_full function that allows control
4408         if an exception should be raised or not.
4409
4410         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4411         to do what its documentation say, that is to return NULL and set exception_type on
4412         failure.
4413
4414         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4415         and change the code to honor it.
4416
4417 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4418
4419         * verify.c: Fix typo in error message.
4420
4421 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4422
4423         * security-core-clr.c: Fix default_platform_check so it can run
4424         the runtime coreclr tests (without an infinite recursion when
4425         throwing an exception).
4426
4427 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4428
4429         object.c (mono_delegate_ctor_with_method): Guard against null method.
4430
4431 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4432
4433         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4434         that should be replaced with error handling later.
4435
4436 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4437
4438         * marshal.c (mono_delegate_end_invoke): Fix warning.
4439
4440 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4441
4442         * loader.c (mono_field_from_token): Properly handle invalid
4443         dynamic tokens.
4444
4445 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4446
4447         * pedump.c (verify_image_file): Skip types that can't be
4448         decoded.
4449
4450 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4451
4452         * verify.c: Look for recursive valuetypes only against the
4453         type been initialized as this is a lot simpler and works.
4454
4455 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4456
4457         * verify.c: Ensure that fields are properly loaded before
4458         checking them.
4459
4460 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4461
4462         * object.c (mono_object_get_virtual_method) : Call 
4463           mono_cominterop_get_invoke if the object is a COM object.
4464
4465         Code is contributed under MIT/X11 license.
4466
4467 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4468
4469         * verify.c: Check for recursive valuetype definitions.
4470
4471 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4472
4473         Use inheritance-aware interface offsets. Inherited types use the same offsets
4474         of their parents. This reduce offset duplication in case more than one type in
4475         the inheritance tree explicitly implements the same interface.
4476
4477         This also removes a source of vtable bubbles found in #532409. An abstract type
4478         isn't required to provide abstract methods to all interfaces it implements, which
4479         resulted in a bubble with the previous scheme as the child would get a non-full
4480         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4481         should be fixed.
4482
4483         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4484         it's expected to not cause any significant increase beyond that.
4485
4486         * class.c (setup_interface_offsets): Compute super class iface offsets
4487         first to force sharing.
4488
4489         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4490         dumping only the relevant ones.
4491
4492         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4493         methods a new slot regardless if they belong to an interface or not. This allows
4494         an inherited type to override the iface method separately from the class one.
4495
4496 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4497
4498         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4499         applications that take less than 2s to execute.
4500         Bug #524984 fixed.
4501
4502 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4503
4504         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4505
4506         * object.c (mono_get_runtime_callbacks): New helper function to return
4507         the runtime callbacks.
4508
4509         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4510         mono_get_runtime_build_info () as the display name.
4511         
4512 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4513
4514         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4515         argument, since NEWARR expects a native int. Fixes #481559.
4516
4517 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4518
4519         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4520         against broken SRE methods.
4521
4522 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4523
4524         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4525         a NULL variable. Abort early on failure.
4526
4527 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4528
4529         * class.c (can_access_type): Fail visibility test for non nested
4530         types with nested visibility.
4531
4532 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4533
4534         * assembly.c (parse_public_key): Avoid allocating (and not 
4535         freeing) the public key array when it's not requested by the 
4536         caller.
4537         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4538         ves_icall_System_Threading_Thread_Thread_internal): Free 
4539         allocated memory on error.
4540
4541 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4542
4543         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4544
4545 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4546
4547         * class.c (mono_class_setup_fields): Remove duplicated local variable
4548         named gklass.
4549         Rename gklass to gtd to reflect the fact that it points to the generic
4550         type definition.
4551         Remove the duplicated call to mono_class_setup_fields on gtd and move
4552         the error check to the beginning.
4553
4554 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4555
4556         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4557         Remove cruft of the previous patch.
4558
4559 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4560
4561         * metadata-verify.c (verify_method_table): Check for abstract + final.
4562         Fixes #534175.
4563
4564 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4565
4566         * verify.c (verify_class_fields): Check for duplicate fields.
4567
4568 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4569
4570         * metadata-verify.c: Verify the typeref table for duplicates.
4571
4572 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4573
4574         This reverts r140936 and properly handles interfaces with static methods. The
4575         right fix is to ensure vtables without bubles which is an easier to verify
4576         constraint. We should avoid such special cases as of the reverted patch as those
4577         only make the runtime more brittle.
4578
4579         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4580         static methods on interfaces.
4581
4582         * class.c (setup_interface_offsets): Use the number of virtual methods when
4583         calculating interface offsets instead of the number of methods. This way we
4584         avoid bubles on the layout.
4585
4586 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4587
4588         * metadata-verify.c (verify_metadata_header): Some very smart
4589         obfuscators like to add extra stream headers. Ignore them.
4590
4591 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4592
4593         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4594         methods correctly.
4595
4596 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4597
4598         * metadata-verify.c: Verify for duplicated types.
4599
4600 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4601
4602         * metadata-verify.c (verify_typedef_table): Verify for nested types
4603         without an entry on the nested class table.
4604
4605 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4606
4607         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4608         <tom_hindle@sil.org>. Add locking around hash table accesses.
4609
4610 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4611
4612         * verify.c (mono_verifier_verify_class): Verify all interface if
4613         really are interfaces. Fixes #534184.
4614
4615 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4616
4617         * pedump.c: Initialize all types during metadata validation so we report
4618         errors only detected as part of class initialization.
4619
4620 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4621
4622         * metadata-verify.c (verify_method_table): PInvoke requires method to
4623         be static. Fixes #534189
4624
4625 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4626
4627         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4628         being NULL.
4629
4630 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4631
4632         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4633         for holes or bad methods. Fixes #525314.
4634
4635 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4636
4637         * class.c (setup_interface_offsets): Don't allocate slot
4638         for the same interface multiple times. This creates bubbles
4639         that waster space and make vtable verification harder.
4640
4641         The same interface get a slot multiple times since we need
4642         to get the closure of all implemented interfaces, which means
4643         the same interface is reported multiple times.
4644
4645 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4646
4647         * verify.c (mono_verifier_verify_class): Don't check the fields
4648         of generic instances since the context on which they got expanded
4649         might lead to false positives.
4650
4651         Such thing happens when a generic type is inflated in the context
4652         of a generic method and the inflated type of a field turns into a
4653         generic method argument, which causes the checking code to think
4654         it's an invalid class when it's not.
4655
4656 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4657
4658         * verify.c (mono_type_is_valid_in_context): Verify if type
4659         is NULL and remove duplicate test.
4660
4661 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4662
4663         * verify.c (mono_verifier_verify_class): Check fields for
4664         invalid generic arguments.
4665
4666 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4667
4668         * class.c (verify_class_overrides): Verify if for static
4669         and non virtual methods.
4670
4671 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4672
4673         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4674         Check for errors after retrieving the vtable.
4675
4676 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4677
4678         * class.c (mono_class_setup_vtable_general): Verify
4679         if method overrides are valid before processing them.
4680
4681 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4682
4683         * marshal.c (mono_array_to_lparray): Fix minimal build with
4684         cominterop disabled.
4685
4686         * marshal.c (mono_free_lparray): Same.
4687
4688 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4689
4690         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4691         the hash function for the ares_htable.
4692
4693 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4694
4695         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4696         bit for assembly flags. MS is ok with it but there is no spec anywhere
4697         on its mean
4698
4699 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4700
4701         * class.c (mono_class_create_from_typedef): Emit profiler events
4702         in all cases.
4703
4704 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4705
4706         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4707         Release memory on failure.
4708
4709 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4710
4711         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4712         to the internal API.
4713
4714         * metadata.c (get_constraints): Use a single-linked table as we don't
4715         traverse it backward. Fail and return FALSE if only of the contraint types
4716         is not found.
4717
4718         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4719         to mono_metadata_load_generic_param_constraints except for having a return value.
4720         This has to be done since the later is part of the public API.
4721
4722         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4723         and fail the type.
4724
4725         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4726         and fail the method.
4727
4728 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4729
4730         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4731         with MS broken behavior of emmitting EH section sizes without the
4732         header size added.
4733
4734 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4735
4736         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4737         memory until we're sure that we'll need it. This avoids leaking for
4738         broken types or duplicated instantiation.
4739
4740 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4741
4742         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4743         mistake.
4744
4745 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4746
4747         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4748         and expected size calculation.
4749
4750 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4751
4752         * class.c (mono_class_get_field_idx): Add fixme for broken
4753         behavior for types with multiple fields with the same name.
4754         I would rather fix it, but have no idea on how to generate
4755         such artifact for testing.
4756
4757 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4758
4759         * verify.c (verifier_load_field): We should allow references to
4760         fields to be made using the generic type definition. It's up to
4761         the loader system to fail invalid ops.
4762
4763         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4764         are invalid.
4765
4766 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4767
4768         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4769
4770         * metadata-internals.h: Fix declaration of 
4771         mono_metadata_interfaces_from_typedef_full.
4772
4773         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4774         heap_alloc_result parameter that controls if the result should be
4775         g_malloc'd.
4776
4777         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4778         array be g_malloc'd and properly document this public API function.
4779
4780 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4781
4782         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4783         remove METHOD_HEADER_TINY_FORMAT1.
4784
4785         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4786
4787         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4788
4789         Both spec and MS uses only 2 bits to enumerate the kind of header.
4790         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4791         is superfluous, only used for tiny headers with odd code lengths.
4792
4793         This change also make sure that mono doesn't wronly interpret bit 2
4794         of fat header flags, which is currently reserved.
4795
4796 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4797
4798         * metadata.c (do_mono_metadata_parse_type): Do error
4799         checking for element types. Don't abort if presented
4800         with a broken type kind.
4801
4802 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4803
4804         * metadata.c (mono_metadata_parse_method_signature_full):
4805         Gracefully fail bad vararg signatures.
4806
4807 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4808
4809         * profiler.c:
4810         * class.c: Fix warnings for uninitialized variables.
4811
4812 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4813
4814         * icall.c: Fix _NSGetEnviron method declaration warning.
4815
4816 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4817
4818         * icall.c:
4819         * reflection.c: Make bitwise checks explicit.
4820
4821 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4822
4823         * debug-helpers.c:
4824         * marshal.c: Fix printf warnings.
4825
4826 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4827
4828         * reflection.c (encode_cattr_value): Fix a warning.
4829
4830 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4831
4832         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4833         of array bounds.
4834
4835 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4836
4837         * loader.c (mono_method_signature): Don't assert on broken
4838         signature. Print a more useful error message.
4839
4840 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4841
4842         * loader.c (mono_method_get_marshal_info): Assert if
4843         signature is invalid. Bounds check stores to the
4844         mspecs array;
4845
4846 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4847
4848         * loader.c (field_from_memberref): Fix warning.
4849
4850 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4851
4852         * loader.c (mono_method_get_param_names): Check if signature
4853         is null. Don't store beyond the size of the name array.
4854
4855 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4856
4857         * loader.c (mono_get_method_constrained): Check if signature
4858         is null.
4859
4860 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4861
4862         * loader.c (mono_loader_set_error_bad_image): Improve
4863         error messages.
4864
4865 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4866
4867         * loader.c (mono_get_method_full): Convert an assertion
4868         into a loader error.
4869
4870 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4871
4872         * class-internals.h, class.c: Better naming and documentation.
4873
4874 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4875
4876         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4877         obj is NULL.
4878
4879 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4880
4881         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4882         parsing fails.
4883
4884 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4885
4886         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4887         errors with no class set.
4888
4889         * loader.c (field_from_memberref): If the field signature is of the wrong
4890         type fail with a MissingFieldException instead of a BadImageException as
4891         this is the behavior observed on MS. 
4892
4893 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4894
4895         * loader.c (field_from_memberref): Don't crash if either the field
4896         signature or the typespec class are invalid.
4897
4898 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4899
4900         * verify.c (verifier_load_field): Don't allow field related
4901         ops to reference fields on generic type definition.
4902
4903 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4904
4905         * metadata-verify.c: Add new warning level for errors specified
4906         by ECMA 335 but that MS ignores.
4907
4908         * metadata-verify.c (verify_method_table): Make compiler controled
4909         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4910         this check is safe because the end result will only be some visibility
4911         exceptions been thrown.
4912
4913 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4914
4915         * verify.c (get_boxable_mono_type): Don't allow the
4916         use of the generic type definition on boxed type positions.
4917
4918         Fixes #531237.
4919
4920 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4921
4922         * threadpool.c: Make sure no cross-domain references remain in
4923         ares_htable or the arrays that are thrown away when resizing.
4924
4925 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4926
4927         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4928         list of classes for which we have to unregister reflection_info
4929         with the GC and which are not in the namespace cache.
4930
4931         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4932         the class to the list.
4933
4934 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4935
4936         * domain.c (mono_domain_free): Unregister the GC roots in
4937         MonoDomain.
4938
4939 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4940
4941         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4942
4943 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4944
4945         * class.c: Add mono_class_get_field_from_name_full which does
4946         the same as mono_class_get_field_from_name but does check field
4947         signature as well.
4948
4949         * class-internals.h: Export mono_class_get_field_from_name_full as
4950         part of the internal API.
4951
4952         * loader.c (field_from_memberref): Search fields by name and signature
4953         as it's valid to have two fields with same name but different types.
4954
4955         Fixes #528055.
4956
4957 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4958
4959         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4960
4961         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4962
4963         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4964         System.Type.
4965
4966 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4967
4968         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4969
4970         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4971
4972 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4973
4974         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4975         to sgen-scan-object.h, which can be included and parameterized via
4976         macros.
4977
4978         * Makefile.am: sgen-scan-object.h added.
4979
4980 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4981
4982         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4983
4984 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4985
4986         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4987         before clearing a domain in the GC.
4988
4989 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4990
4991         * exception.c (mono_exception_from_name_domain): Actually create
4992         the exception in the specified domain.
4993
4994         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4995         OutOfMemoryException a bit later so that the domain is inialized
4996         "enough" that it works.
4997
4998 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4999
5000         * threads.c (thread_cleanup): Clean up the cached_culture_info
5001         array to prevent cross-domain references.
5002
5003 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
5004
5005         * metadata.c: more documentation for MonoType accessors.
5006
5007 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
5008
5009         Fix incorrect size definitions where the tail array isn't a list
5010         of pointers
5011         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
5012         define size.
5013         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
5014         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
5015         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
5016
5017 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5018
5019         * reflection.h:
5020         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
5021
5022 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5023
5024         * metadata.c:
5025         * loader.c:
5026         * metadata-internals.h:
5027         * method-builder.c:
5028         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
5029
5030 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5031
5032         * cominterop.c:
5033         * metadata.c:
5034         * metadata.h:
5035         * loader.c:
5036         * marshal.c:
5037         * reflection.c: #define for sizeof in MonoType and
5038         MonoMethodSignature.
5039
5040 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5041
5042         * domain.c:
5043         * domain-internals.h: add and use #define's instead of sizeof()
5044         for MonoJitInfo and MonoJitInfoTable.
5045
5046 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5047
5048         * object.c:
5049         * class.h: use #define instead of sizeof() for MonoRemoteClass.
5050
5051 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5052
5053         * metadata.c:
5054         * metadata.h:
5055         * object.c:
5056         * class-internals.h:
5057         * generic-sharing.c:
5058         * marshal.c: use a #define instead of sizeof() for a few
5059         structures that use a zero-length array.
5060
5061 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5062
5063         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
5064         to handle inflated generic methods.
5065
5066         * appdomain.c: Bump corlib version.
5067
5068         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
5069         instances.
5070
5071         * reflection.c (fixup_method): Same
5072
5073         * reflection.c (resolve_object): Same.
5074
5075         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
5076         g_error and a decent message.
5077
5078 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
5079
5080         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
5081         from the object because it could not yet be available globally
5082         (it happens if the profiler tries to create a gchandle on the
5083         MonoThread object of a thread that is still registering itself
5084         with the runtime).
5085
5086 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
5087
5088         * reflection.c (mono_generic_class_get_object): Initialized the
5089         managed type arguments array.
5090
5091         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
5092
5093         * appdomain.c: Bump corlib version.
5094
5095 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
5096
5097         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
5098         #527902.
5099
5100 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
5101
5102         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5103         Avoid a crash if synch_cs is not set.
5104         
5105         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5106         Handle the case when the handle is 0.
5107
5108         * appdomain.c: Bump corlib version.
5109
5110 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
5111
5112         * reflection.c (mono_type_get_object): Fix a warning.
5113
5114 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5115
5116         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
5117         descriptor here.  We assume it's already been computed.
5118
5119         * generic-sharing.c (instantiate_other_info): Compute the GC
5120         descriptor for info type MONO_RGCTX_INFO_KLASS.
5121
5122 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5123
5124         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
5125         type, so don't use MONO_OBJECT_SETREF to set a field.
5126
5127 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5128
5129         * gc.c: We were missing one case where invoking a finalizer would
5130         not reset the domain.  Also, in the finalizer thread loop, assert
5131         that we're in the root domain.
5132
5133 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5134
5135         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
5136         if the type is not an array.
5137
5138 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5139
5140         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
5141         method bound to the declaring type of the method. Raise an exception
5142         if the type is not a generic param.
5143
5144 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5145
5146         * class.c (print_unimplemented_interface_method_info): Print the
5147         full type name.
5148
5149         * class.c (mono_class_setup_vtable_general): When dealing with a
5150         generic instance first check if the generic type definition is
5151         not broken.
5152
5153 2009-02-11 Tom Hindke <tom_hindle@sil.org>
5154
5155         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
5156
5157         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
5158
5159         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
5160
5161         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
5162
5163         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
5164
5165         Code is contributed under MIT/X11 license
5166
5167 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
5168
5169         * verify.c: Fix naming of stelem and ldelem.
5170
5171 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5172
5173         * generic-sharing.c: Replace the templates lock with the loader
5174         lock because of very hard to resolve deadlock issues.
5175
5176 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
5177
5178         * icall.c (ves_icall_Type_GetMethodsByName): Use 
5179         mono_class_get_vtable_size () instead of accessing klass->vtable_size
5180         directly. Fixes #525338.
5181
5182         * class.c (mono_class_get_vtable_size): New helper function.
5183
5184         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
5185         the field belongs to the type. Fixes #525733.
5186
5187 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5188
5189         * sgen-gc.c: When we stop a thread and its stack top is not within
5190         its allocated stack (because it's in an altstack signal handler),
5191         restart it and stop it again, until it is.
5192
5193 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5194
5195         * sgen-gc.c: Take a thread's stack top and registers from the
5196         sigcontext in the suspend signal handler.
5197
5198         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
5199         stuff to sgen-archdep.h.
5200
5201         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
5202         caller, because have code in sgen-archdep.h to acquire that data.
5203
5204 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
5205
5206         * profiler.c, profiler.h, profiler-private.h:
5207         Added support for keeping track of code chunks and buffers.
5208
5209 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
5210
5211         * metadata-verify.c: Fix endianness problems on decoding functions.
5212         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
5213
5214 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5215
5216         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
5217         schema for vectors and one dimension SZARRAY.
5218
5219 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5220
5221         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
5222         schema for vectors and one dimension SZARRAY.
5223
5224 2009-07-27  Mark Probst  <mark.probst@gmail.com>
5225
5226         * icall-def.h, thread-types.h, threads.c: New separate icalls for
5227         Interlocked.(Compare)Exchange with object arguments, which invoke
5228         write barriers.
5229
5230 2009-07-26  Miguel de Icaza  <miguel@novell.com>
5231
5232         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
5233         passed invalid arguments.   Fixes another crasher in the
5234         Silverlight test suite.
5235
5236         * class.c (mono_class_array_element_size): Return 0 for the size
5237         of the class;  This fixes the crasher exposed by :
5238
5239         typeof (void).MakeArrayType ();
5240
5241         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
5242         if there is no method to dereference.    Put all the code that
5243         depends on this inside the if (method) block.
5244
5245         This fixes the crasher exposed by Microsoft's Silvelright CLR test
5246         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
5247
5248         With this change, we pass the test.
5249         
5250         * reflection.c (mono_reflection_sighelper_get_signature_local):
5251         Only dereference the assembly if it has been set.    Fixes a
5252         crasher exposed by #525328
5253
5254 2009-07-25  Mark Probst  <mark.probst@gmail.com>
5255
5256         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
5257         don't perform the store in mono_gc_wbarrier_generic_nostore().
5258         Remove the second argument (value), which is not needed.
5259
5260 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
5261
5262         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
5263         the build.
5264
5265         * boehm-gc.c: Ditto.
5266         
5267 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5268
5269         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
5270         not perform the store itself.  Introduce
5271         mono_gc_wbarrier_generic_nostore(), which is the same as
5272         mono_gc_wbarrier_generic_store(), except it doesn't perform the
5273         store.
5274
5275 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5276
5277         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
5278         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
5279         we still need the memcpy().
5280
5281 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5282
5283         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
5284         so that big arrays are handled correctly.  Always use
5285         safe_object_get_size() to calculate array object sizes, which
5286         takes bounds into account.
5287
5288 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5289
5290         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
5291         GC descriptor is computed before we use it.
5292
5293 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5294
5295         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
5296         write barrier if necessary.
5297
5298 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5299
5300         * icall-def.h, icall.c, thread-types.h: New separate icall for
5301         VolatileWrite(object&,object) that uses a write barrier.
5302
5303         * console-unix.c, file-io.c, icall.c, threads.c: Use write
5304         barriers in icalls which write to "ref" or "out" arguments.
5305
5306 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
5307
5308         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
5309         handler in a separate icall, to reduce the size of the wrappers.
5310
5311 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5312
5313         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
5314
5315 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5316
5317         * metadata-verify.c (parse_field): Allow byref field.
5318
5319         * metadata-verify.c (parse_locals_signature): Allow byref locals.
5320
5321         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
5322
5323 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5324
5325         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
5326         Fixes #522784.
5327
5328 2009-07-20  Robert Jordan  <robertj@gmx.net>
5329
5330         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
5331         Fix invalid IL in valuetype handling (STOBJ must push the
5332         corresponding class). Fixes bug #523149.
5333
5334         Code is contributed under MIT/X11 license.
5335
5336 2009-07-20  Geoff Norton  <gnorton@novell.com>
5337
5338         * gc.c: Use proper semaphores where available on posix and darwin.
5339
5340 2009-07-19  Geoff Norton  <gnorton@novell.com>
5341
5342         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
5343
5344 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
5345
5346         * refletion.c (is_sre_usertype): Change name to is_usertype and
5347         invert it's result so it returns true if the type is an user type
5348         and not the opposite.
5349
5350         * reflection.c (is_*_type): Change all of those to use new macro
5351         check_corlib_type_cached that cached the type lookup so we don't
5352         need to do string comparisons all the type. Changed the signature
5353         to take a MonoClass instead.
5354
5355         * reflection.c: Change mono_image_create_token and resolve_object
5356         to use is_sre_* functions.
5357
5358 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5359
5360         * sgen-gc.c: Check for writes to the stack in the managed
5361         wbarrier as well.
5362
5363 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5364
5365         * sgen-gc.c: When a thread is unregistered, don't free its remsets
5366         but put them on a list which is processed with the other thread's
5367         remsets.
5368
5369 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5370
5371         * sgen-gc.c: Fix and enable the internal allocator instead of
5372         using malloc/free (which causes deadlocks).
5373
5374 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5375
5376         * refletion.c: Fix builds with SRE disabled by adding a minimal
5377         implementation of mono_reflection_type_get_handle.
5378
5379 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5380
5381         * refletion.c: Make mono_reflection_type_get_handle non static.
5382
5383         * object-internals.h: Export mono_reflection_type_get_handle.
5384
5385         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5386         unmanaged handle using mono_reflection_type_get_handle.
5387
5388 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5389
5390         * refletion.c: Replace all reads of MonoReflectionType::type with
5391         calls to mono_reflection_type_get_handle. Only the functions that
5392         deal with constructing TypeBuilder::type have not been changed
5393         because they have to deal with NULL values.
5394
5395         This is a first step into supporting reflection types that don't
5396         map directly into their unmanaged counterpart.
5397
5398 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5399
5400         * metadata-verify.c (parse_locals_signature): Don't complain
5401         on signature with zero locals since MS generates it and doesn't
5402         bother with.
5403
5404 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5405
5406         * reflection.c (mono_image_get_array_token): Resolve return
5407         type using mono_reflection_type_get_handle.
5408
5409         * reflection.c (mono_image_get_array_token): Resolve array method
5410         parent type using mono_reflection_type_get_handle.
5411
5412 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5413
5414         * reflection.c (mono_image_basic_init): Applied patch from
5415         <Dax@daxxfiles.net>. Set the public key token from the assembly
5416         builder. Fixes #518909.
5417
5418         * appdomain.c: Bump corlib version.
5419
5420 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5421
5422         * class.c (mono_class_needs_cctor_run): Make this return false if
5423         the class has no cctor.
5424
5425 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5426
5427         * sgen-gc.c: When the minor GC needs to allocate a new section,
5428         invoke the major GC afterwards.
5429
5430 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5431
5432         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5433           Applying the window_style field to the SHELLEXECUTEINFO struct.
5434
5435         Code is contributed under MIT/X11 license.
5436
5437 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5438
5439         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5440         locking earlier.  Fix it in the managed allocator by making sure
5441         that no thread is stopped there before the GC runs.  If we do stop
5442         a thread there, we restart it and let it run a but, until it stops
5443         somewhere else.
5444
5445         * gc-internal.h, gc.c: Function for getting the IP from a signal
5446         context via a function registered by mini.
5447
5448 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5449
5450         * object-internals.h (MonoIntPtr): New structure describing a boxed
5451         IntPtr.
5452
5453         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5454         returns. Fixes #519953.
5455
5456         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5457
5458 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5459
5460         * class-internals.h, generic-sharing.c: New RGCTX info type for
5461         getting a remoting invoke with check wrapper.
5462
5463 2009-07-07  Geoff Norton  <gnorton@novell.com>
5464
5465         * icall-def.h: Fix the enable-minimal build.
5466
5467 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5468
5469         * object-internals.h: Add MonoReflectionDerivedType.
5470
5471         * reflection.c: Implement support for PointerType.
5472         Fixed tons of warnings.
5473
5474 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5475
5476         * object-internals.h: Add MonoReflectionByRefType.
5477
5478         * reflection.c: Implement support for ByRefType.
5479
5480 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5481
5482         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5483
5484         * object-internals.h: Add MonoReflectionArrayType and
5485         mono_reflection_create_unmanaged_type.
5486
5487         * reflection.c: Implement support for ArrayType.
5488
5489 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5490
5491         * metadata-verify.c (is_valid_method_header): Parse EH block
5492         flags correctly.
5493
5494 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5495
5496         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5497         processing the disappearing links, and process disappearing links
5498         in a loop until no new objects are copied.
5499
5500 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5501
5502         * object.c (handle_enum): Invoke the write barrier when copying
5503         value type instances.
5504
5505         * sgen-gc.c: Register remsets for unmanaged write barriers only
5506         when the address written to is actually on the heap.  This makes
5507         set_value() in object.c work without requiring that the result be
5508         on the heap.
5509
5510 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5511
5512         The runtime wrappers are all bound to a given type that must
5513         exist in the same image. For regular images we use the <Module>
5514         type, which is required to exist for all images.
5515
5516         The <Module> type can't be used for dynamic images because it
5517         might not exist at the time the wrapper is required, so we create
5518         a synthetic type to use instead.
5519
5520         The current code works because of the 2 stage setup of MonoClass,
5521         but once this is gone it will no longer work.
5522
5523         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5524
5525         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5526
5527         * object-internals.h: Export mono_image_set_wrappers_type icall
5528         as part of the internal API.
5529
5530         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5531         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5532
5533         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5534         image wrappers_type to the provided value.
5535
5536 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5537
5538         * appdomain.c (deregister_reflection_info_roots): No need
5539         to use the image lock here.
5540
5541 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5542
5543         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5544
5545 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5546
5547         * threads.c: Store the thread start argument in a hash table instead of
5548         registering it as a root, as libgc doesn't support unregistering roots
5549         under windows, leading to 'too many root sets' errors when many threads
5550         are created.
5551
5552         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5553         shutdown, they can still be referenced by the other dying objects.
5554         Fixes #514506.
5555
5556 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5557
5558         * socket-io.c: DontLinger does not allow LingerOptions.
5559
5560 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5561
5562         * metadata-verify.c: The spec doesn't mention that it's possible to add
5563         custom attribute to a generic parameter. Fixed.
5564
5565 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5566
5567         * class.c (inflate_generic_type): Don't crash while trying to output a message
5568         on why we're aborting.
5569
5570 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5571
5572         * socket-io.c: DontLinger can take an int or a boolean too.
5573
5574 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5575
5576         * gc.c: check for a null argument to SuppressFinalize () and
5577         ReRegisterForFinalize ().
5578
5579 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5580
5581         * loader.c (method_from_methodspec): Call into the verifier to check
5582         the signature.
5583
5584         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5585
5586         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5587         part of the internal API.
5588
5589 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5590
5591         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5592         the signature.
5593
5594         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5595
5596         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5597         part of the internal API.
5598
5599 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5600
5601         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5602         the signature.
5603
5604         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5605         blob verification.
5606
5607         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5608         part of the internal API.
5609
5610 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5611
5612         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5613         when doing basic verification. 
5614
5615         This check must be done since the runtime peeks into signatures in much
5616         more places than it does decoding so it makes sense to ensure that all
5617         pointers to blob objects are well formed.
5618
5619 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5620
5621         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5622         Use proper overflow dectection. Fix usage of it.
5623
5624 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5625
5626         * loader.c (field_from_memberref): Call into the verifier to check
5627         the signature.
5628
5629         * loader.c (mono_method_get_signature_full): Same.
5630
5631         * loader.c (method_from_memberref): Same.
5632
5633         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5634
5635         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5636         part of the internal API.
5637
5638 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5639
5640         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5641         or unloaded, still return an AsyncResult, but don't add it to the
5642         threadpool.
5643
5644 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5645
5646         * threads.c: fix missing colon when DEBUG is defined.
5647
5648 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5649
5650         * threadpool.c: Don't add new calls to a threadpool if the domain
5651         of the call is unloading or unloaded.  When dequeuing a job, null
5652         the reference in the queue.
5653
5654 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5655
5656         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5657         generation if an object was moved.
5658
5659 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5660
5661         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5662           parameters of type SAFEARRAY[VARIANT].
5663
5664         * reflection.c (encode_marshal_blob): Properly generate element type
5665           (SafeArraySubType marshal attribute option).
5666
5667         Code is contributed under MIT/X11 license.
5668
5669 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5670
5671         * reflection.c: in mono_method_clear_object () really ensure all the
5672         objects are removed.
5673
5674 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5675
5676         * loader.c (mono_method_signature): Call into the verifier to check
5677         the method signature.
5678
5679         * metadata-verify.c (verify_method_table): Move signature verification
5680         to verify_method_table_full.
5681
5682         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5683
5684         * verify-internals.h: Export mono_verifier_verify_method_signature as
5685         part of the internal API.
5686
5687 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5688
5689         * loader.c (mono_method_get_header): Call into the verifier to
5690         check the method header.
5691
5692         * metadata-verify.c: Add mono_verifier_verify_method_header.
5693
5694         * verify-internals.h: Export mono_verifier_verify_method_header as
5695         part of the internal API.
5696
5697 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5698
5699         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5700         check the field signature. Replace an assert with an explicit check.
5701
5702         * class.c (mono_class_setup_fields): Call into the verifier to check
5703         the field signature.
5704
5705         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5706
5707         * verify-internals.h: Export mono_verifier_verify_field_signature as
5708         part of the internal API.
5709
5710 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5711
5712         * class.c (mono_class_find_enum_basetype): Simplify this function
5713         by moving code outside of the loop and not decoding static fields.
5714
5715 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5716
5717         * metadata-verify.c (verify_typedef_table): Check the extends
5718         token here. Move to here a flags check from verify_typedef_table_full.
5719
5720 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5721
5722         * metadata-verify.c (is_valid_method_header): Fix a warning.
5723
5724         * metadata-internals.h (MonoImage): Remove the unused 
5725         static_rgctx_invoke_wrapper_cache.
5726
5727         * image.c marshal.c: Ditto.
5728
5729 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5730
5731         * image.c (do_mono_image_load): Enable table data verification.
5732
5733 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5734
5735         * metadata-verify.c (is_valid_constant): Fix nullref check.
5736
5737 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5738
5739         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5740
5741 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5742
5743         * sgen-gc.c: Managed allocation with pthreads TLS.
5744
5745         * threads.c, threads-types.h: Functions for the JIT to tell the
5746         runtime whether it supports the MONO_TLS opcode.
5747
5748 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5749
5750         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5751         without methods.
5752
5753 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5754
5755         * metadata-verify.c (is_valid_constant): Fix the string length check.
5756         Use safe overflow checking. Add decent error messages.
5757
5758 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5759
5760         * metadata-verify.c: Move remaininh blob checks to the offline
5761         verification path.
5762
5763 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5764
5765         * metadata-verify.c: Move more blob checks to the offline verification
5766         path.
5767
5768 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5769
5770         * object-internals.h : Adding interrupt_on_stop field.
5771
5772         * threads.c (mono_thread_request_interruption) : On Windows exit the
5773           thread if interrupt_on_stop is set.
5774
5775         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5776          Removing old interrupt logic and setting the interrupt_on_stop for the
5777          thread when calling accept.
5778
5779         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5780          setting the interrupt_on_stop for the thread when calling accept.
5781
5782         Contributed under MIT/X11 license.
5783
5784 2009-06-20  Martin Baulig  <martin@ximian.com>
5785
5786         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5787
5788 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5789
5790         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5791         running in no-exec mode.
5792
5793 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5794
5795         * metadata-verify.c (verify_method_table): Move header
5796         checking to verify_method_table_full.
5797
5798         * metata-verify.c (mono_verifier_verify_full_table_data):
5799         Call verify_method_table_full.
5800
5801 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5802
5803         * metadata-verify.c (verify_field_table): Move signature
5804         checking to verify_field_table_full.
5805
5806         * metata-verify.c (mono_verifier_verify_full_table_data):
5807         Call verify_field_table_full.
5808
5809 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5810
5811         * metadata-verify.c (verify_typedef_table): Move remaining
5812         stuff to verify_typedef_table_full.
5813
5814 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5815
5816         * metadata-verify.c: Kill is_corlib from VerifyContext.
5817         It is only used by the offline mode.
5818         So we better remove it from the runtime path.
5819
5820 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5821
5822         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5823         function that perform the offline metadata verification steps.
5824
5825         * metadata-verify.c (verify_typedef_table): Move some checks to
5826         verify_typedef_table_full and make it been called by new function
5827         mono_verifier_verify_full_table_data.
5828
5829         * pedump.c: Call mono_verifier_verify_full_table_data.
5830
5831         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5832         part of the internal API.
5833
5834 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5835
5836         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5837         check.
5838
5839         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5840         flags bits. SupportLastError was confused as bit 7 instead of 6.
5841
5842         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5843         to check against the module ref table instead of module.
5844
5845         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5846
5847         * pedump.c: Call mono_image_load_names.
5848
5849 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5850
5851         * image.c: Extract mono_image_load_names from do_mono_image_load.
5852
5853         * metadata-internals.h: Export mono_image_load_names as part of
5854         the internal API.
5855         
5856 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5857
5858         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5859         first, as it could reference data in the other caches.
5860
5861 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5862
5863         * metadata-verify.c: Finished with method header verification.
5864
5865 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5866
5867         * metadata-verify.c: Added more header verification code.
5868         Now only EH clauses are missing.
5869
5870 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5871
5872         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5873         for return values.
5874
5875 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5876
5877         * metadata-verify.c: Initial method header verification.
5878
5879 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5880
5881         * metadata-verify.c (verify_import_table): The IAT contents
5882         might end been patched by the windows DL when running with
5883         coree enabled.
5884
5885 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5886
5887         * class.c (mono_class_from_typeref): If the enclosing type is not
5888         found return null instead of crashing. Fixes #508487.
5889
5890 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5891
5892         * normalization-tables.h : updated to the latest unicode charcter
5893           data.
5894         * appdomain.c : bump corlib version.
5895
5896 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5897
5898         * class.c (mono_class_from_name): Fix support for assembly references
5899         in the EXPORTEDTYPE table. Fixes #511704.
5900
5901 2009-06-13  Geoff Norton  <gnorton@novell.com>
5902
5903         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5904         assembly in the target domain.
5905
5906 2009-06-12  Robert Jordan  <robertj@gmx.net>
5907
5908         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5909         because "this" of the managed signature has become an
5910         ordinary parameter in the unmanaged signature.
5911
5912 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5913
5914         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5915         field for owner-less generic containers.
5916
5917         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5918         image field of the owner-less generic containers created here.
5919
5920         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5921         contain is ownerless until the caller sets its owner.
5922
5923         * metadata.c (type_in_image): Handle owner-less generic containers
5924         correctly.
5925         
5926 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5927
5928         * image.c (mono_image_close): Support debug_assembly_unload for
5929         dynamic images too.
5930
5931 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5932
5933         * class.c: Fix some typos in comments.
5934
5935 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5936
5937         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5938
5939         * threads.c (mono_thread_execute_interruption): Avoid creating the
5940         abort exception object while holding the synch_cs lock.
5941
5942 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5943
5944         * metadata-verify.c: Verify basic cattr content.
5945
5946 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5947
5948         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5949         nested types.
5950         
5951         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5952         support for nested types. Fixes #511704.
5953
5954 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5955
5956         * metadata-verify.c: Verify methodspec signatures.
5957
5958 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5959
5960         * metadata-verify.c: Verify typespec signatures.
5961
5962 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5963
5964         * metadata.c (free_inflated_method): Call 
5965         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5966
5967 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5968
5969         * mono-config.c: Small change to report the PPC64/ILP32 model.
5970
5971 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5972
5973         * metadata-verify.c (parse_type): Check szarray.
5974
5975 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5976
5977         * metadata-verify.c (parse_type): Check fnptr.
5978
5979 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5980
5981         * metadata-verify.c (parse_type): Check generic instances.
5982
5983 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5984
5985         * metadata-verify.c (parse_type): Check array shape.
5986
5987 2009-06-05  Robert Jordan  <robertj@gmx.net>
5988
5989         * class.c (mono_class_create_from_typedef): Check only for
5990         mscorlib's System.Array.
5991
5992 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5993
5994         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5995         and generic params. 
5996
5997         * metadata-verify.c (parse_field): Check the signature.
5998
5999 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6000
6001         * metadata-verify.c: Implement locals signature check.
6002
6003 2009-06-04  Marek Safar  <marek.safar@gmail.com>
6004
6005         * domain.c: Add .NET 4.0 Beta 1 version.
6006
6007 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
6008
6009         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
6010           For QueryInterface on CCWs consider the base class
6011           interfaces as well.
6012
6013         Code is contributed under MIT/X11 license.
6014
6015 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6016
6017         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
6018
6019         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
6020         used.
6021
6022         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6023         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
6024
6025         * generic-sharing.c (inflate_other_data): Ditto.
6026         
6027 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
6028
6029         * metadata-verify.c: Implement property signature check.
6030
6031 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6032
6033         * sgen-gc.h: Register saving support for PPC.
6034
6035 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6036
6037         * sgen-gc.c: Fixed a pthread TLS screwup.
6038
6039 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6040
6041         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
6042         supported.
6043
6044 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6045
6046         * sgen-gc.c: Disable TLA and managed allocation if the __thread
6047         keyword is not supported.
6048
6049 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6050
6051         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
6052         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
6053         the inflated method is freed. Fixes #508389.
6054
6055         The code is contributed under the MIT/X11 license.
6056         
6057 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
6058
6059         * marshal.c (get_wrapper_target_class): New helper function.
6060         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
6061         the <Module> class of the image. Fixes #509049.
6062
6063 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6064
6065         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
6066         Check if the thread was interrupted and proccess it straight away.
6067         Makes abortion much more responsive.
6068
6069 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6070
6071         * threads.c (mono_thread_execute_interruption): Use atomic cas with
6072         MonoThread::interruption_requested to match it's counterpart.
6073
6074         Fixes a hang in abort-stress-1 on a 2 core x86.
6075
6076         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
6077         Fix warning.
6078
6079 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6080
6081         Change MonoImage::name_cache to be protected by the image lock
6082         instead of the loader lock.
6083
6084         * appdomain.c (deregister_reflection_info_roots): Protect access
6085         to name_cache.
6086
6087         * class.c (mono_image_init_name_cache): Change from the loader lock
6088         to the image lock. Check if the cache wasn't already created.
6089
6090         * class.c: Change from the loader to the image lock.
6091
6092         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
6093         the code to hold the image lock while iterating over name_cache and
6094         not go into mono_array_new holding it.
6095
6096         * metadata-internals.h: Add a comment about this change.
6097
6098 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6099
6100         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
6101         Under the 2.0 profile raise the loader error.
6102
6103         Fixes #508532.
6104
6105 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6106
6107         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
6108         of ldind opcode for generic instances so we don't fail for direct wrappers.
6109         This only affect direct calls.
6110
6111 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
6112
6113         * reflection.c (create_dynamic_mono_image): Fix warnings.
6114
6115         * generic-sharing.c (other_info_equal): Ditto.
6116         
6117 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6118
6119         * metadata-verify.c: Implement field signature check.
6120
6121 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6122
6123         * metadata-verify.c: Implement standalone signature check.
6124
6125 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
6126
6127         * metadata-verify.c: Implement methodref signature check.
6128
6129 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
6130
6131         * object-internals.h (MonoRuntimeCallbacks): New structure containing
6132         callbacks supplied by the runtime.
6133
6134         * object.c (mono_install_callbacks): New internal function to install
6135         the callbacks.
6136
6137         * object.c (mono_create_ftnptr): Move the implementation of this to
6138         mini/.
6139
6140         * object.c (mono_get_addr_from_ftnptr): Ditto.  
6141
6142 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6143
6144         * metadata-verify.c (parse_return_type): Proper byref check.
6145         * metadata-verify.c (is_valid_method_signature): Check for zero arity
6146         generic signatures and method params.
6147
6148 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6149
6150         * metadata-verify.c (decode_signature_header): Fix bounds check.
6151
6152         * metadata-verify.c (parse_custom_mods): Check custom mods.
6153
6154         * metadata-verify.c (parse_type): Do initial basic verification
6155         of valid values.
6156         
6157         * metadata-verify.c (is_valid_method_signature): Parse the generic
6158         param count.
6159
6160 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
6161
6162         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
6163         discarded based on their most specific definition so we set the method_slots
6164         array before checking if the method is acceptable or not.
6165
6166         Fixes #506757.
6167
6168 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6169
6170         * icall.c: Free the old array when resizing a mono_ptr_array.
6171
6172 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6173
6174         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
6175         for the hashes whose keys are managed objects.
6176
6177 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6178
6179         * object-internals.h, threads.c: Set the execution context on
6180         thread start here, not in corlib.
6181
6182         * appdomain.c: Bump corlib version.
6183
6184 2009-05-27  Martin Baulig  <martin@ximian.com>
6185
6186         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
6187         if `_mono_debug_using_mono_debugger' is set to make things work
6188         properly when embedding Mono.
6189
6190 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6191
6192         * class.c (mono_class_setup_fields): Don't mark simd types as having
6193         16 bytes alignment as the whole runtime doesn't support.
6194
6195 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6196
6197         * metadata-verify.c (safe_read): Use endian safe read macros.
6198
6199 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
6200
6201         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
6202         it is read-only when using full aot.
6203
6204 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6205
6206         * metadata-verify.c (is_valid_method_signature): Verify parts
6207         of the return type. Provide an error message in case of failure.
6208
6209 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6210
6211         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
6212
6213 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6214
6215         * metadata-verify.c: Include the size prefix in the bounds check.
6216
6217 2009-05-22  Miguel de Icaza  <miguel@novell.com>
6218
6219         * icall.c: Remove warnings.
6220
6221         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
6222         prevent auto-detection based on GCC defines.
6223
6224         Add PS3
6225
6226         * metadata-verify.c: Do not include signal.h
6227
6228         * generic-sharing.c, marshal.c: Add returns to avoid some warning
6229         messages.  Not sure why the g_assert_not_reached is not enough to
6230         quiet the compiler.
6231         
6232
6233         * appdomain.c: Remove code that is not used when
6234         DISABLE_SHADOW_COPY is set.
6235
6236         * image.c: use g_getenv
6237
6238 2009-05-21  Miguel de Icaza  <miguel@novell.com>
6239
6240         * reflection.c: Remove code that it not used with
6241         DISABLE_REFLECTION_EMIT is defined.
6242
6243 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
6244
6245         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
6246         invoke wrappers.
6247
6248 2009-05-20  Miguel de Icaza  <miguel@novell.com>
6249
6250         * socket-io.c
6251         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
6252         the ifdef here and instead put that on io-layer
6253
6254 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6255
6256         * metadata-verify.c: Verify the generic param constraint table.
6257
6258 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6259
6260         * metadata-verify.c (verify_generic_param_table): Fix
6261         thinko on the valid flags bits for generic params.
6262
6263 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6264
6265         * metadata-verify.c: Verify the methodspec table.
6266
6267 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6268
6269         * metadata-verify.c: Verify the generic param table.
6270
6271 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6272
6273         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
6274
6275 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6276
6277         * sgen-gc.c: Use generation enum more consistently and use the
6278         correct generation in mono_gc_register_for_finalization().
6279
6280 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6281
6282         * metadata-verify.c: Verify the nested class table.
6283
6284 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6285
6286         * metadata-verify.c: Verify the manifest resource table.
6287
6288 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
6289
6290         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
6291
6292 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
6293
6294         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
6295         wrappers, this is now done in the JIT.
6296         
6297         * class.c (mono_set_generic_sharing_supported): New internal function.
6298         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
6299
6300 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6301
6302         * metadata-verify.c: Verify the exported type table.
6303
6304 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
6307
6308 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6309
6310         * metadata-verify.c: Verify the file table.
6311
6312 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6313
6314         * metadata-verify.c (verify_assembly_table): Fix an error message.
6315
6316         * metadata-verify.c: Verify the assemblyref table.
6317
6318 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6319
6320         * metadata-verify.c (verify_assembly_table): Fix the valid
6321         bits mask for flags.
6322
6323 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
6324
6325         * debug-helpers.c (mono_method_full_name): Print generic parameters of
6326         generic methods as well.
6327
6328 2009-05-15  Geoff Norton  <gnorton@novell.com>
6329
6330         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
6331         use-case and is significantly more performant than the wapi layer.
6332
6333 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6334
6335         * metadata-verify.c: Verify the assembly table.
6336
6337 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6338
6339         * metadata-verify.c: Fix rows limit check.
6340
6341 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6342
6343         * metadata-verify.c: Verify the fieldrva table.
6344
6345 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6346
6347         * sgen.c: Speed up weak links and finalizers by grouping them by
6348         generation.
6349
6350 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6351
6352         * marshal.c (delegate_hash_table_add): When overwriting an entry,
6353         free the old GCHandle (only applies to SGen).
6354
6355 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
6356
6357         * loader.c (mono_get_method_from_token): Avoid the expensive call to
6358         mono_metadata_load_generic_params () for non-generic methods.
6359
6360 2009-05-12  Mark Probst  <mark.probst@gmail.com>
6361
6362         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
6363         New function for returning a monitor's weak link if it has one.
6364
6365         * sgen-gc.c: Remove an object's monitor's weak link (if it has
6366         one) when clearing a domain.  These can still be around because
6367         the object might not have been collected.
6368
6369 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6370
6371         * gc.c: Fix a warning.
6372
6373 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6374
6375         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6376         prevous wait that resulted in a deadlock on Windows when initializing
6377         the runtime form DllMain. Also results in improved startup time.
6378         (finalizer_thread): Get rid of thread_started_event.
6379         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6380         resulting MonoThread.
6381
6382         Contributed under MIT/X11 license.
6383
6384 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6385
6386         * metadata-verify.c: Verify the implmap table.
6387         Don't require that #US and #Strings be present.
6388
6389 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6390
6391         * security-core-clr.c: Delegate checks are done at creation time,
6392         not a invocation time. Fix exception for Telerik Silverlight demo
6393
6394 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6395
6396         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6397         case for the Thread class.
6398
6399         * threads.c: Do clean-up of abort exception/state in
6400         thread_cleanup() instead of Thread.free_internal().  Also clean up
6401         current_appcontext.  The reason we have to do that is because
6402         those references might point into another domain and if that
6403         domain is unloaded before the thread is finalized, they point to
6404         invalid data.
6405
6406 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6407
6408         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6409         stub signatures.
6410         
6411         Contributed unter MIT/X11 license.
6412
6413 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6414
6415         * verify.c, metadata-verifier.c: Add support for disabling the
6416         verifier in some builds.
6417
6418         [ Sorry, my previous commit accidentally commited some work in
6419         progress ]
6420
6421 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6422
6423         * class.c (mono_class_setup_fields): Set class->field.first for
6424         generic instances.
6425
6426 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6427
6428         * metadata-verify.c: Verify the typespec table.
6429
6430 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6431
6432         * metadata-verify.c: Verify the module table.
6433
6434 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6435
6436         * metadata-verify.c: Verify the methodimpl table.
6437
6438 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6439
6440         * metadata-verify.c: Verify the property table.
6441
6442 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6443
6444         * debug-helpers.c (mono_method_desc_match): Add support for generic
6445         glob patterns.
6446
6447 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6448
6449         * metadata-verify.c: Verify the propertymap table.
6450
6451 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6452
6453         * metadata-verify.c: Verify the event table.
6454
6455         * metadata-verify.c (search_sorted_table): Fix offset
6456         calculation.
6457
6458 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6459
6460         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6461
6462 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6463
6464         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6465         because mono_delegate_free_ftnptr() needs it.
6466
6467 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6468
6469         * metadata-verify.c: Verify the eventmap table.
6470
6471 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6472
6473         * metadata-verify.c: Verify the standalonesig table.
6474
6475 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6476
6477         * metadata-verify.c: Verify the field layout table.
6478
6479 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6480
6481         * class.c (mono_type_get_name_recurse): Don't crash
6482         for ownerless generic params.
6483
6484         * debug-helpers.c (mono_type_get_desc): Correct the format
6485         for ownerless generic params.
6486
6487 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6488
6489         * metadata-verify.c: Verify the class layout table.
6490
6491 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6492
6493         * metadata-verify.c: Verify the decl security table.
6494
6495 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6496
6497         * domain.c (mono_domain_set_internal_with_options): Don't do
6498         anything if the old domain is the same as the old one.  Fixes
6499         #499326.
6500
6501 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6502
6503         * appdomain.c: Deregister the reflection_info roots when unloading
6504         a domain.
6505
6506         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6507         memory allocated by a domain and frees its disappearing links.
6508
6509         * boehm-gc.c, null-gc.c: Empty implementation of
6510         mono_gc_clear_domain().
6511
6512 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6513
6514         * appdomain.c (clear_cached_vtable): Free the static fields memory
6515         block.
6516
6517 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6518
6519         * gc.c: Set the correct domain when invoking finalizers.
6520
6521         * appdomain.c: Set the correct domain when creating threads.
6522
6523 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6524
6525         * sgen-gc.c: Fix skip size for vectors.
6526
6527 2009-05-03  Martin Baulig  <martin@ximian.com>
6528
6529         * mono-debug-debugger.c
6530         (mono_debugger_check_breakpoints): Check class init handlers even
6531         if we don't have any method load handers.
6532
6533 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6534
6535         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6536         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6537
6538 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6539
6540         * metadata-verify.c: Verify the field marshal table.
6541
6542 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6543
6544         * metadata-verify.c: Verify the custom attribute table.
6545
6546 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6547
6548         * metadata-verify.c: Verify the constant table.
6549
6550 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6551
6552         * metadata-verify.c: Verify the memberef table.
6553
6554 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6555
6556         * metadata-verify.c (get_coded_index_token): Remove
6557         dead argument.
6558
6559 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6560
6561         * metadata-verify.c: Verify the interfaceimpl table.
6562
6563 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6564
6565         * verify.c: Improve error message.
6566
6567         * debug-helpers.c (mono_type_get_desc): Harden the code that
6568         deals with VAR and MVAR.
6569
6570 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6571
6572         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6573         part of #498692.
6574
6575 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6576
6577         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6578         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6579
6580 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6581
6582         * security-core-clr.c: Avoid redundant checks for platform code, 
6583         e.g. check for method and for class (very common) and check
6584         for class and outer class (less common)...
6585
6586 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6587
6588         * reflection.c: Avoid returning random cattrs for synthetic methods.
6589         Fixes #498545.
6590
6591 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6592
6593         * assembly.c: assemblies in the GAC should never be shadow-copied.
6594
6595 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6596
6597         * domain.c, domain-internals.h: Disable
6598         track_resurrection_{objects,handles}_hash in MonoDomain if using
6599         SGen.
6600
6601 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6602
6603         * metadata-verify.c: Verify the param table.
6604
6605 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6606
6607         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6608         MethodList.
6609
6610         * metadata-verify.c (verify_method_table): Proper check the ParamList
6611         field.
6612
6613 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6614
6615         * metadata-verify.c (verify_method_table): Check for runtime
6616         implemented functions such as delegate .ctors. Remove spurious
6617         printf.
6618         
6619 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6620
6621         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6622
6623 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6624
6625         Don't allocate MonoGenericInfo for ownerless generic params.
6626         * class-internals.h (MonoGenericParam::info): Move field to ...
6627         (MonoGenericParamFull): ... this.  New struct.
6628         (MonoGenericContainer::type_params): Change type to
6629         MonoGenericParamFull.
6630         (MonoGenericParam, MonoGenericContainer): Update accessors.
6631         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6632         'info' field for ownerless generic param.
6633         (mono_metadata_load_generic_params): Update to changes.
6634         * reflection.c (mono_reflection_create_generic_class): Likewise.
6635         (reflection_methodbuilder_to_mono_method): Likewise.
6636         (mono_reflection_initialize_generic_parameter): Likewise.
6637
6638 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6639
6640         Don't use MonoGenericParamInfo for ownerless generic params.
6641         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6642         use ParamInfo class at all.
6643         (mono_class_from_generic_parameter): Use them.
6644         (make_generic_param_class): Fix a couple of instances where 'pinfo
6645         == NULL' wasn't handle.
6646
6647 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6648
6649         * class.c (make_generic_param_class): Carve out of ...
6650         (mono_class_from_generic_parameter): ... here.
6651
6652 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6653
6654         Simplify mono_class_from_generic_parameter
6655         * class-internals.h (MonoGenericParamInfo::token): New field.
6656         * metadata.c (mono_metadata_load_generic_params): Initialize it
6657         from metadata.
6658         * class.c (mono_class_from_generic_parameter): Use it instead of
6659         searching through metadata.
6660
6661 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6662
6663         * metadata-verify.c: Add verification of the method table.
6664
6665 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6666
6667         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6668         Delegate::Invoke optimization.
6669
6670 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6671
6672         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6673         string returned by get_shadow_assembly_location_base.
6674
6675         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6676         about caller's ownership.
6677
6678 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6679
6680         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6681         reflection memory on domain unload.
6682
6683         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6684         reflection cleanup code do it.
6685
6686         * domain-internals.h: Add mono_reflection_cleanup_domain.
6687
6688         This fixes a memory leak for managed mirrors of reflection objects
6689         on domain unload. 
6690
6691 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6692
6693         * metadata-verify.c: Implement more verification of the field table.
6694
6695 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6696
6697         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6698         doesn't try to parse the input assembly, which can be broken.
6699
6700 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6701
6702         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6703         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6704         by using the lowest bit in the link to store whether the link is
6705         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6706
6707 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6708
6709         * Makefile.am: Split the console support in platform specific code
6710         and put together a framework for making this easy in the future so
6711         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6712
6713 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6714
6715         * pedump.c: Fix a warning.
6716
6717 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6718
6719         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6720         mono_class_from_mono_type to avoid bad interactions with the dual representation
6721         of the generic type definition.
6722
6723 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6724
6725         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6726         get the MonoClass for the call context type as it might be a generic
6727         instance.
6728
6729         Fixes #491483.
6730
6731 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6732
6733         * object-internals.h: The Thread object has no execution_context
6734         member anymore.
6735
6736         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6737         the execution context.
6738
6739         * appdomain.c: Bump corlib version.
6740
6741 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6742
6743         * verify.c (do_newobj): Improve error message.
6744
6745 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6746
6747         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6748         is nested in the filter block.
6749
6750         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6751         block is not fully nested.
6752
6753         Fixes #495656.
6754
6755 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6756
6757         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6758         not MonoType to check for equality of valuetypes as the generic type
6759         definition allows for two different encodings: the generic type definition
6760         class or a generic instance over the GTD arguments.
6761
6762         Fixes #496175.
6763
6764 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6765
6766         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6767
6768         * verify.c (do_initobj): Improve error message.
6769
6770 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6771
6772         * metadata-verify.c: Enable pe verification as the issue with #496453
6773         is that the authenticode data directory have a different unspecified
6774         format. Ignore it for now.
6775
6776         * pedump.c: Run the metadata verifier together with the IL verifier.
6777
6778         Fixes ##496453.
6779
6780 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6781
6782         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6783
6784 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6785
6786         * class.c (can_access_type): Check visibility against
6787         the element type for pointers and arrays.
6788
6789         Fixes #496150.
6790
6791 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6792
6793         * metadata-verify.c: Fix cli and table verification to use information
6794         from the MonoImage. A lot of duplicated code got killed.
6795
6796 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6797
6798
6799         This patch starts to integrate the metadata verifier with the runtime code.
6800
6801         This patch causes major regression in functionality for the metadata verifier
6802         as cli and table verification are disabled since they require to be ported to
6803         use MonoImage information.
6804
6805         * image.c (do_mono_image_load): Split the code in this function
6806         into mono_image_load_pe_data and mono_image_load_cli_data.
6807         Add     care_about_pecoff parameter to not load pecoff data.
6808         Call into the metadata verifier for pecoff and cli verification.
6809
6810         * image.c (mono_image_open_raw): New function that doesn't perform
6811         any parsing of the image contents.
6812         
6813         The reason for the 3 new functions is to give pedump better control
6814         into the interaction with the verifier.
6815
6816         * metadata-internals.h: Add new functions from image.c as part of the
6817         internal mono API.
6818
6819         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6820         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6821         to make those functions work together with the runtime.
6822
6823         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6824         true if the image needs to be verified.
6825
6826         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6827
6828         * pedump.c: Use new metadata verifier API.
6829
6830 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6831
6832         * object.c (mono_install_vtable_trampoline): Make this receive a
6833         trampoline creation function instead of trampoline, allowing the JIT
6834         to use a different trampoline for each vtable.
6835
6836 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6837
6838         * object.c (mono_raise_exception): Don't reset the thread abort
6839         exception state here.
6840
6841 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6842
6843         * icall-def.h: New icall for getting the thread abort exception
6844         state for a thread.
6845
6846         * object.c, thread.c, object-internals.h: A thread's abort
6847         exception state is now a GC handle.  To get the object it stands
6848         for, we must move it into the current app domain, if it's
6849         different than the one where it originated from.
6850
6851         * appdomain.c: Bump corlib version.
6852
6853         * domain.c, domain-internals.h: New function for setting the
6854         domain and migrate the thread abort exception or not.
6855
6856 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6857
6858         * metadata-verify.c: Add initial verification of the
6859         field table.
6860
6861 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6862
6863         * metadata-verify.c: Add a macro to conditionally enable
6864         dumping of verification information. Add  make_coded_token
6865         and search_sorted_table to enable search sorted tables
6866         by a given coded token.
6867
6868 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6869
6870         * metadata-verify.c: Add array mapping from table index
6871         to description offset. Add get_col_offset and get_col_size
6872         functions.
6873
6874 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6875
6876         * metadata-verify.c: Add remaining table descriptions offsets.
6877         Add remaining coded index descriptions.
6878
6879 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6880
6881         * metadata-verify.c: Fixed constant table description.
6882         Fixed calculation of HasCustomAttribute coded index size.
6883         Fixed calculation of size for many table indexes. 
6884
6885 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6886
6887         * pedump.c (dump_metadata): Dump table offset instead
6888         of useless pointer in memory.
6889
6890 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6891
6892         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6893
6894 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6895
6896         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6897         a missing of for interface types.
6898
6899 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6900
6901         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6902         the code is commented.
6903
6904         * metadata-verify.c (verify_resources_table): Remove spurious printf
6905         and don't fail if there are unmanaged resources. Gmcs generates a useless
6906         one     for all assemblies - I bet it's some MS compatibility junk.
6907
6908 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6909
6910         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6911
6912         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6913
6914         * verify-internals.h: Same.
6915
6916         * pedump.c: Fix for mono_image_verify new signature.
6917
6918 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6919
6920         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6921         flags combinations.
6922
6923 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6924
6925         * metadata-verify.c (verify_module_table): Ignore the generation field.
6926
6927 2009-04-15  Martin Baulig  <martin@ximian.com>
6928
6929         * debug-mono-symfile.c
6930         (mono_debug_symfile_lookup_location): Don't print a warning for
6931         unknown extended opcodes if they're within 0x40 and 0x7f.
6932
6933 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6934
6935         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6936         invoke signatures returning an enum. Fixes #494847.
6937
6938 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6939
6940         * metadata-verify.c: Initial code to verify the typedef table.
6941
6942 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6943
6944         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6945         with non empty stack happens before the beginning of a try block.
6946
6947         Fixes #494812.
6948
6949 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6950
6951         * metadata-verify.c: Verify typename and typenamespace fields of
6952         the typeref table.
6953
6954 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6955
6956         * metadata-verify.c: Initial code to verify the typeref table.
6957
6958 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6959
6960         * verify.c (verify_delegate_compatibility): Fix error message.
6961
6962 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6963
6964         * security-core-clr.c: Fix typo
6965
6966 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6967
6968         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6969         a MonoGHashTable to keep its values alive.
6970         (emit_marshal_boolean): Fix a warning.
6971
6972 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6973
6974         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6975         not have any interface configured for IPv4/IPv6.
6976
6977 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6978
6979         * assembly.c: fix typo in error message.
6980
6981 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6982
6983         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6984         allocating the location holding the this argument to prevent
6985         'too many root sets' errors.
6986
6987         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6988         to mark fields as special static.
6989         (mono_field_static_get_value): Handle special static fields.
6990         (mono_field_static_set_value): Ditto.
6991
6992         * class-internals.h (struct _MonoClassField): Document this.
6993
6994 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6995
6996         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6997           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6998           case.  This will handle when managed code returns null to native code.
6999
7000         Code is contributed under MIT/X11 license.
7001
7002 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7003
7004         * object.c (build_imt_slots): Changing a free to a g_free to match
7005           the g_malloc0 in add_imt_builder_entry that allocated this memory.
7006
7007         Code is contributed under MIT/X11 license.
7008
7009 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7010
7011         * marshal.c (emit_marshal_boolean): Adding code to ensure that
7012           the correct TRUE value is passed through the marshaling layer.
7013
7014         Code is contributed under MIT/X11 license.
7015
7016 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
7017
7018         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
7019         correctly. Fixes #492330.
7020         
7021         * marshal.c: Fix the embedding of object pointers into JITted code in
7022         the native-to-managed wrappers by allocating some GC tracked memory, and
7023         embedding the address of that.
7024
7025 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
7026
7027         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
7028         pointers into the vtable.
7029
7030 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
7031
7032         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
7033
7034         * verify.c (verify_ldftn_delegate): Improve error message.
7035
7036 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7037
7038         * reflection.c (my_mono_class_from_mono_type): Remove.
7039
7040 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7041
7042         Prepare to reduce memory usage of owner-less generic parameters (1/n)
7043         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
7044         and constraints fields into ...
7045         (MonoGenericParamInfo): ... this.
7046         (mono_generic_param_info, mono_generic_container_get_param_info):
7047         New accessors.
7048         * class.c, debug-helpers.c, icall.c: Update to changes.
7049         * metadata.c, reflection.c, verify.c: Likewise.
7050
7051 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
7052
7053         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
7054
7055         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
7056         
7057         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
7058         booleans with sbytes.
7059
7060 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7061
7062         * class.c (can_access_instantiation): Verify accesibility of element types
7063         for arrays and pointers.
7064
7065         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
7066
7067         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
7068
7069         Fixes #493068.
7070
7071 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7072
7073         * verify.c (do_invoke_method): Improve error messages.
7074
7075 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
7076
7077         * verify.c:  Fixing the MSVC build.
7078
7079         Code is contributed under MIT/X11 license.
7080
7081 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
7082
7083         * security-core-clr.c: Simplify get_reflection_caller not to call
7084         mono_method_get_last_managed (another stack walk) and adjust the
7085         callers to handle a (should not happen) NULL return value.
7086
7087 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7088
7089         Add accessors to some MonoGenericParam fields
7090         * class-internals.h (mono_generic_param_owner): New accessor.
7091         (mono_generic_param_num): Likewise.
7092         (mono_type_get_generic_param_owner): New helper.
7093         (mono_type_get_generic_param_num): New helper.
7094         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
7095
7096 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7097
7098         * class-internals.h (mono_generic_container_get_param): New wrapper.
7099         * class.c, icall.c, metadata.c, verify.c: Use it.
7100
7101 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7102
7103         Fix gtest-252.cs
7104         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
7105         the standard case/loop.  In particular, don't complain about
7106         references to generic type definitions.
7107
7108 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
7109
7110         * debug-helpers.c (dis_one): Decode string arguments.
7111
7112 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7113
7114         * pedump.c (dump_verify_info): Dump type name correctly.
7115
7116 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7117
7118         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
7119         are larger than code size.
7120
7121         This can happen in valid code if the try/catch block is not followed by any instruction
7122         and do a backward branch on the leave instruction.
7123
7124         Fixes #492494.
7125
7126 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
7127
7128         * security-core-clr.c: Fix typo while comparing second method names
7129         in can_avoid_corlib_reflection_delegate_optimization
7130
7131 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7132
7133         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
7134
7135         Fixes #487738.
7136
7137 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7138
7139         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
7140         a MVAR using a class context.
7141
7142         Fixes #490335.
7143
7144 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
7145
7146         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
7147
7148         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
7149
7150         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
7151         functions supplied by the JIT for the SGEN GC.
7152
7153         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
7154         
7155 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7156
7157         monitor.c (mono_monitor_try_enter_internal):
7158         Added calls to profile monitor contentions.
7159         Also duplicated a small piece of code (the "get the monitor" logic)
7160         from the fast path to the slow path, and changed the relevant goto
7161         statements, so that monitor acquisition events can be emitted from the
7162         slow path (this is by Paolo Molaro).
7163
7164 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7165
7166         * profiler.c, profiler.h, profiler-private.h:
7167         Added support for profiling monitor contentions.
7168
7169 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
7170
7171         * metadata-verify.c: Verify the modules table.
7172
7173 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
7174
7175         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
7176         using the context of the method been verifier and not of the method been called.
7177
7178         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
7179         safely inflate generic types. 
7180
7181 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
7182
7183         * security-core-clr.c: Change the strategy for checking the 
7184         "reflection using delegates optimization" to avoid unneeded 
7185         attributes in multiple class libraries.
7186
7187 2009-04-02  Mark Probst  <mark.probst@gmail.com>
7188
7189         * sgen-gc.c: Remove object element in the disappearing link struct
7190         by storing the object pointer in the link.
7191
7192 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7193
7194         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
7195
7196 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7197
7198         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
7199
7200         * verify.c (mono_method_verify): Do proper bounds checking of exception
7201         clause ranges.
7202
7203 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7204
7205         * loader.c (mono_field_from_token): Don't crash if the field parent could
7206         not be decoded.
7207
7208 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7209
7210         * sgen-gc.c: Execute critical finalizers after ordinary
7211         finalizers.
7212
7213         * class-internals.h, domain.c: Add CriticalFinalizerObject to
7214         mono_defaults.
7215
7216 2009-03-31 Jb Evain <jbevain@novell.com>
7217
7218         * verify.c (do_ldstr): don't check if a string is in the user strings
7219         heap if the current image is dynamic.
7220
7221 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7222
7223         * sgen-gc.c: Wait until the last finalizer has executed when
7224         returning from WaitForPendingFinalizers.
7225
7226 2009-03-31  Martin Baulig  <martin@ximian.com>
7227
7228         * mono-debug-debugger.h (MonoDebuggerEvent): Add
7229         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
7230         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
7231         (mono_debugger_event_create_appdomain): New function.
7232         (mono_debugger_event_unload_appdomain): New function.
7233
7234         * appdomain.c (mono_domain_create_appdomain_internal): Call
7235         mono_debugger_event_create_appdomain().
7236
7237 2009-03-31  Martin Baulig  <martin@ximian.com>
7238
7239         * mono-debug-debugger.c
7240         (mono_debugger_register_class_init_callback): Also register the
7241         class init callback if the class is already initialized to make
7242         things work with shadow copied assemblies.
7243
7244 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
7245
7246         * security-core-clr.c
7247         (mono_security_core_clr_ensure_reflection_access_field): Let 
7248         critical code access the field (just like we do for methods). Use
7249         check_field_access helper.
7250         (mono_security_core_clr_ensure_reflection_access_method): Use 
7251         check_field_access helper.
7252
7253 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7254
7255         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
7256         call the run-finalize function directly.
7257
7258         * gc.c, gc-internal.h: Make run_finalize() non-static.
7259
7260 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7261
7262         * sgen-gc.c: Use a separate struct for disappearing links.
7263
7264 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7265
7266         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
7267         * MaxIOVectorLength enabled, just ignore them.
7268         Fixes bug #349688.
7269
7270 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
7271
7272         * metadata-verify.c: Fix eglib build.
7273
7274 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
7275
7276         * threads-types.h: Fix the win32 build.
7277
7278 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7279
7280         * class.c: move coreclr inheritance/override checks to 
7281         security-core.clr.c
7282         * security-core.clr.c|h: add code from class.c with additional
7283         documentation. Fix override check when the method is not critical.
7284
7285 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
7286
7287         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
7288         (match_class): Ditto.
7289
7290 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7291
7292         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
7293
7294         * metadata-verify.c: Implement table layout row size calculation. Verify
7295         the total size of the tables.
7296
7297 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7298
7299         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
7300
7301 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7302
7303         * appdomain.c:
7304         * console-io.[ch]: added new mono_console_init() to make sure that
7305         file descriptors 0, 1 and 2 are opened.
7306         Bug #489019 fixed.
7307
7308 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
7309
7310         * appdomain.h: Export a new callback type and a new function to
7311         set this callback. This allow a mono host to provide it's own
7312         definition for "platform code".
7313         * metadata-internals.h: Add a core_clr_platform_code flag on 
7314         _MonoImage to (cache and) know if it is representing platform 
7315         code.
7316         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
7317         on platform code images.
7318         * security-core-clr.c|h 
7319         (mono_security_set_core_clr_platform_callback): Allow the host
7320         to provide it's own platform check definition.
7321         (mono_security_core_clr_determine_platform_image): Detect if an 
7322         image is platform code (using the specified callback).
7323         (mono_security_core_clr_is_platform_image): Return cached value 
7324         for platform code.
7325
7326 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
7327
7328         * threads.c (mono_create_thread): New helper function to wrap CreateThread
7329         which has different parameter types for the 'tid' argument in windows and
7330         the io-layer.
7331
7332         * appdomain.c attach.c threads.c: Use the new helper.
7333
7334 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7335
7336         * metadata-verify.c: Verify valid table bits.
7337
7338 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7339
7340         * metadata-verify.c (verify_metadata_header): Store size in the size field.
7341
7342         * metadata-verify.c: Add initial table schema verification.
7343
7344 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7345
7346         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
7347         obtain the refclass argument needed by mono_param_get_objects (). Fixes
7348         #488383.
7349
7350         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
7351
7352         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
7353
7354 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
7355
7356         * security-core-clr.c: Add/update documentation
7357
7358 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7359
7360         * marshal.c (emit_marshal_object): Generate code to throw an exception
7361         instead of throwing it. Fixes #488670.
7362
7363 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
7364
7365         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
7366         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
7367         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
7368         and add a call to mono_security_core_clr_ensure_delegate_creation
7369         to do the extra checks required by CoreCLR.
7370         * security-core-clr.c|h: Add function to check delegate creation,
7371         both in the binding and accessibility, under CoreCLR.
7372
7373 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7374
7375         * reflection.c (mono_reflection_create_dynamic_method): when 
7376         coreclr is enabled make sure that every resolved object are
7377         checked (e.g. field and method access).
7378         * security-core-clr.c|h: Add function to check objects resolved
7379         when a dynamic method is created.
7380
7381 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7382
7383         * metadata-verify.c: Cache directory rva translations.
7384
7385         * metadata-verify.c: Add cli-header and streams verification.
7386
7387 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7388
7389         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7390         the wrong offset (8 instead of 6).
7391
7392 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7393
7394         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7395         methods, return the native function address itself. Fixes
7396         #487758.
7397
7398 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7399
7400         * console-io.c: some of the values for control characters might not be
7401         present.
7402
7403 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7404
7405         * exception.c|h: Add helpers to create [Field|Method]AccessException
7406         * icall.c: Add required coreclr check calls for field reflection.
7407         Move the existing (method) check logic into security-core-clr.c
7408         * security-core-clr.c: Add functions to check if the access of a
7409         field or method is allowed when reflecting under coreclr. This is
7410         mostly done using a stack walk to find the "real" caller: i.e. the
7411         code that is calling the reflection
7412
7413 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7414
7415         * gc-internal.h: Change location of gc_wrapper.h
7416
7417 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7418
7419         * class.c: Simplification to coreclr checks for overrides that
7420         makes it easier to set breakpoints.
7421
7422 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7423
7424         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7425         mono_security_core_clr_method_level): Avoid potential 
7426         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7427         user/application code) and make it easier to set breakpoints
7428
7429 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7430
7431         * metadata-verify.c: Reject cli header tables that mono don't handle.
7432
7433 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7434
7435         * pedump.c: Fix CLI header dumping.
7436
7437 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7438
7439         * metadata-verify.c: More CLI header verification.
7440
7441 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7442
7443         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7444
7445 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7446
7447         * metadata-verify.c: Initial verification of the CLI header.
7448
7449 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7450
7451         * metadata-verify.c (verify_resources_table): Fix verification of zero
7452         sized resource section and id entries count.
7453
7454 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7455
7456         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7457
7458 2009-03-17  Jb Evain  <jbevain@novell.com>
7459
7460         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7461
7462 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7463
7464         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7465         (mono_gc_make_descr_for_array): Ditto.
7466
7467 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7468
7469         * verify.c (mono_verifier_is_class_full_trust): Add support for
7470         CoreCLR security mode where trusted assemblies are defined as
7471         "platform code".
7472
7473 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7474
7475         * metadata-verify.c: Add minimal PECOFF resource verification.
7476
7477 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7478
7479         * metadata-verify.c: Be less restrictive with some coff fields.
7480
7481 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7482
7483         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7484         params as boxed values on stack. Fixes #485706.
7485
7486 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7487
7488         * console-io.c: the termios values may vary in different flavors of unix.
7489
7490 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7491
7492         * console-io.[ch]: return the entire set of control characters when
7493         initializing the terminal.
7494         * appdomain.c: bump corlib version.
7495
7496 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7497
7498         * mono-perfcounters.c: added support for in-process custom
7499         performance counters.
7500
7501 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7502
7503         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7504
7505 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7506
7507         * metadata-verify.c: Verify the data pointed by the import table. 
7508
7509 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7510
7511         * metadata-verify.c (load_data_directories): Store data
7512         directory contents.
7513
7514         * metadata-verify.c: Verify the import table. 
7515
7516 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7517
7518         * metadata-verify.c: Verify data directories.
7519
7520 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7521
7522         * metadata-verify.c: Check section header flags.
7523
7524 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7525
7526         * appdomain.c: if the assembly name is a shadow-copied file, return
7527         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7528         in mono_make_shadow_copy.
7529         * icall.c: if the assembly name is a shadow-copied file, replace it
7530         with the original assembly path.
7531
7532         Bug #484244 fixed. NUnit tests for corlib can be run without
7533         --noshadow now.
7534
7535 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7536
7537         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7538         entries when the table is reallocated.
7539
7540         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7541         mono_gc_alloc_fixed () since it contains GC refs.
7542
7543 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7544
7545         * reflection.c (ensure_complete_type): New helper function to call
7546         type resolve handlers for unfinished dynamic types.
7547         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7548
7549 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7550
7551         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7552         #483247.
7553
7554 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7555
7556         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7557
7558 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7559
7560         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7561         between GCHandles of type WeakTrackResurrection and the objects they
7562         point to.
7563
7564         * gc.c: Partly implement the sematics of GCHandles of type 
7565         WeakTrackResurrection: these handles should only be cleared after the
7566         finalizer of the object they are pointing to has ran.
7567
7568 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7569
7570         * icall.c: Partially revert r126631 because using the jump
7571         trampolines for generic shared methods makes it superfluous.
7572
7573 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7574
7575         * threads.c (handle_store): Create the 'threads' hash table with the proper
7576         MONO_HASH_VALUE_GC type.
7577
7578 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7579
7580         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7581         FIRST_GC_TRACKED.
7582
7583         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7584         and LAST_GC_TRACKED as a GC root.
7585
7586         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7587
7588         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7589         the static data even if it consists of 1 reference.
7590
7591         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7592         if there is a GC descriptor.
7593
7594         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7595         instead of through the GC since they contain no object references.
7596
7597 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7598
7599         * generic-sharing.c (instantiate_other_info): Always return a jump
7600         trampoline for method code.
7601
7602 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7603
7604         * culture-info-tables.h: generated to include the en-tt culture.
7605
7606 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7607
7608         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7609         capture the thread context.
7610
7611         * object.c (mono_async_result_new): Cache the invoke wrappers to
7612         ExecutionContext::Capture.
7613
7614 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7615
7616         * marshal.h: Add a prototype for what mono_compile_method returns
7617         for invoke wrappers.
7618
7619         * gc.c: Use the new prototype declaration.
7620
7621 2009-03-04  Geoff Norton  <gnorton@novell.com>
7622
7623         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7624         * gc-internal.h:
7625         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7626
7627 2009-03-04  Martin Baulig  <martin@ximian.com>
7628
7629         * mono-debug.h
7630         (mono_debugger_runtime_invoke): Removed.
7631
7632         * mono-debug-debugger.c
7633         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7634
7635 2009-03-02  Martin Baulig  <martin@ximian.com>
7636
7637         * mono-debug.h
7638         (mono_debugger_unhandled_exception): Removed.
7639         (mono_debugger_handle_exception): Removed.
7640         (mono_debugger_throw_exception): Removed.
7641
7642         * mono-debug.c
7643         (mono_debug_debugger_version): Bump to 5.
7644
7645         * mono-debug-debugger.c: Moved the exception handling code to
7646         ../mini/debug-mini.c
7647
7648 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7649
7650         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7651         finalize_objects_hash.
7652
7653         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7654         
7655         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7656         field.
7657
7658         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7659         cache.
7660
7661         * image.c (mono_image_close): Free it.
7662         
7663         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7664         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7665         on the this argument.
7666
7667         * gc.c (run_finalize): Optimize the calling of the finalizers.
7668
7669 2009-03-03  Martin Baulig  <martin@ximian.com>
7670
7671         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7672         of the `MonoGenericInst' changes.
7673
7674 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7675
7676         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7677         mono_array_class_get_cached to reduce locking contention. Extract
7678         a domain var.
7679
7680         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7681         intermediary managed arrays. Use caching version of mono_array_new
7682         to allocate the result array.
7683
7684         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7685
7686         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7687
7688         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7689         to reduce locking contention.
7690
7691 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7692                 
7693         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7694         thunk builder code for the non-interface case.
7695
7696 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7697
7698         * object.c (get_generic_virtual_entries): New helper function to collect
7699         the virtual generic method instances which need to be added to an IMT
7700         thunk.
7701         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7702         Instead of creating a new IMT thunk, reset the vtable slot to the
7703         trampoline, the thunk will be created the next time the trampoline is called.
7704         (build_imt_slots): Add support for virtual generic methods in interfaces by
7705         adding to the IMT thunk all the methods registered using 
7706         mono_method_add_generic_virtual_invocation ().
7707
7708         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7709         (struct _MonoIMTCheckItem): Ditto.
7710
7711         * object.c (mono_method_add_generic_virtual_invocation): Take a
7712         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7713         the IMT thunk to include all items.
7714         
7715         * object.c (mono_class_create_runtime_vtable): Add a missing
7716         mono_loader_unlock ().
7717
7718 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7719
7720         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7721
7722         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7723
7724 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7725
7726         * object-internals.h: Rename _MonoReflectionEvent to
7727         MonoReflectionMonoEvent so it reflects the right managed type.
7728         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7729
7730         * icall.c:
7731         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7732         type.
7733
7734 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7735
7736         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7737         intermediary managed arrays. Use caching version of mono_array_new
7738         to allocate the result array.
7739
7740 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7741
7742         * reflection.c: Use cached version of mono_array_new alongside
7743         the mono_reflection_get_custom_attrs_by_type call path.
7744
7745 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7746
7747         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7748         intermediary managed arrays. Use caching version of mono_array_new
7749         to allocate the result array.
7750
7751         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7752
7753 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7754
7755         * icall.c: Add small implementation of a growable stack bound array.
7756
7757         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7758
7759         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7760         intermediary managed arrays. Use caching version of mono_array_new
7761         to allocate the result array.
7762
7763 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7764
7765         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7766         helps Enum::CompareTo to be implemented without reboxing all enums
7767         to their underlying type.
7768 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7769
7770         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7771         since it acquires a global lock leading to scalability problems.
7772
7773         * profiler.c: Make the stat profiler work with multiple appdomains, this
7774         currently only works when no appdomains are unloaded.
7775
7776 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7777
7778         * appdomain.c: make the check to avoid copying when the assembly is
7779         already shadow copied actually work.
7780
7781 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7782
7783         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7784
7785         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7786         changes to the managed side.
7787
7788 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7789
7790         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7791         classes + a separate lock for it, as it is used frequently at runtime, not
7792         just during metadata loading/JIT compilation.
7793
7794         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7795         for szarrays.
7796         
7797         * object-internals.h (mono_class_from_name_cached): New macro to cache
7798         the results of the lookup locally without having to declare a static
7799         variable to hold it.
7800         (mono_class_get_field_from_name_cached): Ditto.
7801         (mono_array_class_get_cached): Ditto.
7802
7803         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7804         the new macros.
7805         
7806         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7807         slower search in metadata.
7808
7809         * pedump.c: Fix a warning.
7810
7811 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7812
7813         * reflection.c (encode_locals): Add checks for user types.
7814         (method_encode_clauses): Ditto.
7815         (method_encode_code): Ditto.
7816         (mono_image_create_token): Ditto.
7817
7818         * object-internals.h: Change the type of more fields from MonoReflectionType*
7819         to MonoObject*.
7820
7821 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7822
7823         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7824         the a thread does not suspend within 100ms.
7825
7826         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7827         in addition to StopRequested as well.
7828
7829         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7830
7831         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7832         search the method_hash before inserting a new entry, to avoid crashes when
7833         the same method is inserted multiple times, causing the old 
7834         MonoDebugMethodInfo structure to be freed by the value dtor function.
7835
7836 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7837
7838         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7839         SO_EXLUSIVEADDRUSE where available.
7840
7841 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7842
7843         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7844         runtime invoke wrappers, this time it is string ctor wrappers, which
7845         pass a dummy string as 'this' instead of their obj argument. Fixes
7846         #478473.
7847
7848 2009-02-21  Jb Evain  <jbevain@novell.com>
7849
7850         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7851         only get create_culture once.
7852
7853 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7854
7855         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7856         check before the locking.
7857         
7858         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7859         (mono_reflection_create_runtime_class): Ditto.
7860         (mono_reflection_sighelper_get_signature_local): Ditto.
7861         (mono_reflection_sighelper_get_signature_field): Ditto.
7862
7863         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7864         is a System.MonoType object or similar.
7865         (monotype_cast): New helper function to cast a MonoObject to a 
7866         MonoReflectionType object.
7867
7868         * object-internals.h: Change MonoReflectionType* members in structures to
7869         MonoObject* members to force the usage of the monotype_cast () function.
7870
7871         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7872         structures/arrays. This causes us to assert instead of crashing when 
7873         instances of user defined subclasses of System.Type are encountered.
7874
7875 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7876
7877         * cil-coff.h:
7878         * icall-def.h:
7879         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7880         win32 resource loaded from a PE file.
7881
7882         * image.c: fix mono_image_lookup_resource.
7883
7884 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7885
7886         * icall-def.h:
7887         * threads-types.h:
7888         * threads.c: added internal call for WaitHandle.SignalAndWait.
7889
7890 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7891
7892         * cominterop.c : Adding cominterop_type_from_handle and 
7893           registering it as an icall.  Replacing all references
7894           to type_from_handle.
7895
7896         Code is contributed under MIT/X11 license.
7897
7898 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7899
7900         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7901
7902         * appdomain.c: Call the tracer init function.
7903
7904         * domain-internals.h: Enable the tracer for the domain locks.
7905
7906         * image.c: Enable the tracer for image locks.
7907
7908         * loader.c: Enable the trace for the loader lock.
7909
7910         * lock-tracer.h:
7911         * lock-tracer.c: Initial implementation of the lock trace utility.
7912         The tracer requires a compile time define to be enabled and a env var
7913         to be enabled at runtime.
7914
7915 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7916
7917         * domain.c (mono_domain_code_foreach): Improve documentation.
7918
7919 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7920
7921         * appdomain.c:
7922         * generic-sharing.c:
7923         * object.c:
7924         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7925         comes first.
7926
7927 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7928
7929         * domain.c: Add mono_domain_code_* functions that perform locking
7930         around the domain codeman.
7931
7932         * domain-internals.h: Export those functions.
7933
7934         * object.c: Use new functions instead of acquiring the domain lock.
7935
7936 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7937
7938         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7939         delegate. Fixes #477396.
7940
7941 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7942
7943         * reflection.c (create_custom_attr): Get rid of alloca.
7944
7945 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7946
7947         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7948           Adding exception handling for all CCW calls.
7949
7950         Code is contributed under MIT/X11 license.
7951
7952 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7953
7954         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7955
7956         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7957         native->managed marshalling code. Fixes #476247.
7958
7959 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7960
7961         * class.c (mono_class_get_vtable_entry): Move the addition of
7962         static rgctx invoke wrappers for vtable methods here, this simplifies
7963         a lot of code and causes fewer rgctx wrappers to be created.
7964
7965         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7966         name of the statistics to begin with an uppercase.
7967
7968 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7969
7970         * reflection.c: Revert previous change as it breaks the build.
7971         
7972 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7973
7974         * verify.c: Properly handle SZARRAY element type.
7975
7976         Fixes #474271.
7977
7978 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7979
7980         * reflection.c (mono_image_create_method_token): Correctly encode
7981         MethodDef MemberRefParent token.
7982
7983         Fixes #472845.
7984
7985 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7986
7987         * image.c (mono_image_close): Delete the critical section before
7988         freeing the memory holding it.
7989
7990 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7991
7992         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7993         Fixes #476257.
7994
7995 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7996
7997         * pedump.c (main): Call mono_marshal_init so pedump
7998         doesn't crash.
7999
8000 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8001
8002         * loader.c (method_from_memberref): Properly fix #474271 and
8003         don't break the runtime bad.
8004
8005 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8006
8007         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
8008         (mono_domain_alloc0): Ditto.
8009
8010 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8011
8012         * loader.c (method_from_memberref): Don't abort if the array
8013         method is not found. A regular loader failure is more informative
8014         and correct.
8015
8016         Fixes #474271.
8017
8018 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8019
8020         *loader.c: Guard MonoImage::method_cache/methodref_cache
8021         using the image lock instead of the loader lock.
8022
8023         * metadata.h: Add comments about which fields are protected by
8024         the image lock.
8025
8026 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8027
8028         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
8029
8030         * generic-sharing.c (mono_method_construct_object_context): Remove the
8031         wrapper_type == NONE assert, it is not needed.
8032
8033 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
8034
8035         * reflection.c (clear_cached_object): New helper function.
8036         (mono_method_clear_object): New function to clear the cached reflection
8037         objects for a dynamic method.
8038
8039         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
8040         Partly fixes # 463323.
8041         
8042 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8043
8044         * class.c:
8045         * loader.c:
8046         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
8047
8048 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8049
8050         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
8051         take the image lock instead of the loader lock.
8052
8053         * metadata-internals.h: Export new functions.
8054
8055 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8056
8057         * domain.c (app_config_parse): Remove another use of stat that is
8058         not necessary as g_file_get_contents already does the presence
8059         check. 
8060
8061 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8062
8063         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
8064
8065         * marshal.c: Move the bstr handling code to cominterop.c.
8066
8067         * marshal.c: Remove some COM interop code missed previously.
8068
8069 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8070
8071         More Paolo patches from the Wii port:
8072         
8073         * security.c: Remove ves_icall_System_Environment_get_UserName
8074         from here.
8075
8076         * icall.c: And put ves_icall_System_Environment_get_UserName
8077         here. 
8078
8079         * appdomain.c (mono_set_private_bin_path_from_config): Remove
8080         redundant call to stat that was only used to test for the file
8081         existence.   Patch from Paolo.
8082
8083         * gc.c (run_finalize): If COM is disabled, do not link in
8084         mono_marshal_free_ccw.
8085
8086         * generic-sharing.c: Use alloca.h here as well.
8087
8088 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
8089
8090         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
8091
8092 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8093
8094         * cominterop.c cominterop.h: New files.
8095
8096         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
8097         function/typedefs which are needed by cominterop.c global.
8098
8099 2009-02-12  Mark Probst  <mark.probst@gmail.com>
8100
8101         * generic-sharing.c: Don't take the loader lock to guard image
8102         mempool allocs.
8103
8104 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8105
8106         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
8107         called without the loader lock which is required to guard MonoImage:tokens.
8108
8109 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8110
8111         * class.c:
8112         * metadata.c:
8113         * method-builder.c:
8114         * marshal.c:
8115         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
8116
8117 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8118
8119         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8120         Rework the code to use regular mono_image_alloc/0.
8121
8122         * loader.c: Rework the code to use regular mono_image_alloc/0.
8123
8124         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8125
8126 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
8127
8128         * object-internals.h : Fixing a typo in the 
8129           MonoReflectionComVisibleAttribute struct.
8130
8131         * marshal.c (cominterop_com_visible): Check the implemented 
8132           interfaces for ComImport.
8133
8134         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
8135           assume that bools should be treated as VARIANTBOOLs.
8136
8137         * marshal.c (emit_marshal_boolean): Adding cases for 
8138           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
8139
8140         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
8141           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
8142
8143         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
8144           should be treated as VARIANTBOOLs.    
8145
8146         Code is contributed under MIT/X11 license.
8147
8148 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8149
8150         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
8151         allocation with the image lock.
8152
8153 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8154
8155         This patch is the last of a series to remove explicit reference of MonoImage::mempool
8156         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
8157
8158         * object.c: Add mono_string_to_utf8_image.
8159
8160         * object-internals.h: Export mono_string_to_utf8_image.
8161
8162         * reflection.c: Rework all explicit references to the the image mempool to go thought
8163         the mono_image_alloc set of functions.
8164
8165 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8166
8167         This patch is the third of a series to remove explicit reference of MonoImage::mempool
8168         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
8169         and generics-sharing.c.
8170
8171         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
8172         as first argument. Note that this function remains broken as it doesn't perform locking around the
8173         mempool allocation.
8174
8175         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
8176
8177         * image.c: Add g_slist_append_image.
8178
8179         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
8180         the supplied image for allocation. Move code into mono_metadata_field_info_full.
8181
8182         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
8183         Fix all related code to do the same.
8184
8185         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
8186
8187         * metadata-internals.h: Fix the signatures.
8188
8189 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8190
8191         This patch is the second of a series to remove explicit reference of MonoImage::mempool
8192         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
8193         and similar to work using MonoImage.
8194
8195         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
8196         MonoMemPool.
8197
8198         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
8199
8200         * class.c (mono_metadata_signature_deep_dup): Same.
8201
8202         * class.c (inflate_generic_type): Same.
8203
8204         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
8205
8206         * metadata.c (mono_metadata_signature_dup_full): Same.
8207
8208         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
8209         mono_metadata_signature_dup_full.
8210
8211         * metadata.c (mono_metadata_type_dup): Same.
8212
8213         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
8214
8215         * reflection.c: Same.
8216
8217         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
8218
8219         * metadata-internals.h: Fix the signatures.
8220
8221         * class-internals.h: Same.
8222
8223 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8224
8225         This patch is the first of a series to remove explicit reference of MonoImage::mempool
8226         and use mono_image_alloc set of functions instead. 
8227
8228         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
8229         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
8230         of a MonoMemPool.
8231
8232         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
8233
8234         * class.c (g_list_prepend_mempool): Removed.
8235
8236         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
8237
8238         * image.c: Add g_list_prepend_image.
8239
8240         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
8241
8242         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
8243
8244
8245 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8246
8247         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
8248         mono_image_unlock.
8249
8250         * image.c (mono_image_init): Init the lock field.
8251  
8252         * image.c (mono_image_init): Cleanup the lock field.
8253
8254         * image.c: Add mono_image_(un)lock functions.
8255
8256 2009-02-11  Mark Probst  <mark.probst@gmail.com>
8257
8258         * class.c, class-internals.h: mono_method_get_context_general()
8259         combines the functionality of mono_method_get_context() and
8260         mini_method_get_context().
8261
8262         * generic-sharing.c, domain-internals.h:
8263         mono_method_construct_object_context() and
8264         mono_domain_lookup_shared_generic() moved from mini.
8265
8266         * icall.c (ves_icall_InternalInvoke): Handle the case where the
8267         method doesn't have the correct instantiation because it's shared
8268         generic code.  Fixes #473999.
8269
8270 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
8271
8272         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
8273
8274         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
8275         
8276 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8277
8278         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
8279
8280         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
8281
8282         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
8283         and recheck the cache for dups after it.
8284
8285         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
8286
8287         Fixes one of the deadlocks found in #473150.
8288
8289 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
8290
8291         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
8292           For Win32, add additional break conditions for accept.
8293
8294         Code is contributed under MIT/X11 license.
8295
8296 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
8297
8298         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
8299         lazily initialize the native wrapper cache.
8300         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
8301         cache, since they are different from the normal wrappers.
8302
8303         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
8304
8305         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
8306         AOT compiled native wrappers.
8307
8308 2009-02-09  Geoff Norton  <gnorton@novell.com>
8309
8310         * appdomain.h:
8311         * security-core-clr.c: Allow enabling core-clr from the embedding
8312         API.
8313
8314 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8315
8316         * socket-io.c: when requesting all the local ips, if there are no
8317         interfaces up and running, MS returns 127.0.0.1.
8318
8319 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8320
8321         * mono-perfcounters-def.h: processor time is an inverse time.
8322         Fixes bug #468625.
8323
8324 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8325
8326         * socket-io.c: an empty host name returns the list of local IPs.
8327         Fixes bug #386637 part 1/2.
8328
8329 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
8330
8331         * verify.c (mono_class_interface_implements_interface): Call
8332         mono_class_setup_interfaces ().
8333         (merge_stacks): Ditto.
8334
8335 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8336
8337         * class.c (mono_class_setup_interfaces): New function to lazily initalize
8338         klass->interfaces.
8339         (mono_generic_class_get_class): Don't initalize klass->interfaces.
8340         (mono_generic_class_get_class): Ditto.
8341
8342 2009-02-06  U-QUACK\miguel  <miguel@quack>
8343
8344         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
8345         they live in security.c
8346
8347         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
8348         another bit from Paolo's code.
8349
8350 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8351
8352         * object.c (build_imt_slots): Add a small optimization to avoid inflating
8353         methods which will be discarded by add_imt_builder_entry ().
8354
8355         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
8356         need to be boxed.
8357
8358         * loader.c: Add a statistics for the size of the memberref signature cache.
8359         
8360         * loader.c (find_cached_memberref_sig): New helper function.
8361         (cache_memberref_sig): Ditto.
8362
8363         * loader.c: Cache the result of parsing memberref signatures, since otherwise
8364         they will be parsed again for every generic instantiation, leading to unbounded
8365         memory growth.
8366
8367 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8368
8369         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8370         parameters of generic methods.
8371
8372         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8373         after the original method is copied to the inflated method.
8374         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8375
8376         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8377         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8378
8379         * class.c metadata.c: Update after the changes above.
8380
8381 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8382
8383         * metadata-verify.c: Simplified error handling and added
8384         section table validation.
8385
8386 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8387
8388         * class-internals.h (MonoClassExt): New structure containing rarely used
8389         fields of MonoClass.
8390         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8391         through a new 'ext' field.
8392
8393         * class.c (mono_class_alloc_ext): New helper function to allocate 
8394         class->ext.
8395
8396         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8397
8398 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8399
8400         * object.c (mono_object_get_virtual_method): Properly inflate
8401         generic methods.  Fixes #472692.
8402
8403 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8404
8405         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8406         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8407         for the parent type, the created type must be ready to be used on a generic
8408         instantiation.
8409         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8410         we won't have duplicated entries in generic_inst_cache.
8411
8412         Fixes #469553.
8413
8414 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8415
8416         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8417         replace with plain BSD per the comments on the bug MONO77637.
8418
8419 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8420
8421         * class.c (mono_class_get_generic_class): New accessor function.
8422         (mono_class_get_generic_container): Ditto.
8423
8424         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8425         fields, similar to the ones in MonoMethod.
8426
8427         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8428         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8429
8430         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8431         
8432         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8433         the same information as element_class->byval_arg.
8434
8435         * class.c reflection.c: Remove references to class->byval_arg.
8436
8437         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8438         klass->enum_basetype directly.
8439
8440         * verify.c metadata.c object.c icall.c reflection.c: Use 
8441         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8442         directly.
8443
8444 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8445
8446         * icall-def.h: Remove internal calls for sockets when
8447         DISABLE_SOCKET is defined, file system writing features when the
8448         OS only support reading and not writing data and Policy support if
8449         the Policy is disabled.
8450         
8451         * image.c (do_mono_image_open): Apply Paolo's patches for using
8452         mono_file_map_ APIs here.
8453
8454         * assembly.c: Add support for platforms to avoid prefix
8455         auto-detection. 
8456
8457 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8458
8459         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8460         warning.
8461
8462         * class.c (mono_class_inflate_generic_class): New helper function.
8463
8464         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8465         statistics for inflated methods/classes.
8466
8467         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8468
8469         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8470         the call is made from Delegate.CreateDelegate () for the invoke method of
8471         a delegate.
8472
8473         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8474
8475         * metadata.c (mono_metadata_signature_size): New helper function.
8476
8477         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8478         generic instances.
8479
8480         * metadata.c (inflated_method_in_image): Avoid calling 
8481         mono_method_signature () if the method does not already have a signature.
8482
8483 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8484
8485         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8486         valuetype is compatible with target type, check by inheritance as a
8487         VT is not really compatible with System.ValueType, for example.
8488
8489         * verify.c (do_invoke_method): Improve error message.
8490
8491         * verify.c (do_box_value): If boxing a nullable, use the type argument
8492         on stack instead.
8493
8494         * verify.c (do_newobj): Improve error message.  
8495
8496         Fixes #469549.
8497
8498 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8499
8500         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8501
8502 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8503
8504         * generic-sharing.c: Don't hold domain lock when calling
8505         instantiate_other_info().  Fixes #471958.
8506
8507         * domain-internals.h, loader.c: Describe locking policy of domain
8508         lock vs loader lock.
8509
8510 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8511
8512         * verify.c (mono_delegate_signature_equal): Make it possible to check
8513         first-arg-bound delegates to static method.
8514
8515         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8516         static methods with the first arg bound.
8517
8518         Fixes #469529.
8519
8520 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8521
8522         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8523         errors.
8524
8525         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8526         under strict mode. Any type, when boxed can be seen as a reference type.
8527
8528         Fixes #469528.
8529
8530 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8531
8532         * object.h: The lower bound of an array is a signed integer value.
8533         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8534         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8535
8536         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8537         calculate the upper bound.
8538         
8539         Fixes #471252.
8540
8541 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8542
8543         From Paolo's work, refactored, cleared up:
8544         
8545         * threadpool.c, icall.c: ifdef code that requires a working socket
8546         stack.
8547
8548         * metadata.c (mono_metadata_field_info): Do not attempt to return
8549         a value from a function declared as void.
8550
8551         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8552         from the console stack.
8553
8554         * assembly.c: use strrchr instead of rindex.
8555
8556         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8557         alloca.h on systems that have it.
8558
8559         * environment.c: Avoid code that uses stuff from
8560         HAVE_SYS_UTSNAME_H
8561         
8562         * appdomain.c: Include sys/time.h.
8563
8564         * console-io.c: include sys/ioctl.h if it is available.
8565
8566 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8567
8568         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8569
8570         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8571         the method builder.
8572
8573         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8574         after it was created and cached, as the later is not thread safe.
8575         
8576 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8577
8578         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8579         called while the debugging module is not initialized. Fixes #471669.
8580
8581 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8582
8583         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8584
8585         Fixes #471255.
8586
8587 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8588
8589         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8590         loader lock is not taken while the templates lock is held.  Fixes
8591         #471089.
8592
8593 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8594
8595         * metadata.c (type_in_image): Added a check to fix a monodis
8596         crash.
8597
8598 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8599
8600         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8601         nullable arguments.
8602
8603         * object.c (mono_runtime_invoke_array): Ditto.
8604         
8605         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8606         freeing wrappers of dynamic methods.
8607
8608         * loader.c (mono_free_method): Call it. Fixes #463323.
8609         
8610         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8611         methods taking vtype/byref arguments, to fix yet another bug caused by
8612         the sharing of runtime invoke wrappers. Partly fixes #471259.
8613
8614 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8615
8616         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8617         <first file in file table>:1 when the IL offset does not have an associated
8618         line number.
8619
8620 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8621
8622         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8623         variable info for a method.
8624
8625         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8626         
8627 2009-01-30  Jb Evain  <jbevain@novell.com>
8628
8629         * pedump.c: reuse code from monodis to make sure pedump honors
8630         MONO_PATH, which is needed to verify net_2_1 assemblies.
8631
8632 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8633
8634         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8635         there is no line number info.
8636
8637 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8638
8639         Avoid some MonoType allocations
8640         * reflection.c (mono_reflection_initialize_generic_parameter):
8641         Reuse MonoType from param->pklass rather than allocating one.
8642         (mono_dynamic_image_free): Update to changes.
8643
8644 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8645
8646         Rearrange some code to improve consistency
8647         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8648         (mono_reflection_initialize_generic_parameter): ... here.
8649
8650 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8651
8652         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8653         with type constraints as an experiment.
8654
8655         * boehm-gc.c (on_gc_notification): Update mono_stats.
8656
8657 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8658
8659         Avoid some allocations
8660         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8661         pointer to tail array to avoid extra allocation.
8662         * metadata.c (free_generic_inst): Update to changes.
8663         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8664         on-stack struct.
8665
8666 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8667
8668         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8669         return TRUE if the two type objects are the same.
8670
8671 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8672
8673         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8674         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8675         klass->min_align, since klass->min_align contains the managed alignment,
8676         while the native alignment can be different, like for longs on x86.
8677         Fixes #469135.
8678
8679         * class-internals.h (MonoMarshalType): Add a min_align field.
8680
8681 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8682
8683         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8684         the 1.0 format.
8685
8686 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8687
8688         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8689         some comments about the usage of the used_regs field.
8690
8691         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8692         Fixes #469217.
8693
8694 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8695
8696         * appdomain.c: return NULL instead of throwing FileNotFoundException
8697         when LoadAssembly() fails.
8698
8699 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8700
8701         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8702         image if the owner is NULL.  Fixes the AOT failures.
8703
8704 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8705
8706         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8707         MonoGenericParam structure using memset so the image field is initialized
8708         as well.
8709
8710 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8711
8712         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8713         a plain store.
8714
8715 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8716
8717         * class.c (mono_class_setup_vtable_general): In the generic instance
8718         optimization, set method->slot for abstract virtual methods. Fixes part of
8719         #467834.
8720
8721 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8722
8723         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8724         which signals that the unloading has started but all appdomain services must
8725         remain operational.
8726
8727         * appdomain.c (mono_domain_unload): The initial state for unloading now
8728         is unloading_start and we switch to unloading after the managed call to
8729         AppDomain::DomainUnload has finished.
8730
8731         The new unloading state has to be created because managed code in the
8732         DomainUnload event can depend on things like the threadpool still working.
8733         The domain must remain fully functional while the event executes.
8734
8735         This shown as an issue due to Process::WaitForExit, which waits for
8736         async reads of stdout and stderr to complete. Since those are processed
8737         in the threadpool the code deadlocks because the DomainUnload callback 
8738         waits for the async read finished event, which should have been set by a
8739         threadpool job but has been discarded due to the domain been in unload
8740         state.
8741
8742 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8743
8744         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8745         image must match.
8746
8747 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8748
8749         * reflection.c (resolve_object): For fields, inflate the class and
8750         then get the field in the inflated class.
8751
8752 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8753
8754         * object-internals.h (struct _MonoException): Added a comment
8755         explaining the new use of trace_ips.
8756
8757 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8758
8759         * generic-sharing.c (inflate_other_data): Inflate array methods
8760         correctly.
8761
8762         * loader.c, class-internals.h: Rename search_in_array_class() to
8763         mono_method_search_in_array_class() and make it non-static.
8764
8765 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8766
8767         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8768         Hopefully fixes #458168.
8769
8770 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8771
8772         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8773         as it is performed elsewhere.
8774
8775         Code is contributed under MIT/X11 license
8776
8777 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8778
8779         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8780         requests queued.
8781         * object.c (mono_raise_exception): Increment the exceptions total
8782         counter when an exception is thrown.
8783         * class-internals.h: Add a location for storing the total number of
8784         asp.net requests served.
8785         * mono-perfcounters.c: Implement update support for asp.net counters
8786         from the class libraries. Implement read support for asp.net counters
8787         and exceptions total counter.
8788
8789 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8790
8791         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8792         accessing klass->methods. Fixes #467385.
8793
8794 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8795
8796         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8797         for byval arguments without an [Out] attribute. Fixes #467212.
8798
8799         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8800         Fix compilation under android.
8801         
8802         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8803         processed, scan them directly after they are copied, to achieve better locality
8804         and cache usage.
8805
8806         * socket-io.c: Applied patch from Koushik Dutta
8807         (koush@koushikdutta.com). Disable IPV6 when running under android.
8808
8809 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8810
8811         * icall.c (ves_icall_InternalExecute): Add write barriers.
8812
8813         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8814         the GC code.
8815
8816         * sgen-gc.c: Implement write barriers in IL code.
8817
8818 2009-01-17  Geoff Norton  <gnorton@novell.com>
8819
8820         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8821
8822 2009-01-17  Geoff Norton  <gnorton@novell.com>
8823
8824         * image.c: When unloading the image->references table, there can be gaps
8825         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8826         when unloading an appdomain.
8827
8828 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8829
8830         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8831         speed up ptr-in-nursery checks.
8832
8833         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8834         threads_lock () to prevent deadlocks.
8835
8836         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8837         does not need to be scanned during minor collections, since writes to it
8838         must use write barriers.
8839
8840 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8841
8842         * metadata-verify.c: Add pe nt header verification.
8843         
8844 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8845
8846         * gc.c: Fix a few warnings when using SGEN.
8847
8848 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8849
8850         * metadata-verify.c: Add pe optional header verification.
8851
8852 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8853
8854         * sgen-gc.c: Add support for user defined marker functions, used by
8855         MonoGHashTable to avoid registering a GC root for every hash node.
8856
8857 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8858
8859         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8860         non-pinned roots into separate hashes to avoid having to traverse them
8861         in functions which are only interested in one kind.
8862
8863 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8864
8865         * metadata-verify.c: Add pe header machine field verification.
8866         
8867 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8868
8869         * metadata-verify.c: Add pe header size verification.
8870
8871 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8872
8873         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8874         using the GC, they don't contain references.
8875
8876         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8877
8878 2009-01-13  Geoff Norton  <gnorton@novell.com>
8879
8880         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8881         AppDomains created on the native side can be cleaned up on the native side.
8882
8883 2009-01-13  Geoff Norton  <gnorton@novell.com>
8884
8885         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8886         as well as the managed api.
8887
8888 2009-01-13  Geoff Norton  <gnorton@novell.com>
8889
8890         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8891         with a MonoAppDomain initialized against it.
8892
8893 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8894
8895         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8896         
8897         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8898
8899         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8900         into the wrapper caches. Fixes #465700.
8901
8902         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8903         method builder.
8904         (mono_mb_create_method): Set the clauses from the method builder.
8905
8906 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8907
8908         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8909         Patch from Makoto Kishimoto.
8910
8911 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8912
8913         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8914         encoding them as ROOT_DESC_COMPLEX.
8915         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8916
8917 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8920         no longer point to the nursery.
8921
8922         * sgen-gc.c: Add a few comments/FIXMEs.
8923         
8924         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8925
8926         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8927         initialization of the various _method variables thread safe. Fixes
8928         #465377.
8929
8930 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8931
8932         * domain.c, domain-internals.h: Remove the shared_generics_hash
8933         and its lookup functions.
8934
8935 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8936
8937         * socket-io.c:  Fixing the MSVC build. 
8938
8939         Code is contributed under MIT/X11 license.
8940
8941 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8942
8943         * metadata-verify.c: Add pe header watermark verification.
8944
8945 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8946
8947         * metadata-verify.c: Add lfanew verification.
8948
8949 2009-01-12  Jb Evain  <jbevain@novell.com>
8950
8951         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8952         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8953
8954 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8955
8956         * socket-io.c: Fix the build.
8957
8958         * environment.c: Fix an #ifdef.
8959
8960 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8961
8962         * threadpool.c (async_invoke_thread): Handle the wait function returning
8963         WAIT_IO_COMPLETION as well.
8964         (async_invoke_io_thread): Ditto.
8965
8966 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8967
8968         * threads.c: Fixing the Windows build.
8969
8970         Code is contributed under MIT/X11 license.
8971
8972 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8973  
8974         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8975         interrupt a wait.
8976         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8977         the thread to wait again.
8978
8979 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8980
8981         * metadata-verify.c: Initial skeleton of the metadata verifier.
8982
8983         * pedump.c: Add support for the metadata verifier.
8984
8985         * verify-internal.h: Export the whole assembly metadata verifier function.
8986
8987 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8988
8989         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8990
8991 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8992
8993         * Makefile.am: Upgrade dtrace-prelink.sh location.
8994
8995 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8996
8997         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8998         well. Otherwise the shutdown deadlock that happens on unix will can happen
8999         as well.
9000         If the main thread code finishes too fast it's possible that the finalizer
9001         thread won't have executed yet, won't record itself as the finalizer thread
9002         and the shutdown sequence will wait on it forever.
9003
9004 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9005
9006         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
9007         with MSVC.
9008
9009 2009-01-08  Miguel de Icaza  <miguel@novell.com>
9010
9011         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
9012         Robert Jordan for pointing this out.
9013
9014 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
9015
9016         * icall.c
9017         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
9018         ves_icall_System_IO_DriveInfo_GetDriveType.
9019
9020 2009-01-07  Miguel de Icaza  <miguel@novell.com>
9021
9022         * icall.c: Wrap calls to mono_strtod in CriticalSection
9023         invocations when using eglib, to work around #464316.
9024
9025 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9026
9027         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
9028         return value of GetCurrentDirectory to never access unitialized memory.
9029
9030 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9031
9032         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
9033         return value of GetCurrentDirectory and expand the buffer if needed.
9034
9035         Fixes #459094.
9036
9037 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
9038
9039         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
9040           Adding a call to mono_init_com_types.
9041
9042         Code is contributed under MIT/X11 license.
9043
9044 2009-01-07  Geoff Norton  <gnorton@novell.com>
9045
9046         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
9047         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
9048         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
9049         be the value of the ip buffer.
9050
9051 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9052
9053         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
9054         interfaces_packed here.
9055
9056         Fixes part of #463294.
9057
9058 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9059
9060         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
9061
9062         Fixes part of #463294.
9063
9064 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9065
9066         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
9067         is a boxed complex as well.
9068
9069         Fixes part of #463294.
9070
9071 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9072
9073         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
9074         control if a methodspec should be created for the generic method definition from external assemblies.
9075         Caching of methodspec is done using the handleref hash table.
9076
9077         Fixes #462592.
9078
9079 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
9080
9081         * loader.c (find_method): When searching the interfaces of a class
9082         check the transitive closure of implemented interfaces.
9083
9084         Fixes #463303.
9085
9086 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9087
9088         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
9089         
9090 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9091
9092         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
9093         interfaces calculation to fill_valuetype_array_derived_types.
9094
9095         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
9096         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
9097         for example.
9098
9099         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
9100         interfaces for valuetypes if needed.    
9101
9102         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
9103         for their basetype as well. Types are array expanded if rank is > 0.
9104
9105         Fixes #400716.
9106
9107 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
9108
9109         * socket-io.h : Changing the signature of
9110           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
9111           the blocking state.
9112
9113         * icall-def.h :  Changing the signature of
9114           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
9115
9116         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
9117           For Windows only.  Avoid blocking when calling accept by
9118           querying for a connection via select.  The loop also queries
9119           the thread state every 1000 micro seconds for the thread
9120           stop state.  This will avoid the process hanging on shutdown
9121           when using a TcpChannel that is never connected to.
9122
9123         Code is contributed under MIT/X11 license.
9124
9125 2008-12-30  Marek Safar  <marek.safar@gmail.com>
9126
9127         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
9128
9129 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9130
9131         * class.c (get_implicit_generic_array_interfaces): Extract common
9132         code to a helper function making it a lot easier on the eyes.
9133
9134 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9135
9136         * class.c (get_implicit_generic_array_interfaces): If the internal
9137         enumerator is an interface inflate System.Object instead of itself.
9138
9139         Fixes #461261.
9140
9141 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
9142
9143         * object.c (mono_runtime_invoke_array): Don't assert with
9144         byref nullable types.
9145
9146         * marshal.c (mono_marshal_get_runtime_invoke): To handle
9147         byref nullables we unbox the object and store it on the
9148         stack. 
9149         We can't use the boxed object since it is the T of Nullable<T>
9150         and the boxed representation of a nullable it's underlying type
9151         or null.
9152         We could cheat and create a boxed nullable and use the same
9153         machinery of other byref VTs but this feels like a hack and
9154         using the stack has the bonus of reducing heap pressure.
9155
9156         Fixes #461941.
9157
9158 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
9159
9160         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
9161         return value.
9162
9163         Fixes #461867.
9164
9165 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
9166
9167         * icall-def.h : Adding an internal call definition for 
9168           System.Environment.internalBroadcastSettingChange.
9169
9170         * icall.c : Adding a Windows only implementation to broadcast a 
9171           WM_SETTINGCHANGE when an environment variable has changed.
9172
9173         Code is contributed under MIT/X11 license.
9174
9175 2008-12-19  Mark Probst  <mark.probst@gmail.com>
9176
9177         * class.c, class-internals.h: Made
9178         mono_class_has_parent_and_ignore_generics() non-static.
9179
9180 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
9181
9182         * image.c: deal with the mmap failing when loading an image.
9183
9184 2008-12-17  Geoff Norton  <gnorton@novell.com>
9185
9186         * threadpool.c: Ensure that the io_queue_lock is initialized
9187         in all circumstances, as we always attempt to cleanup against it.
9188
9189 2008-12-17  Miguel de Icaza  <miguel@novell.com>
9190
9191         * icall.c (ves_icall_System_Environment_get_Platform): For
9192         compatibility reasons for existing client code we will keep
9193         returning 4 for a while.   
9194
9195         For how long will depend on the documentation being updated, and
9196         for us to give client code a chance to be updated.
9197
9198         This reverts the original decison on #433108 since we did not
9199         catch roughly 33 instances of the broken code in our own source
9200         code base, we did not catch failures on the buildbots, and QA did
9201         not bring this as a problem.
9202
9203         Only today I found some customer's code breaking due to our own
9204         class libraries not being fully updated and tracked it down to
9205         this change.  I am reverting it because if we could not even get
9206         our story straight in our own code base, how can we hope that our
9207         end user code be fixed?
9208
9209         As of this morning, our Wiki page that documents how to detect
9210         Unix had not been fixed.    
9211
9212 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
9213
9214         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
9215
9216         * class.c (mono_class_get_fields): Handle loading errors.
9217
9218 2008-12-12 Mark Mason <mmason@upwardaccess.com>
9219
9220         * 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.
9221         
9222 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
9223
9224         * mono-perfcounters.c: avoid warning.
9225
9226 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9227
9228         * reflection.c (ensure_runtime_vtable): Work on generic instances and
9229         make sure all interfaces have MonoClass::interface_id set.
9230
9231         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
9232         method table is property set.
9233
9234 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9235
9236         * class.c: New function mono_class_setup_interface_id that setup
9237         MonoClass::interface_id if needed.
9238
9239         * class-internals.h: Export new function.
9240
9241 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9242
9243         * class.c: Add code to sanity check the vtable after setup_vtable_general
9244         has done it's work.
9245
9246 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
9247
9248         * icall.c: make Assembly.GetExecutingAssembly work properly when
9249         reflection is used to invoke the method.
9250         Bug #321781 fixed.
9251
9252 2008-12-11  Mark Probst  <mark.probst@gmail.com>
9253
9254         * metadata/generic-sharing.c: Look for constraints in all type
9255         arguments, not just the first one.
9256
9257 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9258
9259         * appdomain.c: return the correct CodeBase for an Assembly instance
9260         that was loaded from the shadow-copy directories.
9261         Bug #458190 fixed.
9262
9263 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
9264
9265         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
9266
9267         * sgen-gc.c (check_object): New debugging helper function.
9268
9269         * object.c: Fix calls to mono_value_copy_array ().
9270
9271 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9272
9273         * class.c (mono_class_setup_fields): If working on an inflated class
9274         first check if the generic definition did init with success.
9275
9276         Fixes #445361.
9277
9278 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9279
9280         pedump.c (main): Fix a warning.
9281
9282 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
9283
9284         * object-internals.h : Adding a definition for 
9285           MonoReflectionComVisibleAttribute.
9286
9287         * marshal.c (cominterop_com_visible) :  Method added to check the 
9288           ComVisible attribute of a class.
9289
9290         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
9291           cominterop_raise_hr_exception added to consolidate common code 
9292           to raise hr exceptions.
9293
9294         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
9295           if a managed class should support IDispatch.
9296
9297         * marshal.c 
9298           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
9299           Added additional checks for managed object when getting 
9300           an IDispatch interface.
9301
9302         Code is contributed under MIT/X11 license.
9303
9304 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9305
9306         pedump.c (main): Handle mono_get_method () returning NULL. 
9307
9308 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9309
9310         * marshal.h: Fix a warning.
9311
9312 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
9313
9314         * marshal.c : Adding cominterop_release_all_rcws to release all
9315           runtime callable wrappers held by the runtime.
9316
9317         * marshal.h : Adding declaration for cominterop_release_all_rcws.
9318           
9319         Code is contributed under MIT/X11 license.
9320
9321 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9322
9323         * metadata.c (mono_image_alloc_lock): New helper function.
9324         (mono_image_alloc0_lock): Ditto.
9325
9326         * metadata.c: Use the alloc_lock () helper functions for allocating
9327         memory from the image mempool.
9328
9329 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
9330
9331         * class.c (mono_class_from_generic_parameter): Document it's
9332         locking behavior. Fix double checked locking here, we stored in
9333         param->pklass a partially initialized MonoClass and no membar was used.
9334
9335 2008-12-05  Marek Habersack  <mhabersack@novell.com>
9336
9337         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
9338         (3) functions are present in the C library use them to do the
9339         job. If they are absent, make sure that the sum of int_part and
9340         dec_part is rounded before returning. This is necessary due to the
9341         division of dec_part by the power of 10 before the final addition
9342         is performed - if the result is not rounded in some cases it will
9343         yield invalid results.
9344
9345 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
9346
9347         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
9348         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
9349         instruction instead of a pointer constant.
9350
9351 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
9352
9353         * loader.c (mono_method_get_header): Do most of the work outside the
9354         loader lock, to avoid assembly load hook deadlocks.
9355
9356         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
9357         (mono_metadata_parse_type_full): Ditto.
9358
9359 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
9360
9361         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
9362         Make the stack depth fixed. Ensure proper argument passing to the backtrace
9363         funtions. Finally, use a lock to produce well ordered output.
9364
9365         The lock looks silly, as all calls to the corlib mempool should be guarded
9366         with the loader lock, but for some reason this fact doesn't help. 
9367
9368         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9369
9370 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9371
9372         * socket-io.c: 64 bit big-endian fixes.
9373
9374 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9375
9376         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9377         targets that require strict compatibility between the types.
9378
9379         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9380         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9381         Kill the strict argument and create a new one valuetype_must_be_boxed.
9382
9383         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9384         state that all valuetypes must be boxed.
9385
9386         Fixes #448560.
9387
9388 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9389
9390         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9391         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9392
9393         Contributed under MIT/X11 license.
9394
9395 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9396
9397         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9398         the inflate_generic_type machinery should handle it.
9399
9400         This avoids a crash when the field's flags is zero and it's type is
9401         a primitive.
9402         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9403         is zero and will return one of the cached built-in primitive types. Since
9404         those types live in read-only memory, the code that copies it crashes.  
9405
9406 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9407
9408         * object.c: Don't put function descriptors into generalized IMT
9409         thunks.
9410
9411 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9412
9413         * class.c: Enable generic code sharing on PPC64.
9414
9415 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9416
9417         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9418         from mini/mini.c.
9419
9420         * generic-sharing.c: Allocate the method template slists from the
9421         image mempool so it doesn't leak.
9422
9423 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9424
9425         * class.c (generic_array_methods): Release the linked list.
9426
9427 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9428
9429         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9430         invocation to g_utf16_to_utf8().
9431
9432 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9433
9434         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9435         arguments on big endian archs.
9436
9437 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9438
9439         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9440         the type name (test added in corlib).
9441
9442 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9443
9444         * pedump.c: initialize perf. counters. Fixes a segv.
9445
9446 2008-11-25  Martin Baulig  <martin@ximian.com>
9447
9448         * mono-debug-debugger.c
9449         (mono_debugger_runtime_invoke): Return the exception object if an
9450         exception was thrown.  Visual Studio displays the exception object
9451         in the locals window.
9452
9453 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9454
9455         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9456         ftnptr.
9457
9458 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9459
9460         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9461         MONO_TYPE_U are sizeof (gpointer), too.
9462
9463 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9464
9465         * marshal.c (mono_type_native_stack_size): Fixed size and
9466         alignment for reference types.
9467
9468 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9469
9470         * class.c (mono_class_generic_sharing_enabled): Disable generic
9471         code sharing for PPC64.
9472
9473 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9474
9475         * icall.c (mono_method_get_equivalent_method): Make sure
9476         method->klass->methods is inited before looping over it.
9477
9478 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9479
9480         * object.c: when calling ExecuteAssembly in a newly created domain,
9481         the configuration file and application base are already set up.
9482         Bug #446353 take 2 fixed.
9483
9484 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9485
9486         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9487         Fixes #444715. Fix a warning.
9488
9489 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9490
9491         * appdomain.c: write the full path of the assembly to the .ini file
9492         created when "shadow-copying"
9493         Bug #446353 fixed.
9494
9495 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9496
9497         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9498         if signature==FALSE.
9499
9500 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9501
9502         * marshal.h : Fix the cygwin build.
9503            marshal.c:12442: undefined reference to `_IID_IMarshal'
9504           
9505         Code is contributed under MIT/X11 license.
9506
9507 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9508
9509         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9510           free threaded marshaler when QueryInterface is called on a COM callable
9511           wrapper requesting the IMarshal interface.
9512           
9513         Code is contributed under MIT/X11 license.
9514
9515 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9516
9517         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9518
9519         * reflection.c (mono_type_get_object): Special case the very common
9520         void type.
9521
9522         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9523         hold typeof(void).
9524
9525 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9526
9527         * process.h : Adding method declaration for
9528           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9529           
9530         * process.c : Adding implementation for
9531           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9532           
9533         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9534           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9535
9536         Code is contributed under MIT/X11 license.
9537
9538 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9539
9540         * appdomain.c (unload_thread_main): Clean up threadpool by
9541         calling mono_thread_pool_remove_domain_jobs.
9542
9543         * domain-internals.h (struct _MonoDomain): Add new fields to
9544         help coordinate the cleanup of the threadpool.
9545
9546         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9547         that cleans up the threadpool of all jobs associated with an appdomain.
9548         It does that by cleaning up the queues and making sure all active
9549         threads are accounted.
9550
9551         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9552         unloaded or in the process of. Take this is such way that there is
9553         no race condition between another thread starting the unload and the
9554         current thread acknowledging it.
9555
9556         * threadpool.c (async_invoke_thread): Same.
9557
9558         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9559         firing the new thread.
9560
9561         * threadpool.c (start_tpthread): Same.
9562
9563         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9564
9565         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9566
9567 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9568
9569         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9570         Add support for DuplicateHandle.
9571         
9572         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9573         Add support for DuplicateHandle.
9574         
9575         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9576         Add support for DuplicateHandle.
9577
9578         Code is contributed under MIT/X11 license.
9579
9580 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9581
9582         * class-internals.h: Make min_align into a whole byte.
9583
9584         * class.c: Set min_align for SIMD types to 16.
9585
9586 2008-11-05  Geoff Norton  <gnorton@novell.com>
9587
9588         * attach.c: Default the attacher to enabled for all cases including
9589         embedded.
9590
9591 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9592
9593         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9594         change r117650.
9595
9596 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9597
9598         * monitor.c, monitor.h: New function for querying offsets of
9599         members of MonoThreadsSync.
9600
9601 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9602
9603         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9604         to speed up this function and to avoid the boundless memory growth caused by
9605         the signature_dup () calls.
9606
9607 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9608
9609         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9610         wrapper.
9611
9612         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9613         by 1 bit.
9614
9615         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9616
9617 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9618
9619         * appdomain.c:
9620         * domain-internals.h: made mono_set_private_bin_path_from_config()
9621         "internal".
9622         * object.c: call the above function after setting the configuration
9623         file path for the root domain.
9624         Fixes bug #314478.
9625
9626 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9627
9628         * assembly.c: when the assembly is loaded from an absolute path, end
9629         basedir with a directory separator.
9630         Bug #440781 fixed.
9631
9632 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9633
9634         * monitor.c (mono_monitor_get_fast_enter_method): If
9635         CompareExchange is not available, don't create the fastpath
9636         instead of asserting.  (The method is missing in the 1.1 profile.)
9637
9638 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9639
9640         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9641
9642         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9643         Monitor.Exit IL fastpaths.
9644
9645 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9646
9647         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9648
9649 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9650
9651         * class.c (mono_class_create_from_typedef): Added Vector2l.
9652
9653 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9654
9655         * class.c (mono_class_create_from_typedef): Added Vector2d.
9656
9657 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9658
9659         * appdomain.c: translate \ into / for cache_path.
9660         * domain-internals.h: new mono_is_shadow_copy_enabled().
9661         * icall.c: (fill_reflection_assembly_name) do the same path
9662         manipulations that get_code_base does.
9663         (get_code_base) use mono_is_shadow_copy_enabled.
9664
9665 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9666
9667         * appdomain.c: shadow-copied assemblies go to CachePath +
9668         ApplicationName when both are set. DynamicBase has nothing to do with
9669         shadow copies.
9670         Bug #406877 fixed.
9671
9672 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9673
9674         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9675         STANDALONESIG table.
9676
9677         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9678         standalone signatures.
9679
9680         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9681         comparison code: instead of comparing the signatures using a custom
9682         equals function, transform them to a common signature and compare that. This
9683         works better with AOT.
9684
9685 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9686
9687         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9688
9689         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9690         call for generic instances.
9691         (mono_class_setup_properties): Call setup_properties () before accessing
9692         gklass->properties.
9693
9694         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9695         over the virtual methods of a class using metadata if possible, avoiding the
9696         creation of MonoMethod's for non-virtual methods.
9697         
9698         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9699         get_virtual_methods () to iterate over the virtual methods of classes.
9700
9701 2008-10-25  Martin Baulig  <martin@ximian.com>
9702
9703         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9704
9705 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9706
9707         * class.c (mono_class_create_from_typedef): Added Vector4i.
9708
9709 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9710
9711         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9712         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9713         special-casing applies to eliminate the call completely.
9714
9715 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9716
9717         * class.c (mono_class_create_from_typedef): Added Vector8s.
9718
9719 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9720
9721         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9722
9723 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9724
9725         * icall.c: get rid of annoying warning.
9726
9727 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9728
9729         * threadpool.c: in 1.x, if you change the background status of the
9730         threadpool thread, it's not reset.
9731         Remove unnecessary calls to SetState.
9732
9733 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9734
9735         * threadpool.c: asynchronously create a set of idle threads upon first
9736         use of the threadpool. SetMinThreads will now start the appropriate
9737         number of idle threads if they are not already running. The default is
9738         1 threadpool thread per CPU. Increased the maximum number of threads
9739         per CPU to 10.
9740
9741 2008-10-22  Martin Baulig  <martin@ximian.com>
9742
9743         Revert r116521 from Zoltan, it breaks the debugger:
9744
9745         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9746         over the virtual methods of a class using metadata if possible, avoiding the
9747         creation of MonoMethod's for non-virtual methods.
9748         
9749         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9750         get_virtual_methods () to iterate over the virtual methods of classes.
9751
9752 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9753
9754         * threads.c: when creating a threadpool thread, set its state to
9755         'background'.
9756         * threadpool.c: reset the background state of a threadpool thread
9757         after finishing each work item
9758         Bug #437888 fixed.
9759
9760 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9761
9762         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9763         
9764         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9765         generic instances which works by inflating the methods in the container
9766         class's vtable.
9767
9768         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9769         variant which doesn't make a copy if no inflation was done.
9770         (mono_class_setup_fields): Use it.
9771
9772         * metadata.c (mono_metadata_get_shared_type): New helper function to
9773         return a shared instance of a given MonoType.
9774
9775         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9776         a copy of most non-generic types.
9777
9778 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9779
9780         * threadpool.c: remove one more GetSystemInfo () call.
9781
9782 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9783
9784         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9785         use the code in mono-proclib.h to get processor information.
9786
9787 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9788
9789         * appdomain.c: fixed the logic that determines whether assemblies in a
9790         directory are "shadow-copied" or not. Bug #433483 fixed.
9791
9792 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9793
9794         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9795         warning.
9796
9797 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9798
9799         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9800         returning a vtype.
9801
9802         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9803         reflection.c: Use mono_field_get_name () for accessing a field's name.
9804
9805         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9806         class.c
9807
9808         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9809         field.
9810
9811         * loader.c (find_method_in_class): Reenable the metadata optimization by
9812         not using it for generic instances.
9813
9814         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9815         data/def_type fields from MonoClassField into a separate structure.
9816         (struct MonoClassField): Remove data/def_type fields.
9817         (struct _MonoClass): Add a 'field_def_values' array to store the default
9818         values/RVA for fields.
9819
9820         * class.c reflection.c: Update after the changes.
9821         
9822         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9823         for accessing field->data.
9824
9825         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9826
9827         * loader.c (find_method_in_class): Revert the last change for now as
9828         it breaks Mono.C5 unit tests.
9829
9830         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9831         'field_generic_types' and 'field_objects' which contain the information
9832         previously stored in MonoInflatedField.
9833         (MonoInflatedField): Delete.
9834         (struct _MonoClassField): Delete 'generic_info' field.
9835
9836         * reflection.c: Store the information which was previously in 
9837         field->generic_info in MonoDynamicGenericClass instead.
9838
9839         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9840         MonoClassField changes.
9841
9842 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9843
9844         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9845         store the value inside the data array of the MonoMethodWrapper.
9846         This saves memory, is faster and fixes the lifetime issues (methods
9847         were never removed from the hash previously). May also fix bug#436996.
9848
9849 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9850
9851         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9852         generic instances, compute the type from the generic definition instead of
9853         looking in field->generic_info.
9854
9855         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9856         for inflated fields, the only user was get_fieldref_token () which no
9857         longer needs it.
9858
9859         * class.c (mono_class_init): Revert the last change as it seems to cause
9860         crashes.
9861
9862         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9863         bytes on 64 bit platforms.
9864
9865         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9866         
9867         * object.c (mono_class_create_runtime_vtable): Don't initalize
9868         field->data/field->def_type here, it is done lazily by 
9869         mono_class_get_field_default_value ().
9870
9871         * icall.c (ves_icall_get_enum_info): Call 
9872         mono_class_get_field_default_value () instead of directly accessing
9873         field->data and field->def_type.
9874
9875         * object.c (get_default_field_value): Ditto.
9876
9877         * class.c (mono_field_get_data): Ditto.
9878         
9879         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9880         call for generic instances.
9881
9882         * loader.c (find_method_in_class): If klass != from_class, then inflate
9883         the method with the context of from_class, since the caller assumes this.
9884
9885 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9886
9887         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9888         for accessing method->slot.
9889
9890 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9891
9892         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9893
9894 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9895
9896         * class.c (mono_method_get_vtable_index): Use
9897         mono_method_get_vtable_slot () for accessing method->slot.
9898
9899         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9900         accessing klass->methods.
9901
9902         * class.c (mono_method_get_vtable_slot): New helper function.
9903         (mono_class_get_vtable_entry): Ditto.
9904         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9905         accessing method->slot.
9906
9907         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9908         method to get_inflated_method ().
9909
9910         * class.c (mono_class_get_inflated_method): New helper method to obtain
9911         a method of an inflated class without calling setup_methods ().
9912         (mono_class_get_cctor): Use get_inflated_method.
9913
9914         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9915         
9916         * marshal.c image.c: Lazily create all the marshal caches.
9917
9918         * image.c (mono_image_init): Move initialization of runtime_invoke
9919         caches to marshal.c.
9920
9921         * marshal.c (get_cache): New helper function to lazily initialize a 
9922         wrapper cache.
9923         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9924
9925         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9926
9927 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9928
9929         * loader.c: fixed check for interface type.
9930
9931 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9932
9933         * appdomain.c: check for NULL setup before it's referenced.
9934
9935 p
9936 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9937
9938         * class.c: remove the unused old vtable setup code.
9939
9940 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9941
9942         * class.c: don't depend on interface order in
9943         setup_interface_offsets (bug #435777).
9944         * reflection.c: sort the InterfaceImpl table (patch from
9945         Jb Evain  <jbevain@novell.com>).
9946
9947 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9948
9949         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9950         the low level assemblies lock.
9951
9952 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9953
9954         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9955         object.c, reflection.c, socket-io.c, threads.c: introduced
9956         mono_framework_version () to return the major framewrok version,
9957         changed the code that was using more complex patterns to use it.
9958         Return the correct value for PlatformID for OSX.
9959
9960 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9961
9962         * icall-def.h, process.h, process.c: added an icall to get info about
9963         processes using mono-proclib.
9964
9965 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9966
9967         * mono-perfcounters.c: use the mono-proclib functions to
9968         access process information.
9969
9970 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9971
9972         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9973         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9974         reflection.c: remove rawbuffer usage: mmap support is more sanely
9975         provided by utils/mono-mmap.
9976
9977 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9978
9979         * gc.c: use posix semaphores when possible so that
9980         mono_gc_finalize_notify() is signal safe.
9981
9982 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9983
9984         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9985         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9986         be #ifdef-ed out, the linker will remove the rest.
9987
9988         * marshal.c: Implement DISABLE_COM.
9989
9990         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9991
9992 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9993
9994         * locales.c (string_invariant_compare_char): Optimization: do not
9995         call g_unichar_type unless we actually need the information.
9996
9997 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9998
9999         * object.c, class-internals.h: Also create remoting trampolines
10000         for generic methods.  Pass the domain to the remoting trampoline
10001         creation function, too.
10002
10003 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
10004
10005         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
10006
10007 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10008
10009         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
10010         Vector4ui.
10011
10012 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
10013
10014         * assembly.c:
10015         * locales.c: remove the use of g_strdown. Fixes bug #322313.
10016
10017 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10018
10019         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
10020         for the least possible amount of time (extending the fix in r113458).
10021
10022 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10023
10024         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
10025
10026 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10027
10028         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
10029         as possible simd intrinsic types.
10030         Optimized the test to check for the common prefix first.
10031
10032 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
10033
10034         * class.c: back out part of a broken optimization committed on
10035         May 23th (bug #433908).
10036
10037 2008-10-09  Mark Probst  <mark.probst@gmail.com>
10038
10039         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
10040         Win32.  Should fix #432388 for most cases until we have the new
10041         profiler on Win32.
10042
10043 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
10044
10045         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
10046         instead of using inst->id so the hash is stable for AOT.
10047
10048 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
10049
10050         * appdomain.c:
10051         * icall.c: create a .ini file for shadow-copied assemblies that
10052         contains the location of the original assembly. Use this to return the
10053         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
10054         Also fix the number of '/' for windows when returning the CodeBase.
10055         Fixes bug #430920.
10056
10057 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10058
10059         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
10060
10061         Code is contributed under MIT/X11 license.
10062
10063 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10064
10065         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
10066           if if the class vtable needs initialized.
10067
10068         Code is contributed under MIT/X11 license.
10069
10070 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10071
10072         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
10073           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
10074           STRING->BSTR, and CLASS->INTERFACE.
10075
10076         Code is contributed under MIT/X11 license.
10077
10078 2008-10-07  Marek Habersack  <mhabersack@novell.com>
10079
10080         * sysmath.h: changed the declaration of the
10081         ves_icall_System_Math_Round2 icall by adding an extra
10082         away_from_zero parameter.
10083
10084         * sysmath.c (ves_icall_System_Math_Round2): added support for
10085         away from zero rounding. The icall now takes an extra boolean
10086         parameter to signal that away from zero operation is requested.
10087
10088 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
10089
10090         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
10091         the delegate klass so it can work with full-aot.
10092         (mono_marshal_get_delegate_end_invoke): Ditto.
10093         (mono_marshal_get_delegate_invoke): Ditto.
10094
10095 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
10096
10097         * gc.c, attach.h, attach.c: remove a bad pattern:
10098         add_finalizer_callback () is not implemented correctly, it can't
10099         without adding more overhead to the finalizer loop and it's not
10100         even needed, since we know exactly what we need to call, so there is
10101         no need to do so through an expensive function pointer.
10102
10103 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
10104
10105         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
10106         for the no-gc case.
10107         * attach.c (mono_attach_init): Remove the #ifdef.
10108
10109 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
10110
10111         * attach.c (mono_attach_init): Don't use
10112         mono_gc_add_finalizer_thread_callback when compiling without GC.
10113         Fixes #432306.
10114         
10115         Code is contributed under MIT/X11 license.
10116
10117 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10118
10119         * class.c (mono_class_create_from_typedef): Remove the 
10120         #ifndef DISABLE_SIMD stuff.
10121
10122 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10123
10124         * class-internals.h (MonoClass): Added simd_type bit field.
10125
10126         * class.c (mono_class_create_from_typedef): Check if type is a simd
10127         intrinsic.
10128
10129 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10130
10131         * object.c (mono_method_add_generic_virtual_invocation): Only add
10132         instantiations to the thunk whose count is at least as large as
10133         the threshold.
10134
10135 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
10136
10137         * icall.c: changed the Type of the exception thrown when trying to
10138         invoke a constructor on an abstract class. Part of the fix for bug
10139         #324185.
10140
10141 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10142
10143         * class.c, class-internals.h (mono_method_get_vtable_index): New
10144         function which returns the index into the vtable and properly
10145         handles inflated virtual generic methods.
10146
10147 2008-10-01  Mark Probst  <mark.probst@gmail.com>
10148
10149         * object.c, domain.c, object-internals.h, domain-internals.h:
10150         Generalize IMT thunk machinery to also handle thunks for virtual
10151         generic method invokes.  When a virtual generic method is invoked
10152         more than a number of times we insert it into the thunk so that it
10153         can be called without lookup in unmanaged code.
10154
10155         * generic-sharing.c, class-internals.h: Fetching a
10156         MonoGenericInst* for a method from an (M)RGCTX.
10157
10158 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
10159
10160         * marshal.c (emit_marshal_string): Applied a variant of a patch by
10161         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
10162         marshalling. Fixes #431304.
10163
10164 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
10165
10166         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10167           handle when ref is specified without In or Out.
10168
10169         Code is contributed under MIT/X11 license.
10170
10171 2008-09-30  Mark Probst  <mark.probst@gmail.com>
10172
10173         * loader.c (mono_get_method_constrained): Don't expand method with
10174         the class's context, because it's already a method of that class.
10175
10176 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
10177
10178         * attach.c : should be correct build fix.
10179
10180 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
10181
10182         * attach.c: Fix the previous change.
10183
10184 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
10185
10186         * attach.c : quick w32 build fix.
10187
10188 2008-09-27  Miguel de Icaza  <miguel@novell.com>
10189
10190         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
10191         crashes MonoDevelop: #430455.
10192
10193 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
10194
10195         * domain-internals.h (struct _MonoDomain): Move most fields used only by
10196         the JIT do MonoJitDomainInfo in ../mini/mini.h.
10197
10198         * domain.c: Remove initialization/cleanup of the removed fields.
10199
10200 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10201
10202         * class.c (mono_class_generic_sharing_enabled): Enable generic
10203         code sharing for PPC.
10204
10205 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
10206
10207         * attach.c : Fixing the Windows builds.
10208
10209         Code is contributed under MIT/X11 license.
10210
10211 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10212
10213         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
10214         the default generic sharing mode to 'all'.
10215
10216 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10217
10218         * generic-sharing.c, class-internals.h: New function for checking
10219         whether a method needs a static RGCTX invoke wrapper.  A few
10220         funtions moved from mini/generic-sharing.c.
10221
10222         * icall.c: New function used.
10223
10224 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10225
10226         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10227         Static RGCTX invoke wrapping applies to value type methods, too.
10228
10229         * class.c (mono_class_setup_vtable_general): In generic-shared
10230         value types, wrap methods with a static RGCTX invoke wrapper.
10231
10232 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10233
10234         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
10235         osx build.
10236
10237 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10238
10239         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
10240         register a callback which is called when the finalizer thread is woken
10241         up.
10242         (finalizer_thread): Call the callback if it exists.
10243
10244         * attach.h attach.c: New files, implementing the attach mechanism.
10245
10246         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
10247         
10248         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
10249         by the previous change.
10250
10251 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
10252
10253         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
10254         loader.c, marshal.c, metadata-internals.h, metadata.c,
10255         method-builder.c, object.c, reflection.c: introduced specific functions
10256         to allocate from the domain and image mempools and cleaned up most of
10257         the code to use them (still missing a few in reflection.c).
10258         Keep the loader bytes counter updated.
10259
10260 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
10261
10262         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
10263         loader-related counters.
10264
10265 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
10266
10267         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
10268         added more MS-compatible counters.
10269
10270 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10271
10272         * class.c (mono_class_setup_fields): Call setup_fields before accessing
10273         class->blittable. Fixes #428217.
10274
10275 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
10276
10277         * reflection.c (mono_image_get_field_on_inst_token): Call 
10278         field_encode_signature () since that handles custom modifiers too.
10279         Fixes #424663.
10280
10281 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
10282
10283         * reflection.c (add_custom_modifiers): New helper function to merge custom
10284         modifiers stored in objects to a MonoType.
10285         (fieldref_encode_signature): Encode custom modifiers.
10286         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
10287         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
10288
10289 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
10290
10291         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
10292         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
10293         64-bit IL only images because imports are not resolved for IL only images.
10294         Special thanks to Bill Holmes for finding this bug and testing the patch.
10295         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
10296
10297         Contributed under MIT/X11 license.
10298
10299 2008-09-19  Miguel de Icaza  <miguel@novell.com>
10300
10301         * mono-config.c (dllmap_start): Add support for the bits keyword
10302         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
10303
10304 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10305
10306         * reflection.c (inflate_mono_method): When the class the method is
10307         to be inflated for is itself not inflated, just return the method.
10308
10309 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
10310
10311         * mono-perfcounters.c: use more user friendly process instance names.
10312
10313 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
10314
10315         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10316           handle "[in] ref" and "[in][out] ref" cases.
10317
10318         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
10319           to mono_mb_create_method.  This was causing problems calling native to
10320           managed passing Variants by value.
10321
10322         Code is contributed under MIT/X11 license.
10323
10324 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
10325
10326         * class.c (can_access_internals): Call mono_assembly_load_friends ()
10327         before accessing the friend_assembly_names field.
10328
10329         * assembly.c (mono_assembly_load_friends): Make this callable multiple
10330         times.
10331         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
10332         called lazily when it is needed.
10333
10334         * metadata-internals.h (struct _MonoAssembly): Add 
10335         'friend_assembly_names_inited' flag.
10336
10337 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
10338
10339         * mono-perfcounters-def.h: fix the types of a few counters.
10340         * mono-perfcounters.c: implemented the instance names getter
10341         and a few bugfixes.
10342
10343 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
10344
10345         * culture-info-table.h : regenerated.
10346
10347 2008-09-17  Robert Jordan  <robertj@gmx.net>
10348
10349         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
10350         context bound objects. Fixes #415577.
10351
10352         Code is contributed under MIT/X11 license.
10353
10354 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
10355
10356         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
10357         implementation (bug #423582).
10358
10359 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
10360
10361         * object.c (mono_object_get_virtual_method): Handle the case method->slot
10362         is not set. Fixes #426309.
10363
10364 2008-09-16  Jb Evain  <jbevain@novell.com>
10365
10366         * class.c (mono_class_from_name): fix the exported type look up
10367         when the type is defined in a referenced assembly.
10368
10369 2008-09-16  Jb Evain  <jbevain@novell.com>
10370
10371         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10372         increment the next index counter on each iteration to make that work
10373         for more than one type forwarder. Unmanaged part to fix #422929.
10374
10375 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10376
10377         * object-internals.h: enum ComInterfaceType in
10378         MonoInterfaceTypeAttribute is guint32, not guint16.
10379
10380 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10381
10382         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10383         writing code.
10384
10385 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10386
10387         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10388         not gboolean.
10389
10390 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10391
10392         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10393         Endianness fixes for MonoSymbolFileOffsetTable.
10394
10395 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10396
10397         * process.c (complete_path) : Removing quotes from the 
10398           input path.  The glib file routines do not handle file paths
10399           that have quotes around them.
10400
10401         Code is contributed under MIT/X11 license.
10402
10403 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10404
10405         * socket-io.h : Adding a comment to provide locations where 
10406           changes to MonoSocketAsyncResult need to be synced.
10407
10408         Code is contributed under MIT/X11 license.
10409
10410 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10411
10412         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10413         parameters as well. Fixes #425001.
10414
10415 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10416
10417         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10418         windows build.
10419
10420 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10421
10422         * console-io.c: Add support for tracking the window size if it
10423         changes.
10424
10425         The setup is very simple: the TtySetup function will now return a
10426         pointer to a location in memory that tracks the current console
10427         size.  The managed code checks its current value every time its
10428         queried against the last value set, and updates accordingly.
10429
10430         With this setup we can work with multiple consoles, and we do not
10431         require to poke into managed code from a signal handler.
10432
10433         Additionally, the environment for COLUMNS and LINES is now handled
10434         in unmanaged code.
10435
10436         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10437
10438 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10439
10440         * marshal.c (mono_type_native_stack_size): Treat
10441         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10442
10443 2008-09-04  Jb Evain  <jbevain@novell.com>
10444
10445         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10446         to nullables.
10447
10448 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10449
10450         * verify.c (verify_type_compatibility_full): Revert change
10451         to allow converting a native int to unmanaged pointer be verifiable
10452         under non-strict mode.
10453         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10454
10455         * verify.c: Added some TODOs.
10456
10457 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10458
10459         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10460           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10461           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10462
10463         Code is contributed under MIT/X11 license.
10464
10465 2008-09-02  Jb Evain  <jbevain@novell.com>
10466
10467         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10468
10469 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10470
10471         reflection.c (typebuilder_setup_fields): Handle classes with
10472         explicit size.
10473
10474 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10475
10476         class.c (mono_class_setup_events): Add memory barrier due to
10477         double checked locking.
10478         
10479         class.c (mono_class_setup_properties): Same.
10480
10481 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10482
10483         * class.c (mono_class_is_assignable_from): Fix the build.
10484         
10485         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10486         before accessing klass->interface_bitmap. Fixes #421744.
10487
10488 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10489
10490         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10491         the runtime into no-exec mode, useful when running the AOT compiler.
10492
10493         * appdomain.c gc.c object.c: Avoid executing managed code when running
10494         in no-exec mode.
10495         
10496         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10497
10498         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10499         special case when the mono_assembly_loaded () returns NULL because the 
10500         search hook is not installed.
10501
10502 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10503
10504         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10505         crashes in bstr marshalling on linux.
10506
10507 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10508
10509         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10510         with more than one parameter.
10511
10512 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10513
10514         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10515         start/stop flow control as well when turning off ICANON (allows
10516         C-s and C-q to be read by Console.ReadKey).
10517
10518 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10519
10520         * class.c (mono_class_init): Move the initialization of nested classes
10521         into mono_class_get_nested_types (). Fixes #418433.
10522
10523         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10524         flag.
10525
10526         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10527         iterating tough the nested classes of a class.
10528
10529 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10530
10531         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10532         on arm.
10533
10534 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10535
10536         * console-io.c (sigcont_handler): Support signal chaining for
10537         SIGCONT.
10538
10539         (console_set_signal_handlers): Use best practices with sigaction,
10540         clear the structure before using it. 
10541
10542 2008-08-22  Robert Jordan  <robertj@gmx.net>
10543
10544         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10545         Fix the Windows build.
10546
10547 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10548
10549         * class.c (mono_class_generic_sharing_enabled): Make the default
10550         sharing mode 'corlib'.
10551
10552 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10553
10554         * console-io.c (console_set_signal_handlers): Fix a warning.
10555
10556         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10557         method normally, the JIT will take care of avoiding recursion.
10558
10559 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10560
10561         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10562
10563         Code is contributed under MIT/X11 license.
10564
10565 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10566
10567         * console-io.c (sigcont_handler): We need to restore the entire
10568         termios state, not only the original settings, as things like echo
10569         can be controlled after this (Booish exposes this issue with its
10570         own ReadLine implementation).
10571
10572         Additionally, we need to set the terminal back into keypad_xmit
10573         mode.
10574         
10575         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10576         string as a paramter as well.   Otherwise we get different
10577         keyboard sequences.
10578
10579 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10580
10581         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10582         delegates with byref out parameter passing. Fixes #351520.
10583
10584         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10585         a generic context.
10586         (mono_type_get_desc): Add the type arguments for GENERICINST.
10587         (mono_method_full_name): Stringify the class name using mono_type_full_name
10588         so it picks up generic arguments.
10589
10590 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10591
10592         * console-io.c: Removed debug output.
10593
10594 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10595
10596         reflection.c (mono_reflection_create_runtime_class): Alloc
10597         the nested classes linked list using the dynamic image mempool.
10598         Fixes leak in corlib compilation.
10599
10600 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10601
10602         * console-io.c: Fix incredibly annoying behavior on the console
10603         after resuming execution after control-z.   This affected every
10604         console application.
10605
10606 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10607
10608         * mempool-internals.h: Header for mono private mempool functions. The first
10609         two function are for allocating glib linked lists using pools.
10610
10611         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10612
10613         * Makefile.am: Added mempool-internals.h.
10614
10615 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10616
10617         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10618         (mono_domain_free): Ditto.
10619
10620         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10621         be used by the JIT to store its domain-specific information, instead of putting
10622         it directly into MonoDomain.
10623
10624         * domain.c (mono_install_create_domain_hook): New helper function to install
10625         a hook which initializes domain->runtime_info.
10626
10627         * domain.c (mono_install_free_domain_hook): Ditto.
10628         
10629 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10630
10631         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10632         asserting if the ares parameter is null.
10633
10634         * mono-perfcounters.c: Fix warnings.
10635
10636         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10637         is not needed, don't check for interruptions either.
10638         (mono_marshal_get_delegate_end_invoke): Ditto.
10639
10640 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10641
10642         * mono-perfcounters.c (predef_readonly_counter): added support for
10643         reading the ASP.NET Requests Queued counter from another process.
10644
10645 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10646
10647         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10648         MonoImage to simplify the AOT code.
10649
10650 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10651
10652         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10653         marshalling. Fixes #416078.
10654
10655 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10656         
10657         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10658         it is set, looking up the icall address is deferred to the JIT, since 
10659         in embedded scenarios, the icall might not be registered in the runtime
10660         doing the AOT compilation. Backported from the 2.0 branch.
10661
10662 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10663
10664         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10665         Fixes #415621.
10666
10667 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10668
10669         * Makefile.am: added support for cross-compilation.
10670
10671 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10672
10673         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10674
10675 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10676
10677         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10678
10679 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10680
10681         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10682         mono-perfcounters.c: performance counters implementation.
10683
10684 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10685
10686         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10687         to gpointer, letting the AOT code decide what to store in it.
10688
10689 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10690
10691         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10692           mono_class_setup_methods if the methods are not initialized.
10693
10694         Code is contributed under MIT/X11 license.
10695
10696 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10697
10698         * verify.c: Remove some debug code I commited by accident.
10699
10700         * verify.c (mono_method_is_valid_in_context): Change the return value
10701         to make possible to distinguish between invalid and unverifiable.
10702
10703         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10704         methods.
10705
10706 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10707
10708         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10709         constraints. Fixes regression in gtest-253.
10710
10711 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10712
10713         * verify.c (mono_verifier_verify_class): Don't allow generic types
10714         with explicit layout.
10715
10716         * verify.c (mono_method_verify): Check locals and argument types.
10717
10718 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10719
10720         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10721         wait if the thread is in StopRequested state.
10722
10723         * class.c (mono_class_from_name): Refactor the module searching code into
10724         a separate function so it can be reused in the AOT case too.
10725
10726 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10727
10728         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10729         Check both the type and it's generic type definition for loader errors.
10730         
10731         * verify.c (mono_method_is_valid_in_context): Don't generate another
10732         error when a type errors occur, this leads to the wrong exception been
10733         thrown.
10734
10735 2008-07-28  Dick Porter  <dick@ximian.com>
10736
10737         * icall-def.h
10738         * process.c
10739         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10740         New internal calls to duplicate and close a process handle.
10741
10742 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10743
10744         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10745
10746 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10747
10748         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10749
10750 2008-07-27  Robert Jordan  <robertj@gmx.net>
10751
10752         * class.c (mono_class_init): Don't compute class.has_finalize for
10753         valuetypes. Fixes #412477.
10754
10755 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10756
10757         * verify.c: Implement constraint equivalence checking.
10758         This is required when a generic parameter is used as
10759         argument to a constrained one.
10760
10761         Fixes #410637.
10762
10763 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10764
10765         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10766
10767         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10768
10769         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10770         synch with managed object layout.
10771
10772 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10773
10774         * verify.c (do_branch_op): Handle valuetypes and generic
10775         arguments properly.
10776
10777         * verify.c (do_cmp_op): Same.
10778
10779         Fixes #410383.
10780
10781 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10782
10783         * generic-sharing.c: Fix memory leaks.
10784
10785         * class.c, class-internals.h: Make
10786         mono_class_inflate_generic_type_with_mempool() non-static.
10787
10788 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10789
10790         * pedump.c (dump_verify_info): Dump full class name.
10791
10792 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10793
10794         * generic-sharing.c: Removed some old code that didn't do anything.
10795
10796 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10797         * profiler.c: Added runtime_initialized_event,
10798         mono_profiler_install_runtime_initialized and
10799         mono_profiler_runtime_initialized. This new hook tells the profiler
10800         when the runtime is sufficiently initialized to be able to call
10801         mono_thread_attach on the root appdomain.
10802         * profiler.h, profiler-private.h: Likewise.
10803
10804 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10805
10806         * verify.c (do_cast): Do boxing for generic arguments as well.
10807
10808         * class.c (is_nesting_type): Drop generic instantiations before
10809         checking for nesting.
10810
10811         * class.c (can_access_instantiation): Allow access to generic
10812         arguments.
10813
10814 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10815
10816         * verify.c (verify_class_for_overlapping_reference_fields):
10817         On some cases, the field size might be zero, guard against that.
10818         Fix the explicit layout check to work as expected.
10819
10820 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10821
10822         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10823         mono_thread_resume () during shutdown, since the thread we want to abort
10824         might be suspended.
10825
10826 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10827
10828         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10829         warning.
10830
10831         * debug-mono-symfile.c: Fix a warning.
10832
10833         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10834
10835         * object.c (mono_class_vtable): Check if exception_type is set, and return
10836         NULL as defined by the function comments.
10837
10838 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10839
10840         * mempool.c: Use malloc for every single mempool allocation if the
10841         configure option is set.  This makes it easier to track mempool
10842         allocations with tools like Valgrind.
10843
10844 2008-07-22  Jb Evain  <jbevain@novell.com>
10845
10846         * reflection.c (create_dynamic_mono_image): emit the same
10847         metadata version that SL2 does when creating a SL2 image.
10848
10849 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10850
10851         * icall-def.h:
10852         * icall.c: New icall System.Enum:get_hashcode. This function
10853         avoids the overhead of boxing the enum to the underlying type.
10854
10855 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10856
10857         * reflection.c (mono_method_get_object): Don't let static RGCTX
10858         invoke wrappers get into MonoReflectionMethods.
10859
10860 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10861
10862         * object-internals.h:
10863         * object.c: New mono_runtime_class_init_full function
10864         that makes throwing the exception optinal.
10865
10866         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10867         for the case where the exception object is supplied.
10868
10869 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10870
10871         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10872         old ld versions.
10873
10874         Contributed under MIT/X11 license.
10875
10876 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10877
10878         * string-icalls.c (ves_icall_System_String_InternalSplit):
10879         Optimize array allocation by caching the MonoClass of the
10880         array type.
10881
10882         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10883
10884         * reflection.c (mono_param_get_objects): Same.
10885
10886 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10887
10888         * icall-def.h:
10889         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10890         It inflates the given type using the class context.
10891
10892 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10893
10894         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10895         the vtable if it already exists.
10896
10897         * object-internals.h: Add mono_class_try_get_vtable as part of the
10898         internal API.
10899
10900         * reflection.c (mono_type_get_object): Use the MonoObject from the
10901         vtable when possible. Reduces locking contention on reflection heavy
10902         code.
10903
10904 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10905
10906         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10907         g_bit_nth_msf () since that macro is not implemented in eglib.
10908
10909 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10910
10911         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10912         on platforms which do not support it.
10913
10914 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10915
10916         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10917
10918 2008-07-11  Martin Baulig  <martin@ximian.com>
10919
10920         * mono-debug-debugger.h
10921         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10922
10923         * mono-debug-debugger.c
10924         (_mono_debugger_interruption_request): New global volatile variable.
10925         (mono_debugger_check_interruption): New public function.
10926
10927         * threads.c
10928         (mono_thread_current_check_pending_interrupt): Call
10929         mono_debugger_check_interruption().
10930         (mono_thread_interruption_checkpoint_request): Likewise.
10931
10932 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10933
10934         * verify.c: Add more type checks for loaded types. Verify the result
10935         handle from ldtoken.
10936
10937 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10938
10939         * loader.c (field_from_memberref): Don't crash if the field
10940         wasn't found.
10941
10942 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10943
10944         * verify.c: Verify if type and method instantiations
10945         don't have invalid VAR or MVAR arguments.
10946
10947 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10948
10949         * verify.c: Fix double free of function pointer list.
10950
10951 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10952
10953         * object.c (mono_string_to_utf8): Comment the new code as it
10954         breaks under eglib.
10955
10956 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10957
10958         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10959
10960 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10961
10962         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10963           is not throw too many times.
10964
10965         Code is contributed under MIT/X11 license.
10966
10967 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10968
10969         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10970         debugging is turned off.
10971
10972 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10973
10974         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10975
10976 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10977
10978         * class-internals.h, class.c: Added new generic sharing option:
10979         Share only stuff in System.Collections.Generic, which is now the
10980         default.
10981
10982 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10983
10984         * generic-sharing.c, class-internals.h: New function for getting a
10985         generic method in a generic class given the corresponding method
10986         for a different instantiation of the class.  Partly refactored
10987         from mini-trampolines.c.
10988
10989         * class.c: Make sure generic methods have a class_inst if they are
10990         part of a generic class.
10991
10992         * metadata.c (mono_type_stack_size_internal): Handle type
10993         variables.
10994
10995 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10996
10997         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10998         Signifies whether information on the this/vtable/mrgctx variable
10999         is available.
11000
11001 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11002
11003         * object.c, object-internals.h, icall.c: New function
11004         mono_delegate_ctor_with_method(), which does the same as
11005         mono_delegate_ctor(), but takes an explicit method argument
11006         instead of taking the method from the jit info.
11007
11008         * marshal.c: When creating a delegate with an inflated method take
11009         the "this" argument as the target class for the castclass.
11010
11011 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11012
11013         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
11014         mono_jit_info_table_find() to perform very badly in some cases.
11015
11016 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
11017
11018         * icall.c (type_from_typename): Handle 'string'.
11019
11020         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
11021         wrappers into the wrapper_hash, since the key is not a MonoMethod.
11022
11023 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11024
11025         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
11026
11027         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
11028         number of available managed allocator types.
11029
11030         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
11031         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
11032
11033 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11034
11035         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
11036         which is a low level lock protecting just the 'jit_code_hash' hash table.
11037
11038         * domain.c: Initialize+cleanup jit_code_hash_lock.
11039         
11040 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11041
11042         * coree.c (mono_load_coree): Set coree_module_handle global variable only
11043         after initialization.
11044
11045         * coree.h: Make MonoFixupExe internal.
11046
11047         Contributed under MIT/X11 license.
11048
11049 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11050
11051         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
11052         because that is platform independent. Check NumberOfRvaAndSizes in PE32
11053         as well.
11054         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
11055         image being loaded is a CLI image and _CorValidateImage gets called.
11056
11057         * coree.h: Add MonoLoadImage.
11058
11059         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
11060         instead of LoadLibrary.
11061
11062         Contributed under MIT/X11 license.
11063
11064 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
11065
11066         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
11067         for any primitive type.
11068
11069 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11070
11071         * object.c (mono_array_new_specific): Optimize this and the other allocation
11072         functions a bit.
11073         
11074         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
11075         domains too if mono_dont_free_domains is set.
11076
11077         * domain-internals.h (mono_dont_free_domains): New internal option controlling
11078         whenever to free appdomain data after it has been unloaded.
11079
11080         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
11081         
11082 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
11083
11084         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
11085         (mono_method_get_equivalent_method): Fix a warning.
11086
11087         * object.c (mono_message_init): Avoid looking up array types for each call.
11088
11089 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11090
11091         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
11092         call.
11093
11094         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
11095         even more.
11096
11097         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
11098         each iteration.
11099
11100         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
11101         fields of an enum.
11102
11103 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
11104
11105         * object.c (mono_value_box): Fix boxing of nullables.
11106
11107 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
11108
11109         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
11110         mono_module_handle that is defined by the linker; no initialization required.
11111         * coree.h: Remove mono_module_handle, add __ImageBase, update
11112         mono_image_open_from_module_handle.
11113         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
11114         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
11115         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
11116         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
11117         to 4 GB away from image base address. IA64 version is not tested but was very
11118         easy to implement and should work if we ever need it.
11119         * domain.c (mono_init_internal): Avoid system error message boxes.
11120         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
11121         with has_entry_point. Handle do_mono_image_load fauilre correctly.
11122         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
11123         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
11124         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
11125
11126         Contributed under MIT/X11 license.
11127
11128 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11129
11130         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
11131         as part of the private mono API.
11132         
11133         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
11134         Do proper argument checking for methods that belong to generic classes.
11135         Do proper type resolution for GMFH/2.
11136         Fixes #377324.
11137         
11138 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11139
11140         * verify.c (do_switch): Fix a memory corruption bug with
11141         the jump index is out of bound.
11142
11143 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11144
11145         * verify.c: Disable debug code.
11146
11147 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11148
11149         * reflection.c (mono_image_get_methodbuilder_token): Use
11150         mono_image_get_methodspec_token_for_generic_method_definition
11151         instead of mono_image_get_memberref_token. We cache more memberef
11152         entries now.
11153
11154 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11155
11156         * verify.c: Inflate exception clause types.
11157         Fixes #402606.
11158         
11159 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11160
11161         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
11162         name.
11163
11164         * reflection.c (mono_image_get_ctorbuilder_token): Same.
11165
11166         * reflection.c (mono_image_create_method_token): Same.
11167
11168 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11169
11170         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
11171         It does the same as mono_image_get_methodref_token but works on
11172         MethodBuilder.
11173
11174         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
11175         and always generate a methodspec. This follows the old behavior and fixes
11176         the regressions in System.Core. 
11177
11178 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11179
11180         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
11181         don't event mono_class_get () succeeds. Fixes #402182.
11182
11183 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11184
11185         * metadata-internals.h: Added MonoDynamicImage::methodspec
11186         hashtable to store methodspec tokens created for MethodBuilders.
11187
11188         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
11189         MethodBuilders as open instantiations if a methodspec was requested.
11190
11191         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
11192
11193         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
11194
11195         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
11196
11197         Fixes bug #349190.
11198
11199 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11200
11201         * loader.c (method_from_methodspec): Avoid crashing if the
11202         method lookup fails.
11203
11204 2008-06-20  Dick Porter  <dick@ximian.com>
11205
11206         * socket-io.c (get_socket_assembly): Cope with Moonlight network
11207         classes being in a different assembly.  Fixes bug 399184.
11208
11209 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
11210
11211         * loader.c (mono_loader_init): Make this callable multiple times.
11212         (mono_dllmap_insert): Call mono_loader_init () so this works even before
11213         the runtime is initialized. Fixes #401755.
11214
11215 2008-06-19  Dick Porter  <dick@ximian.com>
11216
11217         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
11218         Fixes bug 349688.
11219
11220 2008-06-19  Dick Porter  <dick@ximian.com>
11221
11222         * socket-io.c:
11223         * icall-def.h: Implement Socket generic Send() and Receive()
11224         methods.  Fixes bug 395168.
11225
11226 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
11227
11228         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
11229
11230         Contributed under MIT/X11 license.
11231
11232 2008-06-18  Martin Baulig  <martin@ximian.com>
11233
11234         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
11235         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
11236         set to 80.0.  The debugger <-> runtime interface is now frozen as
11237         well.   
11238
11239         * mono-debug.c
11240         (mono_debug_debugger_version): Bump to 4.
11241
11242 2008-06-18  Martin Baulig  <martin@ximian.com>
11243
11244         * debug-mono-symfile.c
11245         (load_symfile): Don't check the minor version.
11246
11247         * debug-mono-symfile.h: Bump the version number to 50.0.
11248
11249 2008-06-18  Martin Baulig  <martin@ximian.com>
11250
11251         * debug-mono-symfile.c
11252         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
11253         minimum required version.
11254
11255 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11256
11257         * reflection.c (mono_custom_attrs_from_property): Fix support for
11258         retriveving cattrs of dynamic inflated generic types.
11259
11260         * reflection.c (mono_custom_attrs_from_event): Same.
11261
11262         * reflection.c (mono_custom_attrs_from_field): Same;
11263
11264         * reflection.c (typebuilder_setup_events): Same cattrs of events.
11265
11266         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
11267         Moved to metadata.c.
11268
11269         * metadata.c: New functions to retrive the equivalent field, event
11270         of property from the generic type definition.
11271
11272         * metadata-internals.h: Added new functions from metadata.c.
11273
11274 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11275
11276         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
11277         to cached in a mempool is used.
11278
11279         * metadata.c (free_generic_class): In some situations field generic_info type
11280         is not properly dup'ed and leads to double free'ing.
11281
11282         Fixes #400643.
11283
11284 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11285
11286         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
11287         this arguments (will be needed later for generic methods).
11288         Collect stats.
11289
11290 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11291
11292         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
11293         Create a static RGCTX invoke wrapper for methods which require it.
11294
11295 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11296
11297         * object.c, class-internals.h: New function for checking whether
11298         an individual field is special static.
11299
11300 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11301
11302         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
11303         linear search since the table is sorted.
11304
11305         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
11306         Fixes #324180.
11307
11308 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11309
11310         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
11311         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
11312
11313         * gc.c (mono_domain_finalize): Allow an infinite timeout.
11314
11315         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
11316         
11317         * threads.c (mono_thread_request_interruption): Get rid of locking, use
11318         InterlockedCompareExchange to query and modify 
11319         thread->interruption_requested.
11320
11321         * object-internals.h (struct _MonoThread): Change interruption_requested
11322         to a gint32 so it can be modified by atomic operations. Add 
11323         'critical_region_level' from the managed side, change small_id to a guint32,
11324         add new set of 'unused' fields.
11325
11326         * appdomain.c: Bump corlib version.
11327
11328 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11329
11330         * class.c (mono_class_from_name): Search modules as well. Fixes
11331         #322332.
11332
11333 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11334
11335         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
11336         templates.  Templates are generalized with an additional type_argc
11337         argument.  RGCTX templates have type_argc==0, MRGCTX templates
11338         have type_argc>0.
11339
11340         * domain-internals.h, domain.c: New hash table for looking up
11341         MRGCTXs.
11342
11343         * metadata.c, metadata-internals.h: Rename hash and equal
11344         functions for MonoGenericInst's and make them public.
11345
11346         * class-internals.h: New data structures for the MRGCTX.  Macros
11347         for distinguishing slots in the RGCTX and the MRGCTX.
11348
11349 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11350
11351         * object.c (mono_method_get_imt_slot): Put the same methods of
11352         different instantiations of the same generic interface in the same
11353         IMT slots, to make generic sharing simpler.
11354
11355 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11356
11357         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
11358
11359         * metadata.c (mono_metadata_field_info_with_mempool): Added.
11360         This function works just like mono_metadata_field_info, but
11361         accept a mempool as argument to be used allocating memory.
11362
11363         * marshal.c (mono_marshal_load_type_info): Use new function
11364         to load marshal data into image mempool.
11365
11366 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11367
11368         * class.c (mono_class_inflate_generic_type_with_mempool):
11369         This function allows to inflate a generic type using
11370         a mempool.
11371
11372         * class.c (inflate_generic_type): Take a mempool as argument
11373         and use it to do type dup'ing.
11374
11375         * class.c (mono_class_setup_fields): Field type for generic
11376         generic classes are allocated from the image mempool.
11377
11378         * metadata.c (free_generic_class): Inflated field type is
11379         now allocated in the image mempool.
11380
11381 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11382
11383         * threads.c (thread_cleanup): Free MonoThread::name.
11384
11385 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11386
11387         * appdomain.c (ensure_directory_exists): avoid unnecessary
11388         mkdir(2) calls when the shadow directory already exists.
11389         (mono_make_shadow_copy): copy also satellite assemblies from the
11390         private bin directories.
11391
11392 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11393
11394         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11395         
11396         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11397         a page boundary. Fixes #396219.
11398
11399 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11400
11401         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11402         due to double-checked locking.
11403
11404 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11405
11406         * assembly.c (build_assembly_name): Release memory on failure.
11407
11408         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11409
11410 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11411
11412         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11413         memory on failure.
11414
11415 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11416
11417         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11418         memory on failure.
11419
11420 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11421
11422         * loader.c (field_from_memberref): Check if field signature type is equal
11423         to the non-inflated type of the field. Fixes #398980.
11424
11425 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11426
11427         * assembly.c (mono_assembly_load_from_full): Call 
11428         mono_assembly_load_friends () outside the assemblies lock, since it can
11429         acquire the loader lock. Fixes #323696.
11430
11431         * reflection.c (resolve_object): Inflate the inst with the context for
11432         FieldOnTypeBuilderInst. Fixes #399010.
11433
11434 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11435
11436         * reflection.c (mono_image_get_field_on_inst_token): Don't
11437         inflate the field to encode it's signature. If it's a
11438         VAR or MVAR it should stay that way in the signature.
11439         Fixes #399047.
11440
11441 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11442
11443         * reflection.c (resolve_object): Release memory of inflated types.
11444
11445 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11446
11447         * loader.c (mono_method_get_signature_full): Remove assert about
11448         loading a methodspec to a generic method. We have such methods, such as
11449         System.Threading.Interlocked::CompareExchange<T>.
11450         This assert was removed since it crashes the verifier when it checks
11451         methods calling CompareExchange<T>.
11452
11453 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11454
11455         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11456         of Type array and not MonoType.
11457
11458 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11459
11460         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11461         <lupus@ximian.com>
11462
11463 2008-06-10  Martin Baulig  <martin@ximian.com>
11464
11465         * debug-mono-symfile.h
11466         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11467         changes to the file format, but we were generating incorrect
11468         source file indices in the line number table due to a bug, which
11469         made backtraces report an incorrect source file.
11470
11471 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11472
11473         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11474         mini/debug-mini.c to here.
11475
11476         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11477
11478         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11479         use it to release structs returned by mono_debug_find_method.
11480
11481 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11482
11483         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11484         since it needs to set method->slot for all interface methods.
11485
11486 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11487
11488         * class-internals.h: Forgot to add.
11489
11490 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11491
11492         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11493
11494         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11495         Lookup the custom attributes from property_hash.
11496
11497         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11498         in property_hash. Allocate all data using the image mempool.
11499
11500         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11501         for dynamic_custom_attrs to checks if the image is dynamic.
11502
11503 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11504
11505         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11506         assemblies array.
11507         
11508         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11509         runtime functions while holding the domain assemblies lock.
11510
11511 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11512
11513         * verify.c: Reapplied the last bit of the reverted changes.
11514
11515 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11516
11517         * verify.c: Reapplied more of the reverted changes.
11518
11519 2008-06-09  Martin Baulig  <martin@ximian.com>
11520
11521         * debug-mono-symfile.c (load_symfile): Check the major version
11522         first; if it's wrong, don't print the minor version in the error message.
11523
11524 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11525
11526         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11527         lock instead of the domain lock to avoid deadlocks, since the thread might
11528         already hold the loader lock.
11529
11530         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11531         (mono_thread_attach): Ditto.
11532
11533         * monitor.c: Use a TLS variable for holding the current thread id instead
11534         of calling pthread_self ().
11535         (mono_monitor_init_tls): New internal function to initialize the TLS
11536         variable.
11537         (mono_monitor_try_enter_internal): Put the owner == id check after the
11538         owner == 0 check.
11539
11540         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11541         missed optimizations when using gcc-4.3.
11542
11543 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11544
11545         * reflection.c (mono_dynamic_image_free): Free the memory
11546         used by MonoGenericParam in MonoDynamicImage::gen_param.
11547
11548         * reflection.c (mono_reflection_setup_generic_class): Allocate
11549         container from mempool.
11550
11551         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11552         container from mempool.
11553
11554 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11555
11556         * threads.c (mono_set_pending_exception): New internal function to set the
11557         pending exception of the current thread.
11558         (mono_thread_get_and_clear_pending_exception): Check for 
11559         thread->pending_exception as well.
11560
11561         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11562
11563         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11564         it can trigger a collection.
11565
11566 2008-06-06  Martin Baulig  <martin@ximian.com>
11567
11568         Merged the `debugger-kahalo' branch.
11569
11570         * mono-debug.h
11571         (MONO_DEBUGGER_VERSION): Bumped to 72.
11572
11573         * debug-mono-symfile.h
11574         (MonoSymbolFileMethodIndexEntry): Removed.
11575         (MonoSymbolFileMethodEntry): New public typedef.
11576         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11577         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11578         `data_offset'.
11579         (MonoSymbolFileMethodEntry): Removed.
11580         (MonoSymbolFileLexicalBlockEntry): Removed.
11581         (MonoSymbolFileLineNumberEntry): Removed.
11582         (MonoDebugLexicalBlockEntry): Removed.
11583         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11584         removed `num_il_offsets' and `il_offsets'.
11585         (MonoSymbolFile): Replace `version' with `major_version' and
11586         `minor_version'.
11587         (MONO_SYMBOL_FILE_VERSION): Replace with
11588         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11589         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11590
11591         * debug-mono-symfile.c
11592         (mono_debug_symfile_lookup_location): Add support for the new line
11593         number table format.
11594
11595 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11596
11597         * metadata.c (free_generic_class): Release the inflated
11598         MonoClass of dynamic generic classes if it's not a generic
11599         type definition.
11600
11601 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11602
11603         * verify.c: Reapplied more of the reverted changes.
11604
11605 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11606
11607         * reflection.c (lookup_custom_attr): Clean the cached flag or
11608         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11609         for SRE types.
11610
11611 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11612
11613         * verify.c: Reapplied a small part of the reverted changes.
11614
11615 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11616
11617         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11618
11619         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11620         previously in managed code.
11621         (mono_monitor_exit): Ditto.
11622         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11623
11624         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11625         the managed definition.
11626
11627 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11628
11629         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11630
11631 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11632
11633         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11634         
11635         * monitor.c: Add some micro optimizations.
11636
11637         * icall.c (type_from_typename): Handle 'bool'.
11638
11639 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11640
11641         * verify.c: Implement constructor verification per P III 1.8.1.4.
11642         Fixes #396716.
11643
11644 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11645
11646         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11647         holding the assemblies lock here too.
11648
11649 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11650
11651         * verify.c: Kill stack_top function.
11652
11653 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11654
11655         * verify.c: Kill stack_get function.
11656
11657 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11658
11659         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11660
11661 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11662
11663         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11664         more reliable.
11665
11666         * verify.c (mono_method_verify): Inflate params and locals to avoid
11667         mismatch when checking for compatibility.
11668
11669 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11670
11671         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11672         Length prefix should be size in bytes. Fix bug #339530.
11673         
11674         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11675         Length prefix should be size in bytes. Fix bug #339530.
11676
11677         Code is contributed under MIT/X11 license.
11678
11679 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11680
11681         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11682
11683         Contributed under MIT/X11 license.
11684
11685 2008-06-05  Martin Baulig  <martin@ximian.com>
11686
11687         * mono-debug-debugger.c
11688         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11689
11690 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11691
11692         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11693         while holding the assemblies lock to prevent deadlocks. Handle the case
11694         where the search hook returns NULL but the assembly was still loaded.
11695         Fixes #323696.
11696
11697         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11698         modify domain state.
11699
11700 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11701
11702         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11703         * Makefile.am (pedump_LDADD): Post-process object files and
11704         add dtrace-generated object file, if necessary.
11705
11706         Code is contributed under MIT/X11 license.
11707
11708 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11709
11710         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11711
11712 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11713
11714         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11715
11716 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11717
11718         * threads.c: Try to free everything from the delayed free table
11719         when shutting down threads, and set the variable to NULL after the
11720         table is freed so that calling
11721         mono_thread_hazardous_try_free_all() when shutting down the root
11722         domain doesn't crash.
11723
11724 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11725
11726         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11727         the caller if resulting type was inflated.
11728
11729         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11730         was inflated.
11731
11732         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11733
11734
11735 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11736
11737         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11738         class library tests.
11739
11740         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11741         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11742         #396989.
11743
11744 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11745
11746         * domain.c, domain-internals.h: The JIT infos are now freed by the
11747         JIT info table code.  They are freed immediately if there only a
11748         single JIT info table in circulation.  If there is more, the free
11749         is delayed via a queue.
11750
11751         * threads.c, threads-types.h: New hazard pointer function for
11752         freeing all freeable delayed items in one sitting.
11753
11754 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11755
11756         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11757
11758         * reflection.c (typebuilder_setup_properties): Same.
11759
11760         * reflection.c (typebuilder_setup_events): Same.
11761
11762 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11763
11764         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11765         and use it for allocating memory.
11766
11767         * reflection.c (mono_marshal_spec_from_builder): Same.
11768
11769         * reflection.c: Change code to use new signatures.
11770
11771         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11772
11773 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11774
11775         * decimal.c (rescale128): Put back one line which was accidently commented
11776         out.
11777         
11778         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11779         to cause crashes.
11780
11781 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11782
11783         * reflection.c (mono_reflection_generic_class_initialize): Name must
11784         be always malloc'ed so we can free it later on. Do this for field, property
11785         and event.
11786
11787         * metadata.c (free_generic_class): Free field, property and event names.
11788
11789 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11790
11791         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11792         instead of g_memdup.
11793
11794         * reflection.c (typebuilder_setup_fields): Same.
11795
11796 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11797
11798         * decimal.c (rescale128): Optimize this function a bit more.
11799
11800 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11801
11802         * metadata.c (free_generic_class): Release some memory from
11803         SRE generic classes.
11804
11805 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11806
11807         * reflection.c (mono_image_get_generic_field_token): No reference
11808         to name is kept, free it.
11809
11810         * reflection.c (mono_reflection_generic_class_initialize): Free
11811         more memory of the inflated field.
11812
11813 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11814
11815         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11816         code.
11817
11818 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11819
11820         * reflection.c (mono_dynamic_image_free): Release memory used by
11821         MonoDynamicImage::array_methods elements.
11822
11823         * reflection.c (assembly_add_win32_resources): Release memory after
11824         encoding.
11825
11826 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11827
11828         * decimal.c (log2_32): Use an optimized version for this function too.
11829         
11830         * decimal.c (log2_64): Fix this on 32 bit machines.
11831
11832 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11833
11834         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11835
11836         * class.c (mono_metadata_signature_deep_dup): Same.
11837
11838         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11839         a mempool.
11840
11841         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11842
11843         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11844
11845         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11846
11847         * class-internals.h: Update signatures to take a MonoMemPool.
11848
11849 2008-06-02  Dick Porter  <dick@ximian.com>
11850
11851         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11852         * icall-def.h: Add
11853         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11854         FormatMessage API to get the error text.  Fixes bug 321827.
11855
11856 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11857
11858         * decimal.c: Add some micro optimizations to make decimal operations faster.
11859
11860 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11861
11862         * reflection.c (method_encode_clauses): Take a mempool
11863         as parameter and use it to allocate the clause array.
11864
11865         * reflection.c (mono_image_get_field_on_inst_token): Free
11866         the inflated type after encoding it.
11867
11868         * reflection.c (mono_dynamic_image_free): Free each element
11869         of MonoDynamicImage::gen_params.
11870
11871         * reflection.c (reflection_methodbuilder_to_mono_method):
11872         Allocate the generic param array from the mempool.
11873         Allocate signature params from the mempool.
11874
11875         * reflection.c (mono_reflection_generic_class_initialize):
11876         Free inflated fields after been used.
11877
11878 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11879
11880         * icall.c: Reapply the memory leak fixes as they no
11881         longer make mono crash.
11882
11883 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11884
11885         * reflection.c (mono_type_get_object): Don't store the suplied
11886         MonoType with type_hash. A caller which pass a type that
11887         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11888         might end with a pointer to freed memory.
11889         The solution is to use byval_arg or this_arg from the associated
11890         MonoClass of the supplied type.
11891
11892 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11893
11894         * icall.c: Revert the rest of the last change as it breaks the build too.
11895
11896 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11897
11898         * icall.c: Revert a leak fix as it's breaking the build.
11899
11900 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11901
11902         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11903
11904 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11905
11906         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11907
11908 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11909
11910         * icall.c: Fix some memory leaks.
11911
11912 2008-05-29  Dick Porter  <dick@ximian.com>
11913
11914         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11915         async socket operations from the pending list when a socket
11916         closes.  Leaving it until the threadpool services the event
11917         exposes a race condition when a socket descriptor is reused.
11918         Fixes bug 377589.
11919
11920 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11921
11922         * object.c: Fix negative index check for array alocation.
11923
11924 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11925
11926         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11927         This check is performed by the verifier for IL created delegates
11928         and by Delegate::CreateDelegate for programatically created ones.
11929         Fixes #372406.
11930
11931 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11932
11933         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11934         Fix code to use mono_array_size_t instead of int.
11935
11936         Based on patch by Luis F. Ortiz.
11937         Contributed under X11 license.
11938         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11939
11940 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11941
11942         * icall.c: Added ves_icall_System_Array_GetLongLength and
11943         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11944         arrays.
11945
11946         * icall.h: Export both new functions.
11947
11948         Based on patch by Luis F. Ortiz.
11949         Contributed under X11 license.
11950         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11951
11952 2008-05-28  Martin Baulig  <martin@ximian.com>
11953
11954         The debugger now requires exactly r103463.
11955
11956         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11957         This version is not supported by the debugger, wait for 72.
11958
11959 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11960
11961         * object.h: Changed array related functions to use
11962         mono_array_size_t instead of guint32. Forgot to commit this file.
11963
11964         Patch by Luis F. Ortiz.
11965         Contributed under X11 license.
11966         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11967
11968
11969 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11970
11971         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11972         don't define it. Use the number literal instead.
11973
11974 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11975
11976         * icall.c: Changed array related functions to use
11977         mono_array_size_t instead of guint32.
11978
11979         * icall.c (ves_icall_System_Array_GetLength): Check for length
11980         overflow under MONO_BIG_ARRAYS.
11981
11982         Based on patch by Luis F. Ortiz.
11983         Contributed under X11 license.
11984         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11985
11986 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11987
11988         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11989
11990         Based on patch by Luis F. Ortiz.
11991         Contributed under X11 license.
11992         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11993
11994 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11995
11996         * object.c, object.h: Changed array related functions to use
11997         mono_array_size_t instead of guint32.
11998
11999         Patch by Luis F. Ortiz.
12000         Contributed under X11 license.
12001         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12002
12003 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12004
12005         * object.h: Introduced mono_array_size_t typedef. This must be used
12006         in all places an array length is expected. This is 64bits wide if
12007         MONO_BIG_ARRAYS is enabled.
12008
12009         Patch by Luis F. Ortiz.
12010         Contributed under X11 license.
12011         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12012
12013 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12014
12015         * security-manager.c class.c: Set the class exception info by calling
12016         mono_class_set_failure ().
12017
12018         * class.c (mono_class_get_exception_data): New accessor function.
12019         (mono_class_set_failure): Store exception_data in the property hash.
12020
12021         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
12022         the struct as a property.
12023
12024         * loader.c (mono_get_method_full): Store the lookup result for method
12025         tokens in method_cache, the others in methodref_cache to decrease the memory
12026         usage of hash tables.
12027
12028         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
12029         (mono_image_init): method_cache is lazy inited now.
12030
12031         * metadata-internals.h (struct _MonoImage): Change method_cache to
12032         a MonoValueHashTable, add a separate methodref_cache.
12033
12034 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
12035
12036         * number-formatter.h: Fix tables to avoid arithemtic overflow in
12037           Double.ToString as exposed by Bug #383531.
12038
12039 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12040
12041         * number-formatter.h: Make some tables static.
12042
12043         * class.c (mono_method_set_generic_container): New accessor function.
12044         (mono_method_get_generic_container): Ditto.
12045
12046         * class-internals.h (struct _MonoMethod): Remove rarely used 
12047         'generic_container' field, store it in the property hash instead. Add 
12048         'is_generic' boolean field instead.
12049
12050         * image.c (mono_image_init): Initialize property_hash.
12051         (mono_image_close): Destroy property_hash.
12052
12053         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
12054         hold rarely used fields of runtime structures belonging to this image.
12055
12056         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
12057         to get/set method->generic_container.
12058
12059         * loader.c (mono_get_method_from_token): Avoid loading the method header for
12060         generic methods.
12061
12062 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
12063
12064         * class.c (mono_class_inflate_generic_method_full): Don't increase
12065         mono_stats.inflated_method_count for methods found in the cache.
12066
12067         * threads.c (mono_thread_request_interruption): Add a comment about 
12068         QueueUserAPC ().
12069
12070 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12071
12072         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
12073         interface_offsets_packed table.
12074         
12075         * class.c (mono_class_init): Remove some dead code.
12076
12077         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
12078         mono_class_setup_vtable () when CAS is active to detect security problems.
12079
12080 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
12081
12082         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
12083
12084         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
12085         parameters as it's irrelevant for delegate checking.
12086
12087 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12088
12089         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
12090
12091         * class.c (mono_class_init): Control the creation of a generic vtable using
12092         a global which is true by default, but set to false by the runtime startup code.
12093         
12094         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
12095         Disabled for now since it breaks the embedding API.
12096         Move the setup of class->methods for arrays to mono_class_setup_methods ().
12097         (mono_class_setup_methods): Add a memory barrier.
12098
12099         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
12100         when mono_class_init () doesn't compute the generic vtable.
12101         
12102 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12103         * profiler.c: Added mono_profiler_install_statistical_call_chain,
12104         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
12105         to support call chains (backtrace) in the stat profiler.
12106         * profiler.c, profiler-private.h: Likewise.
12107
12108 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12109
12110         * generic-sharing.c: Init generic class when a method of it is
12111         requested via a runtime generic context.
12112
12113 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12114
12115         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
12116
12117         * reflection.c (mono_type_get_object): Add a FIXME.
12118
12119         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
12120
12121         * class.c (mono_class_get_method_by_index): New helper function, returning an
12122         entry in the class->methods array.
12123
12124 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12125
12126         * class.c (mono_class_init): Only do the array optimization for szarrays. 
12127         Avoid creating a generic vtable for generic instances as well.
12128         (mono_class_get_method_from_name_flags): Don't search in the metadata for
12129         generic instances.
12130
12131 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
12132
12133         * loader.c (mono_get_method_constrained): Inflate the signature
12134         with class context. Fix #325283.
12135
12136 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12137
12138         * object.c (mono_class_create_runtime_vtable): Add a comment.
12139
12140         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
12141         where needed.
12142         (setup_interface_offsets): Handle the case when this is called twice for arrays.
12143         (mono_class_setup_vtable_general): Add an assert.
12144         (mono_class_init): Avoid creating a generic vtable for arrays.
12145
12146         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
12147         here, let mono_class_init () do that.
12148
12149         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
12150         interfaces in mscorlib.
12151
12152         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
12153         interfaces. Add some comments.
12154         (mono_class_init): Call mono_class_setup_methods () here since it is no
12155         longer called by mono_class_setup_vtable ().
12156
12157         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
12158         not set in class->vtable.
12159         (mono_class_create_runtime_vtable): Reenable the disabled code.
12160
12161         * object.c (mono_class_create_runtime_vtable): Disable the last change for
12162         now as it causes some test failures.
12163
12164         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
12165         if using the vtable trampoline. Also remove some strange code which put the
12166         generic methods themselves into the vtable slots. Remove the AOT init_vtable
12167         stuff as it is no longer needed.
12168
12169 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
12170
12171         * pedump.c: Give make --verify all option check code as well.
12172         Using --verify code won't check for metadata now.
12173
12174 2008-05-19  Martin Baulig  <martin@ximian.com>
12175
12176         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
12177
12178         * mono-debug.c
12179         (_mono_debug_using_mono_debugger): New global variable; it's set
12180         directly by the debugger, so mono_debug_using_mono_debugger() also
12181         works after attaching.
12182
12183 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
12184
12185         * object.c (mono_class_create_runtime_vtable): Use memory barriers
12186         as we do double checked locking on MonoClass::runtime_info and
12187         MonoClassRuntimeInfo::domain_vtables.
12188
12189 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
12190
12191         * debug-helpers.c (print_field_value): Fix a warning.
12192
12193 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
12194
12195         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
12196         set in the AOT case.
12197
12198 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12199
12200         * class.c (mono_class_setup_vtable_general): Use memory barriers
12201         as we do double checked locking on MonoClass::vtable.
12202
12203 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12204
12205         * reflection.c (resolve_object): Inflate only if the generic context
12206         is not null. Fixes #389886.
12207
12208 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
12209
12210         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
12211         instead of g_free.
12212
12213         Code is contributed under MIT/X11 license.
12214
12215 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12216
12217         * class.c: Revert unrelated change.
12218
12219 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12220
12221         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
12222         a generic instantiation, use mono_class_from_mono_type instead of playing
12223         with MonoType directly.
12224
12225 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12226
12227         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
12228         checks must ignore generic instantiations, so mono_class_has_parent is not
12229         suitable. Fixes #390128.
12230
12231 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
12232
12233         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
12234         it to avoid registering tokens during metadata generation. Fixes #390023.
12235
12236 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12237
12238         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
12239         consistent.
12240
12241         Contributed under MIT/X11 license.
12242
12243 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12244
12245         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
12246         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
12247         to fixup the EXE image.
12248         (mono_cleanup): Use mono_close_exe_image.
12249         (mono_close_exe_image): New function.
12250         * image.c: Include "marshal.h".
12251         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
12252         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
12253         counting when the image is loaded outside of mono_image_open_full. Set status
12254         based on GetLastError.
12255         * coree.c: Include required headers. Add init_from_coree.
12256         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
12257         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
12258         (_CorExeMain): Set init_from_coree.
12259         (CorExitProcess): Only call ExitProcess for now.
12260         (CorBindToRuntimeEx): New stub implementation.
12261         (CorBindToRuntime): New function.
12262         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
12263         (MonoFixupExe): ILONLY executables require no fixups.
12264         (mono_set_act_ctx): New function to set activation context.
12265         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
12266         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
12267         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
12268         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
12269         as MONO_INTERNAL.
12270         * domain-internals.h: Add mono_close_exe_image.
12271
12272         Contributed under MIT/X11 license.
12273
12274 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
12275
12276         * metadata.c (mono_metadata_compute_size): Correctly calculate field
12277         size for generic param and event tables. Fixes #388977.
12278
12279 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
12280
12281         * loader.c (mono_method_signature): Use memory barriers because of the double
12282         checked locking pattern.
12283
12284         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
12285         aborting or aborted as well. Fixes #376391.
12286         
12287         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
12288         existing runtime state in the Suspend handler during shutdown.
12289
12290 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
12291
12292         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
12293
12294         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
12295         which are starting up or shutting down.
12296
12297         * threads.c (mono_threads_set_shutting_down): Don't return a value since
12298         this function never returns if the runtime is already shutting down.
12299
12300         * icall.c (ves_icall_System_Environment_Exit): Update after 
12301         mono_threads_set_shutting_down () signature change.
12302         
12303 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
12304
12305         * class.c: Added can_access_instantiation to verify if the instantiation
12306         is visible. Fix access check for nested types as they returned TRUE
12307         before doing type and generic instantiation visibility checks.
12308
12309 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12310
12311         * reflection.c (mono_reflection_create_generic_class): The created type
12312         must have a different container from its TypeBuilder. Otherwise they
12313         will end sharing generic arguments, which is wrong.
12314
12315         Due to the sharing, making a generic instance of the created type using
12316         the TypeBuider generic arguments resulted in the generic type definition
12317         been returned, which is wrong as well.
12318
12319         As a bonus the code was leaking the type_params array. This memory should
12320         be allocated from the image mempool.
12321
12322         This fixes bug #354047.
12323
12324 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12325
12326         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
12327         to here         as they are now used in assembly.c new code.
12328         Added a skipverification flag to MonoAssembly.
12329         New internal function mono_assembly_has_skip_verification.
12330
12331         * assembly.c: New function mono_assembly_has_skip_verification. It checks
12332         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
12333         part of #387274.
12334
12335 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12336
12337         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
12338         needed. Fixes #387034.
12339
12340         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
12341
12342 2008-05-06  Miguel de Icaza  <miguel@novell.com>
12343
12344         * assembly.c (mono_assembly_load_reference): Prevent crash while
12345         disassembling Silverlight 2.0 executables while we still do not
12346         have GACed libraries.
12347
12348 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12349
12350         * reflection.c: Special case generic type definitions as well. Fixes #383444.
12351
12352 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
12353
12354         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
12355         of the dynamic case. Fixes #387404.
12356
12357 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12358
12359         *verify.c (mono_verifier_is_class_full_trust): If under
12360         verify_all and the verifier mode was not set, only
12361         gac and corlib types are fulltrust. This makes --verify-all
12362         usable to detect unverifiable code, which is the expected
12363         use case.
12364
12365 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12366
12367         * verify.h: Ops, commited the header with debug
12368         enabled.
12369
12370 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12371
12372         * verify.c (merge_stack): Use the new value on unverifiable
12373         stack merges.
12374
12375         * verify.c (verify_type_compatibility_full): Comparison
12376         of nullable types can't use mono_class_is_assignable_from.
12377
12378         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12379         that makes all verification errors be reported.
12380
12381         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12382         mono_method_verify.
12383
12384 2008-05-05  Robert Jordan  <robertj@gmx.net>
12385
12386         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12387         support for value types. See #386415.
12388
12389         * object.c: comments.
12390
12391         Code is contributed under MIT/X11 license.
12392
12393 2008-05-05  Martin Baulig  <martin@ximian.com>
12394
12395         * debug-mono-symfile.h
12396         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12397         for old pre-terrania symbol files.
12398
12399 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12400
12401         * mono-config.c: Add ppc64 architecture.
12402
12403         Code is contributed under MIT/X11 license.
12404
12405 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12406
12407         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12408           PPC64 uses function descriptors as well.
12409
12410         Code is contributed under MIT/X11 license.
12411
12412 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12413
12414         * object.c (compute_class_bitmap): Ignore literal static fields.
12415
12416         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12417         var has an invalid format.
12418         (describe_ptr): Add some sanity checks for the vtable.
12419         (add_nursery_frag): Clear unused nursery fragments.
12420         (major_collection): Clear all remaining nursery fragments.
12421
12422 2008-05-03  Robert Jordan  <robertj@gmx.net>
12423
12424         * image.c, metadata-internals.h: add thunk_invoke_cache.
12425
12426         * marshal.c, marshal.h: implement
12427         mono_marshal_get_thunk_invoke_wrapper ().
12428
12429         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12430
12431         Code is contributed under MIT/X11 license.
12432
12433 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12434
12435         * verify.c (do_leave): Empty the stack.
12436
12437 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12438
12439         * class.c (mono_class_is_assignable_from): Variance
12440         doesn't work between reference and value types. For example,
12441         given type C<T+>, C<int32> is not assignable to C<object>.
12442         Break the argument checking loop on first error. 
12443
12444 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12445
12446         * icall.c : base64_to_byte_array() needs some more strict
12447           check for sequence of '=' characters. Patch by Santa
12448           Marta (http://deee.g.hatena.ne.jp/santamarta).
12449
12450           Contributed under MIT/X11 license.
12451           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12452
12453 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12454
12455         * domain.c: Disable LoadLibrary support to fix Win32 build.
12456
12457         Code is contributed under MIT/X11 license.
12458
12459 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12460
12461         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12462         to help with cache behaviour.
12463
12464 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12465
12466         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12467         method. 
12468
12469 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12470
12471         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12472
12473 2008-05-01  Dick Porter  <dick@ximian.com>
12474
12475         * process.c (process_get_fileversion): Only pass 16 bits of
12476         language ID to VerLanguageName.  Fixes bug 381204.
12477
12478 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12479
12480         * verify.c (mono_method_verify): Fix the comparison
12481         operator for code bounds check.
12482
12483 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12484
12485         * verify.c (mono_method_verify): Check the bounds of
12486         all access of the code array.
12487
12488 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12489
12490         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12491
12492 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12493
12494         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12495         not valid.
12496
12497 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12498
12499         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12500         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12501         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12502         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12503         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12504         mono_runtime_load.
12505         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12506         runtime initialization from metadata.
12507         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12508         (mono_set_rootdir): Use mono_get_module_file_name.
12509         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12510         handles.
12511         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12512         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12513         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12514         MonoCLIImageInfo. Add support for module handles.
12515         (load_cli_header): Update mono_cli_rva_image_map signature.
12516         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12517         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12518         (mono_image_rva_map): Add support for module handles.
12519         (mono_image_ensure_section_idx): Add support for module handles.
12520         (mono_image_close): Add support for module handles.
12521         (do_load_header): Add support for module handles.
12522         (mono_image_open_from_module_handle): New function for internal use.
12523         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12524         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12525         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12526         handles.
12527         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12528         * image.h: Add mono_image_fixup_vtable.
12529         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12530         support.
12531         * coree.h: New file.
12532         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12533         unsupported native code.
12534         (mono_marshal_set_callconv_from_modopt): New function splitted from
12535         mono_marshal_get_managed_wrapper.
12536         (mono_marshal_get_managed_wrapper): Use
12537         mono_marshal_set_callconv_from_modopt.
12538         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12539         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12540         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12541         that results in a deadlock when the runtime is loaded in _CorDllMain.
12542         * Makefile.am: Add coree.c and coree.h.
12543
12544         Contributed under MIT/X11 license.
12545
12546 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12547
12548         * generic-sharing.c: Search for type arguments in array element
12549         types as well.
12550
12551 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12552
12553         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12554
12555         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12556
12557         * object.c: Don't setup the RGCTX when the vtable is created,
12558         because we're setting it up lazily now.
12559
12560 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12561
12562         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12563         64 bit support.
12564
12565 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12566
12567         * verify.c (verify_class_for_overlapping_reference_fields): 
12568         If class is under fulltrust allow reference types to overllap
12569         if they have the same RVA.
12570
12571 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12572
12573         * pedump.c: Added new flag valid-only, that makes the verifier
12574         behaves just like --security=validil. It won't fail type load
12575         due to unverifiable restrictions.
12576
12577 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12578
12579         * class-internals.h (struct MonoMethod): Added a verification_success
12580         field to cache verifier executions. Reduced MonoMethod:slot size by
12581         one bit.
12582
12583 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12584
12585         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12586         instead of a 'vt' argument to save an indirection and to allow these to be used
12587         for valuetypes.
12588         (scan_vtype): New helper function to scan an area using a gc descriptor.
12589         (mono_gc_wbarrier_value_copy): Implement this.
12590         (handle_remset): Add support for REMSET_VTYPE.
12591         (find_in_remset_loc): Ditto.
12592         (mono_gc_base_init): Allow some debugging options to be controlled through the
12593         use of the MONO_GC_DEBUG env variable.
12594         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12595         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12596
12597 2008-04-23  Martin Baulig  <martin@ximian.com>
12598
12599         * domain.c (mono_domain_create): Move the call to
12600         mono_debug_domain_create() down, after allocating the domain id.
12601
12602 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12603
12604         verify.c (verify_class_for_overlapping_reference_fields): Skip
12605         static fields while verifying for overlapping fields as they
12606         don't matter at all.
12607
12608 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12609
12610         * domain-internals.h: added a declaration of
12611         mono_make_shadow_copy.
12612
12613         * assembly.c (mono_assembly_open_full): shadow copying of
12614         assemblies moved to here, so that all the assemblies within the
12615         application domain's private binary directories can be
12616         processed. Fixes bug #380546
12617
12618         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12619         mono_make_shadow_copy and made non-static. The decision whether
12620         to shadow-copy an assembly is made based on its location - it's
12621         copied if it's in one of the private application domain binary
12622         directories and its different to the target file in the shadow
12623         directory. Fixes bug #380546
12624
12625 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12626
12627         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12628
12629         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12630         types.
12631
12632         * reflection.c (mono_image_create_token): Handle 
12633         Method/ConstructorOnTypeBuilderInst.
12634         (resolve_object): Ditto.
12635         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12636         so it can be called from resolve_object. Also handle the case when the inflated
12637         class already has its methods setup.
12638
12639 2008-04-21  Martin Baulig  <martin@ximian.com>
12640
12641         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12642
12643 2008-04-20  Geoff Norton  <gnorton@novell.com>
12644
12645         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12646         pointer dereference.
12647
12648 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12649
12650         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12651         portability API to look up the assembly file. Fixes behavior in
12652         situations when the application has a bin/ directory, but the
12653         assembly search patch refers to Bin/ (and thus the requested file
12654         name is Bin/SomeLibrary.dll). Fixes bug #379888
12655
12656 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12657
12658         verify.c (mono_type_is_generic_argument): Extracted this check
12659         from a dozen places to here.
12660
12661         verify.c: Fixed all issues related to boxing generic arguments
12662         and their constraints.
12663
12664 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12665
12666         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12667
12668 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12669
12670         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12671         isn't finished yet. Fixes #363447.
12672
12673 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12674
12675         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12676         Fixes #346419.
12677
12678 2008-04-13  Jb Evain  <jbevain@novell.com>
12679
12680         * domain.c: update the 2.1 profile versions.
12681         Merged from the Moonlight 2 branch.
12682
12683 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12684
12685         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12686         mscorlibs for the non-refonly case as well.
12687
12688         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12689         in mono_assembly_load_from_full (). Fixes #378924.
12690
12691 2008-04-11  Geoff Norton  <gnorton@novell.com>
12692
12693         * icall.c: The global extern environ doesn't exist on Mac.  We
12694         need to call NSGetEnviron instead.
12695
12696 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12697
12698         verify.c: Add generic method constraint verification.
12699
12700 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12701
12702         class.c (mono_class_inflate_generic_method_full): Add a long
12703         explanation to the is_mb_open hack. Remove the FIXME.
12704
12705 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12706
12707         * verify.c (mono_method_verify): Mark all unknown opcodes
12708         as invalid. Mark jmp as unverifiable.
12709
12710 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12711
12712         * verify.c: Add code to do type constraint verification on class instances.
12713
12714         * verify.c (mono_verifier_verify_class): Use the type constraint 
12715         verification code.
12716
12717 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12718
12719         * class.c (mono_class_get_field_default_value): Don't pass cindex
12720         as hint to mono_metadata_get_constant_index. The local is not initialized
12721         and should contain garbage most of the time. This could only work
12722         with a lot of luck.
12723
12724 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12725
12726         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12727
12728 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12729
12730         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12731
12732         * class.c (mono_class_from_generic_parameter): Save the token of the
12733         generic param in MonoClass::sizes.generic_param_token.
12734
12735         * reflection.c (mono_custom_attrs_from_class): If the class type is
12736         VAR or MVAR retrieve the attributes of the generic param.
12737
12738 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12739
12740         * class.c (mono_class_init): Do class verification if the verifier
12741         is enabled.
12742
12743 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12744
12745         * verify-internal.h: Added mono_verifier_verify_class.
12746
12747         * verify.c: Added mono_verifier_verify_class. It checks for
12748         classes with explicit layout that have overlapping reference fields.
12749
12750         * pedump.c: Init the verifier state prior to verification. Fixed
12751         command line arguments.
12752
12753 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12754
12755         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12756
12757 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12758
12759         * verify-internals.h: Fix a warning.
12760
12761 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12762
12763         * verify-internals.h: New header with the verifier configuration
12764         extracted from mini.c.
12765
12766         * verify.c: Implemented the new functions exported by verify-internals.h.
12767
12768 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12769
12770         * verify.c: Add proper verification of ckfinite.
12771
12772 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12773
12774         * verify.c (do_conversion): Improved error message to something
12775         more meanfull.
12776
12777         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12778         with primitive types.
12779
12780 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12781
12782         * verify.c: Added tail prefix checking. Marked icall
12783         as unverifible.
12784
12785 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12786
12787         * verify.c: Fix the detection of branches to the middle
12788         of an instruction.
12789
12790 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12791
12792         * verify.c: Implemented verification of volatile. and
12793         unaligned. prefix. Check if a type is valid after retrieving it.
12794
12795 2008-04-01  Dick Porter  <dick@ximian.com>
12796
12797         * process.c (process_get_fileversion): If there's no string block,
12798         set the file language to en_US.  Fixes the other new part of bug
12799         374600.
12800
12801 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12802
12803         * class.c: New functions mono_method_can_access_field_full and
12804         mono_method_can_access_method_full. They perform type visibility
12805         and type site check.
12806
12807         * class-internal.h: Added exported functions.
12808
12809         * verify.c: Use new functions to implement proper visibility checks.
12810
12811 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12812
12813         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12814
12815 2008-03-28  Dick Porter  <dick@ximian.com>
12816
12817         * process.c (process_get_fileversion): Use the first language ID
12818         we see, rather than insisting on an invariant language.  Fixes bug
12819         374600.
12820
12821 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12822
12823         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12824         the streams to fix reading of invalid memory later.
12825
12826         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12827         to ease debugging.
12828
12829 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12830
12831         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12832         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12833
12834 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12835         * threads.h: Added MonoThreadManageCallback type and
12836         mono_thread_set_manage_callback prototype
12837         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12838         (used to store the mono_thread_manage callback).
12839         * threads.c: Added mono_thread_set_manage_callback, and handle
12840         "MonoThread->manage_callback" in build_wait_tids.
12841
12842 2008-03-26  Dick Porter  <dick@ximian.com>
12843
12844         * process.c (process_get_fileversion): Set FileVersionInfo strings
12845         to Empty when the resource doesn't have the particular info.
12846         Fixes bug 355717.
12847
12848 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12849
12850         * verify.c (mono_method_verify): Proper prefix validation.
12851
12852 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12853
12854         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12855         itself in a separate argument instead of throwing them. Fixes #373448.
12856
12857         * appdomain.c: Bump corlib version.
12858
12859 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12860
12861         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12862
12863 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12864
12865         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12866         version macros.
12867
12868 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12869
12870         * generic-sharing.c, class-internals.h: Code for putting
12871         reflection types into the runtime generic context.
12872
12873 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12874
12875         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12876         Fixes #340662. 
12877
12878
12879 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12880
12881         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12882
12883         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12884
12885         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12886
12887         * verify.c (do_cast): Let the result value keep the boxed status.
12888
12889         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12890
12891 2008-03-17  Jb Evain  <jbevain@novell.com>
12892
12893         * reflection.c: when running on a 2.0 runtime, emit
12894         unconditionally the #~ header version as 2.0, and the
12895         CLI header version as 2.5, for symmetry's sake with csc.
12896
12897 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12898
12899         * class.c: Remove the unused cache_interface_offsets stuff.
12900
12901         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12902         profiler.c: Fix warnings.
12903
12904 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12905
12906         * generic-sharing.c, class-internals.h: Support for putting
12907         methods into the runtime generic context.
12908
12909 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12910
12911         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12912         classes which are generic instances of not-yet finished typebuilders. Fixes
12913         #351172.
12914
12915         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12916
12917 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12918
12919         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12920
12921         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12922         field, replace it with a hash table in MonoDynamicImage.
12923
12924         * reflection.c (inflate_mono_method): Access the generic definition object from
12925         image->generic_def_objects instead of imethod->reflection_info.
12926
12927         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12928
12929         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12930         
12931         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12932         function in reflection.c so it is easier to keep in sync with the dynamic image
12933         creation code.
12934
12935         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12936         mono_image_close ().
12937
12938 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12939
12940         * class.c (mono_class_generic_sharing_enabled): Disable generic
12941         sharing for all architectures except AMD64 and x86 to fix build.
12942
12943 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12944
12945         * verify.c: Use the generic definition MonoGenericContext when available.
12946         Remove code for checking generics instance compatibility in favor of
12947         mono_class_is_assignable_from.
12948
12949 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12950
12951         * marshal.c, marshal.h, metadata-internals.h, image.c,
12952         wrapper-types.h: New wrapper for invoking a shared static method
12953         without having to pass the runtime generic context argument.
12954
12955 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12956
12957         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12958
12959 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12960
12961         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12962         
12963         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12964         create a token from a FieldOnTypeBuilderInst.
12965         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12966         (resolve_object): Ditto.
12967
12968         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12969         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12970
12971 2008-03-14  Martin Baulig  <martin@ximian.com>
12972
12973         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12974
12975         * debug-mono-symfile.h
12976         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12977         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12978
12979 2008-03-10  Martin Baulig  <martin@ximian.com>
12980
12981         * debug-mono-symfile.h
12982         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12983         `lexical_block_table_offset'.
12984         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12985         `lexical_blocks'.
12986         (MonoSymbolFile): Added `version'.
12987
12988         * mono-debug.h
12989         (MonoDebugLexicalBlockEntry): Removed.
12990         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12991         `lexical_blocks'.
12992
12993         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12994         blocks here; the debugger now does this internally.
12995
12996 2008-02-27  Martin Baulig  <martin@ximian.com>
12997
12998         * object.c (mono_runtime_exec_main): Call
12999         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
13000         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
13001
13002 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13003
13004         * verify.c (verify_type_compatibility_full): Allow native int to be converted
13005         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
13006
13007 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13008
13009         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
13010         ldftn with a virtual method.
13011
13012 2008-03-13  Geoff Norton  <gnorton@novell.com>
13013
13014         * decimal.c:  Only include memory.h if the platform has it.
13015
13016 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
13017
13018         * assembly.c, class.c, metadata-internals.h: make sure public key
13019         tokesns are compared in a case-insensitive way. Also, all
13020         the lookups in the GAC use a lowercase public key token
13021         (gaacutil already does the lowercasing on install). Fixes
13022         bug #369541.
13023
13024 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
13025
13026         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
13027         and return value.
13028
13029 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
13030
13031         * image.c: when someone loads a mscorlib from a file, return the
13032         currently loaded mscorlib (fixes bug #369253).
13033
13034 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13035
13036         * class.c: handle types with no parents by forcing them to have
13037         System.Object as a parent and marking them as broken (this currently
13038         allows the first part of bug #369173 to work as well, likely because
13039         we don't check for typeload exceptions everywhere yet).
13040
13041 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
13042
13043         * class.c: more complete check that types belong to corlib
13044         (fixes second part of bug #369173).
13045
13046 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
13047
13048         * generic-sharing.c:  Including glib.h for the MSVC builds to define
13049           "inline" to "__inline" before including mono-membar.h.
13050           
13051         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
13052           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
13053           MSVC builds.
13054
13055         Contributed under MIT/X11 license.
13056
13057 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13058
13059         * verify.c (do_invoke_method): Remove return type validation.
13060
13061         * verify.c (do_ret): Do return type validation at return site instead of
13062         call site.
13063
13064 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13065
13066         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
13067
13068         * verify.c: Some todos cleaned and improved a few error messages.
13069
13070 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
13071
13072         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
13073
13074 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13075
13076         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
13077         system types correctly.
13078
13079         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
13080         function.
13081
13082 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13083
13084         * assembly.c (build_assembly_name): Fix a warning.
13085
13086 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
13087
13088         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
13089         the called function takes an object type argument. Fixes storing or
13090         valuetypes across remoting as well as reducing memory usage.
13091         * image.c, metadata-internals.h: remove now unused ldfld_remote and
13092         stfld_remote wrapper caches.
13093
13094 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13095
13096         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
13097         is not found.
13098
13099         * reflection.c (mono_image_register_token): New helper function to save
13100         a token->object mapping.        
13101
13102         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
13103         managed code.
13104
13105         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
13106         one dimension arrays. Fixes #367670.
13107         (mono_reflection_get_type_internal): Ditto.
13108
13109 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
13110
13111         * marshal.c: mono_load_remote_field_new() always returns object.
13112         so use the proper signature (fixes bug #366445).
13113
13114 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13115         
13116         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
13117         add an 'inline_failure' flag instead.
13118
13119 2008-03-04  Mark Probst  <mark.probst@gmail.com>
13120
13121         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
13122         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
13123         contains the location of "this", used for exception handling.
13124
13125 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13126
13127         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
13128         their size on all platforms for perf reasons.
13129
13130 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13131
13132         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
13133         object-internal.h
13134
13135         * object-internal.h: Same.
13136
13137 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13138
13139         * reflection.h: Fix the build I just broke.
13140
13141 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13142
13143         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
13144         Test if a token is valid, this remove explicit usage of 
13145         MonoDynamicImage::tokens from the verifier code.
13146
13147         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
13148
13149         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
13150         instead of direct access to MonoDynamicImage::tokens.
13151
13152 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13153
13154         * verify.c (token_bounds_check): Fix the build I just broke.
13155
13156 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13157
13158         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
13159
13160         * verify.c (verifier_load_method): Fixed the errors message.
13161
13162         * verify.c (mono_method_verify): Fixed a debug message.
13163
13164 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
13165
13166         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
13167         mono-perfcounters.h, class-internals.h: support for predefined
13168         writable counters, query of categories and counters, bugfixes.
13169
13170 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13171
13172         * verify.c (do_refanytype): Verify the refanytype opcode.
13173
13174         * verify.c (mono_method_verify): Use do_refanytype.
13175
13176 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13177
13178         * verify.c (do_mkrefany): Verify the mkrefany opcode.
13179
13180         * verify.c (mono_method_verify): Use do_mkrefany.
13181
13182 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
13183
13184         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
13185         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
13186         implementation.
13187
13188 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13189
13190         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
13191         the type load exception.
13192
13193 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
13194
13195         * verify.c: Added a few FIXME for method signatures
13196
13197         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
13198         of mono_method_get_signature and get vararg call working. Removed unused
13199         checks for return value.
13200
13201         * verify.c (do_refanyval): Verify the refanyval opcode.
13202
13203         * verify.c (mono_method_verify): Implemented verification of arglist and
13204         use do_refanyval.
13205
13206 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13207
13208         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
13209         vtypes to marshal.c.
13210
13211         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
13212         it works for AOT as well.
13213
13214 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13215
13216         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
13217         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
13218         the system time is adjusted.
13219
13220 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
13221
13222         * icall.c, icall-def.h: use the new time functions (fixes the
13223         non-monotonic behaviour of TickCount).
13224
13225 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
13226
13227         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
13228         it breaks the build.
13229         
13230         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
13231         cattr is not finished yet.
13232
13233 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13234
13235         * verify.c: Proper token validation for field, method and type.
13236
13237 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13238
13239         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
13240
13241         * loader.c (method_from_memberref): Generate type load error instead of method missing
13242         if the type is not found.
13243
13244 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
13245
13246         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
13247         some of the conversions caused the generation of a marshal directive exception.
13248
13249 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13250
13251         verify.c: Report which exception should be thrown by the JIT.
13252         Added a lot of FIXME notes.
13253
13254 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13255
13256         * generic-sharing.c: Runtime generic context slots are not
13257         instantiated on init anymore.  Instead, provide function to do the
13258         instantiating on demand.
13259
13260         * class-internals.h: Added vtable to runtime generic context.
13261         Macros for encoding direct and indirect slot offsets in one
13262         guint32.
13263
13264 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13265
13266         * object.c, generic-sharing.c: Moved some generic sharing code
13267         from object.c to generic-sharing.c.
13268
13269         * generic-sharing.c: Added support for extensible runtime generic
13270         context.
13271
13272         * metadata-internals.h: Two new hash tables in MonoImage for
13273         extensible runtime generic context support.
13274
13275         * domain.c: Unregister generic vtables upon domain unloading.
13276
13277         * image.c: Destroy new hash tables upon image unloading.
13278
13279         * metadata.c: Unregister generic subclasses upon image unloading.
13280
13281         * class-internals.h: New data structure for runtime generic
13282         context template.  New fields in the runtime generic context for
13283         extensible part.
13284
13285         * Makefile.am: Added generic-sharing.c.
13286
13287 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13288
13289         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
13290         there is a pending loader exception, raise it.
13291
13292         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13293         same.
13294
13295         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
13296         same.
13297
13298         Fixes #363450.
13299
13300 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13301
13302         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
13303
13304         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
13305         
13306         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
13307         ref-only requests for compatibility with MS.
13308
13309 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13310
13311         * reflection.c (mono_custom_attrs_from_method): Don't silently
13312         return an empty list for generic method instances.
13313         (mono_custom_attrs_from_param): Likewise.
13314
13315 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
13316             Raja R Harinath  <harinath@hurrynot.org>
13317
13318         Fix #354757
13319         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
13320         * class.c (mono_class_inflate_generic_method_full): Initialize it
13321         when a fully-open method is instantiated.
13322         * metadata.c (inflated_method_equal, inflated_method_hash): Update
13323         to new field.
13324         * reflection.c (inflate_mono_method): Don't create a temporary context.
13325
13326 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13327
13328         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13329         Compute correct value, to prepare for imethod->reflection_info going away.
13330
13331 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13332
13333         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
13334
13335 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13336
13337         * verify.c: Implement skip visibility flag.
13338
13339 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13340
13341         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
13342         which contains an extra field to tell the kind of exception that should be thrown.
13343
13344         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
13345
13346 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
13347
13348         * loader.c (mono_method_get_param_names): Initialize 'klass' after
13349         'method' is updated.
13350
13351 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
13352
13353         * class.c (mono_class_layout_fields): Set class->min_align for classes using
13354         explicit layout as well. Fixes #360375.
13355
13356 2008-02-11  Geoff Norton  <gnorton@novell.com>
13357
13358         * loader.c: Guard and dereference against inflated generic methods
13359
13360 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
13361
13362         * class.c: Include Retargetable spec in assembly name.
13363         * assembly.c: Always include PublicKeyToken spec in assembly name
13364         (with value "null" if assembly is not signed), and include
13365         Retargetable spec.
13366         * icall-def.h: Added icall for Assembly.get_fullname.
13367         * icall.c: Added icall returning the fullname of an assembly.
13368
13369 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13370
13371         * class.c (mono_class_setup_vtable_general): Add a missing call to
13372         mono_class_setup_methods () which is needed in the AOT case.
13373
13374 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13375
13376         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13377         stack type of the given MonoType.
13378
13379         * verify.c (verify_type_compatibility_full): Handle the void type.
13380
13381         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13382         way stack merging works.
13383
13384         * verify.c (store_local): Improved verification message.
13385
13386         * verify.c (do_branch_op): If the merging is invalid, the method
13387         is unverifiable and not invalid. Improved error message.
13388
13389         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13390         a reference type diferent than System.Object. Improved error
13391         message.
13392
13393 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13394
13395         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13396
13397         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13398         type of an enum even if the argument is byref.
13399
13400         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13401         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13402
13403         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13404
13405         *verify.c (verify_type_compatibility_full): Make enum types
13406         compatible with their base types.
13407
13408         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13409         types are compatible for the special case of a boxed valuetype and
13410         System.Object.
13411
13412         * verify.c (verify_stack_type_compatibility): The function
13413         is_compatible_boxed_valuetype was extracted from here.
13414
13415         * verify.c (push_arg): Only set ctx->has_this_store if the method
13416         is not static.
13417
13418         * verify.c (do_ldelem): Fixed a typo in an error message and added
13419         strict check for mixing int32 and native int as the array type
13420         and ldelem type.
13421
13422         * verify.c (merge_stacks): Consider boxed valuetypes in the
13423         compatibility checks.
13424
13425 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13426         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13427
13428 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13429         *class.c: use_new_interface_vtable_code: renamed the env var to have
13430         a "MONO_" prefix, and fix the logic to enable it by default.
13431
13432 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13433         *class.c:
13434         mono_class_setup_vtable_general: rewrote the way in which interface
13435         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13436         makes the code more maintainable.
13437         For now the old code is still there, and can be activated setting
13438         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13439
13440 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13441
13442         * verify.c: guarded some debug functions around and #ifdef.
13443
13444         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13445
13446 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13447
13448         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13449         changes for now since they seem to break too many things.
13450
13451 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13452
13453         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13454         mono_marshal_find_nonzero_bit_offset): Added macro and function
13455         for finding the byte- and bit-offset of a bitfield within a
13456         struct.
13457
13458 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13459
13460         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13461         (mono_marshal_get_struct_to_ptr): Ditto.
13462
13463         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13464         cctor_signature.
13465
13466 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13467
13468         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13469         between methods for non-corlib types.
13470
13471 2008-02-02  Geoff Norton  <gnorton@novell.com>
13472
13473         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13474         generic parameters as well. (Fixes #342536)
13475
13476 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13477
13478         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13479
13480         * verify.c (do_invoke_method): Fix for calling with byref structs.
13481
13482         * verify.c (do_cast): push a boxed value type based on the type token and not
13483         the type of stack.
13484
13485 2008-01-31  William Holmes  <billholmes54@gmail.com>
13486
13487         * process.c (process_module_string_read): Check the size returned form 
13488           VerQueryValue to avoid out of memory exception. 
13489
13490 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13491
13492         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13493         Handle properly modules which are not in the moduleref table. Fixes
13494         #356938.
13495
13496 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13497
13498         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13499         the dynamic case which is now in managed code.
13500         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13501
13502         * marshal.c (mono_string_to_bstr): Fix a warning.
13503         (init_com_provider_ms): Ditto.
13504
13505         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13506
13507         * exception.c (mono_get_exception_out_of_memory): New helper function.
13508
13509 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13510
13511         * marshal.c: Add support for BSTR marshalling
13512         using other COM systems.
13513
13514         Code is contributed under MIT/X11 license.
13515
13516 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13517
13518         * object.c (mono_runtime_invoke_array): reverted previous
13519         commit as it breaks the build.
13520
13521 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13522
13523         * object.c (mono_runtime_invoke_array): Verify arguments for
13524         invalid types. Fixes #348522.
13525
13526 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13527
13528         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13529         non-final virtual calls using call. 
13530
13531         * verify.c (do_invoke): fixed some TODOs.
13532
13533         * verify.c (push_arg): set has_this_store for "ldarga 0".
13534
13535 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13536
13537         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13538         which belong to an inflated class. Fixes #356531.
13539
13540 2008-01-26  Robert Jordan  <robertj@gmx.net>
13541
13542         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13543         which resort to FindFirstFile when a certain error condition
13544         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13545         Code is contributed under MIT/X11 license.
13546
13547 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13548
13549         * marshal.c (emit_marshal_string): Fix out string marshalling
13550         to use specified encoding. Fixes #323900.
13551
13552         Code is contributed under MIT/X11 license.
13553
13554 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13555
13556         * class.c (mono_class_inflate_generic_method_full): Don't modify
13557         iresult->context after cache check.
13558
13559 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13560
13561         * class.c (mono_class_inflate_generic_method_full): Change the
13562         struct assignments to memcpy for better visibility and add some comments.
13563
13564 2008-01-23  Dick Porter  <dick@ximian.com>
13565
13566         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13567         procedure, and make it work on windows.
13568
13569 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13570
13571         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13572         a MonoReflectionTypeBuilder since it is always of that type.
13573
13574         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13575
13576         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13577
13578         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13579         
13580         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13581
13582         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13583
13584         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13585         instantiations from the type cache.
13586
13587 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13588
13589         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13590
13591         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13592
13593 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13594
13595         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13596
13597         * verify.c (mono_method_verify): removed old TODO
13598
13599 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13600
13601         * verify.c (do_newobj): add visibility check.
13602
13603 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13604
13605         * verify.c (do_load_function_ptr): add visibility check.
13606
13607 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13608         *class.c:
13609         mono_generic_class_get_class: hook profiler events.
13610         mono_field_get_offset: added to support heap-shot in the new profiler.
13611         *class.h: exported mono_field_get_offset.
13612         * reflection.c:
13613         mono_reflection_setup_internal_class: hook profiler events.
13614
13615 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13616
13617         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13618         argument here too and use it to avoid checking for pending exceptions if 
13619         possible.
13620
13621 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13622
13623         * assembly.c (build_assembly_name): add arg for passing the assembly
13624         flags. Do not consider a PublicKey with value "null" valid.
13625         (mono_assembly_name_parse_full): added boolean argument that will be
13626         set if the assembly name contains a PublicKeyToken spec. Added support
13627         for the Retargetable spec for which only Yes or No are allowed as valid
13628         value. Consider assembly name invalid if Retargetable spec is set, but
13629         either version, culture or public key (token) are not specified.
13630         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13631         with implementation in assembly.c.
13632         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13633         from MonoAssemblyName.
13634         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13635         introduced argument for mono_assembly_name_parse_full to know if the
13636         assembly name has a PublicKeyToken spec, and if it has instruct
13637         fill_reflection_assembly_name to use default value for keyToken (if
13638         PublicKeyToken is null).
13639
13640 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13641
13642         * verify.c (mono_method_verify): fixed ovf ops with
13643         float values. They are unverifiable now.
13644
13645 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13646
13647         * class.c (set_failure_from_loader_error): add BadImageException to the
13648         list of exceptions that can cause a type to fail to load.
13649
13650         * class.c (mono_class_get_exception_for_failure): same.
13651
13652 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13653
13654         * verify.c (in_any_exception_block): added, check if offset
13655         is part of any exception handling clause.
13656
13657         * verify.c (get_stack_type): added VAR and MVAR types.
13658
13659         * verify.c (do_stobj): better error messages.
13660
13661         * verify.c (do_cpobj): added, check cpobj.
13662
13663         * verify.c (do_initobj): added, check initobj.
13664
13665         * verify.c (do_sizeof): added, check sizeof.
13666
13667         * verify.c (do_localloc): added, check localloc.
13668
13669         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13670
13671 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13672
13673         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13674         save_lmf/restore_lmf opcodes.
13675
13676         * threads.c (mono_threads_install_notify_pending_exc): New function to
13677         install a callback notifying the JIT there is a pending exception on a thread.
13678         (mono_thread_request_interruption): Call the new callback.
13679         (mono_thread_get_and_clear_pending_exception): New function to return the
13680         exception pending on a thread.
13681
13682         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13683         to turn off checking for pending exceptions.
13684         (mono_marshal_get_native_wrapper): Ditto.
13685
13686 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13687
13688         * threads-types.h: Get rid of the unnecessary extern declarations.
13689
13690 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13691
13692         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13693         return field from parent class if not private.
13694         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13695         returns fields from parent class if they are not private.
13696         (method_nonpublic): added function to determine if a given method
13697         should be considered non-public. Returns false for private methods
13698         on parent class, and internal methods from parent on the 1.0 profile.
13699         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13700         use method_nonpublic function to determine whether method should be
13701         returned.
13702         (property_accessor_public): use newly introduced method_nonpublic
13703         function to determine whether accessor is non-public. 
13704         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13705         event from parent class if not private. Only return static event if
13706         Static flag is set, and only return static event from parent class if
13707         FlattenHierarchy flag is set.
13708         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13709         include non-private events from parent class.
13710
13711 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13712
13713         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13714         warning.
13715
13716 2008-01-16  Wade Berrier <wberrier@novell.com>
13717
13718         * security.c: Add assembly.h header to appease some warnings
13719
13720 2008-01-16  Dick Porter  <dick@ximian.com>
13721
13722         * process.c (process_module_string_read): Remove trailing null
13723         when saving string.
13724
13725 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13726
13727         * class-internals.h: A new data structure describing the layout of
13728         a runtime generic context (MonoRuntimeGenericContextTemplate).
13729
13730         * metadata-internals.h: Added a hash table to MonoDomain that maps
13731         from open generic classes to their runtime generic context
13732         templates.
13733
13734         * object.c: Building of the runtime generic context, including
13735         proper handling of generic type arguments of superclasses.
13736         Building of the runtime generic context according to the template.
13737
13738 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13739
13740         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13741         Fixes #350856.
13742
13743         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13744         mono_portability_find_file (). Fixes #325466.
13745         (mono_image_get_public_key): Fix a warning.
13746
13747 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13748
13749         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13750         Fixes #353550.
13751         (mono_class_from_name_case): Ditto.
13752
13753 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13754
13755         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13756           common storage for the tables used in the System/NumberFormatter class.
13757
13758 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13759
13760         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13761
13762 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13763
13764         * verify.c (get_boxable_mono_type): check if the token is valid.
13765
13766         * verify.c (set_stack_value): changed to add an error if an
13767         invalid type is set on stack. Changed all callers due to signature change.
13768
13769         * verify.c (do_stobj): implement stobj validation.
13770
13771 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13772
13773         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13774         set container->is_method, it was set earlier.
13775
13776         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13777         generic methods.
13778
13779         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13780         is_method of the generic container to TRUE for methods.
13781
13782 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13783
13784         * metadata.c (type_in_image): Handle type parameters properly.
13785
13786         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13787         memory ownership of this structure.
13788
13789 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13790
13791         * verify.c (get_boxable_mono_type): make typedref types been just
13792         unverifiable. check for void type.
13793
13794         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13795
13796         * verify.c (do_load_function_ptr): accept method spec tokens.
13797
13798 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13799
13800         * marshal.c (mono_class_native_size): Always set *align even if this is called
13801         recursively.
13802
13803 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13804
13805         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13806         out-of-date.
13807
13808 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13809
13810         * verify.c: removed some old unused tables. A huge bunch of small fixes
13811         to things found while testing the verifier with mono basic.
13812
13813         * verify.c (dump_stack_value): dump null literal flag to.
13814
13815         * verify.c (verify_type_compatibility_full): fix comparison
13816         for types that have a generic super type.
13817
13818         * verify.c (verify_stack_type_compatibility): fix compatibility
13819         between null literals and reference types. fix compatibility between
13820         boxed valuetypes and object. fix corner case test for enums.
13821
13822         * verify.c (do_cmp_op): proper verification of cgt.un in case
13823         of reference types.
13824
13825         * verify.c (do_invoke_method): fix error message.
13826
13827         * verify.c (do_store_indirect
13828
13829         * verify.c (check_is_valid_type_for_field_ops): proper verification
13830         of managed pointers to valuetypes and boxed valuetypes. proper verification
13831         of null literals.
13832
13833         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13834         allow token to be a reference type.
13835
13836         * verify.c (do_cast): proper handling of boxes valuetypes.
13837
13838         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13839         in object[].
13840
13841         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13842         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13843         fixed the decoding of unbox_any
13844
13845 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13846
13847         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13848
13849 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13850
13851         * verify.c (do_newobj): do delegate verification.
13852
13853         * verify.c (verify_delegate_compatibility): perform delegate
13854         verification.
13855
13856         * verify.c (verify_ldftn_delegate): perform tests related to
13857         ldftn delegates.
13858
13859         * verify.c (mono_delegate_signature_equal): perform the
13860         slightly diferent signature comparison required by delegates.
13861
13862         * metadata.c (mono_metadata_type_equal_full): added and exported
13863         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13864         allows signature only comparison.
13865
13866         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13867         as MONO_INTERNAL.
13868
13869 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13870
13871         * verify.c: added a bunch of stack_slot_* functions to
13872         make access to stack slot type easier. This is required to
13873         allow optional flags, like null literal, boxed value and
13874         this pointer.
13875         All access paths to IlStackDesc::stype have been changed 
13876         to use these new funcions.
13877         Removed a bunch of unused functions and cleared all warnings.
13878         This patch introduces the usage of the this pointer and 
13879         boxed value flags.
13880
13881 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13882
13883         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13884
13885 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13886
13887         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13888         match managed version.
13889
13890         * appdomain.c: Bump corlib version.
13891         
13892         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13893         argument.
13894
13895 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13896
13897         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13898         Set public key token to zero-length byte array if assembly is not
13899         strongnamed.
13900
13901 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13902
13903         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13904         writing a vtype array elem.
13905
13906 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13907
13908         * assembly.c (build_assembly_name): return FALSE if length of token is
13909         not 16 (if not "null").
13910         (mono_assembly_name_parse_full): return FALSE if value of version,
13911         culture, token or key is 0.
13912         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13913         specify whether public key and public key token must be set to default
13914         value (zero-length byte array) if not available. Set versioncompat to
13915         SameMachine. If public key is available or the default is set, then
13916         set PublicKey flag.
13917         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13918         is available, use empty byte array as default value. On the 2.0
13919         profile, use default value for public key token if not set.
13920         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13921         profile, use default value for public key if not set. On the 2.0
13922         profile, use default value for public key token if not set.
13923         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13924         default values for public key and public key token.
13925
13926 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13927
13928         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13929         field to keep it in synch with the managed object.
13930
13931         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13932         delegates. Fixes #351520.
13933
13934         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13935         contains defined memory.
13936         
13937         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13938
13939         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13940         
13941         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13942         of the GC data structures.
13943
13944         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13945
13946         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13947         
13948         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13949         barrier.
13950         (mono_array_clone_in_domain): Ditto.
13951         (mono_array_clone_in_domain): Ditto.
13952
13953         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13954         (cache_culture): Use a write barrier.
13955
13956         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13957         (ves_icall_get_property_info): Ditto.
13958
13959         * object.h (MONO_STRUCT_SETREF): New macro.
13960
13961         * class-internals.h (MonoStats): Add some GC statistics.
13962
13963         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13964
13965 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13966
13967         * exception.c (mono_exception_from_name_two_strings):
13968         Break from loop after method is found.
13969
13970 2008-01-04  Dick Porter  <dick@ximian.com>
13971
13972         * process.c (process_module_string_read): Rename variable to
13973         reflect correct usage, after fixing bug 345972.
13974
13975 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13976
13977         * verify.c (mono_type_create_fnptr_from_mono_method): 
13978         created a MonoType function pointer instance to be used during
13979         verification. The verifier releases this memory at end.
13980
13981         * verify.c (mono_method_is_constructor): extracted repeated
13982         checks for constructor into a single class.
13983
13984         * verify.c (do_push_field): use new extracted method
13985         for constructor check.
13986
13987         * verify.c (do_newobj): same.
13988
13989         * verify.c (do_ldftn): renamed to do_load_function_ptr
13990         and make it verify ldvirtftn too.
13991
13992         * verify.c (mono_method_verify: proper verification
13993         of ldvirtftn. release created MonoMethod instances.
13994
13995 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13996
13997         * verify.c (token_bounds_check): added.
13998
13999         * verify.c (do_ldftn): added.
14000
14001         * verify.c (mono_method_verify): proper verificartion of ldftn.
14002
14003 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14004
14005         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
14006         than the table row count. It's the resposibility of the caller to
14007         make the bounds check and raise the correct error.
14008
14009         * metadata.c (mono_metadata_decode_row_col): Same.
14010
14011         * loader.c (mono_get_method_from_token): perform bounds check
14012         on token for methoddef table.
14013
14014 2007-12-29  Miguel de Icaza  <miguel@novell.com>
14015
14016         * icall.c
14017         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
14018         assert into a negative result, the managed code already coped with
14019         that.
14020
14021         Some folks on Windows reported this error. 
14022
14023 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
14024
14025         * appdomain.c: Bump corlib version.
14026         * icall.c:
14027         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
14028         CultureInfo.CreateCulture to create CultureInfo for name.
14029         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
14030         create CultureInfo for name. Fixes bug #347174.
14031
14032 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14033
14034         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
14035         flags.
14036
14037         * verify.c (is_valid_branch_instruction): allow branching to the
14038         first instruction of the protected block.
14039
14040         * verify.c (is_valid_cmp_branch_instruction): same.
14041
14042         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
14043         avoid double initialization.
14044
14045         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
14046         detect which cases the eval stack should just be copied.
14047
14048         * verify.c (mono_method_verify): check if the eval stack
14049         is empty when entering a protected block.
14050
14051 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14052
14053         * verify.c: added is_clause_in_range, is_clause_inside_range,
14054         is_clause_nested and verify_clause_relationship. They perform
14055         the verifications stated in P1 12.4.2.7.
14056
14057         * verify.c (mono_method_verify): remove some unused variables,
14058         add the new exception clause checks, add instruction border
14059         checks for protected block start/end, improved some error 
14060         messages and fixed a bug in the way invalid instruction access
14061         is detected.
14062
14063 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
14064
14065         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
14066         from GC 7.0 if available.
14067
14068         * object.c: Remove an unused define.
14069         
14070         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
14071
14072         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
14073
14074         * null-gc.c (mono_gc_make_descr_for_array): Implement.
14075
14076         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
14077
14078         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
14079         to take the same arguments as the other make_descr functions.
14080
14081         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
14082
14083         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
14084         directly.
14085
14086         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
14087         mini.c.
14088
14089         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
14090         call to boehm-gc.c.
14091
14092         * boehm-gc.c (mono_gc_register_root): Fix a warning.
14093
14094         * null-gc.c (mono_gc_register_root): Fix a warning.
14095
14096         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
14097
14098         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
14099         (mono_gc_base_init): Call GC_init ().
14100
14101         * null-gc.c: Define mono_gc_register_root () as a no-op.
14102
14103         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
14104
14105 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
14106
14107         * verify.c: add prototype for merge_stacks at top
14108
14109         * verify.c (do_switch): added.
14110
14111         * verify.c (merge_stacks): on some cases the stack merging
14112         was not happening properly. Unequal stack sizes at merge
14113         points should be invalid.
14114
14115         * verify.c (mono_method_verify): added more debug info on stack state.
14116         verify switch properly.
14117
14118 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
14119
14120         * method-builder.h: New file, moved the mono_mb_ declarations here from 
14121         marshal.h.
14122
14123         * boehm-gc.c marshal.c: Include method-builder.h.
14124
14125         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
14126
14127         * marshal.c: Remove some code which is now in method-builder.c.
14128
14129 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
14130
14131         * method-builder.c: New file, extraction of the method builder functionality 
14132         from marshal.c.
14133
14134         * marshal.c: Move the mb functions into method-builder.c.
14135
14136         * marshal.h marshal.c: Export some mono_mb_... functions.
14137
14138         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
14139
14140         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
14141         the caller.
14142
14143         * class.c (mono_class_get_full): Check the token type in the dynamic case.
14144
14145         * loader.c (mono_field_from_token): Ditto.      
14146
14147         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
14148         type as well.
14149         
14150         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
14151         Fixes #342565.
14152
14153         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
14154         a helper function for setting it.
14155
14156         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
14157
14158         
14159         * assembly.c: Significally simplify code now that referenced assemblies are 
14160         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
14161
14162         * threads.h: Don't include  the internal threads-types.h header file. Fixes
14163         #349952.
14164
14165 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
14166
14167         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
14168         instructions that were target of branches or are at protected block boundaries.
14169
14170         * verify.c (in_same_block): handle filter clauses.
14171
14172         * verify.c (is_valid_branch_instruction): added. checks the target of
14173         instructions br or brtrue/false.
14174
14175         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
14176         binary branch instructions such as beq and bge.
14177
14178         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
14179         and made it pin the instruction as been part of the exception block.
14180
14181         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
14182         of in_same_block.
14183
14184         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
14185         of in_same_block.
14186
14187         * verify.c (do_ret): ret from a protected block is unverifiable and
14188         not invalid.
14189
14190         * verify.c (do_static_branch): verify br and br.s instructions.
14191
14192         * verify.c (merge_stacks): add extra param to support detection
14193         of branches in the middle of instructions.
14194         
14195         * verify.c (mono_method_verify): verify branches and exception blocks
14196         that target the middle of instructions. Proper verification of br and br.s.
14197
14198 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
14199
14200         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
14201         skip_visibility field.
14202         (reflection_methodbuilder_from_dynamic_method): Ditto.
14203
14204         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
14205         registrations. Fixes #348193.
14206
14207         * threads.h: Move the internal mono_thread_get_pending_exception () to
14208         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
14209
14210 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
14211
14212         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
14213         icall registration. Fixes #348193.
14214
14215         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
14216         for corlib classes into object. Fixes #349621.
14217
14218 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
14219
14220         * icall.c (property_accessor_nonpublic): new function to determine
14221         whether an accessor allows a property to be considered non-public.
14222         Returns false for private accessor(s) from parent class, and internal
14223         accessor(s) from parent on 2.0 profile (and higher).
14224         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
14225         to determine whether property should be included if NonPublic flag
14226         is set. Fixes bug #349078.
14227
14228 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
14229
14230         * verify.c (init_stack_with_value): added.
14231
14232         * verify.c (mono_method_verify): extracted common
14233         code for exception initialization into init_stack_with_value.
14234
14235         * verify.c (mono_method_verify): initialize the exception
14236         for handler clauses as well.
14237
14238         * verify.c (mono_method_verify): fix the exception clause
14239         ordering rules, it should use handler end offset and not
14240         start offset.
14241
14242 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
14243
14244         * rawbuffer.c: remove useless warning.
14245
14246 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
14247
14248         * threads.h, threads-types.h: move functions to the correct header
14249         (fixes bug#349952).
14250
14251 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14252
14253         * verify.c (mono_method_verify): proper verification
14254         of exception handling clauses ranges and fallthru in
14255         and out of protected blocks.
14256
14257 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14258
14259         * verify.c (mono_method_verify): fixed compilation issue.
14260
14261 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14262
14263         * verify.c (mono_method_verify): a printf slipped in, changed
14264         to use verifier debug macro.
14265
14266 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
14267
14268         * verify.c (is_correct_leave): check for filter clauses.
14269
14270         * verify.c (do_filter): added.
14271
14272         * verify.c (mono_method_verify): property verification of leave.
14273
14274
14275 2007-12-18  Mark Probst  <mark.probst@gmail.com>
14276
14277         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
14278         Win32 build, until we figure out how to do the proper thing on
14279         Win32.
14280
14281 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
14282
14283         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
14284         by the previous patch.
14285         
14286         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
14287         the assembly resolve handler for refonly assemblies.
14288
14289 2007-12-17  Mark Probst  <mark.probst@gmail.com>
14290
14291         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
14292         Make sure only one thread is allowed to commence shutdown, and
14293         don't allow new threads to be started once shutdown is in
14294         progress.
14295
14296 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
14297
14298         * verify.c (is_correct_endfilter): added.
14299
14300         * verify.c (is_unverifiable_endfilter): added.
14301
14302         * verify.c (do_endfilter): added.
14303
14304         * verify.c (mono_method_verify): property verification of endfilter
14305         and fixed a corner case or endfinally.
14306
14307 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
14308
14309         * verify.h: new flags to support fail fast of unverifiable code and
14310         do non-strict verification. Non-strict verification is required to
14311         have MS runtime compatibility. There are a huge amount of unverifiable
14312         code that it accepts as verifiable. The strict mode verifies the code
14313         as the specs says.
14314         Non-strict mode will be required in cases where code needs to be
14315         accepted as verifiable but fails under strict mode.
14316
14317         * pedump.c: added support to fail fast and non-strict verification.
14318
14319         * verify.c: added support for both fail fast and non-strict verification.
14320
14321 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
14322
14323         * verify.c (is_correct_endfinally): added.
14324
14325         * verify.c (mono_method_verify): property verification of endfinally.
14326
14327 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14328
14329         * verify.c (in_any_block): check for filter clauses.
14330
14331         * verify.c (is_correct_rethrow): added.
14332
14333         * verify.c (mono_method_verify): property verification of rethrow.
14334
14335         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
14336
14337 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14338
14339         * verify.c (do_throw): added.
14340
14341         * verify.c (mono_method_verify): property verification of throw
14342
14343 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
14344
14345         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
14346         assemblies. Fixes #346425.
14347
14348 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
14349
14350         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
14351         FieldBuilders.
14352
14353         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
14354
14355         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
14356         prevent asserts when this is called with a token which might not be valid.
14357
14358         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
14359         lookup_dynamic_token_class with valid_token == FALSE.
14360
14361         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
14362
14363         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
14364
14365         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14366         
14367 2007-12-10  Mark Probst  <mark.probst@gmail.com>
14368
14369         * gc.c: Don't delay threadpool thread finalization unless Mono is
14370         shutting down.
14371
14372 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14373
14374         * threads.c: turn an assert into a non-fatal warning.
14375
14376 2007-12-09  Robert Jordan  <robertj@gmx.net>
14377
14378         * icall.c (GetVirtualMethod): Add missing argument validation.
14379
14380 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14381
14382         * verify.c (do_cast): added.
14383
14384         * verify.c (mono_method_verify): property verification of castclass and isinst.
14385
14386
14387 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14388
14389         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14390
14391         * verify.c (do_stelem): added.
14392
14393         * verify.c (mono_method_verify): property verification of stelem.X.
14394
14395 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14396
14397         * class.c, class-internals.h: Introduce an environment variable
14398         (MONO_GENERIC_SHARING) through which the extent of generic code
14399         sharing can be controlled (share all classes, share only corlib
14400         classes, or share nothing).
14401
14402         * object.c: Only create runtime generic context for classes for
14403         which sharing is enabled.
14404
14405 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14406
14407         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14408
14409         * verify.c (mono_method_verify): property verification of ldelem.any.
14410
14411 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14412
14413         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14414         added ldelem.X opcodes.
14415
14416         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14417
14418         * verify.c: proper verification of ldelem.X 
14419
14420 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14421
14422         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14423
14424 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14425
14426         * verify.c (mono_method_verify): null literal requires special handling,
14427         the value pushed on stack need to be flagged as so.
14428
14429         * verify.c (do_ldelema): Verify ldelema properly.
14430
14431 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14432
14433         * verify.c: Verify ldlen properly.
14434
14435 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14436
14437         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14438         to the target object's type. Fixes #346160.
14439
14440 2007-12-05  Dick Porter  <dick@ximian.com>
14441
14442         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14443         Solaris needs the same workaround as BSD-derived systems.  Fixes
14444         bug 323524, patch by Burkhard Linke
14445         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14446
14447 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14448
14449         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14450         handle to use when error dialog is shown; otherwise, update mask
14451         to show no error dialog when an error occurs.
14452
14453 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14454
14455         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14456
14457         * class.c (mono_class_get_field_default_value): New helper function to initialize
14458         field->def_type and field->data.
14459
14460 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14461
14462         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14463         the general one.
14464
14465         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14466
14467         * marshal.c: Avoid depending on delegate->method_info being set.
14468
14469         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14470         
14471         * object.c (mono_delegate_ctor): Set delegate->method.
14472
14473         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14474
14475         * appdomain.c: Bump corlib version.
14476
14477 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14478
14479         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14480         equality check if we're comparing canonicalized MonoGenericInsts.
14481
14482 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14483
14484         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14485         accessing class->methods.
14486
14487 2007-11-22  Dick Porter  <dick@ximian.com>
14488
14489         * threads.c: Ensure that the synch_cs is set before trying to use
14490         it.
14491
14492 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14493
14494         * profiler.c: r89126 broke the statistial profiler, unbreak.
14495
14496 2007-11-22  Martin Baulig  <martin@ximian.com>
14497
14498         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14499
14500         * mono-debug.c
14501         (mono_debug_debugger_version): Bump to 3.
14502         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14503         -> mono_debugger_class_initialized().
14504
14505         * mono-debug-debugger.c
14506         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14507
14508         * class.c
14509         (mono_debugger_start_class_init_func): Removed.
14510         (mono_debugger_class_loaded_methods_func): Added.
14511         (mono_class_setup_methods): Call it here.
14512
14513 2007-11-22  Martin Baulig  <martin@ximian.com>
14514
14515         * mono-debug.c
14516         (mono_debug_add_delegate_trampoline): New public method.
14517         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14518
14519         * mono-debug.h
14520         (MonoSymbolTable): Added `global_data_table'.
14521         (MonoDebuggerTypeKind): Removed.
14522
14523 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14524
14525         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14526         these methods.
14527
14528         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14529         
14530 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14531
14532         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14533
14534 2007-11-20  Martin Baulig  <martin@ximian.com>
14535
14536         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14537
14538         * mono-debug-debugger.c
14539         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14540         (mono_debugger_remove_breakpoint): Likewise.
14541         (mono_debugger_check_breakpoints): Likewise.
14542         (mono_debugger_register_class_init_callback): New public method.
14543         (mono_debugger_remove_class_init_callback): Likewise.
14544         (mono_debugger_add_type): Likewise.
14545
14546         * mono-debug-debugger.h
14547         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14548
14549 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14550
14551         * class.c: more interface implementations needed for the
14552         array enumerator (fixes bug #341112).
14553
14554 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14555
14556         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14557         fix ParamName of ArgumentNullExceptions.
14558
14559 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14560
14561         * reflection.c (mono_reflection_encode_sighelper): Generate the
14562         modopts and modreqs.   I have a useless test that crashes monodis,
14563         but that shows the code working.
14564
14565 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14566
14567         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14568         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14569
14570 2007-11-15  Dick Porter  <dick@ximian.com>
14571
14572         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14573         When joining a thread, it's the thread that's calling Join that
14574         gets WaitSleepJoin state not the target.  Fixes the standalone
14575         test case in bug 334740, and hopefully the whole bug too.
14576
14577 2007-11-15  Dick Porter  <dick@ximian.com>
14578
14579         * process.c: Read file version info from the files pointed at by
14580         process modules, not the current process.  Fixes bug 315969.
14581
14582         Use windows typedef names in some places to fix warnings on the
14583         windows build.
14584
14585 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14586
14587         * image.c, metadata-internals.h: Added a generic_class_cache hash
14588         to MonoImage for looking up generic classes when sharing generics.
14589
14590 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14591
14592         * sgen-gc.c: warning cleanups.
14593
14594 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14595
14596         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14597         inherited properties.
14598
14599 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14600
14601         * object.c, class-internals.h: Added more information to the
14602         runtime generic context.
14603
14604 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14605
14606         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14607         instead of just the target method. Generalize the abstract method handling to
14608         handle any non-static method.
14609
14610         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14611         mono_marshal_get_delegate_invoke () signature change.
14612
14613 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14614
14615         * class.c, class-internals.h: Made
14616         mono_type_get_basic_type_from_generic () public.  Fixed member
14617         access check for shared generics.
14618
14619         * loader.c: Don't insert field into field cache if it's part of a
14620         non-inflated generic class.
14621
14622         * domain.c, domain-internals.h: The generic sharing context is now
14623         part of the jit info data structure.  Added two accessor
14624         functions.
14625
14626 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14627
14628         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14629         the array Get/Set/Address methods, since the JIT inlines them.
14630
14631         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14632
14633         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14634         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14635
14636         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14637         mono_marshal_get_delegate_invoke signature change.
14638
14639         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14640         an additional argument. Add support for invoking abstract methods.
14641
14642         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14643
14644         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14645
14646 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14647
14648         * class.c: Do field layout for open generic classes as well.
14649
14650 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14651
14652         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14653         other objects, because the threadpool is still around.  Put them
14654         in a list instead and after finalizing all other objects in the
14655         root domain shut down the thread pool and then finalize the
14656         threads.  Fixes bug #337383.
14657
14658         * threads.c, thread-types.h: New mono_thread_create_internal()
14659         function for marking a thread with the threadpool flag before it
14660         started.  Set synch_cs to NULL after freeing it.
14661
14662         * threadpool.c: Mark threadpool threads before they start.
14663
14664 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14665
14666         * reflection.h, reflection.c: don't export random functions
14667         and lazy load dbnull and missing objects.
14668
14669 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14670
14671         * class.c: Initialize COM types if COM interfaces
14672         are present (not just COM classes).
14673         
14674         Code is contributed under MIT/X11 license.
14675
14676 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14677         * reflection.c:
14678         create_dynamic_mono_image: hook module profiler events (dynamic case).
14679         mono_image_basic_init: hook assembly profiler events (dynamic case).
14680
14681 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14682         * profiler.c:
14683         simple_appdomain_unload: completely terminate the profiler
14684         instead of only processing the statistical samples.
14685         simple_shutdown: make sure this is really called exactly once,
14686         even in multithreaded applications, and always listen to
14687         appdomain events.
14688         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14689         here, the "[un]load" functions will do it.
14690         Fixes bugs #333791 and #325261.
14691
14692 2007-11-07  Geoff Norton  <gnorton@novell.com>
14693
14694         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14695         rather than depend on __APPLE__.
14696
14697 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14698
14699         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14700
14701 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14702
14703         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14704         UTF16 MonoString. Fix the crash from bug #335488
14705
14706 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14707
14708         * marshal.c: Correct (for non-Win32 OS) length != size in 
14709         mono_string_from_bstr. Fix #339530.
14710
14711 2007-11-06  Geoff Norton  <gnorton@novell.com>
14712
14713         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14714         to succeed
14715
14716 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14717
14718         * process.c: Added run-time GetProcessId API detection for Windows.
14719
14720 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14721
14722         * reflection.c  (mono_param_get_objects): If a parameter has the
14723         attribute [System.Runtime.InteropServices.Optional] we should
14724         set the DefaultValue of the ParameterInfo to be
14725         System.Reflection.Missing instead of DBNull.
14726
14727         See bug #339013.
14728
14729         (mono_get_reflection_missing_object): New method,
14730         returns the System.Reflection.Missing.Value singleton instance.
14731
14732 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14733
14734         * culture-info-table.h : regenerated.
14735
14736 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14737
14738         * icall.c: Use GetEnvironmentStrings on windows
14739         so we are using the same environment block as 
14740         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14741         #333740.
14742         
14743         Code is contributed under MIT/X11 license.
14744
14745 2007-10-31  Martin Baulig  <martin@ximian.com>
14746
14747         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14748
14749         * mono-debug-debugger.h
14750         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14751
14752 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14753
14754         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14755         classes.
14756
14757 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14758
14759         * culture-info-table.h : regenerated.
14760
14761 2007-10-30  Robert Jordan  <robertj@gmx.net>
14762
14763         * icall-def.h, icall.c:
14764         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14765
14766         Code is contributed under MIT/X11 license.
14767
14768 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14769
14770         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14771         inflated class instead of inflating them again.
14772         
14773         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14774         dynamic case.
14775
14776         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14777         Call setup_supertypes () after klass->parent is set.
14778         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14779
14780         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14781         for inflated instances of not yet created dynamic generic classes.
14782         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14783         times from inflated_method.
14784         (methodbuilder_to_mono_method): Ditto.
14785
14786 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14787
14788         * gc.c: code cleanup and removed old untested option of not creating the
14789         finalizer thread.
14790
14791 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14792
14793         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14794         creating a jump trampoline for dynamic methods.
14795
14796 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14797
14798         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14799         generic TypeBuilders when called from another method of the same type (bug #335131).
14800
14801
14802 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14803
14804         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14805         doesn't seem to work perfectly.
14806         
14807         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14808         called multiple times.
14809         (methodbuilder_to_mono_method): Ditto.
14810         (resolve_object): Inflate FieldBuilder's.
14811
14812 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14813
14814         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14815         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14816         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14817
14818 2007-10-26  Dick Porter  <dick@ximian.com>
14819
14820         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14821         Thread initialisation changes
14822
14823 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14824
14825         * verify.c: fix compatibility check between arrays and System.Array
14826
14827 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14828
14829         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14830         too. Fixes #336999.
14831
14832 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14833
14834         * object.c (mono_value_box): Use typed allocation here.
14835
14836 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14837
14838         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14839         trampoline instead of compiling the method right away.
14840
14841         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14842
14843 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14844
14845         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14846         related fields for dynamic classes. Fixes #334493.
14847
14848 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14849
14850         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14851         
14852         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14853
14854         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14855         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14856
14857         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14858
14859         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14860         if needed.
14861         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14862
14863 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14864
14865         * marshal.c: Use correct key when removing item
14866         from ccw_hash.
14867         
14868         Code is contributed under MIT/X11 license.
14869
14870 2007-10-17  William Holmes  <billholmes54@gmail.com>
14871
14872         *marshal.c: Adding a case to marshal booleans to U1
14873
14874         Code is contributed under MIT/X11 license.
14875
14876 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14877
14878         * class.c (mono_class_from_name): Search the modules compromising dynamic
14879         assemblies. Fixes #331601.
14880
14881 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14882
14883         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14884         exception if the type name contains an assembly component. Fixes #334203.
14885
14886         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14887         modules inside dynamic assemblies. Fixes #334200.
14888         
14889         * reflection.c: Set image->public_key and image->public_key_length;
14890
14891         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14892         fields.
14893
14894         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14895         
14896 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14897
14898         * metadata.c: Implemented correct comparing of generic classes.
14899         An inflated generic class can be equal to a non-inflated one if it
14900         is inflated with generic type variables as type arguments.  Fixes
14901         bug #333798.
14902
14903 2007-10-15  Dick Porter  <dick@ximian.com>
14904
14905         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14906         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14907         81646.
14908
14909         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14910         instead of a monitor lock.  This means that monitor_try_enter and
14911         co can set the thread state safely.
14912         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14913         thread_interrupt_requested, so interrupt actually works.
14914
14915         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14916         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14917         state accessor function
14918
14919 2007-10-15  Martin Baulig  <martin@ximian.com>
14920
14921         * mono-debug.h
14922         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14923         the debugger with the current runtime.
14924
14925 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14926
14927         * object.c, object-internals.h: added the ability to set a single
14928         trampoline for all the slots in a vtable.
14929
14930 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14931
14932         * marshal.c: deal with a possible race condition during multicast
14933         delegate invocation.
14934
14935 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14936
14937         * class.c: ensure value type methods don't have the synchronized
14938         flag set.
14939
14940 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14941
14942         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14943         breaks the build.
14944
14945 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14946
14947         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14948         to take an options parameter so that empty entries can be removed during
14949         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14950
14951 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14952
14953         * marshal.c: make sure we don't store the signature from a dynamic
14954         method into the runtime invoke cache (bug #327189).
14955
14956 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14957
14958         * marshal.c: make sure the wrapper methods are properly initialized.
14959
14960 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14961
14962         * metadata.c, metadata-internals.h: Generalized
14963         mono_type_stack_size() to mono_type_stack_size_internal() which
14964         takes an additional argument specifying whether it allows open
14965         types.
14966
14967 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14968
14969         * verify.c (do_invoke_method): handle typedbyref params
14970         correctly and check for unverifiable return values.
14971
14972         * verify.c (do_newobj): fix a warning.
14973
14974 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14975
14976         * verify.c: don't tread typedbyref as allways unverifable,
14977         so uses, like (ld/st)loc.0 are valid. verify for the cases
14978         that it matters, like boxing related operations.
14979
14980 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14981
14982         * verify.c: add verification of the newobj opcode. verification
14983         of delegate instantation still missing due ldftn and virldftn not
14984         pushing the function type on stack
14985
14986 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14987
14988         * class-internals.h: Runtime generic context data structure
14989         definition.
14990
14991         * object.c: Initialization of runtime generic context at runtime
14992         vtable creation time.
14993
14994 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14995         * class.c (mono_class_create_from_typedef,
14996         mono_class_from_generic_parameter, mono_ptr_class_get,
14997         mono_fnptr_class_get, mono_bounded_array_class_get)
14998         * domain.c (mono_domain_create, mono_domain_free)
14999         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
15000         * image.c (do_mono_image_load, mono_image_close):
15001         Hooked up load-unload profiler events.
15002
15003 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15004
15005         * domain.c: track statistics about the actual amount of native code
15006         allocated.
15007
15008 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15009
15010         * class.c: the valuetype enumerators don't have the additional
15011         supertypes interfaces.
15012
15013 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15014
15015         * class.c: need more interfaces setup for the IEnumerator<T>
15016         object created for arrays (tests/ienumerator-interfaces.2.cs).
15017
15018 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
15019
15020         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
15021
15022 2007-10-05  Alp Toker  <alp@atoker.com>
15023
15024         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15025         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15026         #315863.
15027
15028 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15029
15030         * verify.c (verify_type_compatibility_full): verification of
15031         compatibility improved, validates correctly non-strict checks between
15032         native int and I4 types different than (unsigned)int32.
15033
15034         * verify.c (do_store_indirect): added, do all verification of
15035         ldind.X opcodes. 
15036
15037         * verify.c (get_load_indirect_mono_type): renamed to
15038         get_indirect_op_mono_type, as it now returns the MonoType for 
15039         ldind.X and stind.X opcodes.
15040
15041 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15042
15043         * reflection.c: Fix the encoding of generic type definition for
15044         TypeBuilders.
15045
15046         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
15047         mono_image_typedef_or_ref but allows to specify if typespec lookups should
15048         be made. Typespec check is done prior to typeref cache lookup.
15049
15050         * reflection.c (mono_image_typedef_or_ref): now just delegate to
15051         mono_image_typedef_or_ref_full.
15052
15053         * reflection.c (encode_generic_class): encode the generic class
15054         directly instead of calling encode_type.
15055
15056         * reflection.c (encode_type): encode the generic type definition
15057         MonoClass as a generic instantiation.
15058
15059         * reflection.c (create_typespec): cache typespec tokens in
15060         the assembly->typespec cache. Don't create typespec for a generic
15061         instance MonoClass. Create typespec for the generic type defintion.
15062
15063         * reflection.c (create_generic_typespec): encode the generic
15064         class directly instead of calling encode_type.
15065
15066         * reflection.c (mono_image_create_token): encode the generic
15067         type definition not using a typespec for MonoType instances.
15068
15069
15070 2007-10-04  Raja R Harinath  <rharinath@novell.com>
15071
15072         Fix #328812
15073         * class.c (mono_image_init_name_cache): Don't return nested
15074         'protected internal' classes.
15075         (mono_class_from_name_case): Likewise.
15076
15077 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15078
15079         * icall-def.h, icall.c : get_bundled_machine_config() is now the
15080           common function used by both DefaultConfig in System.dll and
15081           InternalConfigurationHost in System.Configuration.dll.
15082
15083 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15084
15085         * class.c: automatically add to vectors only a few essential explicit
15086         generic interfaces. The rest of the interfaces that arrays should
15087         provide are currently implicitly added (but still not lazily, see the
15088         design in the discussion of bug#325495 for the details of what is
15089         needed for that). Additionally, implicit interfaces are assigned the
15090         same vtable slot as the explicit interfaces (as they are compatible):
15091         this enables huge memory savings since we don't need to instantiate
15092         as many memthods and as large vtables anymore. Also, Since
15093         GetEnumerator<T> returns an instance of a type that is required to
15094         support a similarly large set of interfaces as arrays, we add
15095         implicit interfaces and interface offset sharing support to those
15096         types, too. This change adds all the required interfaces so that
15097         the anonarray.cs test case in the bug report works (we don't add
15098         all the interfaces to arrays of arrays 3-level deep and more because
15099         of the memory requirements explained in the bug and since they are much
15100         less common: the lazy-loading support will enabled them to work, too).
15101
15102 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15103
15104         * verify.c (merge_stacks): major clean up, all type compatibility
15105         checks are done by verify_type_compatibility. This fix my earlier lack
15106         of understanding of the CLR type system and merge_stacks no longer looks
15107         scary.
15108
15109         * verify.c: fixed some bad spelling.
15110
15111 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15112
15113         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
15114         a given stack slock.
15115         
15116         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
15117         verify_type_compatibility_full. This removed a near indentical function and fixed
15118         handling of Int32 and IntPtr across all opcodes.
15119
15120 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15121
15122         * class.c: only vectors have the additional generic interfaces.
15123
15124 2007-10-01  Jonathan Chambers <joncham@gmail.com>
15125
15126         * mono-config.c: Use g_strcasecmp instead of
15127         strcasecmp like everywhere else to fix
15128         compilation with MSVC.
15129         
15130         Code is contributed under MIT/X11 license.
15131
15132 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15133
15134         * object.c, object-internals.h: refactored the IMT code to enable
15135         building a single slot at a time and lazily creating the IMT trampolines
15136         and thunks.
15137
15138 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
15139
15140         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
15141
15142         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
15143         Fixes #328501.
15144         
15145 2007-09-29  Raja R Harinath  <harinath@gmail.com>
15146
15147         * loader.c (method_from_methodspec): Rearrange to avoid
15148         un-necessary exposition.  Don't assert out if the method's
15149         declaring type is a generic type definition.
15150
15151 2007-09-28  Martin Baulig  <martin@ximian.com>
15152
15153         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
15154
15155 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15156
15157         * class-internals.h: optimize field layout of MonoClass to
15158         requires less cachelines at runtime and save a few bytes on 64 bit
15159         systems.
15160
15161 2007-09-28  Jb Evain  <jbevain@novell.com>
15162
15163         * reflection.c: when encoding type names in custom attributes,
15164         if the type is a closed generic type, its generic arguments
15165         have to be serialized as AssemblyQualifiedName, so that when
15166         they are deserialized, it's possible to re-create them properly.
15167         Fixes #329450.
15168
15169
15170 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15171
15172         * object.c, class-internals.h: added delegate-creation counter.
15173
15174 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15175
15176         * class.c: cleanup of the code that synthetizes interfaces for
15177         arrays in 2.0: saves quit a bit of corlib mempool memory.
15178         Code to fix bug #325495 ifdeffed out for now until the issues
15179         with memory usage and O(n^2) behaviour are fixed.
15180
15181 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15182
15183         * marshal.c: when possible, do not duplicate the name of the methods
15184         in the method builder and in the generated MonoMethod.
15185
15186 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15187         * verify.c: added support for type checking ldind_* opcodes.
15188
15189 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15190
15191         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
15192         which is used to distinguish the fully open instantiation of a TypeBuilder
15193         with the rest. This temporary hack is required to restore the property that
15194         the fully open instantiation is the same type of the generic type definition.
15195
15196         * class-internals.h (mono_generic_class_is_generic_type_definition):
15197         new function as part of the internal API.
15198
15199         * class.c (inflate_generic_type): return NULL when the generic inst is
15200         fully open. The fully open generic type is now the same as the generic type
15201         definition for non TypeBuilder types.
15202
15203         * class.c (mono_generic_class_get_class): removed assert since it is
15204         no longer valid, gklass->cached_class can point to the generic type definition.
15205
15206         * class.c (mono_generic_class_is_generic_type_definition): new.
15207
15208         * metadata.c (mono_generic_class_hash): added is_tb_open field
15209         to the hash calculation.
15210
15211         * metadata.c (free_generic_class): if the generic class is associated
15212         with the generic type definition, its field will come from the mempool and
15213         must not be freed.
15214
15215         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
15216         new, this function identifies the corner case of a TypeBuilder fully open
15217         instantiation.
15218
15219         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
15220         for lookup. Set gclass->cached_class to be the container class in case of
15221         the fully open instantiation of non TypeBuilder types.
15222
15223         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
15224         to compare generic classes.
15225
15226         * reflection.c (method_encode_methodspec): remove assert that
15227         no longer is valid.
15228
15229         * reflection.c (mono_reflection_generic_class_initialize): add
15230         an aditional assert to ensure the proper type is used.
15231
15232 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
15233
15234         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
15235         to enjoy it.
15236
15237 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15238
15239         * verify.c (push_arg): Fixed support for ldarga
15240         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
15241         MonoType used as first arg in case of instance calls.
15242
15243 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15244
15245         * verify.c: Support for verifying VAR and MVAR types, 
15246
15247 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
15248
15249         * icall.c (ves_icall_get_property_info): Set the reflected type of the
15250         accessors correctly.
15251
15252 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15253
15254         * threads.c: support OSX and other systems in
15255         mono_thread_get_stack_bounds (bug #328026).
15256
15257 2007-09-25  Martin Baulig  <martin@ximian.com>
15258
15259         * mono-debug.h
15260         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
15261
15262 2007-09-24  Martin Baulig  <martin@ximian.com>
15263
15264         * mono-debug.h
15265         (MonoDebugClassEntry): Moved the definition of this struct into
15266         mono-debug.c to make it private.
15267
15268         * mono-debug.c
15269         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
15270         type table per symbol file, we don't need to store the symfile id
15271         any longer.
15272
15273 2007-09-24  Martin Baulig  <martin@ximian.com>
15274
15275         Create one type table per symbol file, since a `MonoClass *' gets
15276         invalid when its image is unloaded.
15277
15278         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
15279         (MonoDebugHandle): Added `type_table'.
15280
15281 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15282
15283         * mempool.c, mempool.h: added mono_mempool_new_size () API
15284         to be able to specify a smaller initial size for the pool.
15285         Adjusted the code to slowly increase pool size before using
15286         the previous default size.
15287         * image.c: use a small initial size for image mempools.
15288
15289 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
15290
15291         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
15292         Fixes ##320990.
15293
15294         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
15295         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
15296
15297 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
15298
15299         * metadata.c (mono_type_create_from_typespec): Remove an invalid
15300         free. Fixes #327438.
15301
15302 2007-09-21  Raja R Harinath  <harinath@gmail.com>
15303
15304         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
15305         generic instantiations, etc.
15306         <MONO_TYPE_ARRAY>: Likewise.
15307
15308 2007-09-21  Martin Baulig  <martin@ximian.com>
15309
15310         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
15311         these structs were never defined.
15312         (MonoDebugHandle): Removed the `_priv' field, it was never used.
15313
15314 2007-09-21  Martin Baulig  <martin@ximian.com>
15315
15316         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
15317
15318 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
15319
15320         * image.c: removed the guid hash tables: we can get the same info
15321         without the additional memory usage hit (partially fixes also bug #327052).
15322
15323 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15324
15325         * profiler.h, profiler-private.h, profiler.c: add a new profiler
15326         event to handle unloading methods. After the event is called, the
15327         corresponding MonoMethod* must be considered invalid.
15328         * loader.c (mono_free_method): call the new mono_profiler_method_free
15329         event.
15330
15331 2007-09-20  Mark Probst  <mark.probst@gmail.com>
15332
15333         * domain-internals.h: New flag in MonoJitInfo which marks shared
15334         generic methods.  New hash table (shared_generics_hash) in
15335         MonoDomain to keep track of shared generic methods.  Prototypes
15336         for functions to register and lookup shared generic methods.
15337
15338         * domain.c: Support for registering and looking up shared generic
15339         methods via a hash table (shared_generics_hash) in MonoDomain.
15340
15341         * class-internals.h: New exception to signal failure of shared
15342         compilation of a generic method.  New counters for generics
15343         sharing in MonoStats.
15344
15345 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15346
15347         * image.c, metadata-internals.h: don't keep a file descriptor open
15348         for loaded assemblies (bug#325988).
15349
15350 2007-09-19  Raja R Harinath  <rharinath@novell.com>
15351
15352         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
15353         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
15354         use the corresponding datatypes.
15355         (type_in_image): Update to changes.
15356         (CleanForImageUserData): Simplify.
15357         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
15358         Avoid quadratic behaviour in handling the "stolen" list by
15359         separating the filter predicate out, and by prepending the stolen
15360         items rather than appending them.
15361         (steal_ginst_in_image): Likewise.
15362         (mono_metadata_clean_for_image): Update to changes.
15363
15364 2007-09-19  Martin Baulig  <martin@ximian.com>
15365
15366         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
15367
15368 2007-09-19  Martin Baulig  <martin@ximian.com>
15369
15370         * mono-debug.c (mono_debug_cleanup): Don't call
15371         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15372
15373 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15374
15375         Fix crash on 'make run-test' in mcs/errors
15376         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15377         Avoid more potential allocations in mono_class_from_mono_type.
15378         (ginst_in_image): Update to changes.
15379         (gclass_in_image): Rearrange slightly.
15380
15381 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15382
15383         * class.c (mono_class_init): Move the code that sets up class->methods to 
15384         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15385
15386         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15387         canonical instance of an inflated generic signature.
15388         (mono_type_create_from_typespec): Remove an invalid free.
15389
15390         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15391
15392 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15393
15394         * domain-internals.h: added a declaration of the
15395         mono_assembly_load_full_nosearch internal function.
15396
15397         * assembly.c (mono_assembly_load_with_partial_name): use
15398         mono_try_assembly_resolve return value properly.
15399         (mono_assembly_load_full_nosearch): copied the function body from
15400         mono_assembly_load_full, without the code to invoke assembly
15401         search hooks.
15402         (mono_assembly_load_full): calls the above new function and if the
15403         assembly is not resolved, invokes the search hooks.
15404
15405         * appdomain.c (mono_runtime_init): restore the global postload
15406         assembly search handlers.
15407
15408 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15409
15410         * class.c (mono_class_init): Make sure class->methods and class->properties
15411         are never NULL in the generics case.
15412
15413         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15414
15415 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15416
15417         * metadata.c (free_generic_class): Disable some code to fix the build.
15418
15419         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15420
15421         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15422         from the image mempool.
15423
15424         * metadata.c (free_generic_class): Free more data from the inflated class.
15425
15426         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15427
15428         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15429         mempool.
15430         (mono_type_create_from_typespec): Ditto.
15431
15432         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15433         MonoImage to the caller.
15434         (mono_init_internal): Save the opened image in a global variable.
15435         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15436
15437         * reflection.c (resolve_object): Fix a leak.
15438
15439         * metadata.c: Fix the freeing of data in the generics caches.
15440         
15441         * metadata.c (free_generic_inst): Comment this out to fix the build.
15442         (free_generic_class): Ditto.
15443
15444         * metadata.c: Free cached generic methods, instantinations and classes when
15445         they are removed from the caches.
15446         (mono_metadata_free_type): Free the type itself.
15447
15448         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15449         places.
15450
15451 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15452
15453         * boehm-gc.c: restrict managed allocs to __thread supporting
15454         architectures.
15455
15456 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15457
15458         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15459         (mono_generic_class_get_class): Fix a leak.
15460
15461         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15462         mono_metadata_free_type ().
15463         (mono_metadata_inflate_generic_inst): Fix a leak.
15464
15465 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15466
15467         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15468
15469         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15470         mempool.
15471
15472         * mono-debug.c (mono_debug_close_image): Fix call to 
15473         g_hash_table_remove ().
15474
15475 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15476
15477         * icall-def.h: redirect all the string ctor to the managed
15478         CreateString () methods.
15479         * string-icalls.c, string-icalls.h: removed dead code for string
15480         ctors and icalls.
15481
15482 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15483
15484         * mono-debug.c: Fix memory leaks.
15485
15486 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15487
15488         * threads-types.h: Implement mono_hazard_pointer_set and 
15489         mono_hazard_pointer_clear macros using do/while(0) to fix
15490         compilation with MSVC.
15491         
15492         Code is contributed under MIT/X11 license.
15493
15494 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15495
15496         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15497         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15498
15499 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15500
15501         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15502         icalls.
15503
15504 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15505
15506         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15507         managed-code allocated as well.
15508
15509 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15510
15511         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15512
15513 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15514
15515         * boehm-gc.c: fixed the build after the AOT changes.
15516
15517 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15518
15519         * wrapper-types.h: Add an ALLOC wrapper type.
15520
15521         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15522         reference managed allocator methods.
15523
15524 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15525
15526         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15527         of Type array and not MonoType, a fix suggested by Hari.
15528         
15529 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15530
15531         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15532         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15533         
15534         Code is contributed under MIT/X11 license.
15535
15536 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15537
15538         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15539
15540 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15541
15542         * image.c (do_mono_image_open): if assembly file fails to open and
15543         MONO_IOMAP is in effect, try to find the path in a
15544         case-insensitive way.
15545
15546         * appdomain.c (mono_runtime_init): do not install postload hooks -
15547         tests show that MS.NET doesn't use anything of that sort to
15548         trigger the AppDomain.AssemblyResolve event.
15549         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15550         made non-static.
15551         (mono_runtime_init): init portability helpers here.
15552
15553         * assembly.c (mono_assembly_load_with_partial_name): if other   
15554         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15555         to resolve the assembly.
15556
15557         * domain-internals.h: added mono_try_assembly_resolve and marked
15558         it as internal.
15559
15560 2007-09-11  Jb Evain  <jbevain@novell.com>
15561
15562         * object-internals.h (MonoReflectionDynamicMethod): add
15563         a `MonoReflectionType *owner` field. The owner is used
15564         * reflection.c:
15565         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15566         method as the class declaring the dynamic method.
15567         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15568         dynamic method to the declaring type of the methodbuilder.
15569
15570 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15571
15572         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15573         rules for calling methods via reflection.
15574
15575 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15576
15577         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15578         Inflate MonoType's.
15579
15580 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15581
15582         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15583         provide a managed method that does fast allocations without needing
15584         a managed->unmanaged transition. Boehm GC implementation currently
15585         enabled for ptrfree objects on sane architectures.
15586
15587 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15588
15589         * marshal.c, marshal.h: exported a couple of useful functions and
15590         added mono_mb_get_label () to easily handle backward branches.
15591
15592 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15593
15594         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15595
15596 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15597
15598         * loader.c (find_method): Fixed the regression introduced while
15599         fixing bug #81466.
15600
15601 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15602
15603         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15604         well.
15605         
15606         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15607         icall.c reflection.c: Pass a MonoGenericContext argument to 
15608         mono_lookup_dynamic_token ().
15609
15610         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15611         #82744.
15612         
15613 2007-09-09  Robert Jordan  <robertj@gmx.net>
15614
15615         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15616         for generic methods.
15617
15618         * object.c (mono_object_get_virtual_method): Handle generic methods.
15619         Fixes bug #78882.
15620
15621         Code is contributed under MIT/X11 license.
15622
15623 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15624
15625         * image.c: fix locking in mono_image_load_file_for_image ().
15626
15627 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15628
15629         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15630         used only as a cache: added an icall to fill it.
15631
15632 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15633
15634         * reflection.h: exposed mono_reflection_free_type_info
15635         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15636         since mono_reflection_bind_generic_parameters makes a copy of it.
15637         * reflection.c (free_type_info): subinfos should be freed.
15638         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15639         made non static.
15640         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15641         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15642         this fixes #82695 and #81726.
15643    
15644
15645 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15646
15647         * process.h, process.c:  added support for user profile/info in
15648           ProcessStartInfo. For now only Windows works.
15649
15650 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15651
15652         * metadata.c: consider the generic arguments when comparing
15653         signatures (bug #82614).
15654
15655 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15656
15657         * cil-coff.h, image.c: updated assembly loader to cope with the
15658         PE32+ 64 bit file format.
15659
15660 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15661
15662         * assembly.c, class.c, domain.c, loader.c: remove useless
15663         inclusion of cil-coff.h.
15664
15665 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15666
15667         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15668         if interface is marked with CoClassAttribute. 
15669    
15670         Code is contributed under MIT/X11 license.
15671
15672 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15673
15674         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15675         if it's seen twice in major collections.
15676
15677 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15678
15679         * sgen-gc.c: big objects are not copied to the gray area, but they
15680         need to be considered for scanning, too, if they are brought alive
15681         by an object ready for finalizations or a survived one.
15682
15683 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15684
15685         * sgen-gc.c: properly account the number of disappearing links when
15686         they are nullified.
15687
15688 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15689
15690         * sgen-gc.c: share the code to scan the registered roots between the
15691         different types of collections.
15692
15693 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15694
15695         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15696
15697 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15698
15699         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15700         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15701
15702 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15703
15704         * security-manager.c (mono_security_manager_get_methods):
15705         LinkDemandSecurityException now has 2 arguments instead of 3.
15706
15707 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15708
15709         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15710         platforms which need it.
15711
15712 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15713
15714         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15715         dtor.
15716
15717 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15718
15719         * threads.c: free the thread static data on thread exit.
15720
15721 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15722
15723         * class.c: walk the hierarchy to find the generic definition for
15724         a class (fixes runtime part of bug #82498).
15725
15726 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15727
15728         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15729         ...
15730
15731         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15732
15733 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15734
15735         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15736
15737 2007-08-24  Robert Jordan  <robertj@gmx.net>
15738
15739         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15740
15741 2007-08-24  Jb Evain  <jbevain@novell.com>
15742
15743         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15744         for byref types.
15745
15746 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15747
15748         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15749         #82286.
15750
15751 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15752
15753         * assembly.c: Fix a warning.
15754         
15755 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15756
15757         * appdomain.c: parse the <runtime> section looking for the probing
15758         element with the 'privatePath' attribute, which sets additional
15759         directories in which the runtime should look for assemblies.
15760
15761 2007-08-23  Robert Jordan  <robertj@gmx.net>
15762
15763         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15764         Fixes #82499.
15765
15766 2007-08-23  Martin Baulig  <martin@ximian.com>
15767
15768         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15769         _mono_debug_init_corlib() and remove it from the header file.
15770
15771 2007-08-23  Martin Baulig  <martin@ximian.com>
15772
15773         * mono-debug-debugger.c
15774         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15775         don't notify the debugger about it.
15776
15777         * mono-debug-debugger.h
15778         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15779
15780 2007-08-23  Robert Jordan  <robertj@gmx.net>
15781
15782         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15783         Code is contributed under MIT/X11 license.
15784
15785 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15786
15787         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15788
15789 2007-08-22  Martin Baulig  <martin@ximian.com>
15790
15791         * mono-debug.c: Store debugging info on a per-domain basis and
15792         free it on domain unload.  Add support for unloading symbol files.
15793
15794         * mono-debug.h
15795         (MonoDebugList): New typedef.
15796         (MonoSymbolTable):
15797         - add `data_tables and `type_table'.
15798         - replace 'symbol_files' and `num_symbol_files' with a
15799           `MonoDebugList *'.
15800         (mono_debug_data_table): Removed.
15801         (mono_debug_list_add): New public function.
15802         (mono_debug_list_remove): New public function.
15803         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15804         (mono_debug_init_2_memory): Renamed into
15805         mono_debug_open_image_from_memory().
15806         (mono_debug_close_image): New public function.
15807         (mono_debug_domain_create): Likewise.
15808         (mono_debug_domain_unload): Likewise.
15809         (MONO_DEBUGGER_VERSION): Bump to 60.
15810
15811         * mono-debug-debugger.h
15812         (MonoDebuggerEvent):
15813         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15814         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15815         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15816         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15817           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15818         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15819           meaning.
15820         (mono_debugger_add_symbol_file): Removed.
15821         (mono_debugger_add_type): Removed.
15822         (mono_debugger_lookup_type): Removed.
15823         (mono_debugger_lookup_assembly): Removed.
15824
15825         * domain.c
15826         (mono_domain_create): Call mono_debug_domain_create().
15827         (mono_init_internal): Call mono_debug_init_corlib().
15828
15829         * assembly.c
15830         (mono_assembly_close): Call mono_debug_close_image().
15831
15832 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15833
15834         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15835         mmap call.
15836
15837 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15838
15839         * sgen-gc.c: ensure section->pin_queue_end is initialized
15840         correctly when non pinning objects in the section have been found.
15841
15842 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15843
15844         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15845         containing a list of directories separated by ':'. MSDN docs say
15846         the directories should be separated with ';'. Part of a bugfix for
15847         bug #81446
15848
15849 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15850
15851         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15852         it should MonoType and not MonoClass.
15853
15854 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15855
15856         * culture-info-table.h : regenerated.
15857
15858 2007-08-20  William Holmes  <billholmes54@gmail.com>
15859
15860         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15861          to call ReplaceFile Kernel32 on windows or in io-layer.
15862         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15863         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15864          as an internal call.
15865
15866         Code is contributed under MIT/X11 license.
15867
15868 2007-08-20  Jb Evain  <jbevain@novell.com>
15869
15870         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15871         and MONO_EXCEPTION_FIELD_ACCESS.
15872
15873         * debug-helpers.[c|h]: new mono_field_full_name function.
15874
15875 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15876
15877         * class.c: Removed class_security_level() and moved it to
15878         security-core-clr.c.
15879
15880         * security-core-clr.c, security-core-clr.h: class_security_level()
15881         is now public and renamed to mono_security_core_clr_class_level().
15882         It also looks for security attributes in the classes a class is
15883         nested in.
15884
15885 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15886
15887         * security-core-clr.c, security-core-clr.h: CoreCLR security
15888         utility functions.
15889
15890         * Makefile.am: Added security-core-clr.[ch].
15891
15892         * security-manager.c, security-manager.h: Functions and enum for
15893         setting and getting the security mode.
15894
15895         * class.c: CoreCLR security checks.
15896
15897 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15898
15899         * icall-def.h, process.c, process.h: implemented icall to get
15900         user/system processor times.
15901
15902 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15903
15904         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15905         reader-lock-free jit_info_table.
15906
15907 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15908
15909         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15910
15911         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15912
15913         * object-internals.h (MonoException): Add missing _data member.
15914
15915 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15916
15917         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15918         checking that only methods with matching qname or fqname are picked
15919         from implemented interfaces.
15920
15921 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15922
15923         * verify.c (do_newarr):added, do type verification of
15924         newarr ops, push the right value on the eval stack.
15925         * verify.c (mono_method_verify): use do_newarr
15926
15927
15928 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15929
15930         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15931         factored the common code into get_boxable_mono_type, which
15932         is now using mono_type_get_full, this fixed byref related tests.
15933
15934 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15935
15936         * class.c: added mono_type_get_full, this function has the same
15937         behavior of mono_class_get_full but the returned MonoType has
15938         all metadata of the associated token in case of a typespec token.
15939         * class.c: added mono_type_retrieve_from_typespec, used by 
15940         mono_type_get_full to retrieve the token type.
15941         * class.c (mono_class_create_from_typespec): changed to use
15942         mono_type_retrieve_from_typespec.
15943         * class.c (mono_ldtoken): changed to use mono_type_get_full
15944         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15945         * class-internals.h: exported mono_type_get_full for internal use.
15946
15947 2007-08-16  Jb Evain  <jbevain@novell.com>
15948
15949         * domain.c (supported_runtimes): add entry for
15950         the 'moonlight' runtime version.
15951
15952 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15953
15954         * verify.c (mono_method_verify): small typo sliped in.  
15955
15956 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15957
15958         * verify.c (do_unbox_value): added, do type verification of
15959         unboxing ops
15960         * verify.c (mono_method_verify): use do_unbox_value
15961
15962
15963 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15964
15965         * verify.c (dump_stack_value): fixed typo, was printing string
15966         instead of object on stack.
15967         * verify.c (do_box_value): moved the byref check up as it leads
15968         to invalid code and should be done earlier.
15969         * verify.c: improved error messages for and ldobj
15970
15971 2007-08-15  William Holmes  <billholmes54@gmail.com>
15972
15973         * marshal.c (emit_marshal_custom): Omit the call to 
15974           marshal_native_to_managed when calling native to managed 
15975           and the argument is specified as an out argument.
15976
15977         Code is contributed under MIT/X11 license.
15978
15979 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15980
15981         * verify.c: fixed the type checks for generics, function pointers and vectors.
15982         Added type verification for ldobj and ldtoken. The verifier
15983         would segfault if header or signature of a method contained references
15984         to non-existant types.
15985
15986 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15987
15988         * marshal.c (cominterop_get_ccw): Patch from
15989         Bill Holmes to no walk up interface hierarchy. 
15990         All parent methods should be present in the interface for COM.
15991    
15992         Code is contributed under MIT/X11 license.
15993
15994 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15995
15996         * marshal.c (emit_marshal_com_interface): Patch from
15997         Bill Holmes to handle COM Interfaces as return values
15998         for native->managed calls.
15999    
16000         Code is contributed under MIT/X11 license.
16001
16002 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
16003
16004         * marshal.c (cominterop_get_idispatch_for_object): Implement
16005         for runtime callable wrappers.
16006    
16007         Code is contributed under MIT/X11 license.
16008
16009 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
16010
16011         * pedump.c (main): changed from mono_init to mono_init_from_assembly
16012         so 2.0 types are accessible
16013
16014
16015 2007-08-13  Miguel de Icaza  <miguel@novell.com>
16016
16017         * domain.c (mono_init_internal): Call mono_assembly_load_friends
16018         once we load mscorlib.   Due to the order in which we initialize,
16019         the mono_assembly_load_full routine that loads mscorlib did not
16020         load friends.   We now load it once we load the
16021         mono_defaults.internals_visible_class class. 
16022
16023         * assembly.c: Expose the mono_load_friend_assemblies method.
16024
16025 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
16026
16027         * verify.c: improved the handling of boxing, better
16028         type checking for unary ops and conversion. Fix bug
16029         regarding managed pointer compatibility checking
16030
16031 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
16032
16033         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
16034
16035         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
16036
16037 2007-08-09  Raja R Harinath  <rharinath@novell.com>
16038
16039         * reflection.c (dup_type): Remove.
16040         * class.c (dup_type): Remove.
16041         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
16042         instead of the dodgy 'dup_type'.
16043         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
16044         handle the case where 'dup_type' needed the second argument.
16045
16046 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
16047
16048         * domain.c: Fix a warning.
16049
16050 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
16051
16052         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
16053         checking that methods with the same fqname are not overridden
16054         with a method from an ancestor.
16055
16056 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
16057
16058         * threads.c (free_thread_static_data_helper): Avoid a crash if
16059         thread->static_data is not yet set.
16060
16061 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
16062
16063         * marshal.c: Use correct image when emitting
16064         native wrapper for COM calls.
16065    
16066         Code is contributed under MIT/X11 license.
16067
16068 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
16069
16070         * icall-def.h, security.c, security.h :
16071           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
16072
16073 2007-08-07  Martin Baulig  <martin@ximian.com>
16074
16075         * mono-debug-debugger.h
16076         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
16077
16078         * domain.c (mono_domain_free): Call
16079         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
16080
16081 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
16082
16083         * verify.c (check_underflow, check_overflow): error message now returns IL offset
16084         * verify.c (in_same_block): code should test if either offset is inside the clauses
16085         * verify.c (mono_method_verify): push the exception into the eval stack of exception
16086         and filter blocks
16087
16088 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16089
16090         * image.c (mono_image_close): Fix a leak.
16091
16092         * object.c (mono_runtime_invoke_array): Avoid using alloca.
16093
16094         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
16095
16096 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
16097
16098         * domain.c, threads.c, threads-types.h: fix memory retention issue
16099         with thread static variables not being cleared on domain unload.
16100         Reuse thread static slots after domain unload.
16101
16102 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16103
16104         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
16105         nullable type.
16106
16107         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
16108         now done in mono_runtime_invoke_array.
16109
16110         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
16111         receiver is a nullable type.
16112
16113         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
16114         generic parameter.
16115
16116 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
16117
16118         * marshal.c: Implement COM Objects as return type for 
16119         managed->unmanaged calls. Added Release calls for COM Object
16120         out/return values in managed->unmanaged calls.
16121
16122         Code is contributed under MIT/X11 license.
16123
16124 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
16125
16126         * threads.h, threads-type.h: move the hazard pointer declarations
16127         to the private header.
16128
16129 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
16130
16131         * file-io.c, appdomain.c: memory leak fixes.
16132
16133 2007-08-02  Dick Porter  <dick@ximian.com>
16134
16135         * socket-io.c
16136         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
16137         SO_REUSEADDR setting into io-layer/sockets.c.
16138
16139 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
16140
16141         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
16142         from Object when called on a generic parameter. Fixes #82211.
16143
16144 2007-08-01  Dick Porter  <dick@ximian.com>
16145
16146         * file-io.c (convert_share): Test FileShare values bit-by-bit.
16147         Fixes bug 79250 yet again.
16148
16149 2007-07-30  Martin Baulig  <martin@ximian.com>
16150
16151         Merged the `debugger-dublin' branch.
16152
16153         * mono-debug.h
16154         (MonoDebugDataTable): New typedef.
16155         (MonoDebugMethodAddressList): New typedef.
16156         (MonoDebugWrapperData): Removed.
16157         (MonoDebugSymbolTable): Removed `current_data_table',
16158         `current_data_table_size', `current_data_table_offset'.
16159         (MonoDebugDataItemType): Moved into mono-debug.c.
16160         (MonoDebugMethodJitInfo): Remove `address'.
16161         (mono_debug_data_table): New global variable.
16162         (mono_debug_lookup_method_addresses): New public function.
16163         (mono_debug_find_method): Take a `MonoMethod *', not a
16164         `MonoDebugMethodInfo *'.
16165
16166         * mono-debug.c: Drop support for the old symbol tables.
16167
16168 2007-06-28  Martin Baulig  <martin@ximian.com>
16169
16170         * mono-debug.c (mono_debug_debugger_version): New public variable.
16171
16172 2007-07-31  William Holmes  <billholmes54@gmail.com>
16173
16174         * metadata.c Changed mono_type_create_from_typespec to not insert
16175           the type into the hash map until after
16176           do_mono_metadata_parse_type has completed.
16177         Fixes Bug #82194
16178         Code is contributed under MIT/X11 license.
16179
16180 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
16181
16182         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
16183         generic parameter. Fixes #82211.
16184
16185 2007-07-27  Jb Evain  <jbevain@novell.com>
16186
16187         * pedump.c (dump_metadata, dump_metadata_header): dump
16188         versions contained in the metadata header.
16189
16190 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
16191
16192         * threads.c: register small_id_table with the GC.
16193
16194 2007-07-27  Mark Probst  <mark.probst@gmail.com>
16195
16196         * threads.c, threads.h, class-internals.h, object-internals.h:
16197         Hazard pointers, to be used by lock-free parallel algorithms.
16198
16199 2007-07-26  Dick Porter  <dick@ximian.com>
16200
16201         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
16202         routine on non-windows platforms, as I've not managed to think of
16203         a non-kludgy way of doing this.  Finishes off bug 78739.
16204
16205 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
16206
16207         * object.c: properly setup interface_bitmap in proxy vtables.
16208
16209 2007-07-25  Marek Habersack  <mhabersack@novell.com>
16210
16211         * appdomain.c (get_shadow_assembly_location): do not use TickCount
16212         to create unique shadow copy target directories, use the domain's
16213         serial number instead. Each domain gets a unique target directory
16214         that way.
16215
16216         * domain.c (mono_domain_create): added code to increment domain
16217         shadow copy serial number and cache the value in the current
16218         domain structure.
16219
16220         * domain-internals.h (struct _MonoDomain): added a new field -
16221         shadow_serial to hold the serial number used in generation of
16222         shadow-copy directories. This is to make sure that the directory
16223         name is unique for each and every domain created. We avoid a race
16224         condition with overriding assemblies already in use by other app
16225         domains.
16226
16227 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
16228
16229         * class.c (mono_bounded_array_class_get): fixed memory leak when 
16230         binding generic parameters.
16231
16232 2007-07-24  Raja R Harinath  <rharinath@novell.com>
16233
16234         * metadata.c (do_mono_metadata_parse_generic_class): Use
16235         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
16236         error.
16237
16238 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
16239
16240         * loader.c, class-internals.h, reflection.c: removed the per-method
16241         generics hashtable: we use the global one through the call of
16242         mono_class_inflate_generic_method ().
16243
16244 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16245
16246         * class.c, metadata.c, class-internals.h: introduce yet another
16247         generics global cache for inflated methods (fixes 98% of the perf
16248         issue in bug #81806).
16249
16250 2007-07-23  Raja R Harinath  <rharinath@novell.com>
16251
16252         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
16253         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
16254         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
16255         return a MonoGenericInst containing (a copy) of those types.
16256         (mono_metadata_inflate_generic_inst): Update to changes.
16257         (mono_metadata_parse_generic_inst): Likewise.
16258         (mono_get_shared_generic_inst): Likewise.
16259         * reflection.c (mono_class_bind_generic_parameters): Likewise.
16260         (mono_reflection_bind_generic_method_parameters): Likewise.
16261         * metadata-internals.h: Likewise.
16262         * icall.c (free_generic_context): Kill.
16263         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
16264
16265         * reflection.c (reflection_methodbuilder_to_mono_method): Use
16266         mono_metadata_type_dup.
16267         * marshal.c (mono_mb_create_method): Likewise.
16268
16269         * metadata.c (mono_metadata_type_dup): Rename from
16270         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
16271         MonoImage.  Handle a few more cases, esp. when no mempool is given.
16272         * marshal.c, metadata-internals.h: Update to changes.
16273
16274 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
16275
16276         * class.c: fixed a small leak for array classes and removed warning.
16277
16278 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
16279
16280         * loader.c (mono_method_get_param_token): Make this work on generic methods.
16281         Return 0x8000000 for return parameters. Fixes #82161.
16282
16283 2007-07-21  Marek Habersack  <grendello@gmail.com>
16284
16285         * appdomain.c (get_shadow_assembly_location): append the current
16286         ticks value to the path. Avoids overwriting the same assemblies by
16287         several threads at the same time.
16288
16289 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16290         and Raja R Harinath  <rharinath@novell.com>
16291
16292         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16293         Simplify slightly.
16294         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
16295         property for testing if a method is a generic method definition.
16296
16297 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16298
16299         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
16300
16301 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16302
16303         * verify.c: used function from private branch, reverted to the one in class.h 
16304
16305 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16306
16307         * verify.c: a typo slipped in and the code wont compile
16308
16309 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16310
16311         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
16312         disabled box instruction as it is doing the wrong thing
16313         improved stack dump messages, now it is easier to debug type related issues
16314
16315
16316 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
16317
16318         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
16319
16320 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16321
16322         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
16323         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
16324         grouped with class and valuetype. This change will simply 
16325         the code as it should be handled just like unmanaged pointers.
16326
16327 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16328
16329         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
16330
16331 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16332
16333         * verify.c: several stack merge issues fixed, reference comparisons now
16334         check the type size. strict type check now works correctly.
16335         added more uses of IS_MANAGED_POINTER macro.
16336         fixed issues pointed by running the test suite against .net.
16337         
16338
16339 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16340
16341         * class.c, loader.c, class-internals.h: Removed the
16342         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
16343         defines.
16344
16345         * icall.c: Better error checking in some internal reflection
16346         methods.
16347
16348 2007-07-18  William Holmes  <billholmes54@gmail.com>
16349
16350         * filewatcher.c : removed unused variable 'filename' in 
16351           ves_icall_System_IO_FSW_SupportsFSW
16352
16353 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
16354
16355         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
16356         obsolete, removed.
16357
16358 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
16359
16360         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
16361         
16362         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
16363
16364 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
16365
16366         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
16367         Implement generics support.
16368         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16369
16370         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16371         type_args and method_args arguments.
16372         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16373         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16374         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16375
16376 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16377
16378         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16379           It adds a rootimage parameter to mono_reflection_get_type_internal,
16380           adds new function mono_reflection_get_type_with_rootimage and use
16381           the rootimage to resolve the types instead of the current image
16382
16383 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16384
16385         * culture-info-table.h: Forgot to update after r78304.
16386
16387 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16388
16389         * class.c (mono_class_is_open_constructed_type)
16390         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16391
16392 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16393
16394         * class.c (mono_bounded_array_class_get):  method fails if used with
16395         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16396         avoiding calculating the size for such array as it cannot be instantiated.
16397         Fix bug #82015
16398
16399 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16400
16401         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16402         field.
16403         * metadata.c, reflection.c: Update to changes.
16404
16405 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16406
16407         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16408         mono_class_is_valid_enum, they are used to valide a enum when loading.
16409         * reflection.c: used new functions to throw TypeLoadException when and
16410         invalid enum is build with TypeBuilder. Fixes #82018
16411   
16412 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16413
16414         * object.c: forgot commit of mono_class_setup_methods () to access
16415         iface->methods.
16416         * object-internals.h: added a few more handy fields to
16417         MonoIMTCheckItem.
16418
16419 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16420
16421         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16422         iface->methods.
16423
16424 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16425
16426         * class-internals.h, object-internals.h, object.c: IMT-based
16427         interface invocation core from Massimiliano Mantione
16428         (massi@ximian.com) with a reworked arch-specific interface,
16429         bsearch implementation and a few bugfixes and memory savings by me.
16430
16431 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16432
16433         * class.c (mono_class_create_from_typedef): mono would segfault if 
16434         an enum did not have a __value field. It now throws a TypeLoadException
16435         for such cases. Fix bug #82022
16436
16437 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16438
16439         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16440
16441 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16442
16443         * class.c (mono_class_init): If a class is already inited but has
16444         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16445
16446 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16447
16448         * class.c: Properly handle the case of an unimplemented interface
16449         method.  Fixes: 81673.
16450
16451 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16452
16453         * class-internals.h, object.c: cleanup patch from massi: use
16454         MonoVTable->interface_bitmap since the vtable interfaces offset array
16455         is going away.
16456
16457 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16458
16459         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16460         GetMDStreamVersion icall instead.
16461
16462 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16463
16464         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16465         not use mono_dl_build_path() with a full library name: makes
16466         fallbacks to libgaim and libfam work.
16467
16468 2007-07-06  William Holmes  <billholmes54@gmail.com>
16469
16470         * assembly.c: Added a continue statement in probe_for_partial_name when
16471          parse_assembly_directory_name fails.  Fixes : 82002
16472
16473 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16474
16475         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16476         and added a verification  for TYPEDBYREF.
16477         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16478         make native int interchangeable with int32 and some small cleanup and formating.
16479         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16480         handle byref of byref.
16481         * verify.c (push_local): handle byref of byref.
16482         * verify.c (do_binop): invalid mix of values is unverifiable
16483         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16484         added visibility checks
16485         * verify.c (field related method): added visibility checks
16486         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16487
16488 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16489
16490         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16491         string.
16492
16493 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16494
16495         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16496
16497         * marshal.c (emit_marshal_string): When returning a string from managed code,
16498         allways make a copy even for unicode strings. Fixes #81990.
16499
16500 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16501
16502         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16503         of byref generic inst types (bug #81997).
16504
16505 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16506
16507         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16508         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16509
16510 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16511
16512         * marshal.c (emit_marshal_string): Add support for unicode strings in
16513         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16514
16515 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16516
16517         * verify.c: field load/store are now verified, missing only access checks now
16518
16519 2007-06-28  Martin Baulig  <martin@ximian.com>
16520
16521         * mono-debug.c (mono_debug_debugger_version): New public variable.
16522
16523 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16524
16525         * locales.c: When constructing DateTimeFormat or NumberFormat for
16526         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16527         MonoCultureInfo contructed from the current locale is always
16528         read-only and has UseUserOverride set to true. All MonoCultureInfo
16529         instances returned for GetCultures have both IsReadOnly and
16530         UseUserOverride set to true. Fixes part of bug #81930.
16531
16532 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16533
16534        * icall-def.h: Update System.__ComObject icalls
16535        * marshal.c: Avoid managed transition (and object creation)
16536        when looking up COM interface in RCW.
16537        * marshal.h: Ditto.
16538        
16539        Code is contributed under MIT/X11 license.
16540
16541 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16542
16543         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16544         to avoid crashes during assembly unloading.
16545
16546 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16547
16548         Fix MethodInfo.IsGenericMethodDefinition
16549         * reflection.c (mono_reflection_bind_generic_method_parameters):
16550         Rearrange code to ensure we always uses a generic method definition.
16551         * class.c (mono_class_inflate_generic_method_full): Set
16552         'generic_container' field only for generic method definitions.
16553         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16554         Use presense of 'generic_container' field as indication of being a
16555         generic method definition.
16556
16557 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16558
16559         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16560
16561         * object-internals.h: Reflect changes in the layout of the managed Delegate
16562         class.
16563         
16564         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16565         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16566         runtime memory used by the dynamic method. Fixes #77146.
16567
16568 2007-06-21  Dick Porter  <dick@ximian.com>
16569
16570         * file-io.h: 
16571         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16572         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16573         81767.
16574
16575 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16576
16577         * reflection.c (method_encode_methodspec): Add a tripwire.
16578         * class.c (inflate_generic_type): The fully open generic type is
16579         not the same as the generic type definition.
16580
16581 2007-06-21  Martin Baulig  <martin@ximian.com>
16582
16583         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16584
16585         * mono-debug-debugger.h
16586         (MonoDebuggerBreakpointInfo): Removed.
16587         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16588         (mono_debugger_remove_breakpoint): Likewise.
16589         (mono_debugger_breakpoint_callback): Likewise.
16590         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16591
16592 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16593
16594         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16595         generic type is not the same as the generic type definition.
16596         * class.c (mono_generic_class_get_class): Likewise.
16597
16598 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16599
16600         * icall.c: The second argument to 
16601         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16602         is a MonoType not a MonoClass.
16603
16604 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16605
16606         * verify.c: support for function pointers in the verifier
16607
16608 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16609
16610         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16611
16612 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16613
16614         * assembly.c: removed Mono.Data.SqliteClient from the list of
16615         forward-compatible assemblies as it breaks the ABI (bug #81899).
16616
16617 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16618
16619         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16620         lookup/update with the loader lock.
16621         * reflection.c (mono_class_bind_generic_parameters): No need to
16622         protect mono_metadata_lookup_* with the loader lock.
16623         * class.c (inflate_generic_type): Likewise.
16624         
16625         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16626         on a generic instantiated type.
16627
16628 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16629
16630         *verify.c: produce meanfull error messages on verification error
16631         *verify.c: fixed some cases of verification errors reported as validation errors
16632         *pedump.c: fixed the error name array, now it shows validation errors properly
16633         *verify.h: fixed the contant that should be used for verification errors
16634
16635 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16636
16637         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16638         for bug #77596, 81858 and 80743 (generics data structures on domain
16639         unload).
16640
16641 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16642
16643         Avoid allocating 'MonoGenericContext' on the heap.
16644         * class-internals (_MonoMethodInflated::context): Make field
16645         inline, not a pointer.
16646         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16647         stack.  Use the context embedded within the inflated method as the
16648         hash key, rather than 'new_context'.
16649         * class.c (inflate_generic_context): Simplify.  Return a struct
16650         rather than allocating on the heap.
16651         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16652         doesn't salt away a copy of the context -- simplifying the
16653         lifetime rules of a 'MonoGenericContext *'.
16654         (mono_method_get_context): Return pointer to embedded context.
16655         (setup_generic_array_ifaces): Allocate temporary context on stack.
16656         * reflection.c (inflate_mono_method): Likewise.
16657         (mono_reflection_bind_generic_method_parameters): Likewise.
16658         Use the context embedded within the inflated method as the hash key.
16659
16660         Avoid a source of allocation of 'MonoGenericContext'.
16661         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16662         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16663         * class.c: Update to changes.
16664         (mono_generic_class_get_context): Simplify drastically.  Now just
16665         returns a pointer to the field.
16666         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16667         argument as a const pointer.
16668         (mono_metadata_generic_context_equal): Likewise.
16669         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16670         Update to changes.
16671
16672 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16673
16674         * verify.c improved the handling of brtrue/brfalse, factored out common code
16675
16676 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16677
16678         Kill MonoGenericMethod.
16679         * class-internals.h (MonoGenericContext::method_inst): Rename from
16680         'gmethod' and convert to a MonoGenericInst.
16681         (MonoGenericMethod): Remove.
16682         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16683         * loader.c (method_from_methodspec): Update to changes.  Use a
16684         MonoGenericContext as the key to the hashtable.
16685         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16686         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16687         (mono_metadata_generic_context_hash): Likewise from
16688         'mono_metadata_generic_method_hash'.  Change hash function.
16689         (mono_metadata_load_generic_params): Update to changes.
16690         (mono_get_shared_generic_method): Remove.
16691         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16692         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16693         (inflate_generic_context): Likewise.
16694         (mono_class_inflate_generic_method_full): Likewise.
16695         (setup_generic_array_ifaces): Likewise.
16696         (mono_class_create_from_typespec): Likewise.
16697         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16698         (method_encode_methodspec): Update callsite.
16699         (reflection_methodbuilder_to_mono_method): Update to changes.
16700         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16701         MonoGenericContext as the key to the hashtable.
16702         (inflate_mono_method): Update to changes.
16703
16704         * class-internals.h (MonoGenericMethod::container): Remove.
16705         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16706
16707 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16708
16709         * profiler-private.h, profiler.c, profiler.h: added API to profile
16710         exception events.
16711
16712 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16713
16714         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16715
16716 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16717
16718         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16719         Fixed overflow and underflow not aborting the verification process.
16720
16721 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16722
16723         * class-internals.h (MonoStats): Added stats entries for dynamic
16724         code allocations.
16725
16726 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16727
16728         * loader.c (mono_free_method): Free header->locals and header->clauses.
16729
16730         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16731         dynamic case.
16732
16733         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16734
16735         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16736
16737 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16738
16739         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16740         the tables.
16741
16742 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16743
16744         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16745
16746 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16747
16748         MonoGenericMethod on a diet
16749         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16750         here ...
16751         (_MonoGenericMethod::reflection_info): ... from here.
16752         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16753         Update to changes.
16754         * reflection.c (inflate_mono_method): Likewise.
16755         (mono_reflection_bind_generic_method_parameters): Likewise.
16756
16757 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16758
16759         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16760         *verify.c: factored long ldarg forms to share code with short forms
16761
16762 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16763
16764         *verify.c: fixed code formating factored some duplicate code
16765         into a new function
16766
16767         *verify.h: fixed binary incompatibility introduced earlier
16768
16769         *pedump.c: fixed formating
16770
16771 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16772
16773         Fix assertion when disassembling Mono.C5.dll
16774         * loader.c (method_from_methodspec): Avoid inflating a method
16775         twice with the same context.  If the methodref is inflated, use
16776         the declaring method instead.
16777
16778         * class.c (mono_class_from_generic_parameter): Fix case similar to
16779         bug #81830 handled below, but for method containers.
16780
16781 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16782
16783         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16784         get_shared_generic_class.  Directly inflate the instance.
16785         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16786         (inflate_generic_class): Delete.
16787         (get_shared_generic_class): Delete.  Move setting of
16788         'cached_class' and 'cached_context' ...
16789         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16790
16791         * metadata.c (mono_metadata_lookup_generic_class): Change
16792         signature to take the components of a MonoGenericClass rather than
16793         an allocated MonoGenericClass.  Change semantics to be intern-like.
16794         * reflection.c (mono_class_bind_generic_parameters): Update to
16795         changes.  Make locking region tighter.
16796         * class.c (inflate_generic_class): Update to changes.
16797         (get_shared_generic_class): Likewise.
16798         * metadata-internals.h: Likewise.
16799
16800         * reflection.c (mono_class_bind_generic_parameters): Take and
16801         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16802         (mono_reflection_bind_generic_parameters): Use
16803         'mono_class_bind_generic_parameters' rather than duplicate the code.
16804         * class.c (mono_bounded_array_class_get): Update to changes.
16805         * object-internals.h: Likewise.
16806
16807         * reflection.c (mono_class_bind_generic_parameters): Only support
16808         parameterizing generic type definitions.  Remove support for other
16809         open types.
16810
16811 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16812
16813         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16814
16815         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16816         in the dynamic case.
16817
16818 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16819
16820         * threads.c: When cleaning up thread, reset the Background bit.
16821         Fixes bug #81720.
16822
16823 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16824
16825        * metadata.c: Move variable declarations to top of scope.
16826        * verify.c: Move variable declarations to top of scope.
16827
16828        Code is contributed under MIT/X11 license.
16829
16830 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16831
16832         * reflection.c (mono_class_bind_generic_parameters): Replace
16833         open-coded loop with mono_metadata_inflate_generic_inst.
16834
16835         * class.c (get_shared_generic_class): Don't call
16836         mono_get_shared_generic_inst.  Use the container's own
16837         'class_inst'.
16838
16839         * metadata.c (mono_metadata_load_generic_params): Move
16840         initialization of 'context' field here from ...
16841         * class.c (mono_class_create_from_typedef): ... here, and ...
16842         * loader.c (mono_get_method_from_token): ... here.
16843
16844         * class.c (get_shared_generic_class): Rename from
16845         mono_get_shared_generic_class and make static.
16846         (mono_get_shared_generic_inst): Move to metadata.c.
16847         * loader.c (mono_get_shared_generic_method): Likewise.
16848         * class-internals.h, metadata-internals.h: Update to changes.
16849
16850         Fix #81830
16851         * class.c (mono_class_from_generic_parameter): Don't assume a
16852         generic container owner exists.  Generic containers from monodis
16853         don't have any.
16854
16855 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16856
16857         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16858         * verify.h: new typedefs to returns the non-verifiable status
16859         * verify.c: initial implementation of generics, stack merging and object compatibility check
16860
16861 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16862
16863         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16864         a MonoInternalHashTable again (fixed bug in internal hash table
16865         code).
16866
16867 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16868
16869         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16870         MonoInternalHashTable again (fixed bug in internal hash table
16871         code).
16872
16873 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16874
16875         * class.c, image.c, class-internals.h, domain.c,
16876         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16877         changes.  Have to figure out what makes them break the SWF
16878         regression.
16879
16880 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16881
16882         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16883         a MonoInternalHashTable now.
16884
16885 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16886
16887         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16888         MonoInternalHashTable now.
16889
16890 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16891
16892         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16893         invoke_impl code.
16894
16895         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16896
16897         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16898         dependent trampoline.
16899
16900         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16901
16902         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16903
16904 2007-05-29  Robert Jordan  <robertj@gmx.net>
16905
16906         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16907
16908 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16909
16910         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16911
16912 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16913
16914        * marshal.c: Fix interface lookup loops for
16915        cominterop_get_com_slot_for_method and 
16916        cominterop_get_method_interface. Only need to lookup
16917        if type is a class, else use interface type method is on.
16918
16919        Code is contributed under MIT/X11 license.
16920
16921 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16922
16923         * reflection.c: HasSecurity can be present even if no specially 
16924         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16925         SecurityAttribute). Fix CAS regression tests on buildbot.
16926
16927 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16928
16929        * appdomain.c: Add configure checks for header files.
16930        * image.c: Add configure checks for header files.
16931        * file-io.c: Add configure checks for header files.
16932        * debug-mono-symfile.c: Add configure checks for header files.
16933        * threadpool.c: Add configure checks for header files.
16934        * console-io.c: Add configure checks for header files.
16935        * profiler.c: Add configure checks for header files.
16936        * rawbuffer.c: Add configure checks for header files.
16937        * icall.c: Add configure checks for header files.
16938        * rand.c: Add configure checks for header files.
16939        * socket-io.c: Add configure checks for header files.
16940
16941        Code is contributed under MIT/X11 license.
16942
16943 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16944
16945         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16946         assertion as it breaks the build.
16947         
16948         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16949
16950         * reflection.c (lookup_custom_attr): Make a copy here too.
16951
16952         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16953         dynamic images.
16954
16955         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16956         images.
16957
16958         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16959         info.
16960
16961 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16962
16963         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16964         (load_cattr_value): Ditto.
16965
16966 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16967
16968         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16969
16970 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16971
16972         * threads.c: In "start_wrapper", set apartment_state to MTA if
16973         apartment_state is Unknown and we're running on 2.0 profile or
16974         higher.
16975         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16976         to main method, then set apartment_state to Unknown on 1.0 profile,
16977         and MTA on 2.0 profile.
16978
16979 2007-05-16  Jb Evain  <jb@nurv.fr>
16980
16981         * class-internals.h (MonoDefaults): Add an attribute_class and
16982           customattribute_data_class.
16983         * domain.c (mono_init_internal): Populate them.
16984         * reflection.c: Use them to remove duplicates. Make a vew
16985         MonoClass variables `static'.
16986
16987 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16988
16989         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16990         step in implementing IMT, so that all isinst checks now can go
16991         through the bitmap.
16992         This was needed because vtables for TransparentProxy need to look
16993         like the vtable of the "target" class, so they need to point to
16994         its interface bitmap directly.
16995
16996         * object.c: inside "mono_class_create_runtime_vtable" and
16997         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16998
16999 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17000
17001         * object-internals.h
17002           culture-info.h : added territory field in MonoCulture and
17003           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
17004         * locales.c : fill territory field above too.
17005         * culture-info-table.h : regenerated.
17006
17007 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
17008
17009         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
17010         Fixes #81599.
17011
17012 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
17013
17014         * object.c: Always initialize apartment, even if 
17015         there is no custom attributes on entry point.
17016         
17017         Code is contributed under MIT/X11 license.
17018
17019 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
17020
17021         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
17022         * metadata.c: If no encoding is set, check for unicode
17023         on class.
17024         
17025         Code is contributed under MIT/X11 license.
17026
17027 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17028
17029         * threads.c: Handle if mono_thread_current returns NULL 
17030         
17031         Code is contributed under MIT/X11 license.
17032
17033 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17034
17035         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
17036         in start_wrapper. Added mono_thread_init_apartment_state and
17037         mono_thread_cleanup_apartment_state.
17038         * object.c: Initialize thread apartment state on main thread
17039         by checking for STAThreadAttribute on entry point.
17040         * object-internals.h: Add apartment_state field to MonoThread.
17041         * threads-types.h: Add unmanaged definition of 
17042         System.Threading.ApartmentState, MonoThreadApartmentState.
17043         
17044         Code is contributed under MIT/X11 license.
17045         
17046 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
17047
17048         * class.c: Fix windows build.
17049         * class-internals.h: Fix windows build.
17050         
17051         Code is contributed under MIT/X11 license.
17052
17053 2007-05-08  Robert Jordan  <robertj@gmx.net>
17054
17055         * process.c (CreateProcess_internal):
17056         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
17057         .CreateNoWindow was specified. Fixes #81496.
17058
17059 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17060
17061         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
17062         step in implementing IMT, replaced it with two compact arrays
17063         (interfaces_packed and interface_offsets_packed) and a bitmap that
17064         is used for isinst checks (interface_bitmap).
17065
17066         * class.c: (compare_interface_ids): compare function to pass to
17067         bsearch when looking for an interface with a given id.
17068         (mono_class_interface_offset): reimplemented using bsearch on
17069         interfaces_packed, getting the offset from interface_offsets_packed.
17070         (print_implemented_interfaces): utility debugging function.
17071         (setup_interface_offsets): reworked to initialize interfaces_packed,
17072         interface_offsets_packed and interface_bitmap.
17073
17074         * object.c: replaced all accesses to "MonoClass.interface_offsets"
17075         with uses of interfaces_packed and interface_offsets_packed.
17076
17077 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17078
17079         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
17080         mono_class_interface_offset prototype to wrap all accesses to
17081         "MonoClass.interface_offsets".
17082
17083         * class.c: Implemented mono_class_interface_offset, and wrapped all
17084         accesses to "MonoClass.interface_offsets".
17085
17086         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
17087         "MonoClass.interface_offsets".
17088
17089 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
17090
17091         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
17092         GetMethodFromHandle overloads (bug #78637).
17093
17094 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
17095
17096         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
17097         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
17098
17099 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
17100
17101         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
17102         #81498.
17103
17104         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
17105         gracefully.
17106         (mono_custom_attrs_from_index): Ditto.
17107
17108         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
17109         Fixes #81501.
17110
17111 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
17112
17113         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
17114         is now allocated from a mempool.
17115
17116 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
17117
17118         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
17119         caller holds threads_lock, leading to deadlocks. Fixes #81476.
17120
17121 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
17122
17123         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
17124         mono_loader_clear_error () too late. Fixes #81463.
17125
17126 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
17127
17128         * culture-info-table.h : regenerated.
17129
17130 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
17131
17132         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
17133         is missing.
17134
17135 2007-04-25  Dick Porter  <dick@ximian.com>
17136
17137         * Makefile.am: Put the mingw enforced-optimisation back into the
17138         PLATFORM_WIN32 section.
17139
17140 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
17141
17142         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
17143         patch.
17144
17145         * image.c (mono_image_load_module): New API function to load a module reference.
17146
17147         * image.c (load_modules): Load modules lazily. Fixes #80812.
17148
17149         * class.c (mono_class_from_typeref): Use mono_image_load_module.
17150         
17151         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
17152
17153         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
17154         to mono_image_load_module_dynamic.
17155
17156 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
17157
17158         * marshal.c: Fix calling convention for CCW on non-windows
17159         platforms. STDCALL on windows, CDECL everywhere else to work 
17160         with XPCOM and MainWin COM.
17161         
17162         Code is contributed under MIT/X11 license.
17163
17164 2007-04-23  Martin Baulig  <martin@ximian.com>
17165
17166         Fix #80969.
17167
17168         * loader.c
17169         (method_from_memberref): Added `gboolean *used_context' argument.
17170         (mono_get_method_from_token): Likewise.
17171         (mono_get_method_full): Don't insert the method in the cache when
17172         `used_context' is true.
17173
17174 2007-04-23  Raja R Harinath  <rharinath@novell.com>
17175
17176         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
17177
17178         * reflection.c (mono_reflection_bind_generic_parameters): Don't
17179         create new MonoTypes for returned types.
17180         * class.c (mono_generic_class_get_class): Export mono-internal.
17181         * class-internals.h: Update to changes.
17182
17183 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
17184
17185         * threadpool.c, threadpool.h, icall-def.h: patch from
17186         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
17187
17188 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
17189
17190         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
17191         
17192         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
17193
17194         * threads.c (mono_thread_get_stack_bounds): New helper function.
17195
17196         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
17197         Correctly compute stack bounds when attaching. Fixes #81394.
17198
17199 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
17200
17201         * reflection.c: fix handling of doubles in custom attributes
17202         for the arm-fpa format (bug #81368).
17203
17204 2007-04-18  Raja R Harinath  <rharinath@novell.com>
17205
17206         * reflection.c (assembly_add_win32_resources): Mildly relax an
17207         bounds check to let the end pointer point just past the end of the
17208         allocated buffer.  (may fix #81384)
17209
17210 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
17211
17212         * culture-info-table.h : regenerated.
17213
17214 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
17215
17216         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
17217         the thread is aborted early.
17218
17219 2007-04-05  Dick Porter  <dick@ximian.com>
17220
17221         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
17222         FindFirstFile()/FindNextFile() to find entries.  This lets the
17223         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
17224         81038.
17225
17226         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
17227         the parameters of
17228         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
17229
17230 2007-04-04  Martin Baulig  <martin@ximian.com>
17231
17232         * debug-helpers.c
17233         (mono_method_desc_full_match): Add support for nested classes.
17234
17235 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
17236
17237         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
17238
17239 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
17240
17241         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
17242         waiting for too many threads.
17243
17244 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
17245
17246         * environment.c: Fix return value check on uname so we can get the 
17247         executing version on Solaris operating systems.
17248
17249 2007-03-28  Jb Evain  <jbevain@gmail.com>
17250
17251         * class.c (mono_type_get_name_recurse): Complete the
17252         fix for the creation of assembly qualified names for
17253         pointer types. Fixes #81208.
17254
17255 2007-03-27  Dick Porter  <dick@ximian.com>
17256
17257         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
17258         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
17259         changed.
17260
17261         * threads.c
17262         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
17263         the value of ReleaseMutex().
17264
17265 2007-03-27  Dick Porter  <dick@ximian.com>
17266
17267         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
17268         in little-endian order, not network endian, so must be converted
17269         to host endian here.  Fixes bug 80593.
17270
17271 2007-03-22  Jb Evain  <jbevain@gmail.com>
17272
17273         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
17274         qualified names for pointer types. Fixes #81208.
17275
17276 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
17277
17278         * marshal.c: Add support for PreserveSigAttribute. 
17279         
17280         Code is contributed under MIT/X11 license.
17281
17282 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
17283
17284         * process.c: Fix endianness issues. Fixes #81126.
17285
17286         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
17287         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
17288
17289         * image.c (mono_image_lookup_resource): Make this work on big-endian
17290         machines.Change API contract so the caller needs to free the return value.
17291         
17292         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
17293         API change.
17294         
17295 2007-03-14  Martin Baulig  <martin@ximian.com>
17296
17297         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
17298         mono_type_get_desc() as well.
17299
17300 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
17301
17302         * icall.c:  Fix environ access in VS.  
17303         
17304 2007-03-13  Alp Toker  <alp@atoker.com>
17305
17306         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
17307         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
17308         #63841.
17309
17310 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
17311
17312         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
17313         circular references among dynamic methods. Fixes #81091.
17314
17315         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
17316
17317 2007-03-09  Martin Baulig  <martin@ximian.com>
17318
17319         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
17320
17321 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
17322
17323         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
17324         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
17325         
17326         Code is contributed under MIT/X11 license.
17327         
17328 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
17329
17330         * loader.c: Reapply patch for bug #79424.
17331
17332 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17333
17334         * metadata.c (mono_type_to_unmanaged): Only convert object to
17335         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
17336
17337 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
17338
17339         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
17340         (and incorrectly set) is_reference field from MonoGenericInst.
17341
17342 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17343
17344         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
17345         a little earlier.
17346
17347         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
17348
17349         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
17350
17351 2007-03-05  Miguel de Icaza  <miguel@novell.com>
17352
17353         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
17354         FileOptions.1 value to mean "temporary", map that to
17355         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
17356
17357         Fixes 80688
17358
17359 2007-03-03  Marek Habersack  <mhabersack@novell.com>
17360
17361         * appdomain.c: implement MS .Net style shadow copying. Copies of
17362         the assemblies are made in a subdirectory of the dynamic base
17363         directory, the assembly names are preserved.
17364         Copy .mdb and .config files along with the assemblies being shadowed.
17365
17366 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17367
17368         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
17369         (emit_marshal_handleref): Ditto.
17370
17371         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17372         on Visual C++. Fixes #80671.
17373
17374 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17375
17376         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17377         for clone operations.
17378
17379 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17380
17381         * marshal.c: Fix warnings.
17382
17383 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17384
17385         * loader.c: allow case-insensitive matching of the dll name
17386         in dllmap handling when prefixed with "i:".
17387
17388 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17389
17390         * threads.c: Fix #ifdef for dummy_apc function for VS.
17391
17392 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17393
17394         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17395
17396 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17397         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17398         giving precedence to the methods with a fully qualified name
17399         (InterfaceName.MethodName) when building the interface sections
17400         of the vtable.
17401
17402 2007-02-16  Dick Porter  <dick@ximian.com>
17403
17404         * threadpool.c (append_job): Fix fast-path array handling, so it's
17405         less likely the array will grow exponentially when the load is
17406         heavy.
17407
17408 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17409
17410         * metadata-internals.h, loader.c: fix dllmap lookup order
17411         for non-function maps, too, and prepare for fallback code.
17412
17413 2007-02-12  Robert Jordan  <robertj@gmx.net>
17414
17415         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17416         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17417         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17418         GlobalFree. Fixes a part of bug #77075.
17419
17420 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17421
17422         * loader.c: implemented typedef parent in field memberref.
17423
17424 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17425
17426         * marshal.c: Fix warnings and remember to call Release on
17427         IUnknown of RCW.
17428         
17429         Code is contributed under MIT/X11 license.
17430
17431 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17432
17433         * class-internals.h: Add MonoHandleRef definition, and
17434         handleref_class to mono_defaults. 
17435
17436         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17437         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17438
17439         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17440         (do nothing on this stage)
17441         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17442         (emit_marshal_handleref): New method, used for argument handling
17443         of HandleRefs. 
17444
17445 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17446
17447         * class.c (mono_class_setup_parent): Lazily init com types.
17448         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17449         init com types.
17450         * object.c (mono_remote_class_vtable): Lazily init com types.
17451         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17452         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17453         * domain-internals.h: Expose mono_init_com_types.
17454         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17455         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17456         Add support for COM Callable Wrapper marshalling.
17457         * marshal.h: Add icall definitions.
17458         * gc.c: Handle freeing of CCWs in finalizer code.
17459         
17460         Code is contributed under MIT/X11 license.
17461
17462 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17463
17464         * reflection.c: changed all the signature encoding code to use
17465         a variable-sized buffer.
17466
17467 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17468
17469         * marshal.c: locking fixes: never take the loader lock
17470         or other runtime locks when holding the marshal lock
17471         (fixes bug#80664).
17472
17473 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17474
17475         * marshal.c: make the delegate function pointer mapping
17476         work for the moving GC.
17477
17478 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17479
17480         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17481         for bug #80618.
17482
17483 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17484
17485         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17486         gmodule.
17487
17488 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17489
17490         * threadpool.c: made the code moving-GC safe.
17491
17492 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17493
17494         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17495         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17496         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17497         warning cleanup.
17498         * reflection.c: warning cleanup, some threading and moving GC fixes.
17499
17500 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17501
17502         * class.c, loader.c: create the needed Set/Get/Address array methods
17503         as well as the .ctors in mono_class_init (), fixes bug #80567.
17504
17505 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17506
17507         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17508         we doesn't decrease its alignment. Should fix the sparc build.
17509
17510 2007-01-24  Dick Porter  <dick@ximian.com>
17511
17512         * socket-io.c
17513         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17514         Create the returned object if we need to ignore an unsupported
17515         socket option.  Fixes a segfault reported by Atsushi.
17516
17517 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17518
17519         * class.c, object.c: restrict GC-tracked fields to
17520         UIntPtr fields used inside corlib, so we provide better
17521         type info to the GC and also allow broken packing as in
17522         bug #80580.
17523
17524 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17525
17526         * sgen-gc.c: removed duplicated function.
17527
17528 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17529
17530         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17531         value that means that the value is not supported, but that we
17532         should not return a failure, but instead report this as a
17533         successful operation.
17534
17535 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17536
17537         Fix tests/bug79956.2.il
17538         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17539         (mono_generic_class_get_class): If the generic definition in an
17540         enum, copy over other fields related to it.
17541
17542 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17543
17544         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17545         genericinst enums (bug #79215).
17546
17547 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17548         * class.c: Fix bug 80307.
17549
17550 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17551
17552         * image.c: if the file table is not present, try to load
17553         all the modules, since we don't have info about them
17554         having or not metadata (bug #80517).
17555         * assembly.c: allow mono_assembly_load_references () to
17556         work for netmodules.
17557
17558 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17559
17560         * image.c, metadata-internals.h, object.c: execute module
17561         cctors when running on the 2 runtime if present (bug #80487).
17562
17563 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17564
17565         * icall.c: optimized InitializeArray() on bigendian.
17566
17567 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17568
17569         * icall.c: fix for the broken ARM FPA double format.
17570
17571 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17572
17573         * icall.c: handle endian issues for r4 and r8 types, too, in
17574         the InitializeArray() icall.
17575
17576 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17577
17578         * loader.c (mono_loader_error_prepare_exception): Clear the error
17579         once we have extracted the information from it, do this before we
17580         call into the JIT's class loading mechanisms.
17581
17582         * object.c (mono_class_create_runtime_vtable): Do not clear the
17583         loader error before calling mono_class_get_exception_for_failure
17584         as the loader error is needed inside
17585         mono_class_get_exception_for_failure to throw the error (thinko).
17586
17587         Fixes #80521
17588         
17589 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17590
17591         * reflection.c: align fields rva data so it's faster to load at
17592         runtime.
17593
17594 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17595
17596         Prepare to simplify GenericMethod handling.
17597         * class-internals.h (mono_method_get_context): New accessor function.
17598         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17599         rather than directly accessing '->context' field.
17600
17601         * class-internals.h (_MonoGenericParam.method): Move ...
17602         (_MonoGenericContainer): ... here.  Add into union with klass field.
17603         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17604         Update to changes.
17605
17606 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17607
17608         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17609         the wrapper type enum and reduce relocations.
17610
17611 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17612
17613         * reflection.c (inflate_mono_method): Reuse method instantiation
17614         from the generic method, if available.
17615
17616 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17617
17618         * marshal.c (emit_marshal_variant): Fix conv_arg
17619         type in last commit, based on whether parameter is byref.
17620         
17621 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17622
17623         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17624         marshalling.
17625         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17626         MONO_TYPE_OBJECT back for VARIANT support.
17627
17628 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17629
17630         * marshal.c, marshal.h, icall-def.h: Implement 
17631         Marshal.ReAllocCoTaskMem.
17632
17633 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17634
17635         * marshal.c: memory retention fixes: use the proper
17636         image cache for runtime_invoke method lookups.
17637
17638 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17639
17640         * mempool.c: added code to help debug mempool allocations.
17641
17642 2007-01-11  Dick Porter  <dick@ximian.com>
17643
17644         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17645         support (experimenting with faking it with IP_MTU_DISCOVER for
17646         systems that don't have IP_DONTFRAGMENT.)
17647         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17648         icall.
17649
17650         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17651
17652         * socket-io.h: Add new fields to MonoSocketAsyncResult
17653         corresponding to the new ones in Socket.cs.
17654
17655 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17656
17657         Fix IronPython regression mentioned in #80249
17658         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17659         'cached_context' field, since it may have been initialized as a
17660         side-effect of metadata parsing.
17661
17662         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17663         (_MonoGenericClass.cached_class): Move here and rename from lone
17664         remaining field of ...
17665         (_MonoInflatedGenericClass): ... this.  Remove.
17666         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17667         to changes.
17668
17669         Fix mcs/tests/test-128.cs regression.
17670         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17671         2007-01-10 change below.
17672         [MONO_TYPE_OBJECT]: Recurse into array case.
17673
17674 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17675
17676         * class-internals.h (mono_get_inflated_generic_class): Remove.
17677         * class.c (mono_get_inflated_generic_class): Remove.
17678         (mono_generic_class_get_class): Rename from
17679         mono_class_create_generic.
17680         (mono_class_from_mono_type) [GENERICINST]: Use it.
17681         * reflection.c, metadata.c: Update to changes.  Use
17682         'mono_class_from_mono_type'.
17683
17684 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17685
17686         * reflection.c: use passed type when encoding an array element
17687         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17688
17689 2007-01-09  Robert Jordan  <robertj@gmx.net>
17690
17691         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17692         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17693         Fixes bug #80392.
17694
17695 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17696
17697         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17698
17699         * object.c (set_value): Avoid aliasing between type->data.klass
17700         and type->data.generic_class.
17701
17702         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17703
17704 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17705
17706         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17707         between type->data.klass and type->data.generic_class.
17708
17709 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17710
17711         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17712         value in out parameters.
17713
17714 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17715
17716         Simplify invariant for MonoGenericClass::klass field.
17717         * class.c (mono_class_create_generic): Verify 'klass' is null.
17718         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17719         initialize 'klass' field.
17720
17721 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17722
17723         Ongoing work to avoid redundant data and simplify invariants.
17724         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17725         'generic_class', and change type to a GenericInst.
17726         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17727         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17728
17729 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17730
17731         * class.c : skip io-layer under PLATFORM_WIN32.
17732
17733 2007-01-03  Tor Lillqvist  <tml@novell.com>
17734
17735         Fix #80305: In a bundled executable, look in the bundled exe
17736         assembly to determine the runtime version. Add the possibility to
17737         bundle also the machine.config file.
17738         
17739         * assembly.c (mono_assembly_open_from_bundle): Make
17740         non-static. Allow being called even if we have no bundled
17741         assemblies, and return NULL right away in that case.
17742
17743         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17744         here.
17745
17746         * domain.c (app_config_parse): Take an assembly exe file name as
17747         parameter instead of a config file name. Check for a bundled
17748         config file for that assembly by calling
17749         mono_config_string_for_assembly_file() (see below) before looking
17750         for one in the file system.
17751         (get_runtimes_from_exe): Corrsponding change to call of
17752         app_config_parse().
17753         (get_runtimes_from_exe): Check for bundled assembly exe file first
17754         by calling mono_assembly_open_from_bundle(). If no bundled
17755         assembly exe file is found, call mono_image_open() as before to
17756         look it up in the file system.
17757
17758         * mono-config.c: Add variable bundled_machinec_onfig.
17759         (mono_config_string_for_assembly_file): New function.
17760         (mono_config_for_assembly): Move code snippet that looks for a
17761         bundled assembly .config file into the above new function. Call
17762         it.
17763         (mono_register_machine_config, mono_get_machine_config): New
17764         functions to set and retrieve
17765
17766         * assembly.h: Declare mono_register_machine_config().
17767
17768         * mono-config.h: Declare mono_get_machine_config() and
17769         mono_config_string_for_assembly_file().
17770
17771         * icall.c: No declaration of environ necessary on Win32. It is
17772         declared (as a macro expanding to a function call) in stdlib.h.
17773         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17774         New internal mono function. Returns the value of
17775         mono_get_machine_config() as a Mono string.
17776
17777         * icall-def.h: Add get_bundled_machine_config().
17778
17779 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17780
17781         Remove redundant field
17782         * class-internals.h (_MonoGenericContext.container): Remove field.
17783         * loader.c (mono_method_get_signature_full): Don't parse a
17784         "container" for a signature parse when the signature is inflated
17785         immediately.
17786         (method_from_methodspec): Likewise, for a generic_inst.
17787         * class.c, metadata.c, reflection.c: Update to changes.
17788
17789 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17790
17791         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17792         'cached_context', and change semantics -- it starts off NULL, and
17793         is initialized on demand.
17794         * class.c (mono_generic_class_get_context): New accessor to
17795         replace 'context' field accesses.
17796         (mono_class_get_context): New helper.
17797         (*): Update to changes.
17798         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17799
17800 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17801
17802         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17803         before the memcpy.   Fixes Marshal2 regression.
17804
17805 2007-01-02  Jb Evain  <jbevain@gmail.com>
17806
17807         * blob.h: add a MONO_TYPE_ENUM definition
17808         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17809         fix the encoding of arrays of enums in custom attributes.
17810
17811         Fixes #79666.
17812
17813 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17814
17815         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17816         string is null terminated, but only cut the string short if it
17817         overflows the buffer.   
17818         
17819         (mono_string_to_byvalstr): Also fix this routine.   The code here
17820         was not properly terminating a string (it was only terminated
17821         because of the previous catch-all memset). 
17822
17823         I left the memset, because I do not know if applications expect
17824         the runtime to clear this region. 
17825
17826         Fixes #79944.
17827
17828         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17829         Clear the error before returning to unmanaged code to prevent the
17830         runtime from being confused later on (fixes  80420).
17831         (ves_icall_type_from_name): Always call mono_loader_clear_error
17832         after parsing a type that could have failed.
17833         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17834
17835         * loader.c (mono_loader_clear_error): Fix indentation.
17836
17837 2006-12-28  Martin Baulig  <martin@ximian.com>
17838
17839         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17840
17841 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17842
17843         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17844         getting a token for an EnumBuilder.
17845
17846 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17847
17848         * reflection.c: be more careful in case resource generation
17849         fails to create the data array.
17850
17851 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17852
17853         * sgen-gc.c: write barrier for clone and fix unregister handles.
17854
17855 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17856
17857         * reflection.c: some fixes needed in the generics code for the moving GC.
17858
17859 2006-12-22  Robert Jordan  <robertj@gmx.net>
17860
17861         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17862         account. Fixes bug #80299.
17863
17864 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17865
17866         Fix WaitHandle usage in delegates.
17867         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17868         * object.c (mono_wait_handle_new): Use the property set method to
17869         initialize the handle.
17870         (mono_wait_handle_get_handle): New.
17871         * threadpool.c (mono_async_invoke): Use it.
17872         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17873         Likewise.
17874         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17875
17876 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17877
17878         * marshal.c (emit_marshal): Call emit_marshal_variant and
17879         emit_marshal_com_interface when applicable.
17880         (emit_marshal_variant, emit_marshal_com_interface): Add
17881         methods for this case and remove if's from emit_marshal_object.
17882         
17883 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17884
17885         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17886
17887 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17888
17889         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17890         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17891         and GlobalFree on Windows. Remove FIXME.
17892
17893 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17894
17895         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17896         implementation for managed objects.
17897
17898 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17899
17900         * object.c: implemented code to be used for checking
17901         that no reference field overlaps with non-references.
17902
17903 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17904
17905         * threadpool.c: fix queue code to be compatible with the
17906         moving GC.
17907
17908 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17909
17910         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17911         in structures by throwing ArgumentNullException.
17912
17913         (emit_marshal_safehandle): Also when they are null parameters.
17914
17915         (emit_marshal_safehandle): Add support for ref
17916         SafeHandles parameters
17917
17918 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17919
17920         * profiler.c: updated to use the mono-dl API instead of
17921         gmodule.
17922
17923 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17924
17925         * profiler.c: updated to use the mono-dl dynamic loading
17926         API instead of gmodule.
17927
17928 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17929
17930         * profiler.c: use readlink, older versions of glib don't have
17931         g_file_read_link ().
17932
17933 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17934
17935         * profiler.c: try to detect the path to mono if libc fails to provide
17936         a useful name (bug #80286).
17937
17938 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17939
17940         Fix #80242
17941         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17942         instance, use the generic type definition instead.
17943         (ves_icall_Type_GetNestedTypes): Likewise.
17944         * class.c (mono_class_create_generic): Always set the
17945         nested_classes of a generic instance to NULL, even if the generic
17946         type definition has nested types.
17947
17948 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17949
17950         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17951         and fix on Linux.
17952         
17953 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17954
17955         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17956         my arguments were in the wrong order.   I also fixed the Windows
17957         version which seems to have had the same issue.
17958
17959         (mono_free_bstr): On Unix, this is g_free.
17960         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17961         conversions (for the tests in corlib to pass).
17962
17963 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17964
17965         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17966         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17967         exception if a ref SafeHandle in a struct has changed).
17968         
17969         (emit_struct_conv): Do not perform layout checks for classes
17970         derived from SafeHandle, as those are specially handled. 
17971
17972         (emit_object_to_ptr_conv): Add support for
17973         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17974
17975         (emit_marshal_safehandle): Implement conversion of return values
17976         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17977         
17978         * threads.c: WaitHandle now is compiled with two different handles
17979         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17980         for 2.0.
17981         
17982         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17983         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17984         these routines to cope with both kinds of fields.
17985
17986 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17987
17988         * metadata.c (mono_type_to_unmanaged): Handle the case where
17989         type->data.klass is a SafeHandle, and in that case, return the
17990         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17991         MONO_MARSHAL_CONV_SAFEHANDLE. 
17992
17993 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17994
17995         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17996         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17997         calling emit_marshal_object.
17998
17999         (emit_marshal_safehandle): Implement marshalling of
18000         SafeHandle parameters (no ref support yet).
18001
18002         (MarshalAction): Document the defines as I implement
18003         them for SafeHandle.
18004
18005         (emit_marshal_object): indentation police.
18006
18007         * class-internals.h: Define MonoSafeHandle.
18008         Add safehandle_class to MonoDefaults type.
18009
18010         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
18011         list of classes to check for fields. 
18012
18013         * domain.c (mono_init_internal): Add SafeHandle to the list of
18014         mono_defaults loaded.
18015
18016 2006-12-15  Raja R Harinath  <rharinath@novell.com>
18017
18018         Fix #80253
18019         * reflection.c (mono_reflection_bind_generic_parameters): If the
18020         generic type definition is a type builder, ensure that it is fully
18021         initialized before instantiating it.  Kill some dead code.
18022
18023 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
18024
18025         * object.c: clear the loader_error () before loading
18026         more metadata stuff (bug #80258).
18027
18028 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
18029
18030         * icall.c, icall-defs.h: type modifiers icalls for
18031         parameters and properties.
18032
18033 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
18034
18035         * object.c, icall.c: fixed warnings.
18036
18037 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18038
18039         * marshal.c: fixed a couple of leaks and coding style in a few places.
18040
18041 2006-12-08  Dick Porter  <dick@ximian.com>
18042
18043         * process.c: Cope with NULL ProcessStartInfo arguments on windows
18044         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
18045         80173.
18046
18047 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18048
18049         * process.c: ProcessStartInfo may have only filename set and
18050         arguments can be NULL.
18051
18052 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18053
18054         * icall.c: fix leak found by Robert Jordan.
18055
18056 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18057
18058         * marshal.c, marshal.h: generate managed method to access an element
18059         of a multi-dimensional array.
18060
18061 2006-11-30  Paolo Molaro (lupus@ximian.com)
18062
18063         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
18064
18065 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18066
18067         * icall.c: back out GetFields () fix until the serialization code is
18068         fixed to not depend on the incorrect behaviour.
18069
18070 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
18071
18072         * profiler.c: provide defaults if none are set.
18073
18074 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
18075
18076         * Makefile.am, attrdefs.h: new public header file with
18077         constants for attributes for use by embedders.
18078
18079 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18080
18081         * icall.c: GetFields () fix for bug #80064.
18082
18083 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
18084
18085         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
18086         removed long unused icalls.
18087
18088 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
18089   
18090         * marshal.c: 
18091                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
18092                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
18093                 can be generated without a delegate class.
18094                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
18095         
18096         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18097
18098 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18099
18100         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
18101         #80069.
18102
18103 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18104
18105         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
18106         icall-def.h: added icalls needed by System.GC.
18107
18108 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
18109
18110         * loader.c: ensure the class in catch clauses is handled
18111         correctly for generics methods (fixes bug#79980).
18112
18113 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
18114
18115         * monitor.h, monitor.c: added mono_locks_dump () function
18116         to help debug deadlocks involving managed locks.
18117
18118 2006-11-13  Dick Porter  <dick@ximian.com>
18119
18120         * file-io.c (get_file_attributes): If the file is a symlink try
18121         and get the stat data for the target, but also add the
18122         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
18123         the specs for the windows symlink support, but will probably have
18124         to be reworked when I have test data from a vista machine.  Fixes
18125         bug 79887.
18126
18127 2006-11-13  Dick Porter  <dick@ximian.com>
18128
18129         * gc.c (mono_domain_finalize): 
18130         * marshal.c (mono_delegate_begin_invoke): 
18131         * threadpool.c (socket_io_init, mono_thread_pool_init)
18132         (mono_thread_pool_finish): 
18133         * monitor.c (mono_monitor_try_enter_internal): 
18134         * threads.c (mono_thread_resume, mono_thread_init)
18135         (mono_thread_suspend_all_other_threads)
18136         (mono_thread_execute_interruption): 
18137         * appdomain.c (mono_domain_unload): Check for NULL error returns
18138         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
18139         75733.
18140
18141 2006-11-11  Miguel de Icaza  <miguel@novell.com>
18142
18143         * process.c
18144         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
18145         Only close the handle if the value of the handle is not
18146         INVALID_HANDLE_VALUE.  This just makes the process a bit more
18147         robust.
18148
18149         Improvement for #75733, so that we do not run into this problem. 
18150
18151         
18152         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
18153         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
18154         internal variables.  Fixes #79462 
18155         
18156
18157 2006-11-09  Dick Porter  <dick@ximian.com>
18158
18159         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18160         Use poll() not select().  Fixes bug 79397.
18161
18162 2006-11-09  Raja R Harinath  <rharinath@novell.com>
18163
18164         Fix #79872
18165         * assembly.c (mono_assembly_load_from_full): Check that the given
18166         image has an assembly manifest.
18167
18168 2006-11-09  Ankit Jain  <jankit@novell.com>
18169
18170         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
18171         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
18172         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
18173
18174 2006-11-07  Dick Porter  <dick@ximian.com>
18175
18176         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18177         Put the old resolver behaviour back for pre-2.0 profiles.
18178
18179 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18180
18181         * threadpool.c: precise GC and locking fixes.
18182
18183 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
18184
18185         * class.c: don't load types that have an explicit unaligned
18186         managed reference. Provide better info in the TypeLoad exception.
18187         Part of the fix for bug #79744.
18188         * object.c: use the correct check for class type load issues.
18189
18190 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18191
18192         * class.c: enforce alignment of fields with managed references
18193         even when Pack=1 is forced by the user (bug #77788).
18194
18195 2006-11-03  Dick Porter  <dick@ximian.com>
18196
18197         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18198         If the address reverse lookup fails, return it as the hostname
18199         anyway.  Fixes bug 79721.
18200
18201 2006-11-03  Dick Porter  <dick@ximian.com>
18202
18203         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
18204         Fix build on Windows.
18205
18206 2006-11-02  Dick Porter  <dick@ximian.com>
18207
18208         * icall-def.h: 
18209         * object-internals.h: 
18210         * exception.c (mono_get_exception_thread_interrupted): 
18211         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
18212         Fixes bug 74525.
18213
18214         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
18215         Check for pending Thread.Interrupt.
18216
18217 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
18218         * loader.c: Fixed bug 79684.
18219
18220 2006-10-27  Dick Porter  <dick@ximian.com>
18221
18222         * file-io.c (get_file_attributes): Force symlinks to directories
18223         to be returned as a regular file.  Fixes bug 79733.
18224 2006-10-26  Dick Porter  <dick@ximian.com>
18225
18226         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
18227         CreateFile to open a directory then we need to set the
18228         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
18229
18230 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
18231
18232         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
18233         friends.
18234
18235 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18236
18237         * sgengc.c: small cleanup of timer code.
18238
18239 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18240
18241         * sgen-gc.c: fix some warnings and start adding support for
18242         complete object removal on domain unload.
18243
18244 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
18245
18246         * assembly.c: build_assembly_name should not consider a version
18247         number without build or revision number invalid. Fixes bug #79715.
18248
18249 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
18250
18251         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
18252         call kernel32 function OutputDebugString directly.
18253         
18254         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18255         
18256 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
18257
18258         * reflection.c: small cleanup, using a function to insert a MonoString
18259         in the string heap.
18260
18261 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
18262
18263         * reflection.c: moving GC fixes.
18264
18265 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
18266
18267         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
18268         all the objects with finalizers belonging to an unloading appdomain.
18269
18270 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
18271
18272         * sgen-gc.c: added ability to allocate even when the nursery is fully
18273         pinned and fixed a couple of bugs.
18274
18275 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18276
18277         * threads.h: Revert the last change for now.
18278
18279         * threads.h (mono_thread_get_pending_exception): Rename this to
18280         mono_thread_get_undeniable_exception ().
18281
18282 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
18283
18284         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
18285         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
18286         when fname does not refer to valid assembly. This result in a more
18287         meaningful error message.
18288         * exception.c: added mono_get_exception_bad_image_format2 which 
18289         constructs a BadImageFormatException using the ctor taking a custom
18290         message and the file name. Passing in a NULL msg results in a default
18291         message.
18292         * exception.h: define mono_get_exception_bad_image_format2 function.
18293         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
18294         when file name pointed to an invalid IL image. Use 
18295         mono_get_exception_file_not_found2 to construct FileNotFoundException,
18296         as this results in a more meaningful error message.
18297
18298 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18299
18300         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
18301         #79465.
18302
18303 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
18304
18305         * metadata.c (mono_type_size): Change the align parameter to guint32 for
18306         consistency with the other _size functions.
18307         (mono_type_stack_size): Ditto.
18308
18309         * class.c object.c icall.c: Fix warnings caused by the above change.
18310
18311         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
18312
18313         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
18314
18315         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
18316
18317 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18318
18319         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
18320         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
18321         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
18322         threadpool.h, threads-types.h: mark more internal functions.
18323
18324 2006-10-11  Dick Porter  <dick@ximian.com>
18325
18326         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18327         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
18328         reproduce the bug even before applying the fix.)
18329
18330 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
18331
18332         * reflection.c: allow retrieving attributes for arguments in generic
18333         methods (bug #79241).
18334
18335 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
18336
18337         * debug-mono-symfile.c: properly check fopen () result (found by
18338         coverity).
18339
18340 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
18341
18342         * reflection.c: make error message clearer and fixed two
18343         issuelets found by Coverity.
18344
18345 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
18346
18347         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
18348
18349 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18350
18351         * object-internals.h, gc-internal.h, profiler-private.h:
18352         mark internal functions.
18353
18354 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18355
18356         * reflection.c: put data in the text section.
18357         * icall.c: recognize more types in type_from_typename ().
18358         * process.c, marshal.c: added some GC FIXMEs.
18359
18360 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18361
18362         * loader.c: check for NULL before initializing.
18363
18364 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
18365
18366         * gc.c (finalizer_thread): Use a non-alertable wait here.
18367
18368         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
18369         until the correct solution is found.
18370
18371 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18372
18373         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18374         modules with no metadata. Fixes #79596.
18375
18376         * image.c (load_metadata_ptrs): Put back the error message when
18377         the #- heap is encountered since the support is not complete yet.
18378
18379 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18380
18381         * gc.c: do not allow the user to SuppressFinalize () a
18382         delegate because it would leak the trampoline if present.
18383
18384 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18385
18386         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18387         PropertyPtr table.
18388
18389 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18390
18391         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18392
18393         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18394
18395         * row-indexes.h: Add definitions for *Ptr tables.
18396
18397         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18398
18399         * metadata.c (mono_metadata_translate_token_index): New helper function to
18400         translate table indexes used in uncompressed metadata.
18401         (mono_metadata_decode_table_row): Ditto.
18402         (mono_metadata_decode_table_row_col): Ditto.
18403
18404         * metadata.c: Add table schema for *Ptr tables.
18405
18406         * class.c loader.c: Use the new helper function to access the affected metadata
18407         tables.
18408         
18409         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18410         #38532.
18411         
18412 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18413
18414         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18415         sequences which can be unbounded in size. Fixes #79583.
18416
18417 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18418
18419         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18420         static initialization.
18421
18422         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18423
18424         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18425
18426         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18427
18428         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18429         ctor fails, i.e. throw the same exception on subsequent accesses.
18430         
18431 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18432
18433         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18434         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18435         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18436         Handle marshalling of interfaces and VARIANTs contained in structs.
18437         
18438         Code is contributed under MIT/X11 license.
18439         
18440 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18441
18442         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18443         
18444         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18445         mempool.
18446
18447 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18448
18449         * console-io.c: ignore previous SIGINT handler.
18450
18451 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18452
18453         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18454         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18455         #79460, #79461, #79485.
18456
18457         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18458
18459         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18460         #79217.
18461
18462 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18463
18464         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18465         could be generated from it.
18466
18467 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18468
18469         * rand.c: fix read loop to correctly handle EINTR.
18470
18471 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18472
18473         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18474         internal calls are defined to keep methods closer to the declaring
18475         type and allow a significant reduction in runtime relocations and
18476         memory usage.
18477
18478 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18479
18480         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18481         exception message to have FileNotFoundException use the default
18482         assembly load error message. Fixes bug #79426.
18483         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18484
18485 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18486
18487         * threadpool.c: (start_thread_or_queue) use the root domain when
18488         creating the thread instead of the async object one.
18489
18490 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18491
18492         * class.c, object.c, class-internals.h, reflection.c:
18493         for arrays, store element_size inside MonoClass (speedup
18494         for array object creation).
18495
18496 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18497
18498         * icall.c: fixed CodeBase to use the file name and not the module
18499         name (bug #79365).
18500
18501 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18502
18503         * mono-debug.c, mono-debug.h: export find_method as
18504         mono_debug_find_method ().
18505
18506 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18507
18508         * debug-helpers.c, class-internals.h: added a few functions useful
18509         when debugging under gdb.
18510
18511 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18512
18513         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18514         characters that need special handling.
18515
18516 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18517
18518         * mono-config.c: make the os/cpu specification more flexible,
18519         allowing lists and negation.
18520
18521 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18522
18523         * marshal.c: COM Interop fixes. Handle case where method->klass.
18524         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18525         calling convention on non-windows platforms. This is for
18526         compatibility with XPCOM and MainWin COM.
18527         
18528         Code is contributed under MIT/X11 license.
18529         
18530
18531 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18532
18533         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18534         correctly. Fixes #79217.
18535
18536         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18537
18538 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18539
18540         * mono-config.c: allow both an os and cpu attribute for dllmap
18541         and dllentry elemnets to enable a single config file to be used
18542         for multiple architectures.
18543
18544 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18545
18546         * loader.c: MonoLoaderError was cleared too soon on load failure.
18547         Fixes bug #79424.
18548
18549 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18550
18551         * icall.c: use the defining class vtable when accessing a
18552         static field, not a pobblibly derived class.
18553
18554 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18555
18556         * icall.c string-icalls.c: Remove references to unicode.h.
18557
18558         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18559
18560         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18561
18562         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18563         indicating the image where custom marshaller types should be looked up.
18564         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18565         custom marshallers, instead of corlib. Fixes #79425.
18566
18567 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18568
18569         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18570
18571 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18572
18573         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18574         Implement Environment.ProcessorCount.
18575         
18576         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18577         Implement Environment.ProcessorCount.
18578         
18579         * icall.c: 
18580         Add Environment.ProcessorCount icall.
18581         
18582         Patch by Jason McFall.
18583
18584 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18585
18586         * assembly.c: don't append .exe/.dll when the filename already contains
18587         one of those extensions.
18588
18589 2006-09-12  Martin Baulig  <martin@ximian.com>
18590
18591         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18592         to array interfaces.
18593
18594 2006-09-11  Martin Baulig  <martin@ximian.com>
18595
18596         * reflection.c (mono_image_build_metadata): Create the
18597         MethodImpl's after emitting all types and methods, so we don't
18598         need another fixup pass for them.
18599
18600 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18601
18602         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18603         change.
18604
18605 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18606
18607         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18608         unload.
18609
18610 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18611
18612         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18613         args is not set. Fixes #78926.
18614
18615 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18616
18617         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18618
18619         * image.c (load_class_names): Move this to class.c, and rename it to 
18620         'mono_image_init_name_cache'.
18621         (load_modules): Fix a warning.
18622
18623         * class.c icall.c image.c: Initialize image->name_cache lazily.
18624
18625         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18626         on its name using information in the AOT file.
18627
18628         * class.c (mono_class_from_name): Use the new hook function.
18629
18630 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18631
18632         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18633         correctly.
18634
18635         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18636         Fixes #79289.
18637         
18638 2006-09-06  Martin Baulig  <martin@ximian.com>
18639
18640         * icall.c (mono_lookup_internal_call): Small fix.
18641
18642 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18643
18644         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18645         double g_free.
18646
18647 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18648
18649         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18650         when --debug is specified.
18651
18652 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18653
18654         * class.c (setup_generic_array_ifaces): Fix a warning.
18655
18656 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18657
18658         * Temporarily remove the patch to assemly.c that checks the
18659         assembly versions as it breaks our gacutil.
18660
18661 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18662
18663         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18664
18665         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18666         a net 1.0 runtime.
18667
18668         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18669         created using the default ctor. Fixes #79152.
18670         (mono_string_builder_to_utf16): Ditto.
18671
18672 2006-09-01  Martin Baulig  <martin@ximian.com>
18673
18674         Fix handling of the generic array interfaces.
18675
18676         * class-internals.h
18677         (MonoDefaults): Removed `generic_array_class' and added
18678         `generic_ilist' class.
18679
18680         * class.c
18681         (mono_bounded_array_class_get): Add the new generic array interfaces.
18682         (setup_generic_array_ifaces): New static method; create vtable
18683         entries for each method in the generic array interfaces.
18684
18685         * metadata.c
18686         (select_container): Allow "parent-less" generic methods.
18687
18688         * marshal.c
18689         (mono_marshal_get_generic_array_helper): New public method.
18690
18691         * icall.c
18692         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18693         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18694         moved the interncall into System.Array.
18695
18696 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18697
18698         A few more cases of avoiding work on types with ->byref set.
18699         Has the real fix for #79238
18700         * icall.c (is_generic_parameter): New helper.
18701         (ves_icall_Type_GetGenericParameterPosition): Use it.
18702         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18703         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18704         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18705         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18706         reference types.
18707         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18708         reference types.
18709         (ves_icall_Type_get_IsGenericInstance): Likewise.
18710         (ves_icall_Type_get_IsGenericType): Likewise.
18711
18712 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18713
18714         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18715         class if possible.
18716
18717         * mempool.h (mono_mempool_get_allocated): New helper function.
18718
18719         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18720         change.
18721
18722         * mempool.c: Fix warnings and the calculation of stats.
18723
18724         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18725
18726         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18727
18728         * loader.c (mono_get_method_from_token): Update method_count stat.
18729
18730         * class-internals.h (MonoStats): Add some stats.
18731
18732 2006-08-31 Robert Jordan  <robertj@gmx.net>
18733
18734         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18735         with managed variants.
18736         All code is contributed under the MIT/X11 license.
18737         
18738 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18739
18740         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18741         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18742
18743         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18744
18745         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18746         with cycles in classes.
18747
18748         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18749
18750         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18751         missing a [MarshalAs] directive. Fixes #79203.
18752
18753         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18754         klass->marshal_info. Fixes #79217.
18755
18756 2006-08-30  Martin Baulig  <martin@ximian.com>
18757
18758         Committing a patch from Joachim Ante <joe@otee.dk>:
18759         Add support for binary data symbol stores.
18760
18761         * debug-mono-symfile.c
18762         (mono_debug_open_mono_symbol_file): Renamed into
18763         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18764         arguments.
18765
18766         * mono-debug.c
18767         (mono_debug_open_image): Added `raw_contents' and `size' args.
18768         (mono_debug_init_2_memory): New public function.
18769
18770 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18771
18772         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18773
18774 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18775
18776         * appdomain.c: implement support for ShadowCopyFiles.
18777
18778 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18779
18780         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18781         when value is NULL (and should remove CID #51).
18782
18783 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18784
18785         * image.c: moved 2 functions to ../utils.
18786
18787 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18788
18789         * gc.c: cope with the target object of a GC handle being NULL
18790         (bug #78877).
18791
18792 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18793
18794         * class.c: recursively check parent's explicit implementations
18795         of interface methods (fixes bug #79125).
18796
18797 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18798
18799         * filewatcher.c: Avoid warnings when building, do not redefine
18800         constants that are defined.
18801
18802         Remove warnings.
18803
18804 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18805
18806         * image.c: don't fail when the link points to an absolute path.
18807
18808 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18809
18810         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18811         Fix CID #3.
18812
18813 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18814
18815         * image.c (full_path): A new method used to obtain the actual path
18816         of an assembly even in the presence of symbolic links.  
18817
18818         This is necessary for the case where we are running a binary that
18819         has been GACed, but we are using the "published" path name
18820         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18821         file in the GAC.
18822
18823         This was the source of the failure for the `xsp' command with the
18824         recent AppDomain changes, as far as the runtime was concerned,
18825         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18826         $prefix/mono/gac/blah/version/blah.exe.
18827
18828         (do_mono_image_open): use full path
18829
18830 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18831
18832         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18833
18834 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18835
18836         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18837         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18838
18839 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18840
18841         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18842         small structures. Fixes #78990.
18843
18844 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18845
18846         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18847
18848         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18849
18850 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18851
18852         * appdomain.c:
18853         * marshal.c: don't load all the assemblies from a domain into newly
18854         created ones. The new domains might have different rules and load
18855         assemblies from different locations. Fixes bug #76757.
18856
18857         Patch by Lluis. Conflicts resolved by Brian Crowell.
18858
18859 2006-08-16  Alp Toker  <alp@atoker.com>
18860
18861         * socket-io.c: First half of the fix for #79084.
18862         Set sa_size to the length of the content, not that of the struct.
18863         Don't add NULL suffix to the content, this should be done in
18864         managed code if needed.
18865
18866 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18867
18868         Fix part of #79012
18869         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18870         mono_metadata_parse_type returns NULL.
18871
18872 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18873
18874         * normalization-tables.h : new file for string normalization data.
18875         * locales.c, locales.h, icall.c :
18876           added load_normalization_resource() for string normalization,
18877           and icall as well.
18878         * Makefile.am : added normalization-tables.h to the sources.
18879
18880 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18881
18882         * marshal.c: Add more helper functions to reduce code duplication and use them
18883         everywhere.
18884
18885 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18886
18887         * marshal.c: Fix non-x86 stdcall warnings.
18888         
18889         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18890         them everywhere.
18891
18892 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18893
18894         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18895         type check on multi-dimensional arrays. Fixes #79000.
18896
18897 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18898
18899         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18900         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18901         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18902         * class-internals.h: add is_com_object to class structure.
18903         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18904         null checks to COM object marshalling. Fix .ctor call on RCW.
18905         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18906         
18907         All code is contributed under the MIT/X11 license.
18908
18909 2006-08-09  Dick Porter  <dick@ximian.com>
18910
18911         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18912         racing mono_monitor_allocator_lock() somewhere, so don't delete
18913         the critical section for now.  Found by running and exiting
18914         monodevelop.
18915
18916 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18917
18918         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18919         (ves_icall_System_ComObject_FindInterface): Ditto.
18920         (ves_icall_System_ComObject_CacheInterface): Ditto.
18921
18922         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18923         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18924
18925 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18926
18927         * threadpool.c: treat pipes from process asynchronous reads as sockets
18928         when reading from them, so we get select/poll or epoll to wait for
18929         data.
18930
18931 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18932
18933         * loader.c: Fix a typo (CID #233) in the null check.
18934
18935 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18936
18937         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18938         Hopefully fixes #78949.
18939         
18940         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18941         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18942         bytes. Fixes #78972.
18943
18944 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18945
18946         * filewatcher.c: we need to set errno here.
18947
18948 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18949
18950         * filewatcher.c: let Win32Exception get the error value.
18951
18952 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18953
18954         * filewatcher.c: translate errno into win32 errors for Win32Exception
18955         to know what happened.
18956
18957 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18958
18959         * threadpool.c: Fix more warnings.
18960
18961         * assembly.c (search_loaded): Fix warnings.
18962
18963         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18964         (mono_async_invoke): Ditto.
18965
18966 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18967
18968         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18969         entries for __ComObject type in addition to ComImport types.
18970         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18971         about hash table.
18972         
18973         All code is contributed under the MIT/X11 license.
18974
18975 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18976
18977         * image.c: avoid tentative loading of modulerefs that contain
18978         no metadata (P/Invoke library names).
18979
18980 2006-07-28  Dick Porter  <dick@ximian.com>
18981
18982         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18983         mono_loader_lock() somewhere, so don't delete the critical section
18984         for now.  Found by running and exiting monodevelop.
18985
18986 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18987
18988         * filewatcher.c: define the inotify syscalls when we're building on
18989         linux and have sys/syscall.h. The build system might not have support
18990         for inotify but the target system might have it.
18991
18992 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18993
18994         * domain.c: Documentation updates.
18995
18996         * loader.c (mono_free_method): Do not release the method
18997         information if we are being profiled, as profilers will use this
18998         information at shut down to present some data to the user.
18999
19000         This is needed so that the profiler does not crash, as the
19001         profiler tends to keep MonoMethods around, and they might become
19002         invalid if we free these.
19003
19004         (mono_get_method_constrained): Return the original CIL stream
19005         method as well, so verification can be performed against it.
19006
19007 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19008
19009         * filewatcher.[ch]: support for inotify file system watcher.
19010         * icall.c: add new internal calls for the inotify file system watcher.
19011
19012 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19013
19014         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
19015         #78888.
19016
19017 2006-07-20  Dick Porter  <dick@ximian.com>
19018
19019         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
19020         warning.
19021
19022 2006-07-20  Dick Porter  <dick@ximian.com>
19023
19024         * threads.c (start_wrapper): Do the thread cleanup while we still
19025         hold a reference to its object.  Fixes bug 78123.
19026
19027 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
19028
19029         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
19030         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
19031           "managed-to-managed".
19032         * icall.c: Redirect string constructors that take sbyte* to
19033           ves_icall_System_String_ctor_RedirectToCreateString.
19034         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
19035           to CreateString () methods with matching signature.
19036         * reflection.c: Use original security informations for
19037           MONO_WRAPPER_MANAGED_TO_MANAGED.
19038         * security-manager.c: Use original security informations for
19039           MONO_WRAPPER_MANAGED_TO_MANAGED.
19040         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
19041           that is a placeholder and only its address should be used.
19042         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
19043           that is a placeholder and only its address should be used.
19044
19045 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
19046
19047         Begin implementing COM Interop.
19048         * appdomain.c: Increment corlib version.
19049         * class.c: Set ComImport classes' parent to __ComObject.
19050         * loader.c: Mark cominterop methods as such.
19051         * domain.c: Add __ComObject class to MonoDefaults structure.
19052         * image.c: Add 2 hashtables to the image for COM Interop related methods
19053         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
19054         using the mempool allocator
19055         
19056         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
19057         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
19058         declaration for mono_metadata_type_dup_mp.
19059         
19060         * debug-helpers.c: Added strings for two additional wrapper types
19061         * object.c: Create proxy objects for ComImport classes
19062         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
19063         and added __ComObject class to MonoDefaults structure.
19064         
19065         * object-internals.h: Finish MonoRealProxy definition, and add definition of
19066         MonoComInteropProxy and MonoComObject.
19067         
19068         * marshal.c: Added support for COM Interop
19069         (signature_cominterop): Converts managed signature to corresponding
19070         unmanaged COM signature.
19071         (cominterop_get_function_pointer): gets unmanaged function pointer via
19072         COM object vtable
19073         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
19074         (cominterop_get_method_interface): returns interface type that method is defined on
19075         (mono_mb_emit_cominterop_call): emits native call to function pointer
19076         gotten from vtable
19077         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
19078         that matches signature of unmanaged function.
19079         (cominterop_get_native_wrapper): wrapper around adjusted method call.
19080         (cominterop_get_invoke): forwards call from proxy to __ComObject
19081         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
19082         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
19083         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
19084         
19085         * marshal.h: Added Marshal icall declarations.
19086         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
19087         so we can access them in finalizer
19088         
19089 2006-07-14  Dick Porter  <dick@ximian.com>
19090
19091         * object.c (mono_type_initialization_cleanup): Fix a race
19092         condition by temporarily commenting out the critical section
19093         deletion.
19094
19095 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
19096
19097         * reflection.c (create_custom_attr): Fix some warnings.
19098         (create_custom_attr_data): Ditto.
19099         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
19100         types. Fixes #78855.
19101
19102 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
19103
19104         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
19105
19106         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
19107
19108 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
19109
19110         * reflection.c (resolve_object): Add support for DynamicMethod.
19111
19112         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
19113         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
19114
19115 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
19116
19117         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
19118         don't leak GPtrArray's pdata has we have no use (nor free) for it.
19119
19120 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
19121
19122         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
19123         Fixes #77888.
19124
19125 2006-06-30  Raja R Harinath  <rharinath@novell.com>
19126
19127         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
19128         slightly: remove a shadow local variable.
19129
19130 2006-06-29  Raja R Harinath  <rharinath@novell.com>
19131
19132         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
19133         definition that introduces the virtual function slot.
19134         Also fix Coverity #105.
19135
19136 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
19137
19138         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
19139         for dynamic assemblies. Fixes #78724.
19140
19141 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
19142
19143         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
19144         Fixes #78722.
19145
19146 2006-06-21  Martin Baulig  <martin@ximian.com>
19147
19148         * reflection.c
19149         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
19150         fixes #76484.
19151
19152 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
19153
19154         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
19155
19156 2006-06-20  Raja R Harinath  <rharinath@novell.com>
19157
19158         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
19159         nor TYPEREFs.
19160         * class.c (mono_class_create_from_typespec): Add 'context' argument.
19161         Inflate result if necessary.
19162         (mono_class_get_full): Remove old version.  Rename from
19163         'mono_class_get' and add 'context' argument.  Pass it to
19164         ..._create_from_typespec.
19165         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
19166         (mono_ldtoken): Revert change below.
19167
19168 2006-06-20  Martin Baulig  <martin@ximian.com>
19169
19170         * class.c (mono_ldtoken): Don't pass the generic context to
19171         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
19172
19173 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
19174
19175         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
19176         and later freeing it. Fixes #78638.
19177
19178 2006-06-15  Miguel de Icaza  <miguel@novell.com>
19179
19180         * icall.c (mono_class_get_throw): Revert over-zealous error
19181         throwing, the caller for mono_class_get_throw will cope with
19182         errors when classes are not properly initialized already.
19183
19184         The code still copes with loader exceptions though.
19185
19186         Fixes the regression in reftype1 and reftype3 from the CAS tests.
19187         
19188 2006-06-14  Miguel de Icaza  <miguel@novell.com>
19189
19190         Fixes the `make run1' version of RuntimeAbort (to be commited,
19191         source is in Bugzilla).
19192         
19193         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
19194         FALSE on class loading failure instead of returning true.
19195
19196         * class.c (mono_class_create_from_typedef): It is possible for
19197         mono_metadata_interfaces_from_typedef_full to fail if a class is
19198         not found, cope with this.
19199         
19200
19201 2006-06-14  Dick Porter  <dick@ximian.com>
19202
19203         * socket-io.c: 
19204         * process.c: Fix a bunch of signed/unsigned warnings from gcc
19205         4.1.1
19206
19207 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
19208
19209         * culture-info-table.h : oops, forgot to make it nsync with r61548.
19210
19211 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19212
19213         * icall.c: Another fix for building mono in Visual Studio.
19214
19215 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19216
19217         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
19218         
19219 2006-06-09  Martin Baulig  <martin@ximian.com>
19220
19221         * debug-mono-symfile.c: Put this back and really fix it this
19222         time. Sorry for all the trouble.
19223
19224 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
19225
19226         * icall.c (mono_class_get_throw): Fix a warning.
19227         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
19228         ReflectionTypeLoadException if needed. Fixes #78606.
19229
19230         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
19231         (mono_class_init): Ditto.
19232
19233         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
19234         ref_only exceptions.
19235         (mono_loader_clear_error): Make this work even if there is no error.
19236
19237 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
19238
19239         * object-internals.h marshal.c marshal.h icall.c: Implement method 
19240         Marshal.GetComSlotForMethodInfo using internal call.
19241
19242 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
19243
19244         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
19245         a function for signalling it.
19246
19247         * class.c (mono_class_from_typeref): Use the new kind of loader error when
19248         a referenced assembly is not found.
19249
19250         * loader.c (mono_loader_error_prepare_exception): Add support for 
19251         LOADER_ERROR_ASSEMBLY. Fix formatting.
19252
19253 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19254
19255         * domain.c appdomain.c class-internals.h marshal.c: Add support 
19256         for VARIANT marshalling on windows and increment corlib version
19257         since Variant struct was added.
19258
19259 2006-06-03  Miguel de Icaza  <miguel@novell.com>
19260
19261         * debug-mono-symfile.c: Revert Martin's previous patch which broke
19262         stack trace line information:
19263
19264         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
19265         (Martin) when looking up B which is between A and C, return A not C.
19266
19267         Bug is #78573.
19268
19269         Thanks to Alexander Olk for tracking this down.
19270
19271 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
19272
19273         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
19274         
19275         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
19276         avoid clobbering its value.
19277         (mono_string_to_lpstr): Fix a warning on windows.
19278
19279 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19280
19281         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
19282
19283         * reflection.c loader.c: Removed references to 'dummy' flag.
19284
19285         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
19286
19287         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
19288         it gets GC tracking.
19289
19290         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
19291         GC tracking.
19292         
19293         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
19294
19295         * marshal.c threadpool.c: Update callers of mono_async_result_new.
19296
19297         * appdomain.c: Bump corlib version.
19298
19299 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19300
19301         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19302         CEE_STIND_REF when working with object references.
19303
19304 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19305
19306         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
19307         Fixes #78539.
19308
19309 2006-05-30  Miguel de Icaza  <miguel@novell.com>
19310
19311         * loader.c (method_from_memberref): Fix argument value for
19312         mono_loader_set_error_method_load (I was passing the MonoClass
19313         instead of the class name char *).
19314
19315 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19316
19317         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19318         CEE_STIND_REF when working with object references.
19319
19320 2006-05-30  Martin Baulig  <martin@ximian.com>
19321
19322         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
19323         mono_method_full_name() change and replace the ':' with a '.'
19324         here.
19325
19326 2006-05-30  Martin Baulig  <martin@ximian.com>
19327
19328         * debug-mono-symfile.c
19329         (mono_debug_symfile_lookup_location): Fix the algorithm:
19330         when looking up B which is between A and C, return A not C.
19331
19332 2006-05-29  Martin Baulig  <martin@ximian.com>
19333
19334         * mono-debug.h
19335         (MonoDebugMethodInfo): Make the typedef public.
19336         (MonoDebugSourceLocation): New public struct.
19337
19338         * mono-debug.c
19339         (mono_debug_source_location_from_address): Removed.
19340         (mono_debug_source_location_from_il_offset): Removed.
19341         (mono_debug_il_offset_from_address): Removed.
19342         (mono_debug_address_from_il_offset): Removed.
19343         (mono_debug_lookup_method): New public function.
19344         (mono_debug_lookup_source_location): New public function; replaces
19345         the old mono_debug_source_location_from_*() functions; see the
19346         inline documentation.
19347         (mono_debug_free_source_location): New public function.
19348         (mono_debug_print_stack_frame): New public function; see the
19349         inline documentation.
19350
19351         * debug-mono-symfile.c
19352         (mono_debug_find_source_location): Renamed into
19353         mono_debug_symfile_lookup_location(); only take a
19354         `MonoDebugMethodInfo *' and an `offset' argument; added inline
19355         documentation.
19356         (mono_debug_find_method): Renamed into
19357         mono_debug_symfile_lookup_method().
19358
19359 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
19360
19361         * assembly.c (mono_assembly_open_full): Dont overwrite the status
19362         returned by mono_image_open_full ().
19363
19364         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
19365         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
19366         #78517.
19367
19368         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
19369         #78518.
19370
19371 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19372
19373         * class.c (mono_class_from_typeref): handle missing images
19374         earlier, deals with bug #78418.   Refactor code; 
19375
19376         Fix a warning introduced in my previous commit (some stale code
19377         from before I revisited my patch).
19378
19379         * class.c (mono_class_create_from_typedef): On failure, remove the
19380         class from the MonoImage->class_cache as the class is not
19381         initialized;   Fixes the leak pointed out by Paolo.
19382
19383 2006-05-25  Dick Porter  <dick@ximian.com>
19384
19385         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19386         DeleteCriticalSections until I figure out which one may still be
19387         sometimes locked when mono_thread_cleanup is called.
19388
19389 2006-05-24  Dick Porter  <dick@ximian.com>
19390
19391         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19392         of mono_thread_manage and back into its own function, so it can be
19393         called after the finalizer thread has finished.
19394
19395         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19396
19397 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19398
19399         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19400         Fixes #78495.
19401
19402         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19403         with non-blittable elements.
19404         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19405
19406 2006-05-24  Martin Baulig  <martin@ximian.com>
19407
19408         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19409         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19410
19411         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19412         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19413         `mono_debugger_event_handler' to NULL.
19414
19415 2006-05-24  Martin Baulig  <martin@ximian.com>
19416
19417         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19418
19419 2006-05-24  Martin Baulig  <martin@ximian.com>
19420
19421         * mono-debug-debugger.h
19422         (mono_debugger_create_notification_function): Added
19423         `MonoCodeManager *' argument.
19424
19425 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19426
19427         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19428
19429 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19430
19431         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19432         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19433         implementation.
19434
19435 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19436
19437         * icall.c: precise GC support: objects can't be stored in unmanaged
19438         memory anymore, even if they are kept alive by other references: since
19439         they can move the GC needs to be able to always find them.
19440
19441 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19442
19443         * object.c: precise GC support for static fields. Support
19444         for moving GCs: write barriers and pinned allocation for interned
19445         strings.
19446
19447 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19448
19449         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19450         structure.
19451
19452 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19453
19454         * class.c, gc.c: sgen and precise GC updates.
19455
19456 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19457
19458         * marshal.h, marshal.c: added write barrier wrapper and precise type
19459         fixes.
19460
19461 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19462
19463         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19464         support.
19465
19466 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19467
19468         * reflection.c: precise and sgen GC updates.
19469
19470 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19471
19472         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19473
19474 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19475
19476         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19477
19478 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19479
19480         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19481         MONO_TYPE_OBJECT. Fixes #78462.
19482
19483 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19484
19485         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19486         and blittable types.
19487
19488 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19489
19490         * class.c (mono_class_get_exception_for_failure): Implement parts
19491         of a TODO: if the loader error is set (instead of the class
19492         error), we return a Loader exception that can be properly thrown
19493         elsewhere.
19494
19495         This was exposed by some Winforms 2.0 code that I tried to run
19496         (Atsushi pointed me to it).
19497
19498 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19499
19500         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19501         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19502         
19503         * marshal.c (emit_marshal_vtype): Add limited support for 
19504         UnmanagedType.LPStruct. Fixes #78427.
19505
19506         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19507         Applied a patch from kangaroo to fix #77523.
19508
19509 2006-05-17  Martin Baulig  <martin@ximian.com>
19510
19511         * threads.c
19512         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19513         (debugger_thread_created): Removed.
19514         (debugger_thread_exited): Removed.
19515
19516 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19517
19518         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19519
19520         * object-internals.h (MonoReflectionResource): Sync with managed version.
19521
19522 2006-05-12  Wade Berrier <wberrier@novell.com>
19523
19524         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19525
19526 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19527
19528         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19529         functions try to allocate from the image mempool.
19530
19531 2006-05-12  Dick Porter  <dick@ximian.com>
19532
19533         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19534
19535 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19536
19537         * object.c: The FieldGetter and FieldSetter methods require the full
19538         name of the class, not only the name. Fixes bug #78277.
19539
19540 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19541
19542         * loader.c (method_from_memberref): Do not pass the NULL klass to
19543         mono_loader_set_error_() methods.  Pass the non-NULL value
19544         (class). 
19545
19546 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19547
19548         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19549         (mono_assembly_close): Null out assembly->image->references after freeing it.
19550
19551         * image.c (mono_image_close): Free image->references.
19552         
19553         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19554
19555 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19556
19557         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19558         before checking if it's NULL (g_assert).
19559
19560 2006-05-10  Martin Baulig  <martin@ximian.com>
19561
19562         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19563         I thought I already killed that two months ago, but now it somehow reappeared.
19564
19565 2006-05-10  Martin Baulig  <martin@ximian.com>
19566
19567         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19568
19569 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19570
19571         * reflection.c: Allocate memory for dynamically created methods in the image
19572         mempools.
19573
19574 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19575
19576         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19577         don't use the ad pointer before checking if it's NULL (g_assert).
19578
19579 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19580
19581         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19582         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19583
19584         * marshal.c: Allocate all signatures from mempools.
19585
19586         * marshal.c: Allocate some more signatures from mempools.
19587
19588 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19589
19590         * object.c (mono_load_remote_field): The code used to provide a
19591         temporary variable for returning results if the user did not
19592         provide a result pointer.  But our temporary variable was allocted
19593         on the satck.
19594
19595         Fix calling code to always pass a result area.   Coverity ID 103.
19596
19597 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19598
19599         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19600         value, not the old. Fixes #78312.
19601         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19602
19603         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19604         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19605         per-image cache.
19606
19607         * assembly.c (mono_assembly_close): Free image->references.
19608
19609         * assembly.c (mono_assembly_names_equal): Fix a warning.
19610         (mono_assemblies_cleanup): Cleanup more global data.
19611
19612         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19613
19614         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19615         ptr_cache and image->modules.
19616
19617         * image.c (mono_image_init): Allocate array_cache lazily.
19618         
19619 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19620
19621         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19622         behavior was changed recently and has bad side effects.
19623
19624 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19625
19626         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19627         
19628         * assembly.c (mono_assembly_close): Remove a debug printf.
19629
19630         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19631
19632         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19633         to also allow for temporary references between mono_image_open ()/close ().
19634
19635         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19636
19637 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19638
19639         * marshal.c: Fix support for dynamic methods.
19640
19641         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19642
19643         * marshal.c (mono_marshal_cleanup): New cleanup function.
19644
19645         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19646         image mempools.
19647
19648         * class.c (mono_class_init): Fix leaking class->nested_classes.
19649
19650         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19651
19652         * image.c (mono_image_init): Initialize the new cashes.
19653
19654         * image.c (mono_image_close): Destroy the new cashes.
19655
19656         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19657
19658         * mempool.c (mono_mempool_strdup): New helper function.
19659
19660         * class-internals.h: Add prototype for mono_loader_unlock ().
19661
19662         * domain.c (mono_jit_info_table_find): Fix a warning.
19663         (mono_debugger_check_runtime_version): Ditto.
19664
19665         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19666         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19667         functions to these modules.
19668
19669         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19670         metadata modules.
19671         
19672         * marshal.c (mono_free_bstr): Fix a warning.
19673
19674         * assembly.c (mono_assembly_open_full): Fix another small leak.
19675
19676         * object.c: Fix some unload leaks in the remoting code.
19677
19678         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19679         function.
19680
19681         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19682
19683         * reflection.c: Fix some unload leaks in dynamic assemblies.
19684
19685 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19686
19687         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19688         * marshal.h: Add BSTR support on Win32
19689         * icall.c: Add BSTR icalls
19690         * metadata.h: Add BSTR enums
19691
19692 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19693
19694         Work to catch the crash from #76795 and turn it into an
19695         exception.   As I stubbed out pieces of the VisualBasic support,
19696         I found a number of places where the code was failing and I added
19697         checks to those places. 
19698         
19699         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19700         function return a status code.  If we fail to parse the signature
19701         from mono_metadata_parse_generic_inst, return FALSE.
19702
19703         * loader.c (mono_get_method_from_token): If we fail to load the
19704         method (mono_class_get) return NULL.   
19705
19706         * (method_from_memberref): Return NULL if we are unable to parse
19707         the method signature
19708
19709         (mono_loader_error_prepare_exception): Since we now use the
19710         loader_error flag internally to stop processing, and obtaining
19711         exceptions that might be thrown will walk this code path the
19712         proper way of going from a MonoLoaderError into a
19713         MonoException was convoluted.   This new routine encapsulates the
19714         process of turning the error into an exception and *clearing* the
19715         error afterwards.
19716         
19717 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19718
19719         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19720         with missing assemblies), and to cope with:
19721
19722                 * Missing fieldref from a non-existing assembly.
19723                 * Missing methodref from a non-existing assembly.
19724
19725         The first batch of work to address *some* of the issues from 76661.
19726         
19727         * object.c (mono_class_create_runtime_vtable): If we fail to
19728         initialize the class raise the exception here. 
19729
19730         * metadata.c (mono_class_get_overrides_full): If any methods fail
19731         to load return the failure to the caller.
19732
19733         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19734         flagging assemblies that failed to load.   
19735
19736         Do not crash if we are unable to load the assembly.
19737
19738         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19739         assemblies. 
19740
19741         * loader.c (mono_loader_set_error_type_load): Change the
19742         convention to always pass unallocated strings, so we make our own
19743         copies (I know our own code had duplicated strings before, but
19744         this keeps the normal conventions).
19745         (method_from_memberref): Call mono_loader_set_error_method_load
19746         for all possible failures of loading the class. 
19747         Remove assert, turn into a loader error.
19748
19749         (mono_loader_error_to_exception): Move this routine from mini
19750         (mini_loader_error_to_exception) there was no need to have that in
19751         mini. 
19752
19753         * class.c (mono_class_from_typeref): If we were not able to load
19754         the assembly with mono_assembly_load_reference, call the
19755         mono_loader_set_error_type_load to register the problem.
19756
19757         (mono_class_setup_fields): If we fail to load the type from
19758         mono_metadata_parse_type_full, call mono_class_set_failure and
19759         break from the loop.
19760
19761         If class->exception_type is set, we do not layout the fields as
19762         that might crash the runtime, and instead return (from breaking
19763         from the previous loop).
19764
19765         (mono_class_setup_vtable): This now returns a boolean indicating
19766         whether the table was properly setup.   The decision is driven by
19767         mono_class_get_overrides_full which might run into non-existing
19768         methods. 
19769         
19770         (mono_class_init): Returns TRUE on success or FALSE if there was a
19771         problem in loading the type (incorrect assemblies, missing
19772         assemblies, methods, etc).
19773
19774         When we call mono_class_setup_fields we also check for a potential
19775         error inside this call (either a class exception or a general
19776         loader exception).
19777
19778         (mono_class_create_from_typedef): If the parent fails to load
19779         (calling mono_class_get_full) return NULL.
19780         
19781         ** Important **
19782
19783         calls to mono_metadata_parse_type_full should be checked
19784         everywhere and set the mono_class_set_failure
19785         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19786
19787         The current patch checks the places where my manually constructed
19788         tests show the errors are showing up, but we should do it
19789         everywhere. 
19790
19791         ** Important2 **
19792
19793         mono_class_init return values should be tested everywhere, like
19794         the previous case this is something that we should audit
19795         everywhere and not only on the cases exposed by the tests I
19796         created. 
19797
19798 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19799
19800         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19801         boolean parameter and instead pass the information on `options'
19802         parameter (FileOptions).
19803
19804         * icall.c: Register the new signature for MonoIO.Open.
19805
19806         * debug-helpers.c (dis_one): Trying to understand how coverity
19807         works.  Fix Run 5, item 78.
19808
19809 2006-04-26  Dick Porter  <dick@ximian.com>
19810
19811         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19812         dereference.
19813
19814 2006-04-25  Martin Baulig  <martin@ximian.com>
19815
19816         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19817
19818         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19819         debugger_thread_created().
19820         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19821         special way.
19822         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19823         (mono_debugger_finalize_threads): New function; undo the effects
19824         of mono_debugger_init_threads().
19825         (mono_debugger_create_all_threads): Removed.
19826
19827 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19828
19829         * image.c (mono_image_close): Tidy up trace messages.
19830
19831         * assembly.c (mono_assembly_close): Ditto.
19832
19833         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19834         no longer references an already freed assembly. Fixes #78168.
19835
19836 2006-04-21  Dick Porter  <dick@ximian.com>
19837
19838         * threads.c (mono_thread_detach): Fix reference counting when
19839         detaching threads.
19840
19841 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19842
19843         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19844         #78155.
19845
19846 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19847
19848         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19849         (mono_type_to_stind): Ditto.
19850
19851         * marshal.c: Use the new helper functions to simplify code.
19852
19853         * image.c (mono_image_close): Add some code for help debug assembly unloading
19854         problems.
19855
19856         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19857         image mempool.
19858
19859         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19860         assembly was already loaded in another appdomain. Fixes #78083.
19861
19862 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19863
19864         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19865         referenced assemblies.
19866         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19867
19868         * domain.c (mono_domain_free): Add a trace message.
19869
19870         * appdomain.c (add_assemblies_to_domain): Ditto.        
19871
19872         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19873         field.  
19874
19875 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19876
19877         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19878
19879 2006-04-12  Martin Baulig  <martin@ximian.com>
19880
19881         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19882         `USE_INCLUDED_LIBGC'.   
19883
19884 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19885
19886         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19887         the patch contains ../ and a small directory name later. Hopefully fixes
19888         #78035.
19889
19890 2006-04-10  Martin Baulig  <martin@ximian.com>
19891
19892         Clean up the debugger's thread-handling code.
19893
19894         The debugger's thread-handling code has been moved from
19895         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19896         over the `threads' hash, keep track of exiting threads and also
19897         use proper locking.
19898
19899         We can now debug XSP and XSP based applications with the debugger.
19900
19901         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19902
19903         * threads.h
19904         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19905         (mono_install_thread_callbacks): Likewise.      
19906
19907         * threads.c (mono_thread_callbacks): Removed.
19908         (debugger_thread_created, debugger_thread_exited): New static functions.
19909         (start_wrapper): Call debugger_thread_created().
19910         (thread_cleanup): Call debugger_thread_exited().
19911         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19912         (mono_debugger_init_threads): New public function.
19913         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19914         iterate directly over the `threads' hash and also use proper locking.
19915
19916         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19917
19918         * mono-debug-debugger.h
19919         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19920
19921 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19922
19923         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19924         argument type=array. Fixes #78057.
19925
19926 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19927
19928         * culture-info-table.h : regenerated. Fixed bug #69652.
19929
19930 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19931
19932         * loader.c metadata.c: Reapply a variant r59116.
19933         
19934         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19935
19936         * class.c (mono_class_setup_interface_offsets): New internal function.
19937
19938         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19939         interfaces too. Fixes #77398.
19940
19941         * reflection.c (encode_cattr_value): Add support for 
19942         parameter type=object, argument type=array.
19943         (load_cattr_value): Ditto. Fixes #77916.
19944
19945         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19946         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19947
19948         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19949         a byval char array and CharSet is Ansi.
19950
19951         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19952
19953 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19954
19955         * metadata.c: Add some locking comments.
19956         
19957         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19958         mempool.
19959         (mono_metadata_free_method_signature): Don't free the signature itself.
19960
19961         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19962
19963         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19964         reference the same MonoImage.
19965         (mono_assembly_load_from_full): Add an assert.
19966
19967 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19968
19969         * image.c (mono_image_close): Don't put the image we are about to free into the
19970         loaded_images_guid_hash.
19971
19972         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19973         to reduce code duplication.
19974
19975         * marshal.c: Register the native functions called by this module as icalls, to
19976         somewhat centralize the creation of MonoMethodSignature's.
19977
19978         * loader.c (mono_method_signature): Add a cache for method signatures.
19979
19980         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19981         the parameter attributes of a method.
19982         (mono_metadata_parse_method_signature_full): Refactored the computation of
19983         parameter attributes into a separate function. Also avoid one allocation in
19984         most cases.
19985
19986         * assembly.c (mono_assembly_close): Ditto.
19987
19988         * image.c (mono_image_close): Log trace messages with INFO level.
19989
19990         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19991
19992         * image.c reflection.c: Correct reference counting of image modules.
19993         
19994         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19995         of this function from the image mempool.
19996         
19997         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19998         to allow more cached types to be used.
19999
20000         * mono-debug.c (mono_debug_add_method): Appled patch from
20001         David S. Miller  <davem@sunset.davemloft.net>: Access 
20002         minfo->lexical_blocks[] entry elements using read32().
20003
20004 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
20005
20006         * loader.c (mono_free_method): No longer free the method header for non-dynamic
20007         methods as it is allocated from the mempool.
20008
20009         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
20010         image mempool.
20011
20012         * metadata-internals.h: Add comments describing the reference counting scheme
20013         used for MonoImage and MonoAssembly.
20014
20015         * image.c assembly.c reflection.c: Rework reference counting of images and 
20016         assemblies so they are freed when the runtime is shut down. Free some 
20017         additional memory structures when an image is unloaded.
20018         
20019 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
20020
20021         * class.c loader.c reflection.c: Allocate more data structures in
20022         the image mempool.
20023
20024 2006-03-31  Miguel de Icaza  <miguel@novell.com>
20025
20026         * icall.c
20027         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
20028         build on pre glib 2.4 systems.
20029
20030 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
20031
20032         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
20033
20034         * icall.c: Fix some warnings.
20035
20036 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
20037
20038         * culture-info-table.h : regenerated.
20039
20040 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
20041
20042         * threads.c, object-internals.h, verify.c: changed the culture caching
20043         code to use a normal MonoArray for storage so the GC can keep track of
20044         them easily. Fixed bits of the cache logic, too and simplified the
20045         code.
20046
20047 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
20048
20049         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
20050         thread for non-Boehm GCs.
20051
20052 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
20053
20054         * domain.c, object.c, domain-internals.h: reduce the amount of memory
20055         needed to keep track of the data for static fields.
20056
20057 2006-03-29  Raja R Harinath  <rharinath@novell.com>
20058
20059         Fix #75172
20060         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
20061         for interface classes.  Use 'num_methods' instead.
20062         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
20063         before using '->vtable_size' field.
20064
20065 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
20066
20067         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
20068         doesn't contain managed pointers, so use a normal hashtable.
20069
20070 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
20071
20072         * reflection.c, class-internals.h, domain.c: fixed handling of types
20073         used as values for objects in custom attributes (bug #77915):
20074
20075 2006-03-24  Martin Baulig  <martin@ximian.com>
20076
20077         * class.c (mono_class_setup_fields): Added support for generic
20078         instances; fixes #77580.
20079
20080 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20081
20082         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
20083
20084 2006-03-24  Dick Porter  <dick@ximian.com>
20085
20086         * file-io.c (get_file_attributes): More stat macro breakage.
20087         Fixes bug 77759.
20088
20089 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
20090
20091         * profiler.c: added the file=filename option in the default profiler
20092         to output the profile data to filename.
20093
20094 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20095
20096         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
20097         bug #77877.
20098
20099 2006-03-22  Martin Baulig  <martin@ximian.com>
20100
20101         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
20102         allocated `MonoClassField *' in `fb->handle'.
20103
20104 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
20105
20106         * class.c, image.c, metadata-internals.h: implemented new mechanism to
20107         allocate interface ID to save memory and allow better ID reuse on
20108         appdomain unload. setup_generic_vtable () removal from Martin.
20109
20110 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20111
20112         * object.h, appdomain.c, domain.c, exception.c, icall.c,
20113         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
20114         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
20115         write barriers for reference stores with managed objects accessed with
20116         C structures in the runtime and in embedding programs.
20117
20118 2006-03-20  Raja R Harinath  <rharinath@novell.com>
20119
20120         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
20121         'interface_id' and 'max_interface_id' fields of MonoClasses
20122         representing open generic types.
20123
20124 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
20125
20126         * object.h, object.c, icall.c: added functions to deal with
20127         storing valuetypes that contain references in managed objects.
20128         * reflection.c, string-icalls.c, threads.c, marshal.c: small
20129         fixes and comments around uses of mono_array_addr ().
20130
20131 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
20132
20133         * object.h, icall.c, monitor.c: object.GetHashCode ()
20134         implementation that supports the moving garbage collector.
20135
20136 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
20137
20138         * icall.c, threads-types.h, threads.c: implemented finalizer for
20139         LocalDataStoreSlot.
20140
20141 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
20142
20143         * metadata.c (mono_type_size): Add a fixme.
20144         (mono_type_stack_size): Ditto.
20145
20146         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
20147         'type_forwarders' field.
20148
20149         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
20150         attribute from net 2.0.
20151
20152         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
20153         from class.c.
20154
20155         * class.c (mono_class_setup_fields): Fix a warning.
20156         
20157         * class.c (mono_class_from_name): Add support for assemblyref entries
20158         in the EXPORTEDTYPE table.
20159
20160         * reflection.c: Add support for handling type forwarders under net 2.0.
20161
20162         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
20163         
20164 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
20165
20166         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
20167         overwriting entries in ModuleBuild->types, also clean up the code
20168         a little. Fixes #77774.
20169
20170 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
20171
20172         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
20173         load friend assembly info when present.
20174
20175 2006-03-14  Raja R Harinath  <rharinath@novell.com>
20176
20177         Fix crasher on gtest-158.cs.
20178         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
20179         the return value if the MonoClass we want is yet in an
20180         inconsistent state.
20181         * class.c (mono_class_create_from_typedef): Add an comment
20182         explaining an order dependency between mono_class_setup_parent and
20183         mono_class_setup_mono_type.
20184
20185 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
20186
20187         * class.c: documentation updates and events bug fix.
20188
20189 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
20190
20191         * class.c: some cleanup, locking fixes.
20192
20193 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
20194
20195         * class.c: fix the generics code to setup nested
20196         type info to the instantiated type (bug #77770).
20197
20198 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
20199
20200         * marshal.c: fixed a few type correctness issues.
20201
20202 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20203
20204         * loader.c: the Set/Get/Addrtess array methods should be public.
20205
20206 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
20207
20208         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
20209         
20210         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
20211         info->wrapper.
20212
20213 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
20214
20215         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
20216
20217         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
20218
20219         * mempool.c (mono_mempool_alloc): Speed this up a bit.
20220         (mono_mempool_alloc0): Ditto.
20221
20222 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20223
20224         * socket-io.c:
20225         (create_object_from_sockaddr): it was allocating 4 extra bytes
20226         for the AF_UNIX data. Fixes bug #77747.
20227
20228 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
20229
20230         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
20231
20232 2006-03-09  Dick Porter  <dick@ximian.com>
20233
20234         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
20235         Fixes bug 76966 again.
20236
20237 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
20238
20239         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
20240         names from r57532
20241         * appdomain.c: Bumped corlib version to 48 (due to r57532)
20242
20243 2006-03-07  Martin Baulig  <martin@ximian.com>
20244
20245         * object.c
20246         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
20247
20248 2006-03-07  Martin Baulig  <martin@ximian.com>
20249
20250         * class.c
20251         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
20252         regression introduced in r56970; see gtest-252.cs.
20253
20254         * loader.c (mono_get_method_constrained): Correctly handle generic
20255         methods; see gtest-253.cs.
20256
20257 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
20258
20259         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
20260
20261 2006-03-04  Martin Baulig  <martin@ximian.com>
20262
20263         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
20264         compute the parent type at runtime, just like we're already doing
20265         it for interfaces.
20266
20267         * reflection.c
20268         (mono_reflection_bind_generic_parameters): Don't compute the
20269         parent type anymore.
20270
20271         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
20272
20273 2006-03-04  Martin Baulig  <martin@ximian.com>
20274
20275         * mono-debug-debugger.h
20276         (mono_debugger_create_notification_function): Allocate memory at
20277         runtime and return a pointer to it.
20278
20279 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
20280
20281         * assembly.c: Fix windows build.
20282         
20283         * assembly.c: Fix build.
20284
20285         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
20286
20287         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
20288         
20289 2006-03-03  Dick Porter  <dick@ximian.com>
20290
20291         * process.c
20292         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20293         Check parameters before dereferencing them.  Fixes Aaron's part of
20294         bug 77393.
20295
20296 2006-03-03  Raja R Harinath  <rharinath@novell.com>
20297
20298         Fix performance regression.
20299         * loader.c (find_method_in_class): Add 'from_class' argument.
20300         Rename 'klass' argument to 'in_class'.  The signature is compared
20301         against the method in 'in_class', and the corresponding method is
20302         returned from 'from_class'.
20303         (find_method): Walk both 'in_class' and 'from_class' in parallel.
20304         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
20305         type definition and generic instantiation in parallel.
20306         (mono_get_method_constrained): Update to changes.
20307
20308 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
20309
20310         * threads.c: make sure the domain is correct, too when doing
20311         mono_thread_attach ().
20312
20313 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
20314
20315         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
20316         windows. Fixes #77683.
20317
20318 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
20319
20320         * object.h, *: introduced specific way to set elements of an array
20321         of references to be used as write barrier. Still need to audit the
20322         uses of mono_array_addr.
20323
20324 2006-03-01  Miguel de Icaza  <miguel@novell.com>
20325
20326         * object-internals.h: New field to cache the assmebly name, patch
20327         from Tambet Ingo (tambet@ximian.com)
20328
20329 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20330
20331         * decimal.h, class-internals.h, metadata-internals.h,
20332         file-io.h: mark a few function declarations as internal, to
20333         reduce the number of PLT entries.
20334
20335 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20336
20337         * file-io.c: fix typo in warning message.
20338
20339 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
20340
20341         * loader.c: on unix, lookup the "*A" version of a function
20342         if charset is auto as a second option before failing.
20343
20344 2006-02-28  Raja R Harinath  <rharinath@novell.com>
20345
20346         * class.h (mono_class_inflate_generic_method): Revert to two
20347         argument version.
20348         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
20349         (mono_class_inflate_generic_method_full): Add.
20350         * class.c (mono_class_inflate_generic_method_full): Rename from
20351         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
20352         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
20353         * loader.c, reflection.c: Update to changes.
20354
20355 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
20356
20357         * icall.c: const fixes and small improvements.
20358
20359 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20360
20361         * threadpool.c: for asynchronous connect(), enable the same workaround
20362         for BSD 6 as for the Mac. Fixes bug #77637.
20363
20364 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
20365
20366         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
20367         formatted classes. Fixes #77524.
20368
20369 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20370
20371         * class.c (inflate_generic_type): Add a couple more
20372         micro-optimizations.
20373         (inflate_generic_context): Don't use the 'gmethod' from
20374         'inflate_with'.
20375         (mono_class_inflate_generic_method): If the method has generic
20376         parameters, but the passed-in context doesn't have a 'gmethod',
20377         create one.  Use the possibly simplified generic instantiation
20378         from the declaring class instead of the one passed in.
20379
20380 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20381
20382         Make generic method signature and method header handling lazy.
20383         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20384         (inflate_generic_header): Likewise.
20385         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20386         parameter to avoid inflating types.
20387         (mono_get_inflated_method): Empty out.
20388         * class.h (mono_class_inflate_generic_method): Update to changes.
20389         * loader.c (mono_get_method_from_token): Don't parse signature for
20390         generic methods, nor methods of generic classes.
20391         (mono_method_signature): Rename from 'mono_method_signature'.
20392         Inflate signature on demand.
20393         (mono_method_get_header): Inflate method header on demand.
20394         * reflection.c: Update to changes.
20395
20396 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20397
20398         * metadata.c (mono_metadata_inflate_generic_inst): If the
20399         instantiation is closed, don't bother expanding it in the new
20400         context.
20401         * class.c (inflate_generic_class): If the generic instantiation
20402         doesn't change after inflation, return the argument itself.
20403         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20404         Add bounds checks.
20405         (inflate_generic_context): If neither the generic class nor the
20406         generic method instantiations change, return the original context.
20407         * reflection.c (mono_method_get_object): Do
20408         'mono_get_inflated_method' before accessing the ->klass field.
20409         (inflate_mono_method): Don't create a MonoGenericMethod unless
20410         necessary.
20411         (inflate_method): Don't pass a constructed type as the declaring
20412         type of a methodbuilder.
20413
20414 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20415
20416         * object.c: fix memory overwrite.
20417
20418 2006-02-22  Dick Porter  <dick@ximian.com>
20419
20420         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20421         it doesn't work any more.
20422         (mono_threads_request_thread_dump): Fix unused variable warnings.
20423
20424 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20425
20426         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20427         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20428         the public header file.
20429
20430 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20431
20432         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20433
20434 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20435
20436         * class-internals.h, object.c: reduce the size of MonoVTable
20437         and store the interface_offsets array at negative offsets.
20438
20439 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20440
20441         * metadata.c: tweak table descriptors data structures to reduce
20442         size and runtime relocations.
20443
20444 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20445
20446         * marshal.c: fix some types and opcodes to be type-safe
20447         in marshaling wrappers.
20448
20449 2006-02-21  Ankit Jain  <jankit@novell.com>
20450
20451         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20452
20453 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20454
20455         * metadata.c (get_constraints): Relax debugging checks for monodis.
20456
20457 2006-02-21  Ankit Jain  <jankit@novell.com>
20458
20459         * metadata.c (mono_metadata_load_generic_params): Move the code
20460         checking for ambiguous generic params from here to mono/dis/get.c
20461         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20462
20463 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20464
20465         Fix assertion triggered when compiling nemerle.
20466         * class.c (mono_get_shared_generic_inst): Rename from
20467         get_shared_inst and make non-static.
20468         * loader.c (mono_get_shared_generic_method): New.  Used to create
20469         the MonoGenericContext-equivalent of a MonoGenericContainer.
20470         (mono_get_method_from_token): Initialize the 'context' field of
20471         the created MonoGenericContainer.
20472         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20473         * metadata.c (get_constraints): Add sanity check.
20474         * class-internals.h: Add new internal methods.
20475
20476         * reflection.c (verify_safe_for_managed_space): New sanity check.
20477         Currently checks that owner-less generic parameters aren't allowed
20478         in managed space.
20479         (mono_type_get_object): Use it.
20480         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20481         that are now in mono_type_get_object.
20482         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20483
20484 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20485
20486         * metadata.c (mono_type_create_from_typespec): Rename from
20487         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20488         argument and caching of types in the generic container.
20489         (unwrap_arrays, find_generic_param): Remove.
20490         * metadata-internals.h: Update.
20491         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20492
20493 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20494
20495         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20496
20497         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20498         return values. Fixes #77581.
20499
20500         * class.c (mono_fnptr_class_get): Switch name and name_space.
20501
20502         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20503         classes and add support for [In, Out] attributes.
20504         (mono_marshal_free_asany): Ditto. Fixes #77524.
20505
20506 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20507
20508         * class.c (mono_class_from_generic_parameter): Make more robust to
20509         incomplete MonoGenericContainers from monodis.
20510
20511 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20512
20513         * class-internals.h: added some more exception types.
20514         * class.c, metadata.c: added a few checks to handle missing
20515         types.
20516
20517 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20518
20519         Use owner-less generic-params some more.
20520         * class.c (my_mono_class_from_generic_parameter): Remove.
20521         (mono_class_from_generic_parameter): Handle null image,
20522         param->name and param->owner.
20523         (mono_class_from_mono_type): Update.
20524         (mono_class_create_from_typespec): Remove 'container' parameter.
20525         If that parameter is non-null, the result is always inflated by
20526         'mono_class_get_full' anyway.
20527         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20528         parameter.
20529         (mono_class_get_full): Update.
20530
20531         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20532         instance is not open, don't bother inflating.
20533         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20534         parse metadata for inflated classes.
20535         (_mono_class_get): Change GenericContext* parameter to
20536         GenericContainer*.
20537         (mono_class_create_from_typespec): Likewise.  Simplify, and
20538         implement trivially.  All the cases are handled in
20539         mono_class_from_mono_type.  Don't inflate returned class.
20540         (mono_class_get_full): Delegate GENERICINST optimization to
20541         inflate_generic_type.
20542         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20543
20544 2006-02-16  Dick Porter  <dick@ximian.com>
20545
20546         * socket-io.c (create_object_from_sockaddr): Fix typo.
20547         (create_sockaddr_from_object): Check array lengths before
20548         potentially accessing items off the end.
20549         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20550         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20551         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20552         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20553         length checks to avoid wraparound overflows.
20554         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20555         contents of the array of sockets
20556         (hostent_to_IPHostEntry2)
20557         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20558         Check return value of inet_ntop ().
20559         (addrinfo_to_IPHostEntry): Fix typo
20560
20561 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20562
20563         Type metadata parsing doesn't use generic-instantiation information.
20564         * metadata.c (mono_metadata_parse_array_full): Change
20565         MonoGenericContext* parameter to MonoGenericContainer*.
20566         (mono_metadata_parse_type_full): Likewise.
20567         (mono_type_create_from_typespec_full): Likewise.
20568         (mono_metadata_parse_mh_full): Likewise.
20569         (mono_metadata_parse_generic_inst): Likewise.
20570         (do_mono_metadata_parse_generic_class): Likewise.
20571         (do_mono_metadata_parse_type): Likewise.
20572         * metadata-internals.h: Update to changes.
20573         * class.c (mono_class_find_enum_basetype): Likewise.
20574         (mono_class_setup_fields): Likewise.
20575         (mono_class_create_from_typespec): Likewise.
20576         * loader.c (method_from_methodspec): Likewise.
20577         (mono_get_method_from_token): Likewise.
20578         (mono_method_get_header): Likewise.
20579
20580 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20581
20582         * marshal.c: handle additional GENERICINST case (patch from
20583         Thong Nguyen <tum@veridicus.com>).
20584         Fix a few cases where LDIND_I/STIND_I was used for references.
20585
20586 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20587
20588         * reflection.c (mono_reflection_get_token): Remove unused variable.
20589
20590 2006-02-16  Martin Baulig  <martin@ximian.com>
20591
20592         * reflection.c (mono_reflection_get_token): Add support for fields
20593         in instantiated generic types.
20594
20595         * icall.c
20596         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20597
20598 2006-02-15  Martin Baulig  <martin@ximian.com>
20599
20600         * icall.c
20601         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20602         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20603         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20604         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20605
20606 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20607
20608         * class.c, metadata.c, metadata.h, object.c, icall.c,
20609         marshal.c: changed mono_type_get_underlying_type () to do
20610         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20611         Fixed handling of instantiated generic valuetypes (bug #75479).
20612
20613 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20614
20615         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20616         Delegate to mono_metadata_decode_value, and work on the returned value.
20617
20618         * icall.c (ves_icall_MonoType_GetGenericArguments):
20619         Add consistency check here too.
20620         
20621 2006-02-15  Ankit Jain  <jankit@novell.com>
20622
20623         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20624         char/short etc.
20625
20626 2006-02-15  Ankit Jain  <jankit@novell.com>
20627
20628         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20629         signed values, used only for representing lower bounds of arrays.
20630         (mono_metadata_parse_array_full): Use new
20631         mono_metadata_decode_signed_value to decode lower bounds.
20632
20633 2006-02-14  Martin Baulig  <martin@ximian.com>
20634
20635         * reflection.c
20636         (mono_reflection_get_token): Support "MonoGenericMethod" and
20637         "MonoGenericCMethod" and allow generic instances / methods.
20638
20639 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20640
20641         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20642         to obtain the terminal size using an ioctl.
20643
20644         * object.c (mono_nullable_init): Revert this as nullable reference
20645         types are not valid.
20646         (mono_nullable_box): Ditto.
20647
20648 2006-02-09  Dick Porter  <dick@ximian.com>
20649
20650         * threads.c (mono_thread_detach): Drop a reference to the thread
20651         we're detaching.
20652
20653 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20654
20655         * object.c (mono_nullable_init): Handle nullable reference types.
20656         (mono_nullable_box): Ditto. Fixes #77446.
20657
20658 2006-02-07  Martin Baulig  <martin@ximian.com>
20659
20660         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20661
20662 2006-02-07  Ankit Jain  <jankit@novell.com>
20663
20664         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20665         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20666         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20667         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20668         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20669         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20670
20671 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20672
20673         * class.c (mono_class_create_generic): Set type_token as well.
20674
20675         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20676         compatible with MS.
20677
20678 2006-02-02  Martin Baulig  <martin@ximian.com>
20679
20680         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20681         has never been used so far.
20682
20683 2006-02-02  Martin Baulig  <martin@ximian.com>
20684
20685         * mono-debug-debugger.h: Changed comment at the top of this file;
20686         the header is not installed, but it's safe to #include it from
20687         within the JIT.
20688
20689         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20690         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20691
20692 2006-02-02  Martin Baulig  <martin@ximian.com>
20693
20694         * mono-debug.h
20695         (MonoSymbolTable): Removed the `metadata_info' field.
20696
20697         * mono-debug.c
20698         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20699
20700         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20701         (mono_debugger_add_builtin_types): Removed.
20702         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20703         (mono_debugger_create_notification_function): We now operate on a
20704         pre-allocated area; take a `gpointer' and return `void'.
20705
20706         * mono-debug-debugger.c
20707         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20708         (mono_debugger_add_builtin_types): Removed.
20709
20710 2006-02-02  Martin Baulig  <martin@ximian.com>
20711
20712         * threads.c (mono_debugger_create_all_threads): New public method.
20713
20714 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20715
20716         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20717         breaks on several platforms.
20718
20719 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20720
20721         * assembly.c: the VS.NET build doesn't supply default values for
20722         MONO_ASSEMBLIES and MONO_CFG_DIR.
20723
20724 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20725
20726         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20727         helper function.
20728
20729         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20730
20731         * loader.c (method_from_memberref): Fix a warning.
20732
20733         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20734
20735         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20736         with explicit layout. Fixes #77433.
20737
20738 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20739
20740         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20741         max_interface_id is initialized before using it. Fixes #77398.
20742         (ves_icall_Type_GetInterfaces): Ditto.
20743
20744 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20745
20746         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20747         allocate memory for parameter attributes when parsing memberref
20748         signatures.
20749         * loader.c (mono_loader_set_error_method_load): Don't warn.
20750         (method_from_memberref): Ensure MissingMethodException gets thrown
20751         if method is not found.  Make warning more informative.
20752
20753 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20754
20755         Fix #77397
20756         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20757         return true if is byref.
20758         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20759         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20760         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20761
20762 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20763
20764         Fix tests/find-method.2.il
20765         * loader.c (find_method, find_method_in_class): Remove is_inflated
20766         argument.  Revert 2006-01-18 change.
20767         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20768         is generic, search for method in its generic definition.
20769         * class.c (mono_class_setup_vtable_general): Print generic
20770         arguments of generic types in debugging printf.
20771
20772 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20773
20774         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20775
20776         * threads.c (mono_threads_request_thread_dump): New helper function.
20777
20778 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20779
20780         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20781
20782 2006-01-25  Ankit Jain  <jankit@novell.com>
20783
20784         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20785         move definition to ..
20786         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20787         
20788 2006-01-25  Ankit Jain  <jankit@novell.com>
20789             Raja R Harinath  <rharinath@novell.com>
20790
20791         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20792         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20793         as necessary.
20794
20795 2006-01-25  Martin Baulig  <martin@ximian.com>
20796
20797         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20798         `MonoDebuggerThread' into debug-debugger.c.
20799
20800 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20801
20802         * profiler.c: fix printing of data.
20803
20804 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20805
20806         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20807           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20808
20809 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20810
20811         * object.c: fix deadlock related to string interning.
20812
20813 2006-01-23  Martin Baulig  <martin@ximian.com>
20814
20815         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20816
20817         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20818
20819 2006-01-23  Martin Baulig  <martin@ximian.com>
20820
20821         * mono-debug.h: Moved the prototypes of some functions which are
20822         used by the JIT here from mono-debug-debugger.h.
20823
20824 2006-01-21  Martin Baulig  <martin@ximian.com>
20825
20826         * Makefile.am: Don't install mono-debug-debugger.h.
20827
20828 2006-01-21  Martin Baulig  <martin@ximian.com>
20829
20830         * mono-debug-debugger.h: Enforce the private status of this header
20831         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20832         Moved some stuff from mono-debugger-jit-wrapper.h here.
20833
20834 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20835
20836         * class.c (mono_class_from_typeref): Add a sanity test to help
20837         catch lack of assembly load/search hooks.
20838
20839 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20840
20841         * marshal.c (emit_struct_conv): Relax the fields with same offset
20842         check even more. Fixes #77230.
20843
20844 2006-01-18  Martin Baulig  <martin@ximian.com>
20845
20846         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20847         argument; if false, we compare the uninstantiated signatures.
20848         (method_from_memberref): Compare the uninstantiated signatures;
20849         fixes #76417.
20850
20851 2006-01-18  Robert Jordan  <robertj@gmx.net>
20852
20853         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20854         Clear the weak link. Fixes bug #77170.
20855
20856         * gc.c (mono_gchandle_free):
20857         Reflect *-gc.c changes (tiny optimization).
20858
20859 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20860
20861         * metadata.c (mono_metadata_signature_dup): Applied patch from
20862         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20863         Fixes #77288.
20864
20865 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20866
20867         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20868         marshalling from native to managed code. Fixes #77230.
20869
20870 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20871
20872         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20873         connect. Fixes bug #77020.
20874
20875 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20876
20877         * class.c: fixed id assignement for nested interfaces (bug #77275).
20878         Added also better info for --print-vtable debugging.
20879
20880 2006-01-12  Martin Baulig  <martin@ximian.com>
20881
20882         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20883         interfaces on-the-fly; fixes #76625.
20884
20885         * class-internals.h
20886         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20887         don't need that anymore.
20888
20889 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20890
20891         * socket-io.c
20892         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20893         To avoid initing the nested_classes when not needed I turned the
20894         PeerCredData as a toplevel internal class, as it has to be shared
20895         anyways. 
20896
20897         Fixes the CASA issue.
20898
20899 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20900
20901         * domain.c: Accessors for MonoJitInfo
20902
20903         * profiler-private.h: Add jitinfo to the end jit hook
20904
20905         * profiler.[ch]: Define new hooks, called after jitting which give
20906         the MonoJitInfo that was compiled
20907
20908 2006-01-10  Martin Baulig  <martin@ximian.com>
20909
20910         * class.c (mono_class_setup_events): Add support for generic
20911         classes; fixes #76440.
20912
20913 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20914
20915         Fix #77160.
20916         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20917         on passed-in method.
20918
20919 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20920
20921         * object.c (mono_runtime_invoke_array): Add Nullable support.
20922
20923         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20924
20925 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20926
20927         * file-io.c: Don't consider sockets as directory and avoid an endless
20928         loop. Fix bug #76966.
20929
20930 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20931
20932         * object.c (mono_nullable_init): New helper function.
20933         (mono_nullable_box): Ditto.
20934
20935         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20936
20937         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20938
20939         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20940         
20941 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20942
20943         * class.c (mono_class_is_assignable_from): Make T assignable to 
20944         Nullable<T>.
20945
20946 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20947
20948         * appdomain.c: Bump corlib version to 46.
20949         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20950         serialization purpose) and changed ves_icall_System_Reflection_
20951         Assembly_get_code_base signature to accept a boolean (to escape, or 
20952         not, the assembly code base).
20953
20954 2005-12-23  Dick Porter  <dick@ximian.com>
20955
20956         * icall.c: 
20957         * threads-types.h: 
20958         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20959         CreateEvent icall now returns "created" boolean parameter.
20960
20961 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20962
20963         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20964         #76967.
20965
20966         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20967         when attr_klass is an interface. Fixes #77045.
20968
20969 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20970
20971         * marshal.c (emit_struct_conv): Fix previous patch.
20972         
20973         * marshal.c (emit_struct_conv): Add a check for fields with the same
20974         offset.
20975
20976 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20977
20978         Fix regression in Mono.C5.
20979         * class.c (mono_class_create_generic): If 'klass' is an interface
20980         set up the interface offsets.
20981         (mono_class_is_assignable_from): Don't throw away generic arguments.
20982
20983 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20984
20985         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20986         type parameters.
20987
20988 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20989
20990         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20991         dead store.
20992         (do_mono_metadata_parse_generic_class): Don't pass the current
20993         generic context when parsing the type being instantiated: it
20994         cannot use it, anyway.
20995
20996         * loader.c (method_from_memberref): Don't inflate a signature if
20997         it doesn't contain any type parameters.
20998
20999 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
21000
21001         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
21002
21003 2005-12-14  Martin Baulig  <martin@ximian.com>
21004
21005         * class.c
21006         (mono_type_get_name_recurse): Don't return null for type
21007         parameters and open generic classes.
21008         (mono_class_setup_methods): Don't exclude generic instances.
21009         (mono_get_unique_iid): Use different IDs for different
21010         instantiations of the same generic type.
21011         (mono_class_setup_vtable): Only use setup_generic_vtable() for
21012         open generic instances; create a normal vtable for closed generic
21013         instances.
21014         (mono_class_setup_vtable_general): We're now also called for
21015         closed generic instances.
21016
21017         * reflection.c
21018         (mono_reflection_bind_generic_parameters): Correctly use
21019         mono_metadata_lookup_generic_inst() everywhere.
21020
21021 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
21022
21023         * object.c (mono_class_create_runtime_vtable): Call 
21024         mono_class_setup_vtable ().
21025
21026         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
21027         function.
21028         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
21029         #76959.
21030
21031         * loader.c (mono_loader_set_error_type_load): Print the type load
21032         warnings to the console so they are more visible to the user.
21033         (mono_loader_set_error_method_load): Ditto.
21034
21035         * reflection.c (ensure_runtime_vtable): Revert the last change as it
21036         is still broken.
21037         
21038         * reflection.c (ensure_runtime_vtable): Fix build.
21039
21040         * reflection.c (ensure_runtime_vtable): Disable an optimization which
21041         doesn't work in all cases.
21042
21043 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
21044
21045         * object.c (mono_array_new_full): Treat a single dimensional array
21046         with 0 lower bounds as an szarray. Fixes #76973.
21047
21048         * reflection.c (custom_attr_visible): Really fix this.
21049
21050 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
21051
21052         * reflection.c (custom_attr_visible): Allow nested public attributes
21053         as well.
21054
21055         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
21056         interface check.
21057
21058 2005-12-12  Raja R Harinath  <harinath@gmail.com>
21059
21060         * class.c (set_generic_param_owner): Delete.
21061         (mono_class_create_from_typedef): Don't set ->owner field of
21062         generic parameters to "param containers" of enclosing classes.
21063         * reflection.c (mono_reflection_initialize_generic_parameter):
21064         Likewise.
21065
21066 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
21067
21068         * reflection.c (custom_attr_visible): Fix build.
21069
21070 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
21071
21072         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
21073         private attributes.
21074         
21075         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
21076         handling of null parameter defaults.
21077
21078 2005-12-09  Raja R Harinath  <rharinath@novell.com>
21079
21080         * class.c (mono_class_from_generic_parameter): Don't set
21081         klass->generic_container.
21082         (my_mono_class_from_generic_parameter): Likewise.
21083
21084 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
21085
21086         * reflection.c (load_public_key): Fix a warning.
21087         (method_encode_code): Fix unaligned accesses.
21088
21089 2005-12-07  Martin Baulig  <martin@ximian.com>
21090
21091         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
21092
21093         * reflection.c
21094         (write_generic_param_entry): Encode our custom attrs.
21095
21096         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
21097
21098 2005-12-07  Martin Baulig  <martin@ximian.com>
21099
21100         * reflection.c (encode_new_constraint): Removed; we don't use the
21101         `NewConstraintAttribute' anymore.
21102
21103 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
21104
21105         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
21106         not fire a TypeResolve event when Assembly.GetType () is called.
21107
21108 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
21109
21110         Beginning of support for nullable types in the runtime. Parts of
21111         this patch are from Martin.
21112
21113         * appdomain.c (MONO_CORLIB_VERSION): Bump
21114
21115         * domain.c (mono_init_internal): get the nullable type
21116
21117         * class.c (mono_class_is_nullable): New method
21118         (mono_class_get_nullable_param): New mehod
21119         (mono_class_create_generic): In types T? set cast_class to T
21120
21121         * class-internals.h (MonoDefaults): new nullable default class
21122         (mono_class_get_nullable_param, mono_class_get_nullable_param):
21123         new methods.
21124
21125 2005-12-05  Raja R Harinath  <rharinath@novell.com>
21126
21127         * metadata.c (select_container): New.  Refactor code to select the
21128         appropriate GenericContainer given the type of generic parameter
21129         we are looking for.
21130         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
21131         not a MonoGenericContext.  Use select_container.  Update parameters.
21132         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
21133         and MONO_TYPE_MVAR.
21134         (unwrap_arrays): Remove duplicate tests.
21135         (find_generic_param): Rename from 'has_same_context'.  Now walks a
21136         generic instantiated class to find any arguments that are generic
21137         parameters.
21138         (mono_type_create_from_typespec_full): Use find_generic_param to
21139         avoid evicting some generic instantiations from the typespec
21140         cache.
21141
21142 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
21143
21144         * reflection.c: fixed writing of doubles on ARM FPA.
21145
21146 2005-12-02  Robert Jordan  <robertj@gmx.net>
21147
21148         * icall.c: Fixed EventInfo.ReflectedType (#76829).
21149
21150 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21151
21152         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
21153         least on SUSE 10 they are not the same (on debian, they are just the
21154         same thing).
21155
21156 2005-12-01  Raja R Harinath  <rharinath@novell.com>
21157
21158         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
21159         DeclaringType for VARs and MVARs.
21160         * class.c (set_generic_param_owner): Fix initialization of owner
21161         fields.
21162
21163 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21164
21165         * icall.c: fixed Enum.ToObject() to correctly convert the values.
21166
21167 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21168
21169         * threadpool.c: workaround for a bug that shows up on the Mac:
21170         select()+connect() on a blocking socket is not like it should
21171         be, so we proceed to connect() in that case, wasting the I/O
21172         threadpool thread until connect succeedes. Fixes bug #75436.
21173
21174 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21175
21176         * threadpool.c: fix typo when setting file descriptor states.
21177
21178 2005-11-28  Raja R Harinath  <rharinath@novell.com>
21179
21180         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
21181         * metadata.c (mono_metadata_parse_method_signature_full): Don't
21182         create a temporary signature container.
21183         (mono_metadata_parse_generic_param): Update to changes.
21184         (mono_type_create_from_typespec_full): Update to changes.
21185         * loader.c (method_from_memberref): Don't use a
21186         MonoGenericContainer while parsing a memberref signature.
21187         (method_from_methodspec): Remove dead-store of the 'container'
21188         variable.  It's overwritten before use.
21189
21190         * metadata.c (mono_type_create_from_typespec_full): Make debugging
21191         checks tighter.
21192         (mono_metadata_parse_generic_param): Likewise.
21193         * loader.c (find_method_in_class): Does not need a
21194         MonoGenericContainer.  Use 'mono_method_signature' rather than
21195         'mono_method_signature_full'.
21196         (find_method, mono_get_method_constrained, method_from_memberref):
21197         Update to changes.
21198
21199         * metadata.c (mono_type_create_from_typespec_full): Ensure that
21200         owner-less generic-parameters are never evicted from the typespec
21201         cache.
21202
21203         * loader.c (method_from_memberref): Don't use the current context
21204         when parsing signatures.
21205         (method_from_methodspec, mono_get_method_from_token): Update to changes.
21206
21207         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
21208         side-effects in g_assert.
21209         * loader.c (mono_get_method_from_token): Resolve klass earlier so
21210         that we don't potentially lose information.
21211
21212 2005-11-26  Dick Porter  <dick@ximian.com>
21213
21214         * icall.c:
21215         * threads.c: icalls to implement basic (ie, not named)
21216         System.Threading.Semaphore.
21217
21218 2005-11-24  Dick Porter  <dick@ximian.com>
21219
21220         * process.c
21221         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
21222         Use GetProcessId() if it's available.
21223
21224 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
21225
21226         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
21227
21228 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21229             Ankit Jain  <jankit@novell.com>
21230
21231         * loader.c (mono_get_method_from_token): Initialize 'method' field
21232         of all generic parameters before parsing the signature.  Remove
21233         code that "fixed"-up MVAR references.
21234
21235 2005-11-23  Ankit Jain  <jankit@novell.com>
21236
21237         * metadata.c (mono_metadata_has_generic_params):
21238         (mono_metadata_load_generic_param_constraints):
21239         (mono_metadata_load_generic_params): Move duplicate code ...
21240         (mono_metadata_get_generic_param_row): ... here. Returns the
21241         first row-id in GenericParam table for a given owner (token).
21242         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
21243         prototype.
21244
21245 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21246             Ankit Jain  <jankit@novell.com>
21247
21248         * metadata.c (mono_metadata_class_equal): Pass signature_only when
21249         comparing VARs too.
21250         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
21251         type->data.generic_param only if the type is an MVAR.
21252         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
21253         leak owner-less VARs and MVARs into managed space.
21254
21255 2005-11-21  Martin Baulig  <martin@ximian.com>
21256
21257         * class-internals.h
21258         (MonoMethod): Moved the `generic_container' here from
21259         `MonoMethodNormal' since we now also need it for
21260         `MonoMethodPInvoke';
21261         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
21262         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
21263         an union containing both `MonoMethodNormal' and
21264         `MonoMethodPInvoke'.
21265
21266         * loader.c
21267         (mono_get_method_from_token): Allow implementing generic methods
21268         as interncalls.
21269
21270         * threads.c
21271         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
21272         icall.
21273
21274 2005-11-17  Dick Porter  <dick@ximian.com>
21275
21276         * icall.c: 
21277         * process.h: 
21278         * process.c: Split the Process Start_internal icall into
21279         ShellExecuteEx_internal and CreateProcess_internal, which are
21280         called depending on whether UseShellExecute is true.  Fixes bug
21281         76670.
21282
21283         * appdomain.c (MONO_CORLIB_VERSION): Incremented
21284
21285 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
21286
21287         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
21288         'msize' parameters, use the information in 'mspec' instead.
21289         (emit_object_to_ptr_conv): Ditto.
21290
21291         * marshal.c (emit_struct_conv): Handle explicit layout structs with
21292         fields out of order. Fixes #76733.
21293
21294 2005-11-17  Ankit Jain  <jankit@novell.com>
21295
21296         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
21297
21298 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
21299
21300         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
21301           bug #76575.
21302
21303 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21304
21305         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
21306         for types with non-auto layout. Fixes #76717.
21307
21308 2005-11-16  Ankit Jain  <jankit@novell.com>
21309
21310         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
21311         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
21312         if generic_context is null.
21313           (mono_metadata_generic_param_equal): param->owner can be null.
21314           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
21315         null.
21316
21317 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21318
21319         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
21320         the correct value.
21321
21322 2005-11-15  Martin Baulig  <martin@ximian.com>
21323
21324         * object.c (set_value): Use mono_class_from_mono_type() instead of
21325         the hack for generic instances; fixes #76136.
21326
21327 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
21328
21329         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
21330         fields.
21331
21332         * image.c (load_metadata_ptrs): Initialize the new fields.
21333
21334         * reflection.c (create_dynamic_mono_image): Ditto.
21335
21336         * reflection.c (build_compressed_metadata): Use the new fields.
21337
21338         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
21339         icall.
21340
21341         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
21342         icall.
21343         
21344 2005-11-15  Ankit Jain  <jankit@novell.com>
21345             Raja R Harinath  <harinath@gmail.com>
21346
21347         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
21348         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
21349         new per-generic_container cache if the cached MonoType's context matches
21350         the current context.
21351           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
21352         to the expected context.
21353           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
21354
21355 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21356
21357         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
21358         we changed the signature of an icall.
21359         * icall.c: Modify to mono_double_ParseImpl return true/false 
21360         depending on the success, instead of throwing the exception. This will
21361         help us in Double.TryParse methods.
21362         
21363 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
21364
21365         * marshal.c (emit_marshal_object): Throw an exception when
21366         marshalling 'object' instead of crashing. Fixes #76696.
21367
21368 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21369
21370         * class-internals.h: Add prototype for mono_type_get_full_name ().
21371
21372 2005-11-11  Dick Porter  <dick@ximian.com>
21373
21374         * threads.c (mono_thread_manage): Make sure the main thread has
21375         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21376
21377 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21378
21379         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21380         console about the missing type.
21381         (mono_loader_set_error_method_load): Ditto.
21382
21383 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21384
21385         * mono-config.c (mono_get_config_dir): Set the system defaults if
21386         none is specified.
21387
21388         * assembly.c (mono_set_dirs): New API entry point to set the
21389         assembly and the config directory in one call
21390
21391 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21392
21393         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21394         the ftnptr was created from a delegate in a domain other than the
21395         current domain. Fixes #75377.
21396
21397         * exception.h exception.c: Add mono_get_exception_not_supported ().
21398
21399 2005-11-08  Martin Baulig  <martin@ximian.com>
21400
21401         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21402
21403 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21404
21405         * security-manager.h: Added definitions to deal with strongname key 
21406         pairs bigger (and smaller) than 1024 bits.
21407         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21408         adjust wrt the public key length being used.
21409
21410 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21411
21412         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21413           Windows build (r51396-51397).
21414
21415 2005-11-03  Martin Baulig  <martin@ximian.com>
21416
21417         * class.c (mono_class_setup_vtable_general): Also add generic
21418         methods to the vtable; fixes #76581.
21419
21420 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21421
21422         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21423         sure that we lookup GetString method from the System.Text.Encoding
21424         class, not the derived class or we get an empty method.
21425
21426         Fixed class #76612.
21427
21428 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21429
21430         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21431         if it has been previously set (embedders). 
21432
21433         Make mono_set_rootdir available also on Unix.
21434
21435 005-10-24  Robert Jordan  <robertj@gmx.net>
21436
21437         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21438
21439 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21440
21441         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21442         only calls which are made to native code use this flag.
21443
21444         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21445
21446 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21447
21448         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21449         Add support for FieldBuilders.
21450
21451 2005-10-29  Martin Baulig  <martin@ximian.com>
21452
21453         * mono-debug.c
21454         (mono_debug_using_mono_debugger): New public method; returns
21455         whether we're running inside the debugger.
21456
21457 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21458
21459         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21460         for Method/Constructor/FieldBuilders.
21461
21462 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21463
21464         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21465         and fields as well.
21466
21467 2005-10-26  Martin Baulig  <martin@ximian.com>
21468
21469         * mono-debug-debugger.c
21470         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21471
21472 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21473
21474         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21475         integer to isspace.
21476
21477 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21478
21479         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21480         when passing valuetypes byref. Fixes #76502.
21481
21482 2005-10-19  Jackson Harper  <jackson@ximian.com>
21483
21484         * profiler.c: Don't put a . in front of types that are not in a
21485         namespace.
21486
21487 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21488
21489         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21490
21491 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21492
21493         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21494         #76436.
21495         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21496
21497 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21498
21499         * assembly.c metadata-internals.h icall.c: Define an additional
21500         parameter for mono_assembly_name_parse_full, so we can avoid creating
21501         S.R.AssemblyName.Version when no version info wasn't passed.
21502         
21503 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21504
21505         * class.c (mono_type_get_full_name): Reimplement method that was
21506         removed. 
21507
21508         * image.c: Some docs
21509
21510 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21511
21512         * profiler.c (output_newobj_profile): Fix printing of Total memory
21513         on x86.
21514
21515 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21516
21517         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21518
21519 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21520
21521         * threads.c: remove debug output.
21522
21523 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21524
21525         * threads.c (mono_thread_manage): Fix crashes if more than 64
21526         threads need to be aborted. Hopefully fixes #75899.
21527
21528         * assembly.c (mono_stringify_assembly_name): New helper function.
21529
21530         * class.c: Use mono_stringify_assembly_name instead of the similar
21531         static function.
21532
21533         * assembly.h assembly.c: Add support for calling a postload search 
21534         hook if an assembly cannot be loaded.
21535
21536         * appdomain.c: Register new search hooks which call the AssemblyResolve
21537         events in AppDomain. Fixes #75231
21538
21539 2005-10-07  Martin Baulig  <martin@ximian.com>
21540
21541         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21542         methods without debug info.
21543
21544 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21545
21546         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21547         wrappers.
21548
21549 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21550
21551         * file-io.c: now that we return symlinks, use lstat and, when the file
21552         is a symbolic link, stat, to get the file attributes. Also avoid the
21553         conversion to/from utf16/external.
21554
21555 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21556
21557         * class.c (mono_class_layout_fields): Compute klass->has_references
21558         correctly if an embedded valuetype is not yet initialized. Fixes
21559         #76331.
21560
21561 2005-10-04  Martin Baulig  <martin@ximian.com>
21562
21563         * metadata.c
21564         (mono_metadata_load_generic_param_constraints): New public
21565         function; splitted the constraints loading out from
21566         mono_metadata_load_generic_params().
21567
21568         * class.c (mono_class_create_from_typedef): Call
21569         mono_metadata_load_generic_param_constraints() after setting up
21570         the type and creating our parent; fixes #75329.
21571
21572 2005-10-04  Martin Baulig  <martin@ximian.com>
21573
21574         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21575         non-dynamic parent classes.
21576
21577 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21578
21579         * file-io.c : win32 build fix (ETXTBSY seems not found).
21580
21581 2005-10-04  Martin Baulig  <martin@ximian.com>
21582
21583         * reflection.c
21584         (mono_image_get_methodspec_token): Make the cache actually work;
21585         fixes #75974.
21586
21587 2005-10-04  Martin Baulig  <martin@ximian.com>
21588
21589         * class.c (mono_class_name_from_token): Removed the unneccessary
21590         `MonoGenericContext *' argument.
21591
21592 2005-10-04  Martin Baulig  <martin@ximian.com>
21593
21594         * loader.c
21595         (method_from_methodspec): Make the caching work again; fixes the
21596         performance regression from #76262.
21597
21598 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21599
21600         * file-io.c:
21601         * file-io.h:
21602         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21603         GetFileSystemEntries that performs the same work but without going
21604         into io-layer, locking, etc.
21605
21606 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21607
21608         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21609         ThreadState_Stopped as well. Fixes #76047.
21610
21611 2005-09-29  Martin Baulig  <martin@ximian.com>
21612
21613         * class.c
21614         (inflate_generic_context): If the new context has a `gmethod', set
21615         its `container' that that gmethod's `container'.
21616
21617         * metadata.c
21618         (mono_metadata_parse_generic_param): Simplify things;
21619         `generic_container = generic_context->container;' is just fine.
21620
21621         * loader.c (method_from_methodspec): Code cleanups.
21622
21623 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21624
21625         * decimal.c: fix warning (and let gcc generate correct
21626         code on ARM with optimizations).
21627
21628 2005-09-28  Martin Baulig  <martin@ximian.com>
21629
21630         * loader.c
21631         (method_from_memberref): Added `MonoGenericContext *class_context'
21632         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21633         (method_from_methodspec): If we're a memberref, use the enclosing
21634         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21635
21636 2005-09-28  Martin Baulig  <martin@ximian.com>
21637
21638         * object.c (mono_runtime_invoke_array): Added support for
21639         MONO_TYPE_GENERICINST; fixes #75917.
21640
21641 2005-09-27  Martin Baulig  <martin@ximian.com>
21642
21643         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21644         `k->byval_arg.type' to determine the actual type.
21645
21646         * loader.c (method_from_methodspec): Removed some hacks.
21647
21648 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21649
21650         * class-internals.h (mono_field_is_deleted): Do the test for
21651         rtspecialname before we check the actual name of the field. This
21652         prevents us from dereferencing a pointer into the string table,
21653         saving us from accessing a few pages
21654
21655         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21656         macros. This will allow a deadlock debugger to easily be plugged
21657         in.
21658
21659 2005-09-27  Martin Baulig  <martin@ximian.com>
21660
21661         * loader.c (method_from_methodspec): Create a "signature"
21662         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21663
21664 2005-09-27  Martin Baulig  <martin@ximian.com>
21665
21666         * class.c
21667         (inflate_generic_class): Correctly set the new context's
21668         container.
21669
21670         * loader.c
21671         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21672         instead of a `MonoGenericContext *'.
21673         (mono_method_signature_full): Take a `MonoGenericContainer *'
21674         instead of a `MonoGenericContext *'.
21675
21676         * metadata.c
21677         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21678         instead of a `MonoGenericContext *'.
21679         (mono_metadata_parse_method_signature_full): Likewise.
21680
21681 2005-09-26  Martin Baulig  <martin@ximian.com>
21682
21683         * class.c
21684         (mono_class_from_generic_parameter): Set `klass->generic_container'
21685         (mono_class_from_generic_parameter): Likewise.
21686         (mono_bounded_array_class_get): We inherit the generic container
21687         from the element class.
21688
21689         * loader.c
21690         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21691         argument rather than computing it here.
21692         (method_from_memberref): Correctly set the generic context before
21693         parsing the signature.  Fixes #75681.
21694
21695 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21696
21697         * object.c (mono_class_has_special_static_fields): Fix warnings.
21698
21699 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21700
21701         * assembly.c: Add parse_public_key function, to
21702         par the public keys. Also added mono_assembly_name_parse_full,
21703         to define it the parsed key should be freed or not.
21704         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21705         to parse a long format assembly name.
21706         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21707         private, since calling it to preserve the key requires
21708         freeing it manually.
21709         
21710 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21711
21712         * locales.c : removed HAVE_ICU part.
21713
21714 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21715
21716         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21717         field_is_special_static if the klass has no special static fields.
21718
21719         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21720         (MonoCachedClassInfo): Likewise.
21721
21722         * object.c (mono_class_has_special_static_fields): New helper function.
21723
21724 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21725
21726         * class.c (mono_class_create_from_typedef): Don't call 
21727         interfaces_from_typedef_full for enums.
21728         (mono_class_create_from_typedef): Compute the base types of enums directly
21729         without calling mono_class_setup_fields ().
21730         (mono_class_find_enum_basetype): New helper function.
21731
21732         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21733         one place inside the string heap.
21734         
21735 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21736
21737         * class.c: locking fixes, code cleanups, some docs added.
21738         Allocate some data structures in the image mempool.
21739
21740 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21741
21742         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21743         the example code.
21744         
21745 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21746
21747         * class-internals.h, class.c, reflection.c: reduce memory taken by
21748         MonoClass.
21749
21750 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21751
21752         * metadata.c, metadata.h, loader.h: documentation updates, code and
21753         API cleanups.
21754
21755 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21756
21757         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21758         the example code.
21759
21760         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21761         page faults caused by the runtime while reading metadata.
21762
21763 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21764
21765         * socket-io.c: the field names were changed 3 months ago and no one
21766         realized until bug #76077 got filed!
21767
21768 2005-09-20  Martin Baulig  <martin@ximian.com>
21769
21770         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21771
21772 2005-09-20  Martin Baulig  <martin@ximian.com>
21773
21774         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21775         write the rank into the class entry.
21776
21777 2005-09-20  Martin Baulig  <martin@ximian.com>
21778
21779         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21780
21781 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21782
21783         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21784
21785         * icall.c (custom_attrs_defined_internal): New icall.
21786
21787         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21788         function.
21789         (mono_custom_attrs_construct_by_type): New helper function.
21790
21791 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21792
21793         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21794         terminate the resulting string. Fixes #76123.
21795
21796 2005-09-16  Martin Baulig  <martin@ximian.com>
21797
21798         * mono-debug.c
21799         (mono_debug_add_method): Ignore inflated methods for the moment.
21800
21801 2005-09-14  Martin Baulig  <martin@ximian.com>
21802
21803         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21804
21805 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21806
21807         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21808         return a success/failure indication.
21809         (mono_metadata_interfaces_from_typedef_full): Ditto.
21810         (get_constraints): Ditto.
21811
21812 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21813
21814         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21815         
21816         * marshal.c (emit_marshal_array): Add support for returning string
21817         arrays from delegates. Fixes #76063.
21818
21819         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21820
21821 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21822
21823         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21824         icall.
21825
21826 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21827
21828         * reflection.c icall.c: Fix after mono_get_exception_type_load
21829         signature change.
21830
21831         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21832         (mono_assembly_load_reference): Use the new helper.
21833
21834         * class-internals.h (MonoLoaderError): New structure containing 
21835         information about type loading errors.
21836
21837         * class-internals.h loader.c: Add APIs to store per-thread loader
21838         error information.
21839
21840         * loader.c class.c: Set the loader error if needed.
21841
21842         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21843
21844 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21845
21846         * decimal.c: fixed to handle the broken ARM fp format.
21847
21848 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21849
21850         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21851         broken.
21852
21853 2005-09-06  Martin Baulig  <martin@ximian.com>
21854
21855         * domain.c (supported_runtimes): Added v2.0.50727.
21856
21857 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21858
21859         * culture-info.h: reduce the size of some structures.
21860
21861 2005-09-05  Martin Baulig  <martin@ximian.com>
21862
21863         Reflect latest API changes in the August CTP.
21864
21865         * icall.c
21866         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21867         ("MonoType.HasGenericArguments"): Removed.
21868         ("MonoMethod.BindGenericParameters"): Renamed to
21869         "MakeGenericMethod".
21870         ("MethodBuilder.BindGenericParameters"): Renamed to
21871         "MakeGenericMethod".    
21872
21873 2005-09-05  Martin Baulig  <martin@ximian.com>
21874
21875         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21876
21877 2005-09-05  Martin Baulig  <martin@ximian.com>
21878
21879         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21880
21881         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21882         generic_container is non-NULL.
21883
21884 2005-09-05  Martin Baulig  <martin@ximian.com>
21885
21886         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21887
21888         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21889
21890 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21891
21892         * reflection.c (encode_locals,
21893         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21894         for large generic types.
21895
21896 2005-09-05  Martin Baulig  <martin@ximian.com>
21897
21898         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21899
21900         * class.c (mono_dup_array_type): New public method.
21901         (mono_metadata_signature_deep_dup): New public method.
21902         (dup_type): Correctly duplicate array and function types.
21903
21904 2005-09-05  Martin Baulig  <martin@ximian.com>
21905
21906         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21907
21908         * reflection.c (get_default_param_value_blobs): Handle generic types
21909         and generic methods.
21910
21911 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21912
21913         * class.c: Fixed error reporting (method/class were inversed) for 
21914         inheritance demands.
21915         * security-manager.c|h: Added the AppDomain when calling the managed
21916         System.Security.SecurityManager.InheritanceDemand method.
21917
21918 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21919
21920         * reflection.c (encode_marshal_blob): 'marshaltype' and
21921         'marshaltyperef' are alternate sources for the custom marshaler
21922         name.
21923
21924 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21925
21926         * class.c: fix creation of array classes with rank == 1
21927         (patch by Ankit Jain <jankit@novell.com>).
21928
21929 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21930
21931         * object.c: fix check for creating the bound data for arrays vs
21932         szarrays.
21933
21934 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21935
21936         * object.c: configuration file name is now based on the executable name,
21937         not the image name. Fixes bug #75931.
21938
21939 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21940
21941         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21942         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21943
21944 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21945
21946         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21947
21948 2005-08-24  Ankit Jain  <jankit@novell.com>
21949             Raja R Harinath  <rharinath@novell.com>
21950
21951         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21952           called by it recursively.
21953           (mono_class_init): Remove special case in pending_init handling, since it's
21954           superseded by the fix to mono_class_from_typeref.
21955
21956 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21957
21958         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21959         BROKEN_THREAD_START stuff.
21960
21961 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21962
21963         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21964         trampoline.
21965
21966         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21967         
21968         * object.c (mono_delegate_ctor): Replace the original function address with
21969         a delegate trampoline.
21970
21971 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21972
21973         * icall.c: add boolean argument to base64_to_byte_array and 
21974         InternalFromBase64String to control whether a whitespace-only string
21975         is allowed (or should casue a FormatException to be thrown). We need
21976         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21977         to match the MS behaviour in both profiles.
21978         * appdomain.c: Bump corlib version.
21979
21980 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21981
21982         This patch implements a big portion of publisher policy
21983         support, used to bind assembly versions and redirect
21984         one assembly from version A to version B.
21985
21986         * assembly.c:
21987         New GSList loaded_assembly_bindings, for storing the cached
21988         assembly bindings.
21989         (assembly_binding_maps_name): New static function for checking if a 
21990         assembly binding information maps an assembly name.
21991         (mono_assembly_binding_info_free): New function for freeing
21992         assembly binding information resources.
21993         (get_publisher_policy_info): New static function for retrieving 
21994         assembly binding information from a MonoImage.
21995         (compare_versions): New static function for comparing an assembly
21996         binding information data and the version of an assembly name.
21997         (check_policy_versions): New static function for checking if an
21998         assembly binding info mapping an assembly name is valid for it.
21999         (mono_assembly_load_publisher_policy): New static function for
22000         loading the 'policy.major.minor.MyAssembly' image for an assembly
22001         with an assembly name 'aname'.
22002         (mono_assembly_bind_version): New static function for updating
22003         assembly redirection.
22004         (mono_assembly_apply_binding): New static function for applying
22005         assembly binding.
22006         (search_binding_loaded): New static function for searching 
22007         loaded assembly binding infos in the cache domain.
22008         (mono_assembly_load_full): Don't apply assembly binding for
22009         reflection only assemblies.
22010
22011         * metadata-internals.h: Add MonoAssemblyBindingInfo,
22012         which contains information about assembly binding. Also
22013         declare signature for mono_config_parse_publisher_policy ()
22014         function, used to retrieve pub policy info.
22015         
22016         * mono-config.c:
22017         (publisher_policy_start): New static function used to parse publisher 
22018         policy config files.
22019         (publisher_policy_parser): New static MonoParseHandler containing 
22020         the functions used when parsing config files.
22021         (mono_config_parse_publisher_policy): New function for parsing
22022         publisher policy files.
22023         
22024 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
22025
22026         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
22027
22028         * marshal.c (mono_delegate_free_ftnptr): Ditto.
22029
22030         * object.c (mono_get_addr_from_ftnptr): New helper function.
22031
22032         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
22033
22034         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22035
22036 2005-08-19  Dick Porter  <dick@ximian.com>
22037
22038         * threads.c, threads.h, appdomain.c, appdomain.h,
22039         profiler-private.h, monitor.c, object.c, object-internals.h,
22040         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
22041         store the thread ID, so it can hold a 64 bit value if needed.
22042
22043 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
22044
22045         * reflection.c (mono_reflection_create_dynamic_method): Store the
22046         handle class into the method references as well so ldtoken works in
22047         dynamic methods.
22048
22049         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
22050         types.
22051
22052 2005-08-19  Ankit Jain <jankit@novell.com>
22053
22054         Fix #75847.
22055         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
22056           here rather than using the method signature of a arbitrary function
22057           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
22058           two arguments.
22059           Hack done with Harinath.
22060
22061 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22062
22063         * threadpool.c: disable printing stack traces when we get a exception
22064         in a threadpool thread. I need to do more testing to figure out which
22065         cases actually print this. Fixes bug #75828.
22066
22067 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22068
22069         * icall.c: there might be ignored whitespace after the last '='. This
22070         fixes length computation and bug #75840.
22071
22072 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
22073
22074         * assembly.c (mono_assembly_load_full): Consider .exe extension as
22075         well. Fixes #75809.
22076
22077         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
22078         #75784.
22079         
22080         * reflection.c (create_custom_attr_data): Ditto.
22081
22082 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
22083
22084         * locales.c, culture-info.h : removed RegionLCIDMap.
22085         * culture-info-tables.h : regenerated.
22086
22087 2005-08-16  Martin Baulig  <martin@ximian.com>
22088
22089         * class.c (mono_type_get_name_recurse): Small fix.
22090
22091 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
22092
22093         * locales.c : indentation fixie.
22094
22095 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
22096
22097         * object-internals.h,
22098           locales.h,
22099           locales.c,
22100           culture-info.h,
22101           icall.c : added RegionInfo table support.
22102         * culture-info-table.h : regenerated for region support.
22103
22104 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
22105
22106         * reflection.c (resolve_object): handle all kinds of MonoMethod
22107         including generic ones
22108
22109 2005-08-12  Ankit Jain <jankit@novell.com>
22110
22111         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
22112           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
22113
22114 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
22115
22116         * process.c: Don't close a thread handle when it's NULL. This is a
22117         workaround for bug #75733.
22118
22119 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
22120
22121         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
22122
22123 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
22124
22125         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
22126
22127 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22128
22129         * threadpool.c: if a work item in the thread pool has a callback that
22130         catches a exception, don't propagate it after invoking the callback.
22131         Fixes bug #75336.
22132
22133 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
22134
22135         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
22136
22137         * class-internals.h (MonoCachedClassInfo): Add some new fields.
22138
22139         * class.c (mono_class_init): Load field info lazily in the AOT case.    
22140
22141         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
22142
22143 2005-08-03  Ankit Jain  <jankit@novell.com>
22144
22145         Fix #75683.
22146         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
22147           PInvoke calling convention is 0.
22148
22149 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
22150
22151         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
22152         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
22153
22154 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
22155
22156         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
22157         to handle threads not started by the GC (patch by Michael Meeks
22158         <michael.meeks@novell.com>).
22159
22160 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
22161
22162         * reflection.c: Make buffer used in emitting types larger for some
22163         big generic types (patch by Michal Moskal).
22164
22165 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
22166
22167         * mono-debug.c: Fix some (not all) alignment problems.
22168
22169 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22170
22171         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
22172         Invoke mono_image_load_from_data_full passing the refonly
22173         parameter.
22174
22175         * assembly.c
22176         (mono_assembly_open_from_bundle): Add the refonly argument, 
22177         in order to pass it to other methods it calls to.
22178         (do_mono_assembly_open): Add the refonly argument, in order 
22179         to pass it to other methods it calls to.
22180         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
22181         the refonly parameter to it.
22182
22183         * image.c: Add loaded_images_refonly_hash and
22184         loaded_images_refonly_guid_hash to cache the reflection
22185         only loaded images.
22186         (mono_images_init): Initialize the hash tables used for
22187         caching the reflection only images.
22188         (load_modules): Invoke mono_image_open_full passing the refonly
22189         parameter to load the modules the correct way.
22190         (build_guid_table): Add the refonly argument, to re-build the 
22191         correct hash table.
22192         (do_mono_image_open): Added the refonly argument, in order to
22193         define it for the loaded image.
22194         (mono_image_loaded_full): New function, which receives an
22195         additional parameter to look for the image in the refonly or
22196         non-refonly section.
22197         (mono_image_loaded): Updated, using mono_image_loaded_full.
22198         (mono_image_loaded_by_guid_full): The same case that happens
22199         with mono_image_loaded_full.
22200         (mono_image_loaded_by_guid): Likewise.
22201         (register_image): Use the ref_only variable inside MonoImage
22202         to decide in which hash table store the current image.
22203         (mono_image_open_from_data_full): Rename
22204         mono_image_open_from_data to mono_image_open_from_data_full,
22205         adding the refonly argument, to define the ref_only variable 
22206         inside MonoImage.
22207         (mono_image_open_from_data): Return 
22208         mono_image_open_from_data_full.
22209         (mono_image_open_full): Rename mono_image_open to
22210         mono_image_open_full, receiving the new refonly argument,
22211         to pass it to inner methods.
22212         (mono_pe_file_open): Update this function, to open
22213         a MonoImage as a non-refonly image.
22214         (mono_image_close): Use the refonly variable inside
22215         MonoImage to remove the image from the correct caches.
22216
22217         * image.h: Add the signatures of mono_image_open_full,
22218         mono_image_open_from_data_full, mono_image_loaded_full,
22219         mono_image_loaded_by_guid_full.
22220
22221         * metadata-internals.h: Add the ref_only field to 
22222         MonoImage.
22223         
22224 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22225
22226         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
22227         Fix the last behavior, which used to load the assemblies and
22228         extract MonoReflectionAssemblyName information, instead of
22229         extract it from the metadata tables. Needed for Reflection
22230         Only assemblies.
22231         
22232 2005-07-29  Martin Baulig  <martin@ximian.com>
22233
22234         * mono-debug-debugger.c
22235         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
22236         not initialized.
22237
22238         * mono-debug.c
22239         (mono_debug_address_from_il_offset): Check whether we have
22240         debugging support before attempting to take the lock.
22241         (mono_debug_source_location_from_address): Likewise.
22242         (mono_debug_source_location_from_il_offset): Likewise.
22243         (mono_debug_il_offset_from_address): Likewise.
22244         (mono_debug_address_from_il_offset): Likewise.
22245
22246 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
22247
22248         * class.c (mono_class_from_name_case): Add support for dynamic images.
22249         Fixes #75650.
22250
22251         * object.c (mono_class_compute_gc_descriptor): Add a workaround
22252         for #75479.
22253
22254 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22255         
22256         * reflection.c (mono_method_get_object): Fix warning.
22257
22258 2005-07-28  Martin Baulig  <martin@ximian.com>
22259
22260         * mono-debug.c
22261         (mono_debug_add_wrapper): Also write the wrapper type.
22262
22263 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22264
22265         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
22266         
22267         * class.c (mono_class_init): Avoid reading nested classes if the AOT
22268         data indicates the class has none.
22269
22270 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
22271
22272         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
22273         loader lock with the debugger lock. Prevents deadlocks for beagle.
22274
22275         Beagle can now run on an smp box for a weekend without any
22276         issues. Woohoo!
22277
22278 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
22279
22280         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
22281         in a module. Fixes #75629.
22282
22283 2005-07-26  Martin Baulig  <martin@ximian.com>
22284
22285         * mono-debug.c (mono_debug_add_wrapper): New static method.
22286         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
22287         interncall or a wrapper.
22288
22289         * mono-debug.h (MonoDebugWrapperData): New public typedef.
22290         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
22291         (MONO_DEBUGGER_VERSION): Bump to 51.
22292
22293         * mono-debug-debugger.c
22294         (mono_debugger_add_type): Removed this empty function.
22295         (mono_debugger_add_method): Likewise.
22296
22297 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
22298
22299         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
22300         before accessing method->slot.
22301
22302 2005-07-21  Jb Evain  <jbevain@gmail.com>
22303
22304         * reflection.c (method_encode_clauses/class): Handle filters clauses.
22305         Fixes #75010.
22306
22307 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
22308
22309         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
22310         #75587.
22311
22312 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
22313
22314         * image.h image.c: Add mono_image_get_guid () API function.
22315
22316 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
22317
22318         There were issues when multiple threads tried to load
22319         assemblies. A deadlock was created between assemblies_mutex and
22320         mono_domain_assemblies_lock. This fixes the issue by making the
22321         assembly ref counting be lock free. See bug 75586.
22322         
22323         * image.c (mono_image_close): The add ref function here was using
22324         Interlocked operations while the unref was using a mutex and a
22325         --. I don't think this was ever a bug that would be exposed in a
22326         non-pendantic way (ie, by an embedder doing a ref on one thread
22327         and an unref on another), but for the sake of correctness, this is
22328         now Interlocked.
22329
22330         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
22331         (mono_assembly_load_reference): Call mono_assembly_addref rather
22332         than touching the refcount ourselves.
22333         (mono_assembly_close): Use InterlockedDecrement to unref the
22334         assembly. Don't acquire the lock unless it is actually needed.
22335
22336 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22337
22338         * class.c (mono_class_layout_fields): Fix calculation of has_references
22339         for generic types.
22340
22341 2005-07-12  Martin Baulig  <martin@ximian.com>
22342
22343         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22344
22345         * metadata.c
22346         (mono_type_hash): Provide better hashing for generic instances.
22347         (mono_generic_inst_hash): Improve hashing.
22348         (mono_generic_class_hash): Likewise.
22349
22350         * reflection.c (mymono_metadata_type_hash): Improve hashing for
22351         generic instances.
22352
22353 2005-07-12  Martin Baulig  <martin@ximian.com>
22354
22355         * reflection.c (mono_reflection_create_runtime_class): Remove the
22356         hack for generic type definitions and non-`Run' assemblies.
22357         (mono_reflection_bind_generic_parameters): Also use
22358         `klass->wastypebuilder' to check for TypeBuilders.
22359
22360 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22361
22362         * class.c (mono_class_layout_fields): Fix calculation of has_references
22363         for generic types.
22364
22365         * class.c (inflate_generic_class): Fix a leak.
22366         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
22367         for generic types.
22368
22369 2005-07-11  Martin Baulig  <martin@ximian.com>
22370
22371         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22372         on error.
22373
22374 2005-07-11  Martin Baulig  <martin@ximian.com>
22375
22376         * loader.c (find_method): Also lookup in
22377         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22378
22379 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22380
22381         * appdomain.c (mono_domain_unload): Don't free the error message
22382         before passing it to mono_get_exception_...
22383
22384         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22385         
22386 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22387
22388         * threads.c: try to better guess an available RT signal (bug #75387).
22389
22390 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22391
22392         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22393         and CACHE_OBJECT.
22394
22395 2005-07-07  Martin Baulig  <martin@ximian.com>
22396
22397         * class.c (mono_type_get_name_full): Return NULL for
22398         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22399         fixes #75408.
22400
22401 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22402
22403         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22404         exit the appdomain as well being aborted.
22405
22406         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22407         change back to the root domain after calling managed code. This enables
22408         appdomains using threadpools to be unloaded.
22409
22410 2005-07-07  Martin Baulig  <martin@ximian.com>
22411
22412         * class-internals.h
22413         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22414         into `MonoDynamicGenericClass' since we only need it for dynamic
22415         types.
22416
22417         * reflection.c (mono_class_bind_generic_parameters): We don't need
22418         to compute the `parent' here.
22419
22420 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22421
22422         * culture-info-table.h : regenerated.
22423
22424 2005-07-06  Martin Baulig  <martin@ximian.com>
22425
22426         * icall.c
22427         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22428
22429         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22430
22431 2005-07-06  Martin Baulig  <martin@ximian.com>
22432
22433         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22434         we're doing a signature-only comparision; fixes #74945.
22435
22436 2005-07-06  Martin Baulig  <martin@ximian.com>
22437
22438         * class-internals.h (MonoGenericClass): Moved some things out into
22439         a new `MonoInflatedGenericClass' type.  
22440         (MonoInflatedGenericClass): New type; the `klass' of a
22441         `MonoGenericClass' is now computed lazyly in
22442         mono_get_inflated_generic_class().      
22443
22444         * class.c (mono_get_inflated_generic_class): New public function.
22445         (mono_class_inflate_generic_method): Removed the unused
22446         `MonoClass *' argument.
22447         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22448         all the methods.
22449         (mono_class_create_generic): Make this static and merge it with
22450         mono_class_create_generic_2(); we're now called automatically from
22451         mono_get_inflated_generic_class().
22452
22453         * loader.c (mono_method_signature): Call
22454         mono_get_inflated_method() here.
22455
22456 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22457
22458         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22459         type of fields with RVA.
22460
22461         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22462         for this pseudo class.
22463         (my_mono_class_from_generic_parameter): Likewise.
22464         (mono_class_init): Allow interfaces to have cctors.
22465
22466 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22467
22468         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22469         lazily for AOT methods.
22470
22471 2005-07-05  Martin Baulig  <martin@ximian.com>
22472
22473         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22474         returns FALSE for a successful match, not TRUE.
22475
22476 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22477
22478         * loader.c (mono_method_get_index): Optimize this a bit.
22479
22480 2005-07-04  Martin Baulig  <martin@ximian.com>
22481
22482         * class.c
22483         (class_compute_field_layout): Move the check for generic type
22484         definitions into mono_class_layout_fields().  Fixes #74684.
22485         (mono_class_from_generic_parameter): Correctly compute
22486         `klass->parent'; fixes #75457.
22487
22488         * reflection.c (register_assembly, register_module): Make sure
22489         `domain->rejobject_hash' is already created.
22490
22491 2005-07-02  Martin Baulig  <martin@ximian.com>
22492
22493         * class-internals.h
22494         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22495         `MonoDynamicGenericClass'.      
22496
22497 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22498
22499         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22500         returned by a field getter is null, since null is a valid value.
22501
22502 2005-07-01  Martin Baulig  <martin@ximian.com>
22503
22504         * reflection.c (mono_reflection_generic_class_initialize): Update
22505         the `dgclass->fields [i].parent' to the correct class.
22506         (mono_image_get_fieldref_token): Use the declaring type, not the
22507         reflected type.
22508
22509 2005-07-01  Martin Baulig  <martin@ximian.com>
22510
22511         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22512
22513 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22514
22515         * threads.c (thread_cleanup): assert that thread != NULL
22516         (wait_for_tids_or_state_change): We were using the wrong variable
22517         when accessing wait->threads. `i' was always out of the bounds of
22518         the array.
22519
22520 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22521
22522         * loader.c: map user32 and kernel32 to libMonoSupportW
22523
22524 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22525
22526         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22527
22528 2005-06-28  Martin Baulig  <martin@ximian.com>
22529
22530         * loader.c (method_from_methodspec): Fix #75334.
22531
22532 2005-06-28  Martin Baulig  <martin@ximian.com>
22533
22534         Fix #74953 - Arrays now implement the generic IList<T> interface
22535         on the 2.0 platform.
22536
22537         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22538
22539         * reflection.c (mono_class_bind_generic_parameters): New public
22540         function; similar to mono_reflection_bind_generic_parameters(),
22541         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22542
22543         * domain.c (mono_init_internal): Try to initialize.
22544         `mono_defaults.generic_array_class' here; this'll only succeed if
22545         we're using the 2.0 corlib.
22546
22547         * icall.c
22548         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22549         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22550         (mono_lookup_internal_call): Added support for nested classes.
22551
22552         * loader.c
22553         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22554         we're an interncall and have generic arguments.
22555
22556         * class.c
22557         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22558         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22559         instance of System.Array.InternalArray<T> for arrays, so they
22560         implement the generic IList<T> interface.
22561
22562 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22563
22564         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22565         (chastamar@yahoo.com). Fixes #75374.    
22566
22567 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22568
22569         * culture-info-table.h: regenerated.
22570
22571 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22572
22573         * icall.c: handle spaces correctly for base64 strings.
22574
22575 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22576
22577         * *.c: Kill some warnings.
22578
22579 2005-06-23  Duncan Mak  <duncan@novell.com>
22580
22581         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22582         that this builds on Solaris 10 (x86).
22583
22584 2005-06-23  Martin Baulig  <martin@ximian.com>
22585
22586         * class.c
22587         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22588         generic type definitions.
22589
22590 2005-06-23  Martin Baulig  <martin@ximian.com>
22591
22592         Fix #75331.
22593
22594         * metadata.c (mono_class_get_overrides): Renamed to
22595         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22596         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22597         pass it to mono_get_method_full().
22598
22599 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22600
22601         * reflection.c (mono_reflection_create_runtime_class): take the
22602         mono_domain_lock in this method. Prevents deadlocks
22603
22604 2005-06-22  Martin Baulig  <martin@ximian.com>
22605
22606         * loader.c (method_from_methodspec): Fix #75330.
22607
22608 2005-06-22  Martin Baulig  <martin@ximian.com>
22609
22610         * reflection.c (type_get_qualified_name): Use
22611         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22612         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22613         argument; use it if we don't have an assembly name.
22614
22615 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22616
22617         * object.c: In mono_message_init, set "copy out" flag for in
22618         parameters with the [Out] flag.
22619
22620 2005-06-21  Martin Baulig  <martin@ximian.com>
22621
22622         * class.c
22623         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22624         and MONO_TYPE_PTR.
22625
22626 2005-06-21  Martin Baulig  <martin@ximian.com>
22627
22628         * class.c (mono_class_init): Don't initialize `class->fields' for
22629         generic instances since they're initialized again in
22630         compute_field_layout(). 
22631         (compute_field_layout): Set the field's `generic_info' here; fix
22632         #75320. 
22633
22634 2005-06-21  Martin Baulig  <martin@ximian.com>
22635
22636         * class-internals.h
22637         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22638
22639         * metadata.c (mono_metadata_generic_method_equal): Also
22640         distinguish the `generic_class'; fixes #75334.
22641
22642 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22643
22644         * domain.c:
22645         * appdomain.c:
22646         * domain-internals.h:
22647         * reflection.c: 'domain_assemblies' field is now protected by its own
22648         lock. Don't call into managed code to run the AssemblyLoad event if we
22649         now there are no registered delegates for it.
22650
22651 2005-06-20  Martin Baulig  <martin@ximian.com>
22652
22653         * class.c (mono_class_is_assignable_from): Use a custom version of
22654         mono_class_has_parent() to make things work for generic instances;
22655         fix #75300.
22656
22657 2005-06-20  Martin Baulig  <martin@ximian.com>
22658
22659         * loader.c (method_from_methodspec): Apply a patch from
22660         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22661
22662 2005-06-20  Martin Baulig  <martin@ximian.com>
22663
22664         * class.c (mono_class_init): Reverted Zoltan's last change; it
22665         breaks generics.
22666
22667 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22668
22669         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22670
22671 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22672
22673         * socket-io.c: fix the index in the socket array for writable/error
22674         sockets. Fixes bug #75306.
22675
22676 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22677
22678         * class.c (mono_class_init): Allow interfaces to have static ctors.
22679
22680 2005-06-17  Martin Baulig  <martin@ximian.com>
22681
22682         * loader.c (method_from_methodspec): Use `context->container' when
22683         parsing the `gmethod->inst'.
22684
22685 2005-06-17  Martin Baulig  <martin@ximian.com>
22686
22687         * class.c (mono_type_get_name_recurse): Don't add the assembly
22688         name for type arguments.
22689
22690 2005-06-15  Martin Baulig  <martin@ximian.com>
22691
22692         * reflection.c (mono_image_get_inflated_method_token): Encode
22693         correct klass; fixes #75260.
22694
22695 2005-06-13 Michal Moskal <malekith@nemerle.org>
22696
22697         * icall.c: Make GetCorrespondingMethod/Constructor take
22698         MonoReflectionMethod method not MonoMethod. Removed
22699         MonoType.GetCorrespondingField, and make
22700         MonoGenericType.GetCorrespondingField take name not
22701         MonoClassField.
22702
22703 2005-06-13  Michal Moskal <malekith@nemerle.org>
22704
22705         * reflection.c (field_encode_signature, encode_locals):
22706          Make sizes of buffers for types larger (for big generic types).
22707          (create_generic_typespec,
22708          mono_reflection_sighelper_get_signature_local,
22709          mono_reflection_sighelper_get_signature_field):
22710          Add asserts for too small buffers.
22711
22712 2005-06-15  Martin Baulig  <martin@ximian.com>
22713
22714         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22715         if our parent is not a dynamic type.
22716
22717 2005-06-15  Martin Baulig  <martin@ximian.com>
22718
22719         * class-internals.h (MonoTypeNameFormat): New enum.
22720
22721         * class.c
22722         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22723         (mono_type_get_full_name): Removed.
22724         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22725         argument instead of the boolean's.
22726
22727         * icall.c (ves_icall_System_MonoType_getFullName):
22728         Added `gboolean assembly_qualified'.    
22729
22730         * reflection.h
22731         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22732
22733         * reflection.c (mono_reflection_parse_type): Parse the new type
22734         name format.
22735
22736 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22737
22738         * icall.c: no need to convert from utf16 to utf8 and then back again
22739         after the call to GetLogicalDrives.
22740
22741 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22742
22743         * icall.c: frombase64. Fix problems exposed by new tests.
22744
22745 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22746
22747         * icall.c: added internal calls for converting char [] and strings in
22748         base64 into byte [].
22749
22750 2005-06-10  Martin Baulig  <martin@ximian.com>
22751
22752         * class.c (mono_class_create_generic_2): Read the nested classes
22753         from the metadata rather than from `gklass->nested_classes' since
22754         `gklass' might not be initialized yet.
22755
22756 2005-06-09  Duncan Mak  <duncan@novell.com>
22757
22758         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22759         all public headers. Fixes #74919.
22760
22761 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22762
22763         * domain.c: The key for proxy_vtable_hash is now a pointer
22764         array. Added new GHashFunc and GCompareFunc functions for this.
22765
22766         * class.h: The list of interfaces in MonoRemoteClass is known in
22767         advance and can't grow (we create a new MonoRemoteClass if needed),
22768         so now the interface array can be allocated together with
22769         MonoRemoteClass.
22770         
22771         * object.c: Added a new method create_remote_class_key.
22772         Fixed mono_remote_class so it does not depend on
22773         mono_upgrade_remote_class.
22774         Removed extend_interface_array.
22775         Added new method clone_remote_class(), which makes a copy of a remote
22776         class and adds a new interface or class to it.
22777         mono_upgrade_remote_class() now creates a new remote class (or gets
22778         it from the cache) if an vtable upgrade is needed. In this way
22779         we make sure that other objects sharing the same remote class
22780         don't get the new vtable with unwanted interfaces.
22781         
22782         * object-internals.h:
22783         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22784         
22785         * marshal.c: Track changes in mono_upgrade_remote_class().
22786
22787 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22788         * icall.c: Add runtime methods for obtaining members of inflated
22789         class, which were created from supplied non-inflated members. It
22790         is used in internal Get{Method,Constructor,Field} methods in
22791         System.Type
22792
22793 2005-06-09  Martin Baulig  <martin@ximian.com>
22794
22795         * reflection.c
22796         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22797
22798 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22799         * reflection.c (mono_image_basic_init): Define
22800         Version in MonoDynamicAssembly. 
22801         
22802 2005-06-08  Martin Baulig  <martin@ximian.com>
22803
22804         Fix #75136.
22805
22806         * loader.c
22807         (mono_method_signature_full): New public method; takes a
22808         `MonoGenericContext *'.
22809         (find_method): Use mono_method_signature_full() and pass the
22810         klass'es context to it.
22811
22812         * class.c (mono_class_is_inflated_method): Use
22813         mono_method_signature_full() and pass the context to it.
22814
22815 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22816
22817         * object.c: add proper locking in mono_remote_class_vtable(),
22818         fixes possible memory corruption.
22819
22820 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22821
22822         * marshal.c (mono_remoting_marshal_init): set
22823         initialized after initialization.
22824
22825 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22826
22827         * locales.c : hush.
22828
22829 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22830
22831         * object.c (extend_interface_array): fix really silly
22832         memory corrupting / comparison bug.
22833
22834 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22835
22836         * reflection.c: Functions added to support the creation
22837         of CustomAttributeData, which includes Attribute data
22838         used by ReflectionOnly methods.
22839
22840         * reflection.h:  mono_reflection_get_custom_attrs_data and
22841          mono_custom_attrs_data_construct added (functions exposed).
22842
22843          * icall.c: Added mono_reflection_get_custom_attrs_data
22844          as icall.
22845         
22846 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22847
22848         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22849         lupus's request.
22850
22851 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22852
22853         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22854
22855         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22856         dynamic DllImportAttribute.
22857
22858         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22859         dynamic DllImportAttribute.
22860
22861         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22862         Fixes #75162.
22863
22864 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22865
22866         * threads.c: avoid segfault when an unstarted thread is aborted.
22867
22868 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22869
22870         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22871         Returns the name and version of the runtime for reporting.
22872
22873 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22874
22875         * appdomain.c: bump corlib version.
22876         * object-internals.h: new field in MonoReflectionAssembly.
22877
22878 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22879
22880         * object-internals.h: Carlos forgot to add this field.
22881
22882 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22883
22884         * icall.c: Added create_version to create instances
22885         of Version of MonoReflectionAssemblyName. This change helps
22886         the AssemblyName tests to keep running fine.
22887         
22888 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22889   
22890         * object.c (mono_method_return_message_restore): A somehow less
22891         intrusive fix for #75138.
22892
22893 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22894
22895         * object.c (mono_method_return_message_restore): Fix computation
22896         of expected number of out args.
22897
22898 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22899
22900         * reflection.c (mono_image_get_method_info): Fix the case when the
22901         charset is empty.
22902
22903 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22904
22905         * object.c: Added missing null check in
22906           mono_method_return_message_restore.
22907
22908 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22909
22910         * reflection.c (mono_image_get_method_info): Handle the case when
22911         dllentry is empty.
22912
22913 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22914
22915         * object.c: When creating the vtable for a proxy, take into account
22916         all inherited interfaces, not only the ones registered in
22917         iclass->interfaces. This fixs bug #74996.
22918         Also, in mono_method_return_message_restore, verify that the array
22919         of out args has the expected lengh.
22920
22921 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22922
22923         * socket-io.c: update the timeout in Poll when the call is interrupte.
22924
22925 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22926
22927         * socket-io.c: support abort/suspend in Select_internal after last
22928         change.
22929
22930 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22931
22932         * threadpool.c: remove warning.
22933
22934 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22935
22936         * icall.c:
22937         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22938         removing the 1024 limit from select(). Runtime part of the fix for
22939         bug #71203.
22940
22941 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22942
22943         * socket-io.c: when resolving the addresses for the same
22944         host returned by gethostname(), get the local IPs from the interface
22945         list. Loopback addresses are discarded if the are interfaces up with
22946         non-loopback ones. Fixes bug #63265.
22947
22948 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22949
22950         * appdomain.c, verify.c, object-internals.h, reflection.c:
22951         bumped corlib number to 36, and added new extra_flags field
22952         to ReflectionMethodBuilder and friends.  Fixes #75060.
22953
22954 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22955
22956         * gc.c: register a new weak link only if the object is non-null
22957         (fixes bug#75047).
22958
22959 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22960
22961         * culture-info.h : short time pattern too.
22962
22963 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22964
22965         * culture-info.h : expand long time pattern string length.
22966
22967 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22968
22969         * culture-info-table.h : update (more French date format; #72788).
22970
22971 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22972
22973         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22974         the method is static. Fixes #75029.
22975
22976 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22977
22978         * reflection.c: Update the table_idx field of method builders after
22979         saving the module, since it can change. This is a workaround for
22980         bug #74914. 
22981
22982 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22983
22984         * culture-info-table.h : update (additional French date format).
22985
22986 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22987
22988         * icall.c (ves_icall_type_Equals): Revert last change.
22989         
22990         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22991
22992         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22993
22994 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22995
22996         * class-internals.h: Added executioncontext_class field to 
22997         MonoDefaults structure.
22998         * domain.c: Cache System.Threading.ExecutionContext class in 
22999         mono_defaults.
23000         * object.c: Capture the ExecutionContext for asynchroneous calls in
23001          mono_async_result_new.
23002         * object-internals.h: Added execution_context and original_context 
23003         fields to MonoAsyncResult. Added execution_context to MonoThread.
23004         * security-manager.c|.h: Added mono_get_context_capture_method to 
23005         return the capture method (if required by the security manager or by
23006         the framework version used).
23007         * threadpool.c: Apply capture (if present) ExecutionContext in 
23008         mono_async_invoke and revert to original context after it completes.
23009
23010 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
23011
23012         * culture-info-table.h : updated (real hacky solution for zh-CHT).
23013
23014 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
23015
23016         * culture-info-table.h : zh-CHT related workaround.
23017
23018 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23019
23020         * marshal.c (emit_marshal_custom): Add some error checking and call the
23021         methods in the ICustomMarshaler interface. Fixes #74875.
23022         
23023         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
23024         native->managed wrappers.
23025
23026 2005-05-12  Martin Baulig  <martin@ximian.com>
23027
23028         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
23029         here and use the loader lock.
23030
23031         * mono-debug.c: Properly lock when the debugger is not attached.
23032         (mono_debug_init): Release the initial lock if we're not running
23033         in the debugger.
23034
23035 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23036
23037         * marshal.c (emit_marshal_custom): Pass through NULL values without
23038         calling the custom marshalling routines.
23039
23040         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
23041         conversion in structures. Fixes #74882.
23042
23043 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
23044
23045         * culture-info-table.h : zh-* cultures were missing.
23046
23047 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
23048
23049         * threads.c: Added a new event background_change_event which is signaled
23050         when a thread changes its background mode.
23051         Moved here several checks previously done in managed code. The checks
23052         require the thread lock, and using the thread lock in managed code
23053         can result in deadlocks.
23054         Merged Start_internal and Thread_internal into a single method. Now 
23055         Thread_internal does all work of creating and starting a thread.
23056         Added icalls for setting and getting the state of the object. Moved from
23057         managed code to avoid locking there.
23058         Added wait_for_tids_or_state_change() which is called instad of
23059         wait_for_tids when waiting for non-backround threads to end. This method
23060         will return if one of the threads ends or the background_change_event
23061         is signaled.
23062         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
23063         the background mode. This method signals the background_change_event
23064         event.
23065         * icall.c:
23066         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
23067         removed Start_internal.
23068         
23069 2005-05-11  Martin Baulig  <martin@ximian.com>
23070
23071         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
23072         to order of some fields to get proper alignment on 64-bit machines.
23073
23074 2005-05-11  Martin Baulig  <martin@ximian.com>
23075
23076         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
23077         changes as they're broken and completely fuck up the debugger.
23078
23079         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
23080
23081 2005-05-10  Martin Baulig  <martin@ximian.com>
23082
23083         * reflection.c (mono_reflection_generic_class_initialize): Don't
23084         call mono_class_setup_parent() here.
23085
23086 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23087
23088         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
23089         send/receive timeout use an integer in milliseconds. We were using a
23090         struct timeval.
23091
23092 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23093
23094         * locales.c:
23095         (internal_get_cultures): reserve the first slot of the array for the
23096         InvariantCulture, which will be filled in managed code.
23097
23098 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
23099
23100         * reflection.c (mono_image_fill_module_table): Initialize the
23101         GENERATION field as well.
23102
23103 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23104
23105         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
23106         Monitor.Enter on the object.
23107
23108 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
23109
23110         * threads.c: Enable the wait for running threads when exiting.
23111         * icall.c: Suspend all threads before exiting.
23112
23113 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
23114
23115         * assembly.c (mono_assembly_load_reference): Fix warning.
23116
23117 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23118
23119         * threadpool.c: changed the default number of threads per cpu. From now
23120         on, the default will be 20 + (5 * number of cpus) instead of 50.
23121
23122 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
23123
23124         * loader.c (mono_method_get_signature_full): Add locking here.
23125
23126 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
23127
23128         * appdomain.c: Moved methods for parsing and freeing assembly
23129         names to assembly.c.
23130         * assembly.c, domain-internals.h: Created public methods for parsing
23131         assembly names. Fixed mono_assembly_load_with_partial_name:
23132         it now finds the best match, taking into account the version,
23133         token and culture specified in the partial name. Also return
23134         the latest version if no version information is specified.
23135
23136 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
23137
23138         * threadpool.c: replace check for SocketAsyncCall class.
23139
23140 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23141
23142         * threadpool-internals.h:
23143         * Makefile.am: added threadpool-internals.h
23144
23145         * threadpool.c: call mono_unhandled_exception on exceptions not handled
23146         that happen in threadpool threads (tested on MS).
23147         (mono_thread_pool_remove_socket): new function that dispatch any pending
23148         AIO call on a socket that is closing. By now only epoll really needs it,
23149         as select/poll wake up when the socket closes.
23150
23151
23152         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
23153
23154 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
23155
23156         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
23157
23158 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
23159
23160         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
23161
23162 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
23163
23164         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
23165         has an abort request, convert it into a suspend request.
23166
23167 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
23168
23169         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
23170         warning for the usage of `UnmanagedFunctionPointerAttribute' which
23171         is not supported yet.
23172
23173 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23174
23175         * image.c: register assemblies loaded from data (bundles) in the loaded
23176         assemblies hash. Fixes bug #74772.
23177
23178 2005-04-29  Martin Baulig  <martin@ximian.com>
23179
23180         * class.c (mono_type_get_name_recurse): Update to the new naming
23181         schema from the latest .NET 2.x beta2.
23182         (mono_class_setup_vtable_general): If we're a generic instance,
23183         copy the vtable from our generic type definition and inflate all
23184         the methods in it.
23185
23186         * loader.c (find_method): Update to the new naming schema from the
23187         latest .NET 2.x beta2.
23188
23189 2005-04-29  Raja R Harinath  <harinath@gmail.com>
23190
23191         * class.c (mono_class_init): Add a mono_loader_unlock to the
23192         #74734 fix.
23193
23194 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
23195
23196         * icall.c (ves_icall_System_Environment_Exit): Remove the 
23197         suspend_all_other_threads () call for the time being, since it can hang.
23198
23199         * threads.c (mono_thread_manage): Similarly, disable the waiting for
23200         the background threads to exit, since it can also hang.
23201
23202         * class.c (mono_class_init): Applied patch from Ankit Jain 
23203         (radical@gmail.com). Avoid pending init errors when a field refers
23204         to a nested class using a typeref. Fixes #74734.
23205
23206         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
23207         this for dynamic modules.
23208
23209 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23210
23211         * threads.c: don't wait for threads that are in the process of aborting
23212         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
23213         and waiting for background threads to finish. This makes xsp and
23214         mod-mono-server exit without random length delays and/or hangs.
23215
23216 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23217
23218         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
23219
23220 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
23221
23222         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
23223         dynamic types to prevent infinite loops. Fixes #74727.
23224
23225         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
23226         ..._is_assignable_to.
23227
23228 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
23229
23230         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
23231
23232 2005-04-25  Martin Baulig  <martin@ximian.com>
23233
23234         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
23235
23236         * domain.c
23237         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
23238
23239         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
23240
23241         * reflection.c (build_compressed_metadata): Set metadata header
23242         version to 2.0.
23243
23244 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
23245
23246         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
23247         number into an integral and a decimal part. Fixes #70473.
23248
23249         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
23250
23251 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
23252
23253         * culture-info-table.h : reflected the latest locale-builder output.
23254
23255 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23256
23257         * threadpool.c: check for SuspendRequested too when deciding if
23258         mono_thread_interruption_checkpoint should be called.
23259
23260 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23261
23262         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
23263         * threads.c: remove interruption_mutex and use Interlocked instead. When
23264         suspending all the threads, wait for all the suspended events at once.
23265         If we're shutting down and get an APC that is going to be queued,
23266         call mono_thread_execute_interruption immediately, as the thread might
23267         be sleeping on a pthread condition or mutex.
23268
23269         * icall.c: call mono_runtime_set_shutting_down before suspending the
23270         threads.
23271
23272         Fixes bug #74693. And now xsp is happier when exiting.
23273
23274 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
23275
23276         * loader.c (mono_stack_walk): Fix #74690.
23277
23278 2005-04-22  Martin Baulig  <martin@ximian.com>
23279
23280         * mono-debug.h (MonoDebugMethodJitInfo): Added
23281         `MonoDebugMethodJitInfo *jit'.
23282
23283         * mono-debug.c (mono_debug_read_method): Cache the
23284         MonoDebugMethodJitInfo in `address->jit'.
23285         (mono_debug_free_method_jit_info): New public method.
23286
23287 2005-04-22  Martin Baulig  <martin@ximian.com>
23288
23289         * class.c (mono_class_is_assignable_from): Disallow
23290         type parameter -> interface.
23291
23292 2005-04-21  Dick Porter  <dick@ximian.com>
23293
23294         * threads.c (mono_thread_create): Turn an assertion into an error.
23295
23296 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
23297
23298         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
23299         
23300         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
23301         Fix some gcc 4.0 warnings.
23302
23303 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
23304
23305         * file-io.c: fix alt dir separator char on unix systems
23306         and cleanup (fixes bug #71214).
23307
23308 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
23309
23310         * marshal.c: Use CALLVIRT instead of CALL when dispatching
23311         a call to a remote domain, since the method may be an
23312         interface method in the client domain. This fixes bug #74192.
23313
23314 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23315
23316         * threadpool.c: recv/send are now performed before going back to managed
23317         code to save one transition.
23318
23319 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23320
23321         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
23322
23323         * metadata/threadpool.c: removed hack to workaround the bug above.
23324
23325         Fixes bug #74618.
23326
23327 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
23328
23329         * reflection.c reflection.h: Fix handling of parameter defaults in
23330         dynamic methods. Also fixes handling of parameter attributes.
23331         Fixes #74609.
23332
23333         * mono-debug.c (mono_debug_close_image): Fix warning.
23334
23335 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23336
23337         * socket-io.h: replaced old unused field with new 'blocking'.
23338         * threadpool.c: restore socket blocking state on windows(tm).
23339
23340 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
23341
23342         * icall.c: don't return the codebase in the AssemblyName[] returned by
23343         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
23344         * object-internals.h: Removed FIXME (fields were presents) and fixed
23345         versioncompat declaration.
23346
23347 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23348
23349         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
23350         not closed, so don't cleanup when it happens.
23351
23352 2005-04-13  Chris Toshok  <toshok@ximian.com>
23353
23354         * mono-debug-debugger.h: change prototype for
23355         mono_debugger_lookup_type.
23356
23357         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
23358         this function, although it should probably be named
23359         mono_debugger_init_type.
23360
23361 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23362
23363         * threadpool.c: fix non-AIO case.
23364
23365 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
23366
23367         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
23368         the built-in profiler to measure just JIT compilation times.
23369
23370 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23371
23372         * threadpool.c: the epollfd might be closed by another thread at
23373         any time, so ignore EBADF at treat it as a "we're closing" sign.
23374
23375 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23376
23377         * threadpool.c: release the semaphores with a count equals to the number
23378         of working threads in both IO and regular pools. Fixed typo that messed
23379         up the count of IO pool threads. Don't initialize the pipe handles if
23380         we're using epoll.
23381
23382 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23383
23384         * threadpool.c: some systems don't like a NULL when deleting the socket
23385         from epoll.
23386
23387 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23388
23389         * threadpool.c: fix semaphore allocation.
23390
23391 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23392
23393         * threadpool.c: added epoll() based implementation for asynchronous IO
23394         that is used instead of the default poll() when available.
23395         It can be disabled by setting MONO_DISABLE_AIO.
23396
23397 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23398
23399         * threadpool.c: windows needs 'closesocket' and instead of returning
23400         0 when the stream is closed while in select, it returns -1. Fixes bug
23401         #74573.
23402
23403 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23404
23405         * class.c (class_compute_field_layout): Fix the regression caused by
23406         the previous try.
23407
23408 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23409
23410         * threadpool.c: separate pool for socket async. IO.
23411         * threadpool.h: mono_max_worker_threads is not a global any more.
23412
23413 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23414
23415         * class.c (class_compute_field_layout): Fix #74549.
23416
23417 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23418
23419         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23420         use 2 connected sockets instead.
23421
23422 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23423
23424         * mono-config.c: Add new entry point for mkbundle
23425         mono_config_parse_memory. 
23426
23427 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23428
23429         * threadpool.c: removed another unused function.
23430
23431 2005-04-08  Ankit Jain  <radical@corewars.org>
23432
23433         * reflection.c (get_default_param_value_blobs): Add 'types'
23434         parameter to get the types encoded in the constant table.
23435         (mono_param_get_objects): Use the type from the constant table,
23436         not the type of the parameter, when creating default values.
23437         Handle null default values correctly.
23438
23439 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23440
23441         * file-io.c:
23442         * file-io.h:
23443         * threadpool.c:
23444         * threadpool.h:
23445         * icall.c:
23446         * socket-io.c: removed dead code for async IO.
23447
23448 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23449
23450         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23451
23452         * threadpool.c: intercept socket async. calls and pass them to a thread
23453         that is polling and dispatching the job items to the threadpool as
23454         socket become ready. Fixes bugs #71217, #71933.
23455
23456         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23457         between char and short/ushort arrays.
23458
23459         * socket-io.c: remove dead code.
23460
23461 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23462
23463         * locales.c,
23464           icall.c : removed InternalToUpper_Comp() and
23465           InternalToLower_Comp().
23466
23467 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23468
23469         * char-conversions.h : The tables were incorrectly generated. Should
23470           be generated against invariant culture.
23471
23472 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23473
23474         * object.c (mono_runtime_invoke_array): Fix return value when 
23475         passing pre-created valuetype objects to ctors.
23476
23477         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23478         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23479         Fixes #74338.
23480
23481 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23482
23483         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23484         only used with --security and hides the wrong corlib version error.
23485
23486 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23487
23488         * class.c: Changed mono_class_name_from_token so that types
23489         outside of a namespace don't have an initial period.  Improved
23490         the g_warning message used in _mono_class_get when loading
23491         fails.
23492         * assembly.c: In mono_assembly_load_reference, when an assembly
23493         can't be found, "No such file or directory" is misleading and
23494         unhelpful because a few paths were checked for the presence of
23495         the assembly.  When that happens (ENOENT), display a nicer
23496         message indicating the directories that were searched.  In all
23497         cases, the warning is made easier to read for non-hackers.
23498
23499 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23500
23501         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23502         project/solution.
23503         * appdomain.h|domain.c: Removed inline from functions.
23504         * appdomain.c: Reduced warnings when compiling on windows.
23505         * icall.c: Fixed output_debug declaration to gunichar2*.
23506         * mono-config.c: Reduced warnings when compiling on windows.
23507         * rand.c: Added missing "windows.h". Added missing return value.
23508         * rawbuffer.c: Added missing winsock2.h for windows.
23509         * sysmath.h: Added mono-compiler.h header to allow/ease 
23510         compilation with non-GCC compilers.
23511         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23512         Removed cast warnings.
23513
23514         Adapted from the work of J Lothian (for VC6).
23515
23516 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23517
23518         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23519         from default_path.
23520
23521 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23522
23523         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23524         the 2.0 profile.
23525
23526 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23527
23528         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23529         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23530         stuff, and it would probably use $(prefix)/share rather than
23531         $(prefix)/lib.
23532
23533 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23534
23535         * console-io.c: added 2 includes that might be missing.
23536
23537 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23538
23539         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23540         profile.
23541
23542         * reflection.c (create_custom_attr): Allocate the params array using
23543         alloca so it gets GC tracking.
23544
23545 2005-03-23  Chris Toshok  <toshok@ximian.com>
23546
23547         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23548         out some spew.
23549
23550 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23551
23552         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23553         changes to pick up any changes in prefix, etc.
23554
23555 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23556
23557         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23558         
23559         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23560         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23561
23562 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23563
23564         * class-internals.h object-internals.h class.c reflection.c: Extend the
23565         mono_lookup_dynamic_token () function to return the class of the
23566         token as well. 
23567
23568         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23569         well. Fixes #73848.
23570
23571 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23572
23573         * security-manager.c: Skip inheritance checks for intra-corlib
23574         class inheritance and method overrides. This skips a lot of checks
23575         and (anyway) permissions cannot work until corlib is loaded.
23576
23577 2005-03-23  Martin Baulig  <martin@ximian.com>
23578
23579         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23580         MONO_TYPE_GENERICINST.  
23581
23582 2005-03-23  Martin Baulig  <martin@ximian.com>
23583
23584         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23585
23586 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23587
23588         * class.c: added locking comments to some functions.
23589         Cache the interface offsets arrays (saves about 20 KB
23590         of runtime memory in a typical app).
23591         Reduce the time overhead in mono_class_setup_supertypes ().
23592
23593 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23594
23595         * icall.c: speedup and fix leaks in GetMethodsByName and
23596         GetPropertiesByName.
23597
23598 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23599
23600         * reflection.c: some locking fixes.
23601
23602 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23603
23604         * metadata.c: added missing break in case statement.
23605
23606 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23607
23608         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23609         typedbyref return values. Fixes #73941.
23610
23611 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23612
23613         * security-manager.c|h: Added demandunmanaged method and 
23614         suppressunmanagedcodesecurity class to MonoSecurityManager.
23615         Renamed aptc class to allowpartiallytrustedcallers.
23616
23617 2005-03-17  Martin Baulig  <martin@ximian.com>
23618
23619         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23620
23621 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23622
23623         * file-io.c: disabled file async. IO using aio_*. It uses the
23624         threadpool now. Workaround for bug #73718.
23625
23626 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23627
23628         * assembly.h, mono-config.c: added code to deal with bundled configs
23629         for bundled assemblies.
23630
23631 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23632
23633         * *.c, private.h: cleanup, removing old private.h header file.
23634
23635 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23636
23637         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23638         and throw_on_unmappable_char attributes.
23639
23640 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23641
23642         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23643         _ProcessName_internal.
23644
23645 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23646
23647         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23648         #73631.
23649
23650         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23651         are no longer used.
23652
23653 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23654
23655         * object.c (compute_class_bitmap): Add support for generics. Fixes
23656         #73527.
23657
23658 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23659
23660         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23661
23662 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23663
23664         * filewatcher.c: commented out the code for windows watcher, as we don't
23665         use it (we use the managed implementation instead).
23666
23667 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23668
23669         * object-internals.h (MonoThread): Remove 'unused1' field.
23670
23671         * appdomain.c: Bump corlib version.
23672
23673         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23674
23675         * reflection.c (mono_reflection_create_runtime_class): Remove the
23676         AssemblyBuilder.Save optimization since it causes too many problems.
23677
23678 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23679
23680         * exception.c|h: Added mono_get_exception_reflection_type_load to
23681         create a ReflectionTypeLoadException object.
23682         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23683         to return NULL is a InheritanceDemand fails during reflection. Updated
23684         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23685         ReflectionTypeLoadException if an InheritanceDemand fails during 
23686         reflection. Added icall mapping for GetLinkDemandSecurity.
23687         * security-manager.c|h: Added ves_icall_System_Security_
23688         SecurityManager_GetLinkDemandSecurity internal call to return the
23689         class and methods permissions set for a LinkDemand. Removed unused
23690         fields in MonoSecurityManager.
23691
23692 2005-03-10  Martin Baulig  <martin@ximian.com>
23693
23694         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23695         it's a generic instance.
23696
23697 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23698
23699         * reflection.c (mono_get_object_from_blob): Applied patch from
23700         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23701
23702         * class.c (mono_class_is_assignable_from): Another try at fixing 
23703         #73469 without breaking anything.
23704
23705 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23706
23707         * class.c: (mono_class_is_assignable_from): Revert the last changes
23708         since they don't work with generics.
23709         
23710         * class.c (mono_class_is_assignable_from): Fix build bustage.
23711
23712         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23713         the managed IsAssignableFrom method. Fixes #73469.
23714
23715         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23716         function.
23717
23718 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23719
23720         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23721         memory when the remoting callback does not sets the out arguments.
23722         Fixes #73007.
23723
23724         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23725         by mistake.
23726
23727         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23728
23729         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23730
23731         * appdomain.c: Bump corlib version.
23732
23733 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23734
23735         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23736         function.
23737
23738         * threads.c (mono_thread_attach): Detect threads which are not started
23739         by the GC pthread wrappers.
23740
23741 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23742
23743         * icall.c: Added new icall for RNG.
23744         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23745         single handle on Linux to access /dev/urandom and fix #73183.
23746
23747 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23748
23749         * object.c: setting the new vtable in a transparent proxy object must
23750         not change the GC descriptor.
23751
23752 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23753
23754         * object.c: fixed compilation without GCJ support.
23755         * reflection.c: for runtime-created types ensure klass->has_references
23756         is correct (bug #73215).
23757
23758 2005-03-02  Martin Baulig  <martin@ximian.com>
23759
23760         * class.c (mono_class_is_assignable_from): Make this work if
23761         `oklass' is a generic instance; fixes #72831.
23762
23763 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23764
23765         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23766         with hasthis set.
23767         
23768         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23769
23770         * marshal.c: Reorganize native->managed marshalling code to also use
23771         the emit_marshal_... functions.
23772
23773 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23774
23775         * object.c: typed allocs have issues with bitmap sizes > 30,
23776         so check for max_set >= 30.
23777
23778 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23779
23780         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23781         managed code. Fixes #73012.
23782
23783         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23784
23785         * metadata.c reflection.c: Load/Emit elem_mult as well.
23786         
23787         * metadata.h (MonoMarshalSpec): Add comment.
23788
23789         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23790
23791         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23792         num_elem to -1 if not given.
23793
23794         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23795
23796         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23797         given values.
23798
23799 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23800
23801         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23802
23803 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23804
23805         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23806
23807         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23808
23809 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23810
23811         * object.c: generalized the reference bitmap creation
23812         and added hooks for the new GC.
23813         * class-internals.c: removed the gc_bitmap field from MonoClass.
23814
23815 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23816
23817         * domain.c: help the compiler to produce better code
23818         in mono_jit_info_table_find ().
23819
23820 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23821
23822         * object.c: make all allocations look typed.
23823
23824 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23825
23826         * socket-io.c: load Mono.Posix if it's not loaded already
23827         (fixes bug#73033).
23828
23829 2005-02-24  Martin Baulig  <martin@ximian.com>
23830
23831         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23832         * reflection.c (dup_type): Likewise.
23833
23834 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23835
23836         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23837         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23838
23839 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23840
23841         * domain.c, threads.c, object-internals.h: make the critical thread
23842         local vars use the fast access mode (even when we're compiled in
23843         a lib). Provide accessors to be used by the jit during codegen.
23844
23845 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23846
23847         * appdomain.c: Changed hook functios behavior to include
23848         support for the reflection only assemblies. Some icalls were changed
23849         to support the mentioned assemblies too. Signatures of static methods
23850         try_assembly_resolve and real_load now have an additional parameter:
23851         refonly.
23852
23853         * assembly.c: General changes to mono_assembly_ methods to support
23854         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23855         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23856         suffix, to support an additional gbool parameter to specify whether
23857         the assembli is reflection only or not. Created some new hook functions 
23858         to add support for reflection only assemblies. Signatures of static 
23859         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23860         have now an additional parameter: refonly.
23861
23862         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23863         indicating whether the assembly is reflection only or not.
23864
23865         * exception.c: Add mono_get_exception_invalid_operation.
23866
23867         * icall.c: Throw an InvalidOperationException when trying to invoke
23868         a property/method/event, or trying to set/get the value of a field.
23869         Also add an icall to retrieve the ref_only flag to the
23870         MonoReflectionAssembly.
23871
23872 2005-02-23  Chris Toshok  <toshok@ximian.com>
23873
23874         Part of fix for #72827.
23875         * mono-debug.c (mono_debug_add_method): add lexical block data to
23876         the info we write.  Kind of a hack at the moment - we copy the
23877         lexical block info from the MonoDebugMethodInfo to the
23878         MonoDebugMethodJitInfo here, before writing it.
23879         (mono_debug_read_method): read the lexical block info.
23880
23881         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23882
23883         * debug-mono-symfile.h: add lexical block support.
23884
23885         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23886         support.
23887
23888 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23889
23890         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23891
23892         * object.c (mono_runtime_free_method): Call mono_free_method () and
23893         put the TODOs there.
23894
23895         * loader.c (mono_free_method): Free up most memory allocated for 
23896         dynamic methods.
23897
23898 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23899
23900         * reflection.c: properly flag a Type argument to a
23901         named custom attr value (bug #72248).
23902
23903 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23904
23905         * reflection.c: reduce code duplication in named custom
23906         attribute encoding.
23907
23908 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23909
23910         * reflection.c: properly encode custom attrs of type object
23911         (bug #72649).
23912
23913 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23914
23915         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23916
23917 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23918
23919         * socket-io.c: load System.dll if it's not loaded already
23920         (bug #72850 and #70477).
23921
23922 2005-02-21  Martin Baulig  <martin@ximian.com>
23923
23924         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23925         generic instances.
23926
23927 2005-02-21  Martin Baulig  <martin@ximian.com>
23928
23929         * reflection.c (mono_image_build_metadata): We also need to
23930         "fixup" the MethodImpl table after we computed the final method
23931         indices.  Call fixup_methodimpl() to do that.
23932         (fixup_methodimpl): New private method.
23933
23934 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23935
23936         * assembly.c: special case mscorlib.dll (bug#72536),
23937         patch from Carlos Alberto Cortez.
23938
23939 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23940
23941         * threads-types.h threads.c: Fix build bustage.
23942
23943         * threads.c: Use a union for long<->double conversions.
23944
23945         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23946         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23947
23948         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23949         containing the checkpoint call with NOT_TAKEN.
23950         
23951         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23952         checkpoint before pushing the arguments, so they won't have to be
23953         spilled to stack.
23954
23955 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23956
23957         * domain.c, assembly.c, domain-internals.h: make some data
23958         const and relocation-free.
23959
23960 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23961
23962         * object.c, appdomain.c, class-internals.h: introduce the
23963         MonoClassRuntimeInfo structure to hold the info needed to
23964         use a class at runtime. Made mono_class_vtable() lock-free
23965         for all the appdomains.
23966
23967 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23968
23969         * metadata-internals.h, image.c: introduce a per-image mempool to
23970         be used for memory that has the same lifetime as the image.
23971
23972 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23973
23974         * domain.c: In mono_init_internal(), instead of selecting the first
23975         runtime version supported by an executable, get a list of all
23976         supported versions and select the one for which an mscorlib exists
23977         (since even if the runtime supports a given version, it doesn't mean
23978         that the framework for that version is installed).
23979         Modified get_runtimes_from_exe to support this behavior.
23980         In supported_runtimes, added information about additional system
23981         assembly versions.
23982         
23983         * assembly.c: Added support for more than one system assembly version
23984         per runtime version. Updated the assembly list.
23985         In mono_assembly_remap_version, removed the initial version check,
23986         since we don't know to which version we need to compare until we
23987         get the version set on which the assembly is based.
23988         Moved the code for loading corlib into the new method
23989         mono_assembly_load_corlib(), so it can be used by the initialization
23990         code.
23991         
23992         * domain-internals.h: Updated data structures and added declaration
23993         for mono_assembly_load_corlib.
23994
23995 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23996
23997         * reflection.c (resolve_object): Fix the creation of the signature in 
23998         the SignatureHelper case.
23999
24000         * assembly.c (mono_assembly_remap_version): Fix binary search.
24001         
24002 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
24003  
24004         * class.c: Added inheritance check when a method is overloaded (from a
24005         virtual method or when implementing an interface) and when a class is
24006         inherited. Added functions to set a failure for a class and to 
24007         retreive the exception from a failure.
24008         * class-internals.h: Added fields to MonoClass to keep the exception
24009         information status for inheritance (or other exceptions) to be thrown
24010         later (i.e. not at load time).
24011         * object.c: Throw the inheritance SecurityException when a type is to 
24012         be created with either class or method inheritance violations.
24013         * reflection.c|h: Fix when getting declsec from a class. Removed 
24014         unrequired code for class. Improved sanity in parameter naming.
24015         * security-manager.c|h: Added functions to check for class and method
24016         inheritance.
24017
24018 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24019
24020         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
24021         and has_finalize in dynamic types as well.
24022
24023 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
24024
24025         * culture-info-table.h : fixed currency format for en-GB (and so on).
24026
24027 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
24028
24029         * gc.c: ensure the GC handles never have 0 as a value.
24030
24031 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24032
24033         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
24034         a pointer to a struct to unmanaged code. Fixes #72625.
24035
24036 2005-02-16  Martin Baulig  <martin@ximian.com>
24037
24038         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
24039
24040 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24041
24042         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
24043
24044 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24045
24046         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
24047
24048         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
24049         UnmanagedFunctionPointerAttribute, use it for determining calling convention
24050         etc. Fixes #71471.
24051
24052         * reflection.c (mono_custom_attrs_get_attr): New helper function.
24053
24054         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
24055
24056 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
24057
24058         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
24059         changes to make the current context a field in MonoThread.
24060
24061 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24062
24063         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
24064         the last change.
24065         
24066         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
24067         extracted from mono_marshal_get_native_wrapper.
24068
24069         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
24070         to create wrappers around native functions.
24071
24072         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
24073         delegates for arbitrary function pointers. Fixes #71472.
24074
24075 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24076
24077         * threads.c: cleaned up the code a little.
24078
24079 2005-02-15  Martin Baulig  <martin@ximian.com>
24080
24081         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
24082         the data table.
24083
24084         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
24085         allocate larger chunks if needed.
24086
24087 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24088
24089         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
24090         in by mistake.
24091
24092 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
24093
24094         * domain.c: keep the domains in an array and ensure the domain ids
24095         are kept small, so they can be used as indexes to domain-specific data
24096         with a small memory overhead.
24097
24098 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24099
24100         * icall.c: Handle byref types in Type icalls. Fixes #72544.
24101
24102 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
24103
24104         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
24105
24106 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
24107
24108         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
24109
24110         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
24111         values.
24112
24113         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
24114         
24115 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
24116
24117         * domain-internals.h: add the hashtable here.
24118
24119         * class-internals.h: Remove `info' from MonoMethod
24120
24121         * domain.c: Add a new hashtable, jit_trampoline_hash
24122
24123 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24124
24125         * object.c: don't set the value of static fields
24126         (fixes bug#72494).
24127
24128 2005-02-11  Martin Baulig  <martin@ximian.com>
24129
24130         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
24131         (mono_debug_add_method): Silently ignore the method if it's too big.
24132         (mono_debug_add_type): Likewise.
24133
24134 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
24135
24136         * threads.c, appdomain.c: remove #ifdefs from the code.
24137
24138 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
24139
24140         * metadata-internals.h: Added flags to MonoAssembly to cache the most
24141         common security informations. This allows us to stay in unmanaged code
24142         when doing LinkDemand and it's special cases (except for the first 
24143         time for initialization). The flags a very much used with --security.
24144         * reflection.c|h: Added code to get declarative security attributes 
24145         for LinkDemand and InheritanceDemand. This required to refactor the
24146         existing code for Demand.
24147         * security-manager.c|h: Added new method fields for the special cases
24148         of LinkDemand.
24149
24150 2005-02-10  Martin Baulig  <martin@ximian.com>
24151
24152         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
24153         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
24154
24155 2005-02-10  Martin Baulig  <martin@ximian.com>
24156
24157         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
24158         debugging code; this is almost a complete rewrite.
24159
24160         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
24161
24162 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24163
24164         * domain.c, object.h: expose mono_string_equal () and 
24165         mono_string_hash ().
24166         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
24167         it's implemented in managed code.
24168
24169 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24170
24171         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
24172         lo leak objects between appdomains.
24173
24174 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24175
24176         * assembly.c: old compilers compilation fix from 
24177         robertj@gmx.net (Robert Jordan).
24178
24179 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
24180
24181         * class-internals.h: Little reminder for the future.
24182
24183         * debug-helpers.c: Fix up wrapper_type_names
24184
24185 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24186
24187         * image.c, metadata-internals.h: when loading an image from a file,
24188         mmap all of it and use the same codepaths as when using a
24189         in-memory image: the code is simpler and we use less memory
24190         (both writable and readonly).
24191
24192 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24193
24194         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
24195         API to alloc runtime data structures that need to be tracked by the
24196         GC and contain pointers.
24197         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
24198         make the code more readable and eventually use a different GC.
24199
24200 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
24201
24202         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
24203         for out arguments.
24204         
24205 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
24206
24207         * object.c: In release_type_locks(), don't release the cctor lock
24208         if it has already been released. This fixes a crash in the
24209         thread5 test.
24210
24211 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24212
24213         * gc.c, marshal.c, icall.c: register a delegate for finalization
24214         only when the native function pointer has been allocated for it.
24215
24216 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24217
24218         * object.c: cleaned up some code, allocate objects that are
24219         pointer free with the atomic malloc variant. Allocate memory
24220         for static data from the mempool if it's pointer-free.
24221         Allocate the bounds array at the end of the array data, when needed.
24222         * object-internals.h, object.h: move a private function in a private
24223         header.
24224         * class.c: handle missing case in tracking references in fields.
24225
24226 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24227
24228         * class.c, class-internals.h: keep track if a type has
24229         reference fields in either the instance or static fields.
24230
24231 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
24232
24233         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
24234         and renamed to MonoRuntimeInfo. Added fields to store the expected
24235         framework assembly version. Changed mono_get_framework_version and
24236         mono_get_runtime_version for a single mono_get_runtime_info method.
24237         
24238         * assembly.c: Added method to remap system assembly versions to the
24239         current executing runtime version. Removed old mapping code.
24240         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
24241         
24242         * icall.c, reflection.c: Track api changes.
24243
24244 2005-02-06  Miguel de Icaza  <miguel@novell.com>
24245
24246         * loader.c (method_from_memberref): Improve error reporting,
24247         produce the class name instead of the typeref/typedef index. 
24248
24249 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
24250
24251         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
24252
24253 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24254
24255         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
24256         stdcall and charset name mangling.  Reorganize the code and add
24257         some tracing stuff.
24258
24259 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24260
24261         * monodiet.c: More iters!
24262
24263         * marshal.c: Iter usage.
24264
24265         * icall.c: Iter usage.
24266
24267         * object.c: Use iters.
24268
24269         * debug-helpers.c: More iters
24270
24271 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24272
24273         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
24274         under win32.
24275
24276 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24277
24278         * mono-debug-debugger.c: use iters
24279
24280         * class.c, class-internals.h: mono_class_setup_events is static
24281         now
24282
24283         * All callers: use iters
24284
24285 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24286
24287         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
24288         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
24289
24290 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24291
24292         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
24293
24294         * marshal.h: Add prototypes for ldfld/stfld_remote.
24295
24296         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
24297         this is called during startup.
24298         
24299 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
24300
24301         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
24302         MonoThreadsSync struct private in monitor.c. Changed the way
24303         MonoThreadsSync is allocated so it's faster and there is no
24304         need to keep track of it with a finalizer and it uses less memory.
24305         This also finally allows us to allocate mono objects as ptrfree when
24306         there are no reference fields.
24307
24308 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
24309
24310         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
24311         disappearing link to the GC interface and use them to simplify
24312         the gchandles code.
24313
24314 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24315
24316         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
24317         stfld_remote which call mono_load/store_field_new. This allows methods
24318         calling ldfld/stfld wrappers to be AOTed.
24319
24320         * console-io.c: Include sys/filio.h under solaris.
24321         
24322         * console-io.c: Include curses.h if needed correctly.
24323
24324 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24325         
24326         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
24327         method->klass as well.
24328
24329         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
24330
24331         * class.c (mono_class_init): Switch on lazy initialization of 
24332         methods.
24333
24334         * class.c (mono_class_get_finalizer): Handle the case when the 
24335         finalizer is inherited.
24336
24337 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24338
24339         * console-io.c: <curses.h> is needed by term.h on solaris.
24340
24341 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
24342
24343         * icall.c, class-internals.h, monodiet.c, class.c: Remove
24344         mono_class_setup_properties where possible. Remove this ftn from
24345         the header file, and make it static.
24346
24347 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24348
24349         * loader.c: Add missing setup_... call.
24350
24351         * class.c: Add missing setup_... calls.
24352
24353         * class.c (mono_class_init): Switch on lazy initialization of 
24354         the generic vtable.
24355         
24356         * class.c (mono_class_init): Fix generics broken by the recent changes.
24357
24358         * monodiet.c (handle_type): Add missing setup_... calls.
24359
24360         * class.c: Back out garbage in previous patch.
24361         
24362         * class.c: Add missing setup_... calls.
24363
24364         * class.c (mono_class_get_method_from_name_flags): Avoid calling
24365         mono_class_setup_methods () if possible.
24366
24367         * class-internals.h (MonoClass): Add 'has_cctor' flag.
24368
24369         * class-internals.h (MonoCachedClassInfo): New structure.
24370
24371         * class.c: Initialize properties and events fields of MonoClass lazily.
24372
24373         * class.c: Add infrastructure for lazily initializing the methods and
24374         vtable fields of MonoClass. Not yet used.
24375
24376         * class.c (mono_class_get_finalizer): New helper function.
24377
24378         * class.c: Add infrastructure for loading some class related data from
24379         an AOT file.
24380
24381         * object.c: Add infrastructure for initializing the vtable from data
24382         in the AOT file.
24383
24384         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24385
24386         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24387         appropriate initialization function before accessing parts of the
24388         MonoClass structure.
24389
24390         * marshal.c: Fix warnings.
24391         
24392         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24393
24394         * mono-debug-debugger.c (get_exception_message): Use 
24395         mono_class_get_method_from_name_flags ().
24396
24397 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24398
24399         * reflection.c, appdomain.c: Replace a few manual searches that
24400         Zoltan missed. (Paolo approved this part of my initial patch).
24401
24402 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24403
24404         * profiler.c: disable recording statistical events at report time.
24405
24406 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24407
24408         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24409         to byteswap arrays of enum values, too (bug #72080).
24410
24411 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24412
24413         * appdomain.c (set_domain_search_path): Allow this to be called if
24414         domain->setup is not yet set.
24415
24416         * loader.c (mono_method_get_index): New helper function.
24417
24418         * loader.c reflection.c: Use mono_method_get_index ().
24419
24420         * class.c (mono_class_get_method_from_name_flags): New helper method.
24421
24422         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24423         this.
24424
24425         * class.c (mono_class_get_cctor): New helper method.
24426
24427         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24428         mono_class_get_method () to look up methods.
24429
24430 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24431
24432         * console-io.c: Fix the build, this should work on Windows.
24433
24434 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24435
24436         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24437         be set to null to keep things valid
24438
24439 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24440
24441         * icall.c: added Console 2.0 icalls.
24442         * Makefile.am: added console-io.[ch]
24443         * console-io.[ch]: internal calls for Console 2.0 API.
24444
24445 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24446
24447         * class.c: make sure we consider all the interfaces
24448         when calculating max_interface_id (bug found by
24449         Jeroen Frijters running ikvm).
24450
24451 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24452
24453         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24454         valuetype fields to null.
24455
24456         * object.c (set_value): Ditto. Fixes #71669.    
24457
24458 2005-01-31  Martin Baulig  <martin@ximian.com>
24459
24460         * metadata.c (mono_metadata_has_generic_params): New public
24461         function; checks whether something is a generic method.
24462
24463 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24464
24465         * appdomain.c: fix infinite recursion when adding assemblies.
24466
24467 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24468
24469         * object.c: Fix small typo to return all items for Environment.
24470         GetCommandLineArgs.
24471
24472 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24473
24474         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24475         reflection.c: more domain and assembly-unload related fixes
24476         and memory leaks plugs.
24477
24478 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24479
24480         * 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.
24481
24482 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24483
24484         * loader.c (mono_method_signature): Make this method lazy
24485         (mono_get_method_from_token): Don't computate the signature here.
24486
24487         Doing this saves quite a bit of memory. I got 90 kb on starting up
24488         monodoc. It should also save some disk reads on startup.
24489
24490         * *: MonoMethod->signature might be NULL now. You *MUST* use
24491         mono_method_signature.
24492
24493 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24494
24495         * object.c (mono_runtime_get_main_args): Return an array from the
24496         current domain here. Fixes #71938.
24497
24498 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24499
24500         * monitor.c: formatting changes to comply with the
24501         mono coding style and remove #ifdefs from the code.
24502
24503 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24504
24505         * metadata.c, private.h: remove some unneeded data
24506         and use a more compact representation for table schemas.
24507
24508 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24509
24510         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24511         to get a better distribution in hash tables.
24512         * *.c: use mono_aligned_addr_hash() where appropriate.
24513         * assembly.c: make var static.
24514
24515 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24516
24517         * domain-internals.h: Put MonoJitInfo on a diet.
24518
24519         * domain.c: Fix a warning.
24520
24521 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24522
24523         * gc.c: rework the gc handles code to reuse handles
24524         when freed.
24525
24526 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24527
24528         * domain.c: fixed long standing bug in mono_string_equal() which
24529         was brought to light with the ldstr changes.
24530
24531 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24532
24533         * reflection.c: Remove warning by adding missing include for marshal.h
24534
24535 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24536
24537         * domain.c, object.c: change the ldstr_table to hold
24538         MonoString* as keys: makes the runtime isinterned lookup
24539         faster and simplifies memory management.
24540
24541 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24542  
24543         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24544         possible to add imperative security checks before calling the icall.
24545         * reflection.c: Return security attributes on the original MonoMethod
24546         (and not the wrapped one). This fix permissions on icalls.
24547
24548 2005-01-25  Dick Porter  <dick@ximian.com>
24549
24550         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24551         the check for mktime() support actually test the mktime() return
24552         value.  "Fixes" bug 71682, though the output is still different to
24553         MS.
24554
24555 2005-01-25  Martin Baulig  <martin@ximian.com>
24556
24557         * class.c (mono_class_is_assignable_from): Make this work for
24558         generic instances.
24559
24560 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24561
24562         * marshal.c (mono_string_utf8_to_builder)
24563         (mono_string_builder_to_utf16): We might not have ownership of the
24564         string. In thise case, we need to create a new buffer.
24565
24566         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24567         be null, in which case, use the default capacity.
24568
24569 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24570
24571         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24572         GC events to the profiler.
24573
24574 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24575
24576         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24577         if you don't want the GC to run.
24578
24579 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24580
24581         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24582         start providing a GC API and keeping different implementations in
24583         their own file.
24584         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24585
24586 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24587
24588         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24589         mmap rather than allocating a huge buffer.
24590         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24591         above.
24592
24593 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24594
24595         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24596         and CheckExecutionRights.
24597         * reflection.c|h: Keep the index of the declarative security to be 
24598         used, instead of the pointer, when AOT compiler is used. Also add 
24599         class initialization when requesting demands.
24600         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24601         CheckExecutionRights. Both properties are now FALSE by default, and
24602         unmodifiable, unless the --security option is used.
24603
24604 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24605
24606         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24607         reflection.c: properly refcount images and assemblies, many leaks fixed.
24608
24609 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24610
24611         * threadpool.c: increase the timeout for threads in the thread pool to
24612         10s.  Fixes bug #67159.
24613
24614 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24615
24616         * class-internals.h: Sun's compiler insists on explicit
24617         signed on bit fields to handle then correctly.
24618
24619 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24620
24621         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24622         Make the size of the array fit only the number of invalid path
24623         chars that we have.
24624
24625         * class.c (_mono_class_get): Improve the error reporting when a
24626         class referenced is not found, to assist debugging. 
24627
24628 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24629
24630         * threads.c: fix off-by-one error.
24631         * domain.c: free data allocated in the domain.
24632
24633 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24634
24635         * reflection.c (mono_method_body_get_object): Fill out exception info
24636         as well.
24637
24638         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24639         structure.
24640         
24641 2005-01-19  Martin Baulig  <martin@ximian.com>
24642
24643         * loader.c (mono_get_method_constrained): Make this work again.
24644
24645 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24646
24647         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24648         guint16 to match the managed side.
24649
24650         * reflection.c (mono_reflection_body_get_object): Fill out local
24651         variables array.
24652
24653         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24654         as well.
24655
24656         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24657         'local_var_sig_token'.
24658
24659 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24660
24661         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24662         System.Drawing.
24663
24664         * reflection.c (mono_method_body_get_object): Handle abstract and
24665         runtime methods.
24666
24667 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24668
24669         * marshal.c, loader.c, class-internals.h, reflection.c:
24670         store the emthod data for a wrapper in an array instead of a list.
24671
24672 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24673
24674         * marshal.c: change the code to allocate memory more
24675         conservatively for method wrappers.
24676
24677 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24678
24679         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24680         fields from MonoClass to the marshal info structure where they belong.
24681
24682 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24683
24684         * class.c, object.c, class-internals.h, marshal.c: rearrange
24685         some fields and tweak some types to lower memory usage.
24686
24687 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24688
24689         * threads.c (signal_thread_state_change): Handle the case when the
24690         target thread is the current thread.
24691
24692         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24693
24694         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24695         emit_ptr_to_object_conv. 
24696
24697         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24698         marshalling. Fixes #71352.
24699
24700 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24701
24702         * metadata.h, blob.h: move table enum to blob.h so it can be included
24703         in any header.
24704         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24705         cut the size of MonoImage/MonoDynamicImage.
24706
24707 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24708
24709         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24710
24711 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24712
24713         * reflection.c, reflection.h, icall.c: add a function to check
24714         if an attribute type is defined for a metadata object.
24715
24716 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24717
24718         * object-internals.h: Added some needed fields from StringBuilder class.
24719         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24720
24721 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24722
24723         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24724         threads before shutting down the runtime.
24725
24726         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24727
24728 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24729
24730         * object-internal.h, threads.c: implement stacksize and 
24731         parameterized thread start functionality (requires
24732         matching corlib). Marked broken code for later removal.
24733
24734 2005-01-12  Martin Baulig  <martin@ximian.com>
24735
24736         * class-internals.h (MonoGenericClass): Moved the `initialized'
24737         flag to MonoDynamicGenericClass, removed `init_pending'.
24738         (MonoGenericInst): Added `is_reference' flag.
24739
24740 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24741
24742         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24743         inside the MSDOS header. Fixes #71201.
24744
24745         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24746         gc thread.
24747         (mono_domain_finalize): Ditto.
24748
24749 2005-01-12  Martin Baulig  <martin@ximian.com>
24750
24751         * class.c (mono_get_shared_generic_class): Use the cache for
24752         non-dynamic generic classes.
24753
24754         * class-internals.h (mono_class_create_generic_2): Removed
24755         function prototype, this function is now static inside class.c.
24756
24757         * class.c (mono_class_create_generic_2): Made this static, only
24758         call it from mono_class_init() and mono_class_setup_parent().
24759         (collect_implemented_interfaces_aux): Call mono_class_init() on
24760         the interfaces we collect.
24761         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24762
24763 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24764
24765         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24766         it a real thread handle.
24767
24768         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24769         MonoJitExceptionInfo, since each catch clause needs its own variable.
24770         
24771 2005-01-11  Dick Porter  <dick@ximian.com>
24772
24773         * image.c (mono_pe_file_open): New variant on mono_image_open()
24774         that does not set up the CLI metadata; used for FileVersionInfo so
24775         it can get the data for windows binaries too.
24776         
24777         * process.c (process_read_string_block): Don't read off the end of
24778         the StringTable block.
24779
24780         These both fix bug 70766.
24781
24782 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24783
24784         * gc.c: set some fields to NULL at GC cleanup time.
24785         * threads.c: if we quit the main thread, call exit ().
24786
24787 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24788
24789         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24790
24791 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24792
24793         * threads.h, threads.c, object.c: added accessor and settor for
24794         main_thread. Handle it specially when exiting from it: wait
24795         for other foreground threads to exit.
24796
24797 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24798
24799         * process.c, verify.c: remove some bloat.
24800
24801 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24802
24803         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24804         the calling convention to cdecl under win32.
24805
24806 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24807
24808         * object.c (mono_object_get_size): New function to get the size of
24809         an object instance.
24810
24811         * profiler.c (simple_allocation): Use above.
24812
24813 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24814
24815         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24816         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24817         get an appdomain by it's id and we can't assume the root's id is 0).
24818         * domain-internals.h: Change the function prototype to match.
24819         * icall.c: Change the icall table for AppDomain.
24820
24821 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24822
24823         * locales.c (string_invariant_compare_char): Only compute
24824         GUnicodeTypes in the case where we need them.  Test for ordinality
24825         first and return if so.
24826
24827         From the commit:
24828
24829                 /*
24830                  * FIXME: here we must use the information from c1type and c2type
24831                  * to find out the proper collation, even on the InvariantCulture, the
24832                  * sorting is not done by computing the unicode values, but their
24833                  * actual sort order.
24834                  */
24835
24836 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24837
24838         * loader.c: for P/Invoke methods, allow the "Internal" shared
24839         library name to refer to the calling process symbol namespace.
24840
24841 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24842
24843         * Makefile.am: Add the security manager to the build.
24844         * security-manager.c|h: New. Initialization of the security manager.
24845
24846 2005-01-07  Dick Porter  <dick@ximian.com>
24847
24848         * threads.c: 
24849         * monitor.c: Update thread state during Monitor and WaitHandle
24850         waits.  Fixes bug 71031.
24851
24852 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24853
24854         * reflection.c (property_encode_signature): Correctly handle when the
24855         property has no methods.
24856
24857 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24858
24859         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24860         
24861         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24862         fields from mb, not rmb. Fixes #71017.
24863
24864         * marshal.c (emit_ptr_to_str_conv): Add support for 
24865         ByValTStr -> string conversion. Fixes #71015.
24866
24867         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24868
24869         * mempool.c (mono_mempool_contains_addr): New helper function.
24870
24871 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24872
24873         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24874         HasSematics encoded fields.
24875         
24876         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24877         invalid string marshalling.
24878
24879         * metadata.c: Fix warnings.
24880         
24881 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24882
24883         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24884         profiler support.
24885
24886 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24887
24888         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24889         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24890         tests.
24891
24892 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24893
24894         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24895         so methods containing these can be AOTed.
24896
24897 2005-01-03  Martin Baulig  <martin@ximian.com>
24898
24899         * loader.c (find_method): Removed the hack for generic instances.
24900         (method_from_memberref): If our parent is a generic instance, pass
24901         its generic type definition to find_method() and then inflate the
24902         method.
24903         (mono_get_method_constrained): Pass the generic type definition to
24904         find_method() and inflate the method later.
24905
24906         * class-internals.h (MonoStats): Added `generic_class_count'.
24907
24908         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24909         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24910
24911         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24912         generic type definitions.
24913
24914 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24915
24916         * loader.c icall.c: Fix warnings.
24917
24918 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24919
24920         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24921         blittable types. Fixes #70864.
24922
24923 2004-12-29  Martin Baulig  <martin@ximian.com>
24924
24925         * icall.c
24926         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24927
24928         * reflection.c (mono_method_get_object): Create a
24929         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24930         call mono_get_inflated_method().
24931
24932         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24933
24934 2004-12-27  Martin Baulig  <martin@ximian.com>
24935
24936         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24937         (MonoMethodInflated): Added `inflated' field.
24938
24939         * class.c (mono_class_inflate_generic_method): Don't really
24940         inflate the method here; just set the `is_inflated' flag in the
24941         MonoMethod.
24942         (mono_class_get_inflated_method): Actually inflate the method here
24943         if it's not already inflated; we use the MonoMethodInflated's new
24944         `inflated' field as a cache.
24945
24946 2004-12-26  Martin Baulig  <martin@ximian.com>
24947
24948         * class.c
24949         (inflate_generic_class): Moved some code out of inflate_generic_type().
24950         (mono_class_inflate_generic_method): If we're already inflated,
24951         inflate the context and use the declaring method; ie. make sure
24952         the declaring method of an inflated method is always the generic
24953         method definition.
24954         (mono_class_create_from_typedef): Create
24955         `class->generic_container->context->gclass'.
24956
24957 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24958
24959         * metadata-internals.h, marshal.c, reflection.c: More
24960         MonoGHashTable->GHashTable.
24961
24962         * domain-internals.h, class.c: Change MonoGHashTable's into
24963         GHashTables for some cases where no gc stuff is used
24964
24965         All users: update apis
24966
24967 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24968
24969         * metadata.c (builtin_types): Make this `const'. Makes this get
24970         put into the shareable section.
24971         (mono_metadata_init): Casts to make gcc happy.
24972
24973 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24974
24975         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24976
24977 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24978
24979         * icall.c: Added an internal call to retrieve the position and length
24980         of assembly-level declarative security attributes (RequestMinimum, 
24981         RequestOptional and RequestRefuse). This is used by the Assembly class
24982         to re-create the corresponding permission sets.
24983
24984 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24985
24986         * marshal.c: fix the stelemref wrapper to be type correct
24987         (and faster).
24988
24989 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24990
24991         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24992         to do key & 0x7fffffff. Hashtable already does this. It just
24993         results in longer code.
24994
24995 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24996
24997         * appdomain.c: Bump corlib version.
24998         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24999         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
25000         * reflection.c|h: Add functions to get declarative security infos
25001         (blob position and length) for assemblies, classes and methods.
25002
25003 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
25004
25005         * reflection.c: sort the constant table (bug #70693).
25006
25007 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
25008
25009         * object-internals.h, threads.c, domain.c: add accessors for
25010         the MonoThread and MonoDomain tls keys.
25011
25012 2004-12-18  Martin Baulig  <martin@ximian.com>
25013
25014         * class.c (inflate_generic_type): If we're inflating a generic
25015         instance, set `ngclass->context->container = context->container';
25016         ie. the container we inflated into.
25017
25018         * metadata.c (mono_metadata_parse_generic_param): Reflect above
25019         inflate_generic_type() changes.
25020
25021 2004-12-17  Martin Baulig  <martin@ximian.com>
25022
25023         * class-internals.h
25024         (MonoGenericClass): Replaced `MonoType *generic_type' with
25025         `MonoClass *generic_class'.  Removed `dynamic_info'; if
25026         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
25027         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
25028
25029 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
25030
25031         * exception.c (mono_exception_from_token): New helper function.
25032
25033 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
25034
25035         * assembly.c (mono_assembly_load_with_partial_name): Call 
25036         mono_assembly_loaded before invoking the preload hooks. Fixes
25037         #70564.
25038
25039         * object-internals.h (MonoThread): Change culture_info and 
25040         ui_culture_info into an array.
25041
25042         * threads.c: Cache culture info objects from more than one appdomain.
25043
25044         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
25045         current UI culture.
25046
25047 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
25048
25049         * threads.h threads.c appdomain.c: Clear the culture_info field of
25050         all threads during unloading if they point to an object in the dying
25051         appdomain.
25052
25053 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
25054
25055         * culture-info.h (TextInfoEntry): New struct
25056         * object-internals.h: sync with managed
25057         * locales.c: fill the `text_info_data' field
25058         * culture-info-tables.h: update
25059
25060 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
25061
25062         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
25063         collector.
25064
25065 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
25066
25067         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
25068         (ves_icall_ModuleBuilder_getMethodToken): Ditto
25069
25070 2004-12-12  Martin Baulig  <martin@ximian.com>
25071
25072         * mono-debug-debugger.c (write_type): If we're an enum and the
25073         builtin types have already been initialized, call mono_class_init().
25074
25075 2004-12-11  Martin Baulig  <martin@ximian.com>
25076
25077         * metadata.c (mono_metadata_load_generic_params): Added
25078         `MonoGenericContainer *parent_container' argument; automatically
25079         compute `container->is_method'; pass the correct owner to
25080         get_constraints().      
25081
25082         * reflection.c (compare_genericparam): Sort the GenericParam table
25083         according to increasing owners. 
25084
25085 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
25086
25087         * profiler.c: allow disabling the default profiler.
25088
25089 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
25090
25091         * decimal.c, icall.c: allow disabling System.Decimal support.
25092
25093 2004-12-09  Marek Safar <marek.safar@seznam.cz>
25094
25095         * reflection.c: Add support for null attribute arguments.
25096
25097 2004-12-09  Martin Baulig  <martin@ximian.com>
25098
25099         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
25100         names to get rid of compiler warnings.
25101
25102 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25103
25104         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
25105         mono_marshal_load_type_info (). Fixes #69625.
25106         (mono_marshal_get_ptr_to_struct): Likewise.
25107
25108 2004-12-08  Martin Baulig  <martin@ximian.com>
25109
25110         * mono-debug.h: Bumped version number to 47.
25111
25112         * mono-debug-debugger.c
25113         (mono_debugger_event_handler, mono_debugger_event): Take two
25114         guint64 arguments insteed of a gpointer and a guint32.  
25115
25116 2004-12-08  Martin Baulig  <martin@ximian.com>
25117
25118         * debug-mono-symfile.h
25119         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
25120         `address' to `native_offset'.
25121
25122 2004-12-08  Martin Baulig  <martin@ximian.com>
25123
25124         * class.c (mono_class_create_from_typespec): Only inflate if we
25125         either have `context->gclass' or `context->gmethod'.
25126
25127 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25128
25129         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
25130
25131         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
25132
25133         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
25134
25135         * reflection.c (mono_assembly_get_object): Remove the workaround put
25136         in for the release.
25137         
25138         * appdomain.c: Use the corlib_internal field from MonoAssembly.
25139
25140         * appdomain.c: Bump corlib version.
25141
25142         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
25143         be visible in other appdomains.
25144
25145 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
25146
25147         * threads.c: Interlocked inc and dec for longs were messed up,
25148         use a KISS based impl for this. Fixes 70234
25149
25150 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
25151
25152         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
25153
25154 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25155
25156         * icall.c: fix to follow policy not to allow struct
25157         arguments in icalls.
25158
25159 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25160
25161         * process.c: make the patch that handles spaces in file paths work
25162         on mono/windows too.
25163
25164 2004-12-06  Martin Baulig  <martin@ximian.com>
25165
25166         * class.c (mono_class_create_generic): Call
25167         mono_class_setup_supertypes() if we're dynamic.
25168         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
25169
25170 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
25171
25172         * object-internals.h: Add new fields to MonoThread.
25173
25174         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25175
25176         * icall.c threads-types.h threads.c: Add new icalls.
25177
25178         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
25179
25180         * object-internals.h (MonoReflectionAssembly): Sync object layout with
25181         managed side.
25182
25183         * appdomain.c: Bump corlib version.
25184
25185         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
25186         internal assemblies. Fixes #69181.
25187
25188 2004-12-05  Martin Baulig  <martin@ximian.com>
25189
25190         * class.c (mono_class_inflate_generic_signature): Make this a
25191         no-op if `context' is NULL or we don't have any type parameters;
25192         also copy `sentinelpos'.        
25193
25194 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
25195
25196         * image.c: Add unbox_wrapper_cache.
25197
25198         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
25199
25200         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
25201         function generator.
25202         
25203         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
25204         Fixes #70173.
25205
25206         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
25207         
25208 2004-12-04  Martin Baulig  <martin@ximian.com>
25209
25210         * loader.c (mono_method_get_signature_full): New public function;
25211         like mono_method_get_signature(), but with an additional
25212         `MonoGenericContext *' argument.
25213
25214         * class.c (mono_class_inflate_generic_signature): Formerly known
25215         as inflate_generic_signature(); make this public.
25216
25217 2004-12-04  Martin Baulig  <martin@ximian.com>
25218
25219         * metadata.c
25220         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
25221         instead of a `MonoGenericContainer *'.  
25222         (mono_metadata_parse_array_full): Likewise.
25223         (mono_metadata_parse_signature_full): Likewise.
25224         (mono_metadata_parse_method_signature_full): Likewise.
25225         (mono_metadata_parse_generic_inst): Likewise.
25226         (mono_metadata_parse_generic_param): Likewise.
25227         (mono_metadata_parse_mh_full): Likewise.
25228         (mono_type_create_from_typespec_full): Likewise.
25229
25230 2004-12-03  Martin Baulig  <martin@ximian.com>
25231
25232         * class-internals.h (MonoGenericContainer): Replaced the
25233         `MonoGenericContext * pointer with a `MonoGenericContext'
25234         structure and made it the first element.
25235
25236 2004-12-03  Martin Baulig  <martin@ximian.com>
25237
25238         * class.c
25239         (inflate_generic_type): Set the `context->container' when creating
25240         a new MonoGenericContext.
25241         (mono_class_inflate_generic_method): Likewise.
25242         (mono_class_create_from_typespec): Just use `context->container'
25243         to get the container.
25244
25245         * loader.c (method_from_methodspec): Set `context->parent' from
25246         `context->container' - and if that's a method container, use its
25247         parent.  Also set the `context->container' when creating a new
25248         MonoGenericContext.
25249         (mono_get_method_from_token): Use just `context->container' to get
25250         the container.
25251
25252         * metadata.c (do_mono_metadata_parse_generic_class): Also set
25253         `gclass->context->container'.
25254
25255         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
25256         the `context->container' when creating a new MonoGenericContext.
25257
25258 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
25259
25260         * reflection.c (compare_genericparam): Sort params with identical
25261         owner by their number. Fixes gen-111 on sparc.
25262
25263 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25264
25265         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
25266         around the domain changes.
25267
25268         * appdomain.c (mono_domain_unload): Handle the case when the thread
25269         calling Unload is itself being aborted during unloading. Fixes #70022.
25270
25271         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
25272
25273         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
25274         checkpoint_func as an icall so it gets a wrapper.
25275         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
25276         in the cross-appdomain wrappers too.
25277
25278         * threads.c (mono_thread_has_appdomain_ref): Make this public.
25279
25280         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
25281
25282         * reflection.c: Fix some memory leaks.
25283         
25284 2004-12-02  Martin Baulig  <martin@ximian.com>
25285
25286         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
25287
25288         * metadata.c (generic_class_cache): New static hashtable.
25289         (mono_metadata_lookup_generic_class): New public method.
25290
25291 2004-12-02  Martin Baulig  <martin@ximian.com>
25292
25293         * class.c (mono_class_create_from_typedef): Call
25294         mono_class_setup_parent() and mono_class_create_mono_type() before
25295         parsing the interfaces.
25296
25297 2004-12-02  Martin Baulig  <martin@ximian.com>
25298
25299         * metadata.c (generic_inst_cache): New static hashtable.
25300         (mono_metadata_lookup_generic_inst): New public function.
25301         (mono_metadata_inflate_generic_inst): New public function.
25302         (mono_metadata_parse_generic_inst): New public function.
25303         (do_mono_metadata_parse_generic_class): Use the new
25304         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
25305         since this'll also use the cache.
25306
25307         * reflection.c (mono_reflection_bind_generic_method_parameters):
25308         Use mono_metadata_lookup_generic_inst() to use the new cache.
25309
25310         * class.c (inflate_mono_type): Use
25311         mono_metadata_inflate_generic_inst() to inflate a generic
25312         instance; this'll also use the new cache.
25313
25314         * loader.c (method_from_methodspec): Use
25315         mono_metadata_parse_generic_inst() and
25316         mono_metadata_inflate_generic_inst() rather than parsing it
25317         manually, so we can use the new cache.
25318
25319 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25320
25321         * threads.c (wait_for_tids): Do not incorrectly free threads when 
25322         the wait times out.
25323
25324 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
25325
25326         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
25327         iter->args based on whether parameters are passed in registers (i.e.
25328         MONO_ARCH_REGPARMS is defined)
25329
25330 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
25331
25332         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
25333         the exception message. Fixes #70070.
25334         (method_from_methodspec): Fix warnings.
25335
25336 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25337
25338         * process.c: (complete_path) return the path quoted
25339
25340 2004-12-01  Martin Baulig  <martin@ximian.com>
25341
25342         * class-internals.h (MonoGenericInst): New structure.
25343         (MonoGenericClass): Replaced `type_argc', `type_argv' and
25344         `is_open' with `MonoGenericInst *inst'.
25345         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
25346         `is_open' with `MonoGenericInst *inst'.
25347
25348 2004-11-30  Martin Baulig  <martin@ximian.com>
25349
25350         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
25351
25352         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
25353         to `generic_class_cache'.
25354
25355         * metadata.c
25356         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
25357         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
25358         (mono_generic_inst_is_valuetype): Renamed to
25359         mono_generic_class_is_valuetype().
25360
25361         * class-internals.h
25362         (MonoGenericInst): Renamed to MonoGenericClass.
25363         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
25364         (MonoClass): Renamed `generic_inst' to `generic_class'.
25365         (MonoGenericContext): Renamed `ginst' to `gclass'.
25366
25367         * object-internals.h
25368         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25369
25370         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25371         mono_reflection_generic_class_initialize().
25372
25373         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25374         now known as "System.Reflection.MonoGenericClass".
25375         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25376
25377 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25378
25379         * class-internals.h: Added a flag field to MonoClass to cache the
25380         declarative security attributes actions associated with the class.
25381         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25382         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25383         applicable to the JITted method.
25384         * reflection.c|h: Added functions to extract (as flags) which security
25385         actions are available (declaratively) for a method, class or assembly.
25386         * metadata.c|h: Added functions to search the declarative security
25387         table in the metadata.
25388         
25389 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25390
25391         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25392         EXPORTEDTYPES are already in the class name cache, so there is no
25393         need to add extra code here to look at them. Just removes a bit of
25394         cruft.
25395
25396         (ves_icall_System_Environment_get_TickCount): No need for #if
25397         WINDOWS. We already have the code in io-layer.
25398
25399 2004-11-28  Martin Baulig  <martin@ximian.com>
25400
25401         * loader.c
25402         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25403         Fixes gen-112.cs.
25404
25405 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25406
25407         * assembly.c (do_mono_assembly_open): Instead of having a
25408         conditional WITH_BUNDLE, incorporate support for bundles here, by
25409         having a global `bundles' variable holding a pointer to the actual
25410         bundles. 
25411
25412         (mono_register_bundled_assemblies): New API call used by the
25413         bundle code. 
25414
25415         See mkbundle.1 for details.
25416         
25417 2004-11-27  Martin Baulig  <martin@ximian.com>
25418
25419         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25420         the vtable for generic methods.
25421
25422 2004-11-26  Martin Baulig  <martin@ximian.com>
25423
25424         * metadata.c
25425         (mono_metadata_generic_method_hash): New public function.
25426         (mono_metadata_generic_method_equal): Likewise.
25427
25428         * class-internals.h
25429         (MonoGenericContainer): Added `GHashTable *method_hash'.
25430
25431         * reflection.c (ReflectionMethodBuilder): Added
25432         `MonoGenericContainer *generic_container'.
25433         (reflection_methodbuilder_to_mono_method): Don't create a new
25434         MonoGenericContainer each time we're called.
25435         (mono_reflection_bind_generic_method_parameters): Use
25436         `container->method_hash' to cache the results so we don't create a
25437         different method if we're called several times with the same
25438         arguments.
25439
25440         * loader.c (method_from_methodspec): Use the new
25441         `container->method_hash' here, too.
25442
25443 2004-11-26  Martin Baulig  <martin@ximian.com>
25444
25445         * class.c (inflate_generic_signature): Correctly compute
25446         `res->has_type_parameters'.
25447         (mono_class_vtable): Use the `has_type_parameters' flag to
25448         determine whether we're a generic method.
25449
25450         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25451
25452 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25453
25454         * object.c (mono_runtime_run_main): Fix a small memory leak.
25455
25456 2004-11-25  Martin Baulig  <martin@ximian.com>
25457
25458         * class.c (set_generic_param_owner): Fixed the loop.
25459
25460 2004-11-25  Martin Baulig  <martin@ximian.com>
25461
25462         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25463         generic methods.
25464
25465 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25466
25467         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25468         names. Fixes #69787.
25469
25470 2004-11-24  Martin Baulig  <martin@ximian.com>
25471
25472         * class.c (mono_class_create_generic_2): If we don't have a
25473         `ginst->parent', inflate `gklass->parent' to get our parent.
25474
25475 2004-11-24  Martin Baulig  <martin@ximian.com>
25476
25477         * reflection.c (compare_genericparam): Correctly sort the
25478         GenericParam table; fixes #69779.
25479
25480 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25481
25482         * reflection.c: When writing a PE file, don't create a huge
25483         buffer in memory. Just write the arrays we have to the file.
25484         This reduces memory usage.
25485
25486         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25487         globally.
25488
25489 2004-11-17  Martin Baulig  <martin@ximian.com>
25490
25491         * class.c (mono_class_init): Don't setup `class->parent' for
25492         dynamic instances; moved this to mono_class_generic_2().
25493         (mono_class_create_generic): Also set `klass->inited' for dynamic
25494         generic instances.
25495         (mono_class_create_generic_2): Don't do anything for dynamic
25496         generic instances.  Set `klass->parent' here and also call
25497         mono_class_setup_parent() here. 
25498
25499         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25500         `MonoType *parent' argument; set `ginst->parent' before calling
25501         mono_class_create_generic_2(), so we set the correct parent.
25502
25503 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25504
25505         * reflection.c: allow getting attributes from ModuleBuilder
25506         (used by ikvm).
25507
25508 2004-11-17  Martin Baulig  <martin@ximian.com>
25509
25510         * class.c (mono_class_create_from_typedef): If a type parameter is
25511         inherited from an outer class, set its owner to that class.
25512
25513 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25514
25515         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25516           for (int*) written size. This fixes bug #69592.
25517
25518 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25519
25520         * icall.c: Added IsAuthenticodePresnet internal call.
25521         * image.c|h: New function that check a MonoImage for an Authenticode
25522         signature in the certificate PE data directory.
25523         * security.c|h: New internal call to ask the runtime if an 
25524         Authenticode signature seems referenced in the PE header.
25525
25526 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25527
25528         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25529
25530         * reflection.c (mono_image_create_pefile): Free the assembly streams
25531         after writing out the assembly file.
25532
25533         * object.c (mono_runtime_run_main): Fix small memory leak.
25534
25535         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25536         property access modifiers. Fixes #69389.
25537
25538 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25539
25540         * domain.c, object.c, object-internals.h, domain-internals.h,
25541         object.h, marshal.c: keep dynamic code info per domain.
25542
25543 2004-11-15  Martin Baulig  <martin@ximian.com>
25544
25545         * class.c (mono_type_get_name_recurse): Put type arguments in
25546         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25547         see bug #68387.
25548
25549 2004-11-15  Martin Baulig  <martin@ximian.com>
25550
25551         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25552         (mono_class_setup_vtable): When computing `the_cname' for a
25553         generic instance, don't include the namespace since we'd otherwise
25554         add it twice.
25555
25556 2004-11-15  Martin Baulig  <martin@ximian.com>
25557
25558         * class.c (mono_class_create_generic): Changed return type to void.
25559         (mono_class_create_generic_2): New public function; setup
25560         `class->method', `class->field' and `class->interfaces' here
25561         instead of in mono_class_init().
25562
25563         * class.h (mono_class_create_generic): Moved to class-internals.h.
25564
25565 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25566
25567         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25568         rather than writing to memory, write to this file. Right now,
25569         we are just writting into a buffer, and copying that. However
25570         we can avoid the buffer later.
25571
25572         (mono_dynamic_stream_reset): new function
25573
25574         * icall.c, object-internals.h: update for the above.
25575
25576 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25577
25578         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25579         have been using gc'd memory. First it is slower, unlikely
25580         the comment in the source code said, secondly, it increases
25581         our footprint to do it in the gc.
25582
25583         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25584         the method so that it does not have to copy to managed code.
25585
25586 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25587
25588         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25589
25590 2004-11-12  Martin Baulig  <martin@localhost>
25591
25592         * reflection.c (mono_image_create_token): Allow generic method
25593         definitions here, since they may appear in an `.override'; see
25594         gen-98/gen-99 for an example.
25595
25596 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25597
25598         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25599         #69365.
25600
25601         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25602         descriptive.
25603
25604 2004-11-11  Martin Baulig  <martin@ximian.com>
25605
25606         * class.c (mono_class_setup_vtable): In an explicit interface
25607         implementation, the method name now includes the arity.
25608
25609 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25610
25611         * object.c (mono_array_full_copy): Fix warning.
25612
25613 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25614
25615         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25616         mono_class_get_method_from_name() instead.
25617         
25618         * class-internals.h: Added two new types of wrappers. 
25619         Added MonoRemotingTarget enum. Added new trampoline function type, which
25620         takes an additional MonoRemotingTarget value as parameter, so it is
25621         possible to request a trampoline for a specific target.
25622         
25623         * class.c: Added new mono_class_get_method_from_name() method.
25624         
25625         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25626         general remoting sinks and one specific for cross domain calls.
25627         
25628         * debug-helpers.c: Added new wrapper names.
25629         
25630         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25631         of a remote class.
25632         
25633         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25634         
25635         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25636         with several other methods (mono_marshal_get_xappdomain_dispatch,
25637         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25638         and others) can generate a fast remoting wrapper for cross domain calls.
25639         More information can be found in docs/remoting.
25640         Other changes: Removed mono_find_method_by_name, and used
25641         mono_class_get_method_from_name instead.
25642         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25643         is stored in the remoting invoke hashtable.
25644         
25645         * marshal.h: published the new method for getting the xdomain wrapper,
25646         and also added a method for getting the adequate wrapper for a given
25647         method and target.
25648         
25649         * object-internals.h, object.c: Added a couple of methods for capying and
25650         cloning arrays.
25651         Modified mono_install_remoting_trampoline, which takes the new remoting
25652         trampoline that has a remoting target as parameter.
25653         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25654         will return the most suitable vtable for the target.
25655         Added mono_remote_class_vtable, which returns the vtable of a remote class
25656         (which can be the normal remoting vtable or the xdomain vtable).
25657         
25658         * threads.c: the xdomain invoke and dispatch wrappers must also be
25659         protected against interruptions.
25660
25661 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25662
25663         * icall.c: use memmove in BlockCopyInternal when the source and
25664         destination arrays are the same.
25665
25666 2004-11-09  Martin Baulig  <martin@ximian.com>
25667
25668         * class-internals.h (MonoGenericContainer): Removed `method' and
25669         `signature', replaced them with `is_method' and `is_signature'
25670         flags.  Added `context'.
25671
25672         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25673         instead of a `MonoGenericContainer *'.
25674
25675         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25676         for dynamic type parameters.
25677         (mono_metadata_load_generic_params): Setup `container->context'.
25678
25679         * reflection.c (mono_reflection_setup_generic_class): Setup
25680         `tb->generic_container->context'.
25681         (do_mono_reflection_bind_generic_parameters): Use
25682         mono_class_inflate_generic_type() to correctly inflate types,
25683         rather than using our own hack just for MONO_TYPE_VAR.
25684
25685 2004-11-09  Martin Baulig  <martin@ximian.com>
25686
25687         * class.c (mono_class_inflate_generic_method): Small fix; don't
25688         crash here.
25689
25690         * icall.c
25691         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25692         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25693         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25694         (ves_icall_Type_BindGenericParameters): Likewise.
25695         (ves_icall_Type_get_IsGenericInstance): Likewise.
25696         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25697         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25698         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25699         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25700
25701 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25702
25703         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25704         assembly versions and public key tokens. Fixes #69113.
25705
25706 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25707
25708         * metadata.c: fix bug introduced with the type cache changes
25709         on 2004-11-06.
25710
25711 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25712
25713         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25714         the MonoClass pointer instead of the token in exception clauses.
25715         * reflection.c: updates for the above and make the code not depend
25716         on the structure of MonoExceptionClause.
25717
25718 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25719
25720         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25721         Add support for dynamic assemblies. Fixes #69114.
25722
25723         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25724
25725 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25726
25727         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25728         since most only those methods use it. the code member of
25729         MonoMethodPInvoke was dead, so that can be removed too. Also,
25730         remove inline_count (again, not used), and move slot so that it
25731         can share bits with some other flags. This saves 8 bytes in the
25732         structure and gives us about 50 kb back for mcs helloworld.cs
25733
25734         * *.[ch]: Do naming changes for the above.
25735
25736         * loader.c (mono_method_get_header): Lazily init the header
25737         on first access.
25738         (mono_get_method_from_token): don't init the header here
25739         (mono_free_method): the header may never be allocated
25740
25741         Overall, this saves 150 kb of unmanaged allocations
25742         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25743         memory at runtime.
25744         
25745         * loader.c, loader.h (mono_method_get_header): new accessor.
25746
25747         * *.[ch]: use the above method. Prepares us to lazily load
25748         the header.
25749
25750         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25751         three warnings, which are actual bugs (see 69206).
25752
25753         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25754         unused. Saves a cool 4 bytes / method.
25755
25756 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25757
25758         * metadata.c (builtin_types): Add types for System.Object here.
25759         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25760         for a class or valuetype from klass->this_arg or klass->byval_arg.
25761
25762         On mcs for a hello world, this gets us down from 21836 MonoType's
25763         to 14560.
25764
25765         (mono_metadata_free_type): Account for the above change.
25766
25767 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25768
25769         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25770         exception instead of asserting if name is null.
25771         (ves_icall_System_AppDomain_GetData): Ditto.
25772
25773 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25774
25775         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25776         EnumBuilder.
25777
25778         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25779         Return NULL when the domain does not have entry_assembly set.
25780
25781         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25782         Add a 'resource_modules' argument.
25783         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25784
25785         * reflection.c (mono_reflection_create_runtime_class): Move setting
25786         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25787         for enums too.
25788
25789         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25790         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25791         Throw an ArgumentNullException if 'ptr' is null.
25792
25793         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25794         assemblies here. Fixes #69020.
25795
25796 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25797
25798         * reflection.c (build_compressed_metadata): Fix the previous patch for
25799         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25800         the stack.
25801
25802 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25803
25804         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25805         the cultures is false. Fixes #69090.
25806
25807         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25808         detected by valgrind.
25809         
25810         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25811         TypeResolve multiple times for the same type. Fixes #65577.
25812
25813 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25814
25815         * marshal.c: Avoid using ldftn to call managed functions. It is
25816         much slower than just a call.
25817
25818         * reflection.c (mono_module_get_object): free the basename we
25819         allocate here from glib.
25820         
25821         * reflection.c (ensure_runtime_vtable): make sure to free
25822         overrides.  Also, we were allocating an array of MonoMethod not an
25823         array of MonoMethod*.
25824
25825         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25826
25827         * image.c (mono_image_close): free image->guid here.
25828
25829 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25830
25831         * reflection.c: Fix some spec conformance issues with the PE file
25832         structures so mcs compiled apps run on the Net 2.0 beta.
25833
25834 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25835
25836         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25837         Implement this. Fixes #67264.
25838
25839         * debug-helpers.h debug-helpers.c marshal.c: Move 
25840         mono_find_method_by_name to debug-helpers.c.
25841
25842 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25843
25844         * object.c (mono_release_type_locks): type_initialization_hash is
25845         a GHashTable.
25846
25847         * reflection.c object.c object-internals.h: Fix warnings.
25848
25849         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25850         without accessors. Fixes #61561.
25851
25852         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25853         application base from the root domain if not set. Fixes #65641.
25854         (mono_runtime_init): Fix warning.
25855
25856 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25857
25858         * appdomain.c: call mono_thread_pool_init.
25859         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25860         of worker threads based on the number of CPUs and the environment
25861         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25862         for non-windows (windows) systems.
25863
25864 2004-10-27  Chris Toshok  <toshok@ximian.com>
25865
25866         * mono-debug-debugger.c (write_class): don't call mono_class_init
25867         here, as even with the check for (!klass->init_pending), we get
25868         into a situation where we're hitting cycles in class
25869         initialization.  Fixes #68816.
25870
25871 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25872
25873         * image.c: Avoid overwriting values in the loaded_images_hash when an
25874         assembly is loaded multiple times. Fixes #61152.
25875
25876         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25877         so multiple satellite assemblies for the same name can be loaded.
25878         Fixes #68259.
25879
25880         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25881         not NULL.
25882
25883         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25884         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25885
25886         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25887         pending finalizers are not invoked after the appdomain has been 
25888         unloaded. Fixes #67862.
25889
25890 2004-10-22  Martin Baulig  <martin@ximian.com>
25891
25892         * mono-debug-debugger.c
25893         (mono_debugger_runtime_invoke): Don't box valuetypes.
25894
25895 2004-10-22  Chris Toshok  <toshok@ximian.com>
25896
25897         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25898         don't hide private methods.
25899
25900 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25901
25902         * icall.c: Allows the runtime to "share" (when known) the public key
25903         token of an assembly. This avoid the need to recalculate the token 
25904         (from the public key) in managed code.
25905
25906 2004-10-21  Chris Toshok  <toshok@ximian.com>
25907
25908         * debug-helpers.c (append_class_name): argh, revert last patch.
25909         
25910 2004-10-21  Chris Toshok  <toshok@ximian.com>
25911
25912         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25913         not '/', so that it matches what the debugger uses to look up
25914         methods.
25915
25916 2004-10-21  Martin Baulig  <martin@ximian.com>
25917
25918         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25919         public method; this is called each time an exception is thrown and
25920         allows the debugger to use exception catch points.
25921
25922 2004-10-21  Martin Baulig  <martin@ximian.com>
25923
25924         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25925         the stack pointer and the exception object in some struct and pass
25926         that to the debugger.
25927
25928 2004-10-21  Chris Toshok  <toshok@ximian.com>
25929
25930         * mono-debug-debugger.c (do_write_class): add instance/static
25931         event support.  We don't expose "raise" or "other" yet.
25932         (event_is_static): new method.
25933
25934 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25935
25936         * mono-debug-debugger.c
25937         (mono_debugger_handle_exception): Remove
25938         bogus return value for fussy compilers.
25939
25940 2004-10-20  Martin Baulig  <martin@ximian.com>
25941
25942         * mono-debug-debugger.c
25943         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25944         (mono_debugger_handled_exception): Likewise.
25945
25946 2004-10-20  Martin Baulig  <martin@ximian.com>
25947
25948         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25949         MONO_DEBUGGER_EVENT_EXCEPTION.
25950
25951         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25952         public function to send the debugger a notification for an
25953         exception and inform it about a catch/finally clause.
25954
25955 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25956
25957         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25958         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25959         fix 2.95 build. 
25960
25961         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25962
25963 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25964
25965         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25966         marshalled as [In,Out]. Fixes #58325.
25967
25968 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25969
25970         * reflection.c (mono_method_body_get_object): Implement some fields.
25971
25972 2004-10-12  Martin Baulig  <martin@ximian.com>
25973
25974         * reflection.c (mono_reflection_bind_generic_parameters): Small
25975         fix, correctly retrieve our parent from a generic instance.
25976
25977 2004-10-12  Martin Baulig  <martin@ximian.com>
25978
25979         * metadata.c (mono_metadata_generic_param_equal): We always have
25980         an owner.
25981
25982         * class.c
25983         (mono_class_from_generic_parameter): We need to have an owner.
25984         (my_mono_class_from_generic_parameter): Likewise.
25985
25986         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25987         mono_reflection_create_generic_class() and added a new
25988         mono_reflection_setup_generic_class().  
25989         (mono_reflection_initialize_generic_param): If we're a nested
25990         generic type and inherited from the containing class, set our
25991         owner to the outer class.
25992
25993 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25994
25995         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25996
25997         * reflection.c (mono_method_body_get_object): New function to create
25998         a MethodBody object.
25999
26000         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
26001
26002 2004-10-11  Martin Baulig  <martin@ximian.com>
26003
26004         * metadata.c (_mono_metadata_type_equal): Renamed to
26005         do_mono_metadata_type_equal() and made static.
26006
26007 2004-10-11  Martin Baulig  <martin@ximian.com>
26008
26009         * appdomain.c: Bump corlib version number to 28.
26010
26011 2004-10-10  Martin Baulig  <martin@ximian.com>
26012
26013         * class-internals.h
26014         (MonoGenericInst): Added `MonoGenericContainer *container'.
26015         (MonoGenericMethod): Likewise.
26016         (MonoGenericContext): Likewise.
26017         (MonoGenericParam): Added `MonoGenericContainer *owner'.
26018
26019         * metadata.c
26020         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
26021         (do_mono_metadata_parse_generic_inst): Likewise.
26022         (mono_metadata_parse_type_full): New public method.  This is the actual
26023         mono_metadata_parse_type() implementation - with an additional
26024         `MonoGenericContainer *' argument.
26025         (mono_metadata_parse_array_full): Likewise.
26026         (mono_metadata_parse_signature_full): Likewise.
26027         (mono_metadata_parse_method_signature_full): Likewise.
26028         (mono_metadata_parse_mh_full): Likewise.
26029         (mono_type_create_from_typespec): Likewise.
26030         (mono_metadata_interfaces_from_typedef_full): New public method;
26031         this is similar to the other _full() methods, but we take a
26032         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
26033         (mono_metadata_parse_generic_param): Take an additional
26034         `MonoGenericContainer *' argument and lookup the MonoGenericParam
26035         from that container.
26036         (mono_metadata_generic_param_equal): New static method to compare
26037         two type parameters.
26038         (_mono_metadata_type_equal): New static method; takes an
26039         additional `gboolean signature_only' argument - if true, we don't
26040         compare the owners of generic parameters.
26041         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
26042         with a TRUE argument - do a signature-only comparision.
26043
26044         * loader.c: Use the new _full() methods and pass the
26045         MonoGenericContainer to them.
26046
26047         * object-internals.h (MonoReflectionTypeBuilder): Added
26048         `MonoGenericContainer *generic_container' field.
26049         (MonoReflectionMethodBuilder): Likewise.
26050
26051 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
26052
26053         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
26054         case initial images of dynamic assemblies.
26055
26056         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
26057
26058         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
26059
26060         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
26061         length of event->other array.
26062         (typebuilder_setup_events): Ditto.
26063
26064         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
26065         'assembly_by_name' and add an 'assemblies' list.
26066
26067         * assembly.h assembly.c: Add a new search hook for determining whenever
26068         an assembly is already loaded. Use this instead of searching in the
26069         loaded_assemblies list.
26070
26071         * domain.c appdomain.c: Implement the new search hook so loaded 
26072         assemblies are now scoped by appdomain. Fixes #67727.
26073
26074 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
26075
26076         * threads.c (mono_thread_attach): Initialize synch_lock field so
26077         mono_thread_detach works again.
26078
26079         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
26080         'lib' too. Fixes #63130.
26081
26082 2004-10-06  Jackson Harper  <jackson@ximian.com>
26083
26084         * culture-info-tables.h: regenerated.
26085
26086 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
26087
26088         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
26089         implemented by other interfaces in the result. Fixes #65764.
26090         
26091         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26092         Handle unloadable modules without crashing.
26093
26094         * image.c (load_modules): Revert the previous patch since modules must
26095         have a fixed index inside the array.
26096         
26097         * image.c (load_modules): Don't include native modules in the modules
26098         array.
26099
26100 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
26101
26102         * reflection.h: Add param_defaults field.
26103
26104         * reflection.c: Add support for parameter defaults in dynamic methods.
26105         Fixes #64595.
26106
26107         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
26108         an empty string when a type has no namespace. Fixes #64230.
26109
26110 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
26111
26112         * tabledefs.h: Added "internal" security actions to support non-CAS
26113         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
26114         Note: they do not seems to be used anymore in 2.0 (new metadata format)
26115
26116 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
26117
26118         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
26119         constructor of abstract class. Fixes #61689.
26120
26121 2004-10-04  Martin Baulig  <martin@ximian.com>
26122
26123         * class-internals.h (MonoGenericContainer): New type.
26124         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
26125         `MonoGenericContainer *generic_container'.
26126         (MonoClass): Replaced `gen_params' and `num_gen_params' with
26127         `MonoGenericContainer *generic_container'.
26128
26129         * metadata.c (mono_metadata_load_generic_params): Return a
26130         `MonoGenericContainer *' instead of a `MonoGenericParam *';
26131         removed the `num' argument.
26132
26133 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
26134
26135         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
26136         for dynamic images.
26137
26138         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
26139         machine fields.
26140
26141         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
26142
26143         * reflection.c: Save pe_kind and machine values into the generated
26144         image file.
26145
26146         * appdomain.c: Bump corlib version number.
26147
26148         * object-internals.h: Reorganize layout of LocalBuilder.
26149
26150         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
26151         New helper function.
26152
26153         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
26154         created MonoType for dynamic types. Fixes #66180.
26155
26156 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
26157
26158         * threadpool.c: the ares hashtable needs a critical section around it.
26159         this prevents some nasty segfaults
26160
26161 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
26162
26163         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
26164         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
26165         bug 67324).
26166         
26167 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26168
26169         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
26170         
26171 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
26172
26173         * image.c: Always canonicalize image file names, to avoid loading
26174         the same assembly twice when referenced using a relative path.
26175
26176 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26177
26178         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
26179
26180         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
26181
26182         * marshal.c: Fix warnings.
26183
26184 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
26185
26186         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
26187         attempting to marshal the delegate_trampoline as the method_addr.
26188         This patch has a static hashtable of marshalled delegates so that 
26189         we can map delegate_trampoline addresses back to delegates.  This
26190         allows a delegate passed to managed code to be passed back into native
26191         code.  Fixes #67039
26192
26193 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26194
26195         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
26196
26197         * reflection.c (method_encode_code): Align method headers properly.
26198         Fixes #66025.
26199
26200 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26201
26202         * marshal.c: In the runtime invoke wrapper, reset the abort
26203         exception if it is cached. This avoids the automatic rethrowal of 
26204         the exception after the catch of the wrapper. Also check for pending
26205         interruptions before calling the managed method. This is done using
26206         the new method emit_thread_force_interrupt_checkpoint, since the
26207         normal checkpoint method is ignored when running the invoke wrapper.
26208         * object.c: If the abort exception is rethrown, set the abort_exc
26209         field of the thread, so it will be rethrown aftere every catch.
26210         * threadpool.c: Only run an interruption checkpoint if what has been
26211         requested is a stop of the thread (aborts will be ignored).
26212         * threads.c: By default, a thread will now never be interrumped while
26213         running the runtime invoke wrapper (this ensures that runtime_invoke
26214         will always return to the caller if an exception pointer is provided).
26215         There is a new special method mono_thread_force_interruption_checkpoint()
26216         to force an interruption checkpoint even if running a protected
26217         wrapper, which is used by the same runtime invoke wrapper to do a check
26218         at a safe point.
26219
26220 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26221
26222         * object.c, object-internals.h: Implemented mono_release_type_locks,
26223         which releases the cctor locks held by a thread.
26224         * threads.c, threads.h: In thread_cleanup, release cctor locks held
26225         by a thread. Added mono_thread_exit() method to be used to safely stop
26226         a thread.
26227
26228 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26229
26230         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26231         Move null check before dereference.  Avoid indexing beyond the end
26232         of the 'modules' array.
26233
26234 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26235
26236         * metadata-internals.h (MonoImage): Add module_count field.
26237         * image.c (load_modules): Set image->module_count.
26238         (mono_image_load_file_for_image): Use image->module_count.
26239         * reflection.c (mono_image_load_module): Append to image->modules array 
26240         of dynamic assembly.
26241         (mono_module_get_object): Fix loop to actually increment index.
26242         Use image->module_count.
26243         * assembly.c (mono_assembly_load_references): Use image->module_count.
26244         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
26245         Likewise.
26246
26247 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26248
26249         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
26250         Avoid assert on generic types.
26251
26252 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
26253
26254         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
26255
26256         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
26257
26258         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
26259         function to convert a MarshalSpec structure to its managed counterpart.
26260
26261         * reflection.c: Fix warnings.
26262         
26263         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
26264         field.
26265
26266         * icall.c (mono_create_icall_signature): Fix build.
26267
26268 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
26269
26270         * icall.c: Add MakePointType icall.
26271
26272         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
26273         warnings.
26274
26275 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26276
26277         * threadpool.c: reuse allocated slots in the queue.
26278
26279 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
26280
26281         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
26282
26283         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
26284
26285         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
26286         previous change.
26287
26288         * tabledefs.h: Add constants for pinvoke attributes BestFit and
26289         ThrowOnUnmappableChar.
26290
26291         * icall.c (ves_icall_Type_GetPacking): New icall.
26292
26293 2004-09-24  Martin Baulig  <martin@ximian.com>
26294
26295         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
26296
26297 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26298
26299         * appdomain.c:
26300         (mono_domain_set): allow setting a domain that is being unloaded.
26301         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
26302         being unloaded.
26303
26304 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26305
26306         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
26307         the GetCustomAttributes icall.
26308
26309 2004-09-23  Martin Baulig  <martin@ximian.com>
26310
26311         * object-internals.h (MonoReflectionGenericParam): Replaced
26312         'has_ctor_constraint', `has_reference_type' and `has_value_type'
26313         with `guint32 attrs'.
26314
26315 2004-09-23  Martin Baulig  <martin@ximian.com>
26316
26317         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
26318
26319 2004-09-23  Martin Baulig  <martin@ximian.com>
26320
26321         * object-internals.h (GenericParameterAttributes): New enum.
26322
26323 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26324
26325         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
26326         
26327         * class.c (init_events): Fill out event->other field.
26328
26329         * class.c: Fix warnings.
26330
26331         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
26332
26333 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
26334
26335         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
26336         walk which doesn't supply the IL offset.
26337
26338 2004-09-22  Martin Baulig  <martin@ximian.com>
26339
26340         * reflection.c (mono_reflection_setup_internal_class): If we're
26341         System.ValueType, System.Object or System.Enum, set
26342         `klass->instance_size' and create the vtable.
26343         (mono_reflection_create_internal_class): If we're an enum type,
26344         get the base class from our current corlib.
26345
26346 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
26347
26348         * reflection.h (MonoResolveTokenError): New type.
26349
26350         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
26351         icall.
26352
26353         * icall.c: Add an 'error' argument to the ResolveToken icalls.
26354
26355 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
26356
26357         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
26358         Support also calling constructors, but only for already allocated objects.
26359
26360 2004-09-17  Geoff Norton <gnorton@customerdna.com>
26361
26362         * reflection.c (type_get_qualified_name): If the klass is null
26363         return the typename to avoid a NullRefEx.
26364         (encode_cattr_value): Get the qualified name of the boxed type,
26365         not the underlying enumtype.  Fixes #62984.
26366
26367 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
26368
26369         * marshal.c: Fix problems with previous checkin.
26370
26371 2004-09-21    <vargaz@freemail.hu>
26372
26373         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26374         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26375
26376         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26377
26378 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26379
26380         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26381         should only return a type for pointers, arrays, and passbyref types.
26382         Fixes bug #63841.
26383
26384 2004-09-21  Martin Baulig  <martin@ximian.com>
26385
26386         * domain.c (mono_debugger_check_runtime_version): New public
26387         function.
26388
26389         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26390
26391 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26392
26393         * reflection.c: Added missing sort to the declarative security 
26394         attributes table. MS implementation stops seeing the attributes if the
26395         token number regress in the table (as shown by ildasm and permview).
26396
26397 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26398
26399         * object-internals.h (MonoReflectionModule): Add 'token' field.
26400         
26401         * reflection.c (mono_reflection_get_token): Add support for Module
26402         and Assembly.
26403         (mono_module_get_object): Set 'token' field.
26404         (mono_module_file_get_object): Set 'token' field.
26405
26406         * icall.c: Add new Assembly and Module icalls.
26407
26408         * appdomain.c: Bump corlib version.
26409
26410 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26411
26412         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26413         tokens of metadata objects.
26414
26415         * reflection.h reflection.c (mono_reflection_get_token): New function
26416         to obtain the token of a metadata object.
26417
26418         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26419
26420 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26421
26422         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26423         
26424         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26425
26426 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26427
26428         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26429         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26430         AssemblyBuilder to access the permissions set in the class lib.
26431         * reflection.c: Added security attributes encoding step in 
26432         mono_image_build_metadata.
26433         * tabledefs.h: Added new security actions defined in 2.0:
26434         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26435
26436 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26437
26438         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26439         macro parameter.
26440
26441 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26442  
26443         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26444           finalized. There where random SIGSEVs at program termination, when
26445           an object being finalized was trying to do a string comparison and
26446           the current culture was already finalized.
26447  
26448 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26449
26450         * threads.c: call thread_cleanup before finishing the thread if we get
26451         there.
26452
26453 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26454
26455         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26456         assemblies from the parent. Fixes #65665.
26457
26458 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26459
26460         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26461         modifiers.
26462
26463 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26464
26465         * reflection.h: add prototype for mono_get_dbnull_object
26466         * reflection.c: add prototypes for get_default_param_value_blobs 
26467         and mono_get_object_from_blob for fussier compilers
26468
26469 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26470  
26471         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26472         false deadlock checks in class initialization.
26473  
26474 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26475
26476         * image.c (mono_image_addref): Fix comment.
26477
26478         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26479         possible.
26480
26481 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26482
26483         * reflection.c (mono_param_get_objects): Modified to return
26484         ParameterInfo.DefaultValue object.
26485
26486         (get_default_param_value_blobs):
26487         (mono_get_object_from_blob):
26488         (mono_get_dbnull_object): New helper routines. 
26489
26490         * object.c (mono_get_constant_value_from_blob): New helper routine
26491         carved out from get_default_field_value ()
26492
26493         * object-internals.h (mono_get_constant_value_from_blob): Added
26494         function declaration.
26495
26496 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26497
26498         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26499         referenced assemblies. Fixes #62135.
26500
26501         * exception.h exception.c (mono_get_exception_file_not_found2): New
26502         helper function.
26503
26504 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26505
26506         * class.h class.c: Add mono_type_get_underlying_type ().
26507
26508 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26509
26510         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26511         Fix GetTypes() to support dynamically created assemblies.
26512
26513 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26514
26515         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26516         
26517         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26518         previous patch.
26519
26520         * reflection.h reflection.c loader.c: Allow dynamic construction of
26521         pinvoke methods. Fixes #65571.
26522         
26523         * reflection.c (mono_reflection_get_type): Revert previous change since
26524         it causes regressions.
26525
26526 2004-09-08  Martin Baulig  <martin@ximian.com>
26527
26528         * class.c (class_compute_field_layout): Don't call
26529         mono_class_layout_fields() for open generic instances.
26530
26531 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26532         * threads.c appdomain.c: fix typo in GC macro
26533
26534 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26535
26536         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26537         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26538
26539 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26540
26541         * image.c (mono_image_close): Applied patch from 
26542         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26543         assembly is loaded multiple times from data.
26544         
26545         * image.c (mono_image_open): Fix warning.
26546
26547 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26548
26549         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26550         once. Fixes #58334.
26551         
26552         * reflection.c (mono_reflection_create_runtime_class): Initialize
26553         klass->nested_classes. Fixes #61224.
26554
26555 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26556
26557         * threads.c: sched_yield() on exit, to allow threads to quit.
26558
26559 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26560
26561         * object.c (mono_unhandled_exception): Remove leftover debug code.
26562
26563 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26564
26565         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26566
26567 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26568
26569         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26570         
26571         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26572
26573 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26574
26575         * marshal.c (emit_marshal_array): Null terminate string arrays.
26576         
26577         * marshal.c (raise_auto_layout_exception): Fix warning.
26578
26579         * reflection.c (mono_param_get_objects): Initialize the default value
26580         with DBNull.Value, not null. Fixes #62123.
26581
26582 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26583
26584         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26585         throw an exception with a cute explanation.
26586
26587 2004-09-06  Dick Porter  <dick@ximian.com>
26588
26589         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26590         Close the new process's thread handle, as we don't use it.  The
26591         handle stays around forever otherwise.
26592
26593 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26594
26595         * object.c (arith_overflow): Fix warning.
26596
26597         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26598         calling conventions in method refs. Fixes #65352.
26599
26600         * reflection.c: Fix warnings.
26601
26602 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26603
26604         * icall.c: Add a new icall for Array.Clear
26605
26606 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26607
26608         * object.c: When allocating an array, we have to throw
26609         an overflow exception if any of the lengths are < 0.
26610
26611 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26612
26613         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26614         properly. Also move implementation of string array marshalling to 
26615         managed code. Fixes #42316.
26616
26617 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26618
26619         * assembly.c: provide more information when loading an assembly fails.
26620
26621 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26622
26623         * filewatcher.c: don't expect the development fam package to be
26624         installed.
26625
26626 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26627
26628         * marshal.c: Make a copy of the signature cookie since it will be
26629         freed by the caller.
26630         
26631         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26632
26633         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26634
26635         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26636         marshal specs.
26637
26638         * marshal.c: More refactoring.
26639         
26640         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26641         smaller functions.
26642
26643 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26644
26645         * object.c: In mono_message_invoke, fill the output parameter array after
26646           calling the managed method (it was done before the call). This fixes
26647           bug #59299.
26648
26649 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26650
26651         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26652         as well.
26653
26654 2004-09-02  Martin Baulig  <martin@ximian.com>
26655
26656         * class.c (mono_class_instance_size): Don't allow generic type
26657         definitions or open generic instances.
26658         (mono_class_array_element_size): If we're a value type, call
26659         mono_class_instance_size() on the original class.
26660
26661         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26662         handle generic instances.
26663
26664         * mono-debug-debugger.c (write_type): Handle generic instances
26665         like classes.
26666
26667 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26668
26669         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26670         the allocation request fails. Fixes #65089.
26671
26672         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26673         
26674         * object.c (mono_runtime_free_method): New function to free a dynamic
26675         method.
26676
26677         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26678         delegate trampoline.
26679
26680         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26681         with hasthis as dynamic,
26682
26683         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26684
26685         * domain.c (mono_jit_info_table_remove): New function to remove an
26686         entry from the jit info table.
26687
26688         * class-internals.h (MonoMethod): Add 'dynamic' field.
26689
26690         * loader.c: Fix warnings.
26691
26692 2004-09-01  Martin Baulig  <martin@ximian.com>
26693
26694         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26695         instead of mono_debugger_lock() because the latter one is a no-op
26696         unless running in the debugger.
26697
26698 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26699
26700         * class.c (class_compute_field_layout): Classes with auto-layout or
26701         reference fields are not blittable.
26702         
26703 2004-09-01  Dick Porter  <dick@ximian.com>
26704
26705         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26706         mono_image_get_filename() to get the assembly location.
26707
26708         * icall.c:
26709         * metadata.h: Fix compile warnings
26710
26711 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26712
26713         * class.c (class_compute_field_layout): System.Object is blittable.
26714
26715         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26716         as in/out. Fixes #59909.
26717
26718 2004-09-01  Martin Baulig  <martin@ximian.com>
26719
26720         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26721         mono_metadata_generic_inst_is_valuetype() if we're a generic
26722         instance to check whether our underlying type is a reference type.
26723
26724 2004-09-01  Martin Baulig  <martin@ximian.com>
26725
26726         * metadata.c (mono_type_size): If we're a generic instance, call
26727         mono_class_value_size() for value types.
26728
26729 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26730
26731         * marshal.c: Implement more custom marshalling functionality. Fixes
26732         #64915.
26733
26734 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26735
26736         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26737
26738 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26739
26740         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26741
26742         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26743
26744         * icall.c: Fix some warnings.
26745
26746         * threads.c (abort_appdomain_thread): Fix unref errors.
26747         (mono_thread_current): Fix THREAD_DEBUG define.
26748
26749 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26750
26751         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26752
26753         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26754
26755 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26756
26757         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26758         string arrays.
26759
26760 2004-08-28  Martin Baulig  <martin@ximian.com>
26761
26762         * metadata.c
26763         (mono_metadata_generic_inst_is_valuetype): New public function.
26764
26765         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26766         mono_metadata_generic_inst_is_valuetype() if we're a generic
26767         instance to check whether our underlying type is a valuetype.
26768
26769 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26770
26771         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26772         #63768.
26773
26774 2004-08-25  Martin Baulig  <martin@ximian.com>
26775
26776         * loader.c (mono_get_method_from_token): Abstract methods can also
26777         be generic and thus have type parameters.
26778
26779         * metadata-internals.h
26780         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26781
26782         * reflection.c (mono_image_get_generic_param_info): Don't create a
26783         metadata row, just add an entry to the `gen_params' array.
26784         (build_compressed_metadata): Sort the `gen_params' array and then
26785         actually create the metadata.
26786
26787 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26788
26789         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26790
26791 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26792
26793         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26794
26795 2004-08-24  Martin Baulig  <martin@ximian.com>
26796
26797         * class.cs (mono_class_is_subclass_of): Like an interface, a
26798         generic instance also derives from System.Object.
26799
26800 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26801
26802         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26803         custom modifiers to be in any order. Fixes #61990.
26804
26805 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26806
26807         * object.c: Register mono_object_new_fast icall.
26808         
26809         * object.c (mono_class_get_allocation_ftn): Return to calling
26810         mono_object_new_fast, since it seems faster to compute the object 
26811         size in unmanaged code than passing it as a parameter.
26812
26813         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26814
26815         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26816         this function with Boehm as the oom handler, so we don't have to check
26817         the result of GC_malloc.
26818
26819         * object.c: Remove checks for oom.
26820
26821         * object.h object.c (mono_class_get_allocation_ftn): New function to
26822         return the icall which can be used to allocate an instance of a given
26823         class. 
26824
26825         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26826
26827         * class-internals.h: Add 'enabled' field.
26828
26829 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26830
26831         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26832
26833 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26834         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26835         value 0x0010.
26836
26837 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26838
26839         * appdomain.c: use the Tls function for appdomain too,
26840         at Zoltan's request. Actually return in mono_context_get
26841
26842         * appdomain.c, profiler.c, threads.c: use __thread
26843
26844 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26845
26846         * appdomain.c threads.c: Call GC_CreateThread on windows.
26847
26848         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26849         multiple libraries since this don't work on windows.
26850
26851 2004-08-18  Martin Baulig  <martin@ximian.com>
26852
26853         * class-internals.h
26854         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26855         MonoMethodHeader.
26856
26857         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26858         MonoMethodNormal since we also need it for abstract and interface
26859         methods.
26860
26861         * reflection.c
26862         (build_compressed_metadata): Sort the GenericParam table.
26863         (mono_image_create_token): Added `gboolean create_methodspec'
26864         argument; this is false when generating a MethodImpl token.
26865         (reflection_methodbuilder_to_mono_method): Abstract and interface
26866         methods may also have generic parameters.
26867
26868 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26869
26870         * appdomain.c: thread local alloc
26871
26872 2004-08-17  Martin Baulig  <martin@ximian.com>
26873
26874         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26875
26876         * icall.c
26877         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26878         argument.
26879
26880         * class.c (mono_type_get_full_name): New public function.
26881         (mono_type_get_name): Don't include the type arguments.
26882
26883 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26884
26885         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26886         for inclusion into the mono executable.
26887
26888 2004-08-16  Martin Baulig  <martin@ximian.com>
26889
26890         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26891         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26892
26893 2004-08-14  Martin Baulig  <martin@ximian.com>
26894
26895         * class.c (dup_type): Also copy the `byref' field.
26896
26897 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26898
26899         * reflection.c (create_dynamic_mono_image): Revert the last change 
26900         since it breaks bootstrap.
26901
26902 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26903
26904         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26905
26906         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26907         not free them with g_free.
26908
26909 2004-08-11  Martin Baulig  <martin@ximian.com>
26910
26911         * reflection.c (mono_reflection_setup_internal_class): Also call
26912         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26913
26914 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26915
26916         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26917         called during default (first) AppDomain creation. Keep track of
26918         Evidence when loading assemblies.
26919
26920 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26921
26922         * opcodes.c, opcodes.h: reduce runtime relocations.
26923
26924 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26925
26926         * culture-info.h, locales.c: fixes and chages to sue the new
26927         optimized format of the locale data.
26928         * culture-info-tables.h: regenerated.
26929
26930 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26931         
26932         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26933
26934 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26935
26936         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26937         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26938         * domain-internals.h: icall declaration.
26939         * icall.c: icall registration.
26940         * object-internals.h: New fields in MonoAssembly for CAS.
26941
26942 2004-08-05  Duncan Mak  <duncan@ximian.com>
26943
26944         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26945         CEE_LDELEM_ANY.
26946
26947 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26948
26949         * reflection.c: fix to deal with object[] arrays in custom ctors
26950         (bug #62550).
26951
26952 2004-08-05  Martin Baulig  <martin@ximian.com>
26953
26954         * class.c (mono_class_array_element_size): Added support for
26955         generic instances and correctly handle "recursive" types.
26956
26957 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26958
26959         * assembly.c: Fix warnings.
26960
26961 2004-08-04  Martin Baulig  <martin@ximian.com>
26962
26963         * class.c
26964         (mono_type_get_name_recurse): Added `gboolean include_arity'
26965         argument specifying whether or not we should include the generic
26966         arity in the type name.
26967         (_mono_type_get_name): New static function.
26968         (mono_class_setup_vtable): If we're a generic instance, don't
26969         include the generic arity in the names of explicit method
26970         implementations.        
26971
26972 2004-08-03  Martin Baulig  <martin@ximian.com>
26973
26974         * class.c (mono_type_get_name_recurse): Enclose the generic type
26975         arguments in `<', '>'.
26976
26977 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26978
26979         * gc.c: make GC warning messages use the trace API, they are just
26980         noise to most of the users.
26981
26982 2004-08-03  Martin Baulig  <martin@ximian.com>
26983
26984         * debug-mono-symfile.c (read_string): Correctly read the string.
26985
26986 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26987
26988         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26989         
26990         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26991         icalls.
26992         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26993
26994 2004-07-30  Martin Baulig  <martin@ximian.com>
26995
26996         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26997         Reflect latest symbol writer changes.   
26998
26999 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27000
27001         * object.c: always create an object if null is passed
27002         to Invoke() where a valuetype is expected.
27003
27004 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
27005
27006         * marshal.c (mono_marshal_init): make managed
27007         signatures match native ones better for 64bits.
27008
27009 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27010
27011         * appdomain.c: hack to build correctly the private bin path on windows.
27012         Fixes bug #61991.
27013
27014 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
27015
27016         * assembly.c: Load mscorlib from the correct framework directory
27017           (mono/<version>/mscorlib.dll).
27018         * appdomain.h: Added prototypes for new functions.
27019         * internals.h: Added some prototypes.
27020         * domain.c: When initializing the runtime, get from the executable and
27021           the configuration files the runtime version that the app supports.
27022           Added support methods for reading app.exe.config. Added list of versions
27023           supported by the JIT. Added two new methods: mono_init_from_assembly,
27024           which initializes the runtime and determines the required version from
27025           the provided exe file, and mono_init_version, which initializes
27026           the runtime using the provided version.
27027         * icall.c: Get machine.config from version-specific directory.
27028         * reflection.c: When generating an image, embed the version number
27029           of the current runtime.
27030
27031 2004-07-28  Dick Porter  <dick@ximian.com>
27032
27033         * socket-io.c
27034         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
27035         returned sockaddr size before creating the remote address object.
27036         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
27037         61608.
27038
27039 2004-07-28  Dick Porter  <dick@ximian.com>
27040
27041         * locales.c (string_invariant_compare_char): Fix invariant char
27042         compares between upper and lower cases.  Fixes bug 61458.
27043
27044 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
27045         
27046         * marshal.c: actually cache stelem.ref wrappers.
27047         
27048 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
27049
27050         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
27051         sections and remove the mono_cli_rva_map () function.
27052
27053 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27054
27055         * debug-mono-symfile.c: fix one more endianess issue, from a patch
27056         by Geoff Norton (<gnorton@customerdna.com>).
27057
27058 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27059
27060         * class.c: fix class loads for pointer types (typeof(int) !=
27061         typeof(int*)).
27062
27063 2004-07-27  Martin Baulig  <martin@ximian.com>
27064
27065         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
27066         reading the debugging information from an external ".mdb" file.
27067
27068 2004-07-24  Martin Baulig  <martin@ximian.com>
27069
27070         * reflection.c (mono_image_get_type_info): Only write a class
27071         layout entry if we actually have a size or a packing size.
27072
27073 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27074
27075         * reflection.c (type_get_fully_qualified_name): 
27076         insert cast to get type checking of ?: with non-gcc compilers
27077
27078 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27079
27080         * rand.c: use g_getenv for both lookups of
27081         MONO_EGD_SOCKET
27082
27083 2004-07-17  Martin Baulig  <martin@ximian.com>
27084
27085         * reflection.c (mono_reflection_bind_generic_method_parameters):
27086         Set `gmethod->reflection_info'.
27087
27088 2004-07-17  Martin Baulig  <martin@ximian.com>
27089
27090         * class.c (mono_class_create_from_typedef): Insert the newly
27091         created class into the hash table before computing the interfaces
27092         since we could be called recursively.
27093
27094 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
27095
27096         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
27097         function to implement stelem.ref in managed code
27098         * class-internals.h, debug-helpers.c: a new wrapper type
27099         for the above.
27100
27101 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27102
27103         * gc.c: allow GC handles to work even when no GC is compiled in.
27104         Fix part of bug #61134 (GetAddrOfPinnedObject).
27105
27106 2004-07-13  Peter Williams  <peter@newton.cx>
27107  
27108         * process.c (complete_path): Make sure we don't attempt to execute
27109         directories.
27110  
27111 2004-07-12  Geoff Norton <gnorton@customerdna.com>
27112
27113         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
27114           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
27115           and will add/subtract the hour if needed
27116
27117 2004-07-12  Martin Baulig  <martin@ximian.com>
27118
27119         * reflection.c (mono_field_get_object): If we have
27120         `field->generic_info', take the attributes from
27121         `field->generic_info->generic_type'.    
27122
27123 2004-07-12  Martin Baulig  <martin@ximian.com>
27124
27125         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
27126         This function must be called before initializing the runtime.
27127         (mono_debug_init_1): New function; call this after initializing
27128         the runtime, but before loading the assembly.  It tells the
27129         debugger to load corlib and the builtin types.
27130
27131         * mono-debug-debugger.c: Did some larger changes in the debugging
27132         code; support recursive class declarations, make sure we actually
27133         add all classes.
27134
27135 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27136
27137         * debug-helpers.c: undo my previous patch and fixed the real issue in
27138         ../mini/exceptions-x86.c
27139
27140 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27141
27142         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
27143         when no HOME env. variable was set and a NullRef was thrown in a .cctor
27144         called from other .cctors.
27145
27146 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
27147
27148         * loader.c: Removed the mono_loader_wine_init hack now that we are
27149         doing a managed version of Windows.Forms.
27150
27151 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
27152
27153         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
27154         threadpool.c, threads.c: remove static data from rootset.
27155
27156 2004-07-09  Dick Porter  <dick@ximian.com>
27157
27158         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
27159         Don't do any more processing if the matched length was 0.  It was
27160         increasing the size of the string before.  Fixes bug 61167.
27161
27162 2004-07-09  Dick Porter  <dick@ximian.com>
27163
27164         * socket-io.h:
27165         * socket-io.c
27166         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
27167         Add support for SO_PEERCRED if its available.
27168
27169 2004-07-09  Peter Bartok <pbartok@novell.com>
27170         * loader.c: winelib.exe.so error message is now only displayed if
27171         MONO_DEBUG is set. To help us avoid questions when people are trying
27172         out the new Managed.Windows.Forms.
27173
27174 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
27175
27176         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
27177         for isinst and castclass wrappers.
27178
27179         * class-internals.h icall.c: Move registration and lookup of JIT icalls
27180         to libmetadata from the JIT, so they could be used by the marshalling
27181         code and the interpreter.
27182
27183         * marshal.c: Register marshalling related JIT icalls here instead of
27184         in mini.c. Use CEE_MONO_ICALL instead of the family of 
27185         CEE_MONO_PROC<x> opcodes to call marshalling functions.
27186
27187         * metadata.h: Remove unneeded marshalling conversions.
27188
27189         * opcodes.c: Update for new opcodes.
27190         
27191 2004-07-08  Martin Baulig  <martin@ximian.com>
27192
27193         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
27194         (mono_debug_get_domain_data): Make this function static.
27195
27196 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27197
27198         * gc.c, object.h: add nice GC handle API for embedders.
27199
27200 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
27201
27202         * reflection.c: more changes for the new api
27203
27204         * object.c: When we reflect on a field w/ a constant value, it
27205         will not have a memory location, so we must access metadata. Also,
27206         allow easier reading of strings so that we can read them from
27207         the constant data.
27208
27209         * class.c (mono_class_layout_fields): no need for literal fields here.
27210
27211         * class-internals.h: api changes for const fields
27212
27213         * icall.c (ves_icall_get_enum_info): use new apis for const fields
27214
27215 2004-07-06  Martin Baulig  <martin@ximian.com>
27216
27217         * mono-debug.h: Increment version number to 44.
27218
27219         * mono-debug.c (mono_debug_add_wrapper): The second argument is
27220         now a gpointer, rewrote this whole method.
27221
27222         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
27223         function.  Add information about the wrapper in a new "misc table".
27224
27225         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
27226         for the new misc table.
27227
27228 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
27229
27230         * metadata-internals.h image.c: Add a cache for helper signatures.
27231
27232         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
27233
27234 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
27235
27236         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
27237         delegates from a delegate. Fixes #61033.
27238         
27239         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
27240         marshalling of stringbuilder arrays. Fixes #59900.
27241
27242 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
27243
27244         * icall.c: Add EnumBuilder:setup_enum_type icall.
27245
27246 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
27247
27248         * icall.c: Added a new icall for the property version of
27249         OffsetOfStringData.
27250
27251 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
27252
27253         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
27254         it has a constant size across platforms.
27255
27256         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
27257         stack trace.
27258
27259 2004-06-29  Martin Baulig  <martin@ximian.com>
27260
27261         * mono-debug.c (mono_debug_add_method): Protect the whole function
27262         in mono_debugger_lock(), not just parts of it.
27263
27264 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
27265
27266         * reflection.c: make sure padding bytes in heaps are zeroed.
27267
27268 2004-06-24  David Waite  <mass@akuma.org>
27269
27270         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
27271         image.c, loader.c, locales.c, marshal.c, metadata.c,
27272         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
27273         string-icalls.c, threads.c: change to C90-style comments from C99 /
27274         C++ -style
27275
27276 2004-06-24  Dick Porter  <dick@ximian.com>
27277
27278         * threads.c
27279         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
27280         return createdNew.  Fixes bug 60412.
27281
27282         * threads-types.h: 
27283         * icall.c: Add createdNew parameter to CreateMutex icall
27284
27285 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27286
27287         * reflection.c, object-internals.h: save default value in params.
27288
27289 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27290
27291         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
27292         no need to build a new path combining that with the application base.
27293         Fixes bug #60442.
27294
27295 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
27296
27297         * reflection.c: fixed minor standard compliance issues.
27298
27299 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27300
27301         * reflection.c: fixed issue with encoding some custom attributes
27302         (arrays in properties and fields, bug #60411).
27303
27304 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27305
27306         * reflection.c: fix start address when copying the public key token.
27307
27308 2004-06-23  Martin Baulig  <martin@ximian.com>
27309
27310         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
27311         the `exc' object in a static object to put it into the GC's root set.
27312
27313 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
27314
27315         * reflection.c: make mono_reflection_setup_internal_class ()
27316         callable a second time to setup a new parent class.
27317
27318 2004-06-23  Dick Porter  <dick@ximian.com>
27319
27320         * threads.c: Check for WAIT_IO_COMPLETION return values.
27321
27322 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
27323
27324         * appdomain.c: Removed the g_free on the public key token. Now copy 
27325         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
27326         * assembly.c: Added public key token string value when loading 
27327         assemblies. Fix bug #60439.
27328         * icall.c: Added missing informations (like public key) in 
27329         GetReferencedAssemblies. Fix #60519.
27330         * image.h: Changed definition for public key token from const char*
27331         public_tok_value to guchar public_key_token [17];
27332         * reflection.c: Updated for changes to public key token.
27333
27334 2004-06-22  Lluis Sanchez Gual
27335
27336         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
27337         for the field in base classes.
27338
27339 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27340
27341         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
27342         mark headers as not supported, they are installed only for use by the
27343         debugger.
27344
27345 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
27346
27347         * *.c, *.h: avoid namespace pollution in public headers.
27348
27349 2004-06-21  Martin Baulig  <martin@ximian.com>
27350
27351         * exception.c (mono_get_exception_security): It's in
27352         "System.Security", not in "System".
27353
27354         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
27355         the exception classes.
27356
27357 2004-06-21  Martin Baulig  <martin@ximian.com>
27358
27359         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
27360         Protect the exception object from being finalized.
27361
27362 2004-06-21  Martin Baulig  <martin@ximian.com>
27363
27364         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
27365         public function.
27366
27367 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
27368
27369         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27370         if it was not loaded before. Fix parts of #60439.
27371
27372 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27373
27374         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27375         code that was broken since Ben's change: wrappers are now
27376         dependent on the method signature only again.
27377
27378 2004-06-21  Martin Baulig  <martin@ximian.com>
27379
27380         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27381         added interface support.
27382
27383 2004-06-21  Martin Baulig  <martin@ximian.com>
27384
27385         * class.c (mono_vtable_get_static_field_data): New public method.
27386
27387 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27388
27389         * filewatcher.c : Windows build fix to be compliant with API changes.
27390
27391 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27392
27393         * class.h, class.c: more accessors.
27394         * metadata.h, metadata.c: prepare for hiding MonoType and
27395         MonoMethodSignature: people should use the accessors from now on
27396         outside of the tree.
27397
27398 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27399
27400         * *.c, *.h: more API cleanups.
27401
27402 2004-06-18  Jackson Harper  <jackson@ximian.com>
27403
27404         * assembly.c: Trace loading assemblies.
27405         * loader.c: Trace loading native libraries.
27406         * mono-config.c: Trace loading config files.
27407         
27408 2004-06-18  Dick Porter  <dick@ximian.com>
27409
27410         * locales.c: Tell ICU the lengths of strings, it can cope with
27411         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27412
27413 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27414
27415         * image.c: swapped name/filename;
27416
27417 2004-06-18  Martin Baulig  <martin@ximian.com>
27418
27419         * mono-debug-debugger.c (write_class): Write the parent class at
27420         the end of the header.
27421
27422 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27423
27424         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27425
27426 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27427
27428         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27429         (bundle_obj): New conditional define.
27430         (BUILT_SOURCES): Remove.
27431         ($(bundle_srcs)): Make parallel-make safe.
27432         (libmonoruntime_la_LIBADD): Make unconditional.
27433         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27434         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27435
27436 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27437
27438         * culture-info-tables.h: It was inconsistent with the latest
27439           supp info files.
27440
27441 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27442
27443         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27444         be loaded.
27445
27446         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27447         with gcc 2.95.
27448
27449 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27450
27451         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27452         cleaned up public header threads.h.
27453
27454 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27455
27456         * Makefile.am, *.c, *.h: more API cleanups.
27457
27458 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27459
27460         * Makefile.am: removed monosn from compilation.
27461         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27462         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27463         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27464         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27465         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27466         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27467
27468 2004-06-15  Jackson Harper  <jackson@ximian.com>
27469
27470         * assembly.c: Make locales lower case when searching the GAC for
27471         assemblies. gacutil will always make locales lowercase when
27472         installing so this effectively makes them case insensitive.
27473         
27474 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27475
27476         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27477         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27478           parameter which allows to choose whether the wait can be interrupted or 
27479           not. Also added the method mono_monitor_enter(), which locks the monitor
27480           using an infinite wait and without allowing interruption.
27481           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27482           interrupted.
27483         * object.h: Added new fields in MonoThread. suspend_event holds the event
27484           used to susped/resume the thread. synch_lock is the lock object to use for
27485           modifying the thread state.
27486         * threads.c: Use the new synch_lock object for locking, instead of "this",
27487           which can generate deadlocks.
27488           Moved thread state change in Thread.Sleep and Thread.Join from managed
27489           to unmanaged code. This avoids a deadlock when the thread was suspended
27490           just after acquiring the thread lock.
27491           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27492           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27493           which is not fully implemented in the io-layer.
27494         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27495
27496 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27497
27498         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27499         threads-types.h: more API cleanups.
27500
27501 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27502
27503         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27504         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27505         threadpool.c, threads.c: first pass at the exported API cleanup.
27506
27507 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27508
27509         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27510
27511 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27512
27513         * icall.c: added internalGetHome.
27514
27515 2004-06-14  Dick Porter  <dick@ximian.com>
27516
27517         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27518         possible to return successfully when '.' or '..' were the only
27519         entries in a directory, but were skipped.  The MonoIOStat was not
27520         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27521         Fixes bug 59574.
27522
27523 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27524
27525         * reflection.c: make binaries run on .Net 1.1 by default.
27526
27527 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27528
27529         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27530
27531 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27532
27533         * marshal.c: keep track of struct size with explicit layout
27534         (bug #59979).
27535
27536 2004-06-12  Martin Baulig  <martin@ximian.com>
27537
27538         * mono-debug-debugger.c: Comment out a debugging g_message().
27539
27540 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27541
27542         * reflection.c, reflection.h: do not free custom attrs that are cached.
27543         * icall.c: use braces to make code clearer.
27544
27545 2004-06-11  Martin Baulig  <martin@ximian.com>
27546
27547         * class.h (MonoInflatedField): New type.
27548         (MonoClassField): Replaced `MonoType *generic_type' with
27549         `MonoInflatedField *generic_info'.
27550
27551         * icall.c
27552         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27553
27554 2004-06-11  Martin Baulig  <martin@ximian.com>
27555
27556         * reflection.c (mono_image_create_method_token): Correctly encode
27557         varargs methods.
27558
27559 2004-06-11  Martin Baulig  <martin@ximian.com>
27560
27561         * metadata.c (mono_metadata_parse_method_signature): When parsing
27562         a MethodDef which has VarArgs, also set sentinelpos if we don't
27563         have any parameters.
27564
27565 2004-06-11  Martin Baulig  <martin@ximian.com>
27566
27567         * verify.c (mono_method_verify): In CEE_CALL, use
27568         mono_method_get_signature() to get the method's signature, unless
27569         we're a PInvoke method.
27570
27571 2004-06-10  Jackson Harper  <jackson@ximian.com>
27572
27573         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27574         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27575         logical name as the supplied path is just a prefix to the gac not
27576         the direct path to it.
27577         
27578 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27579
27580         * reflection.c: make the token for a created method match
27581         the token of the MethodBuilder it was created from
27582         (IKVM requires this behaviour now).
27583
27584 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27585
27586         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27587         reflection.c, socket-io.c: leak fixes.
27588
27589 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27590
27591         * icall.c: handle sentinel pos in vararg methods in position different
27592         from 0.
27593
27594 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27595
27596         * culture-info-tables.h: freshly generated.
27597
27598 2004-06-09  Martin Baulig  <martin@ximian.com>
27599
27600         * loader.c (mono_get_method_constrained): Call `mono_class_init
27601         (constrained_class)'.   
27602
27603 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27604
27605         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27606         any methods. Fixes #59629.
27607
27608 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27609
27610         * culture-info-tables.h: reflecting locale-builder updates.
27611
27612 2004-06-08  Dick Porter  <dick@ximian.com>
27613
27614         * object.h:
27615         * locales.c: Fixed compile warnings, including a real bug in
27616         CompareInfo_internal_compare.
27617         
27618 2004-06-08  Dick Porter  <dick@ximian.com>
27619
27620         * locales.c
27621         (ves_icall_System_Globalization_CompareInfo_internal_index):
27622         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27623         Double-check the resuls of usearches, because ICU currently
27624         ignores most of the collator settings here.  Fixes bug 59720.
27625         
27626 2004-06-08  Dick Porter  <dick@ximian.com>
27627
27628         * locales.c
27629         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27630         Fix memory leak and segfault-causing typo.  No idea how this one
27631         lasted so long without being noticed.
27632
27633 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27634
27635         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27636         any methods. Fixes #59629.
27637
27638 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27639
27640         * assembly.c:
27641         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27642         own the critical section before). Removed dead code (that's done
27643         in the preload hook).
27644
27645         (mono_assembly_load_with_partial_name): call the preload hook.
27646
27647 2004-06-08  Martin Baulig  <martin@ximian.com>
27648
27649         * metadata.c (mono_metadata_signature_alloc): Default
27650         `sentinelpos' to -1.
27651
27652         * reflection.c (mono_image_get_array_token): Likewise.
27653
27654 2004-06-08  Martin Baulig  <martin@ximian.com>
27655
27656         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27657
27658         * metadata.c (mono_metadata_parse_method_signature): When parsing
27659         a MethodDef which has VarArgs, set sentinelpos.
27660
27661         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27662         `gint16' since we're using -1 for non-varargs methods.
27663
27664         * reflection.c
27665         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27666         (method_encode_signature): Added varargs support.
27667         (method_builder_encode_signature): Likewise.
27668         (mono_image_get_varargs_method_token): New static method.
27669         (mono_image_create_method_token): New public method; this is
27670         called via an icall instead of mono_image_create_token() when
27671         calling a varargs method.       
27672
27673 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27674
27675         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27676
27677 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27678
27679         * culture-info-tables.h : Reflecting the latest locale-builder that
27680           fixed empty array representation ({} to {0}).
27681
27682 2004-06-07  Jackson Harper  <jackson@ximian.com>
27683
27684         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27685         looking up extra gac paths. This allows MONO_GAC_PATH to act
27686         exactly like a prefix.
27687         
27688 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27689
27690         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27691         type name before modifying it. Fixes #59405.
27692
27693 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27694
27695         * culture-info.h: added fields for "all datetime patterns".
27696         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27697           _construct_datetime_format ()): fill xxx_patterns fields.
27698         * object.h: added fields for "all datetime patterns" to
27699           MonoDateTimeFormatInfo.
27700         * culture-info-tables.h: reflecting locale-builder updates.
27701
27702 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27703
27704         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27705         the event has no add and remove methods. Fixes #59629.
27706
27707 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27708
27709         * object.c: Fixed possible integer overflow when allocating large
27710         strings.
27711
27712 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27713
27714         * culture-info-tables.h: reflecting locale-builder updates.
27715
27716 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27717
27718         * culture-info-tables.h: reflecting locale-builder updates.
27719
27720 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27721
27722         * culture-info-tables.h: reflecting locale-builder updates.
27723
27724 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27725
27726         * threads.c: Made Thread.Sleep abortable.
27727
27728 2004-06-02  Martin Baulig  <martin@ximian.com>
27729
27730         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27731
27732         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27733
27734 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27735
27736         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27737
27738 2004-05-30  Jackson Harper  <jackson@ximian.com>
27739
27740         * reflection.c: Do not hardcode assembly versions or public key
27741         tokens anymore. All of this except the corlib section was dead
27742         code anyways.
27743         
27744 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27745
27746         * object.c (mono_runtime_invoke_array): Automatically create boxed
27747         objects for byref valuetypes if needed. Fixes #59300.
27748         
27749         * object.c (mono_method_return_message_restore): Handle 
27750         MONO_TYPE_OBJECT as well.
27751
27752 2004-05-28  Jackson Harper  <jackson@ximian.com>
27753
27754         * reflection.c: The modified type encoding was causing build
27755         problems. Reverted for now.
27756         
27757 2004-05-28  Jackson Harper  <jackson@ximian.com>
27758
27759         * reflection.c/h: Take an assembly ref so that we dont create
27760         fully qualified names when encoding types in the same assembly as
27761         the custom attribute being emitted.
27762         * appdomain.c: Increment version number.
27763         
27764 2004-05-26  Duncan Mak  <duncan@ximian.com>
27765
27766         * icall.c
27767         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27768         Set the full version number (major, minor, build, revision).
27769
27770 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27771
27772         * marshal.c (emit_struct_conv): increment src/dst after blit
27773         (mono_marshal_get_managed_wrapper,
27774         mono_marshal_get_native_wrapper): make sure we have marshalling
27775         info before marshalling params (info computation affects
27776         blittable)
27777
27778         * class.c (class_compute_field_layout): correctly deal with
27779         blittable
27780         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27781         value types (as per what windows dows by default)
27782         (mono_class_setup_mono_type): System.ValueType is blittable
27783         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27784         blittable
27785
27786         * marshal.c (mono_marshal_load_type_info): flag types  as
27787         non-blittable if the native layout doesn't match the managed
27788         layout
27789
27790 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27791
27792         * appdomain.c: don't add stuff in the private search path that is
27793         above the application base. If application base is not set, there's
27794         no private search path.
27795
27796 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27797
27798         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27799         byref struct arguments in native->managed marshalling.
27800
27801 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27802
27803         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27804         cache methods using signature (special case for methods
27805         that are value type or string class)
27806         
27807         * image.c (mono_image_close): clean up allocated GSList's
27808         in runtime_invoke_cache.
27809
27810 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27811
27812         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27813         there's no MONO_CFG_DIR environment variable defined.
27814
27815 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27816
27817         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27818
27819 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27820
27821         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27822           is interrumped.
27823         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27824           before waiting for it, and call CloseHandle after the wait to unref it.
27825           This will make sure that handles are not disposed too early.
27826
27827 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27828
27829         * appdomain.c:
27830         * appdomain.h:
27831         * icall.c: removed
27832         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27833         needed now.
27834
27835         * object.c: se the application_base only for the domain that runs
27836         Main. Fixes bug #59216,
27837
27838 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27839
27840         * appdomain.c:
27841         * object.c: only the domain in which Main is run have
27842         SetupInformation.ConfigurationFile set, so moved a few lines from
27843         appdomain.c to object.c.
27844
27845 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27846
27847         * appdomain.c: we tried to load [name].(dll|exe), but according
27848         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27849         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27850         There's a test case attached to bug #58922.
27851
27852 2004-05-27  Dick Porter  <dick@ximian.com>
27853
27854         * icall.c:
27855         * file-io.c: Implemented icalls for locking and unlocking regions
27856         in a file.
27857         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27858         FALSE on error (fixes both compiler warning and real bug.)
27859
27860 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27861
27862         * culture-info-tables.h: reflecting locale-builder updates.
27863
27864           (Added missing ChangeLog entry for 05/26)
27865
27866 2004-05-27  Jackson Harper  <jackson@ximian.com>
27867
27868         * locales.c: Fix some cut and paste errors.
27869         
27870 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27871
27872         * mono-config.c: set the correct path for config. directory on windows.
27873
27874 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27875
27876         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27877           on win32.
27878
27879 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27880
27881         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27882         from pinvoke functions.
27883         
27884         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27885
27886 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27887
27888         * culture-info-tables.h: reflecting locale-builder updates.
27889
27890 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27891
27892         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27893         #59086.
27894
27895 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27896
27897         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27898         * icall.c: Modified icalls for RNG.
27899         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27900         Windows (CryptoAPI).
27901
27902 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27903
27904         * locales.c: Fix build.
27905
27906 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27907
27908         * culture-info-tables.h: reflecting locale-builder updates.
27909
27910 2004-05-25  Jackson Harper  <jackson@ximian.com>
27911
27912         * locales.c: When creating the current culture use the $LANGs
27913         specific culture. So DateTimeFormat and NumberFormat entries are created.
27914         
27915 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27916
27917         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27918         a char array as parameter.
27919
27920 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27921
27922         * image.c: In mono_image_open(), always use an absolute path name to
27923           look for already loaded images.
27924
27925 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27926
27927         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27928         missing in the windows build (like older cygwin include files).
27929
27930 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27931
27932         * icall.c: Fixed check for possible integer overflow in Buffer_
27933         BlockCopy icall. Replaced comments style // by /* */.
27934
27935 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27936
27937         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27938         
27939         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27940         check after MONO_VTADDR. Fixes pinvoke2.exe.
27941
27942         * marshal.h marshal.c metadata.h: Add beginnings of support for
27943         ftnptr -> delegate marshalling.
27944
27945 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27946
27947         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27948         * threads.c: Fix warnings.
27949
27950 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27951
27952         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27953         * icall.c: Registered icalls for Suspend and Resume.
27954         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27955           Thread.Abort.
27956         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27957         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27958         * process.c: Use WaitForSingleObjectEx.
27959         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27960           checkpoints.
27961         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27962           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27963           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27964           background threads. Added basic support for Abort in Windows.
27965           Start new threads using a managed delegate invoke wrapper. This wrapper
27966           has an interruption checkpoint that is needed since an interruption
27967           can be requested before the thread leaves the unmanaged code that starts 
27968           the thread.
27969         * marshal.c: Added interruption checkpoint after every native call, and
27970           also before managed calls for wrappers called from unmanaged code to
27971           go into managed code.
27972         * object.h: Added new field in MonoThread to keep track of interruption
27973           requests.
27974
27975 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27976
27977         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27978         calls.
27979
27980 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27981
27982         * appdomain.c:
27983         * assembly.c:
27984         * gc.c:
27985         * locales.c:
27986         * mono-config.c:
27987         * rand.c: getenv -> g_getenv (windows!)
27988
27989         * process.c: complete_path is also used on non-windows platforms.
27990
27991 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27992
27993         * icall.c: new signature for Process_Start.
27994
27995         * process.[ch]: new signature for Process_Start. If we're on windows
27996         and UseShellExecute is false, we have to search for the program by
27997         ourselves if we don't get a full path.
27998
27999 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
28000
28001         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
28002         marshalling and call CleanUpNativeData if needed. Fixes #58646.
28003
28004 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28005
28006         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
28007         Fixes bug #58373.
28008
28009 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28010
28011         * process.c: use double quotes to quote program name and arguments on
28012         windows. Fixes bug #58575.
28013
28014 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28015
28016         * file-io.c: don't return "." and ".." when using windows Find*File.
28017
28018 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
28019
28020         * marshal.c: Don't pass wrappers to message init because method 
28021         addressed used to lookup metadata. part of remoting[2|3] fix.
28022
28023 2004-05-15  Jackson Harper  <jackson@ximian.com>
28024
28025         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
28026         path is essentially the same as MONO_PATH except that it points to
28027         GACs instead of lib directories.
28028         * loader.h: The user gac is gone so we dont need function to
28029         enable/disable it.
28030         * mono-config.c: user gac option is now gone.
28031         
28032 2004-05-15  Jackson Harper  <jackson@ximian.com>
28033
28034         * culture-info.h: Make defines more consistent, add calendar data
28035         to the culture info table.
28036         * culture-info-tables.h: Add basic calendar data. Basically
28037         everyone gets default gregorian until all the data is
28038         updated.
28039         * locales.c: Use the new consistent defines. Set calendar data for
28040         culture info objects.
28041         * object.h: add a field for calendar data to CultureInfo
28042         
28043 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
28044
28045         * image.c: image->runtime_invoke_cache is keyed on signatures now.
28046         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
28047         a signature.
28048         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
28049         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
28050         an extra param that is the pointer of the method to invoke. The IL for
28051         the invoke method is no longer specific to the method, but to the
28052         signature of the method. Thus, we can share the same code for multiple
28053         methods. This reduces the number of methods that have to be compiled.
28054
28055 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
28056
28057         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
28058
28059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28060
28061         * icall.c: Optimize Buffer.BlockCopy.
28062
28063 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28064
28065         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
28066         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
28067         quote). Changed them to "MMMM yyyy".
28068
28069 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
28070
28071         * rand.c
28072         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
28073
28074 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
28075
28076         * reflection.h: Updated after changes to managed structures.
28077
28078         * appdomain.c: Bump corlib version.
28079
28080 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28081
28082         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
28083         windows.
28084
28085 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28086
28087         * Makefile.am: link to ../os/libmonoos.la on windows.
28088
28089         * assembly.c:
28090                 -If MONO_DEBUG, warn about non-existing directories in
28091                 MONO_PATH.
28092                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
28093                 compile time variable.
28094                 -Removed init_default_path and call mono_set_rootdir from
28095                 libmonoos.a instead (windows only).
28096
28097         * assembly.h: declare mono_assembly_getrootdir().
28098
28099         * domain.c:
28100         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
28101
28102         * loader.c: s/getenv/g_getenv/
28103
28104 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
28105
28106         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
28107
28108         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
28109
28110         * metadata.h: Add new marshalling conversions.
28111
28112         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
28113         function.
28114
28115         * reflection.c (mono_reflection_get_type): Lookup the type in all
28116         modules of a multi-module assembly. Fixes #58291.
28117
28118 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
28119
28120         * threads.c: Before aborting a background, set the StopRequested
28121         state.  This avoids throwing the Abort exception.
28122         In mono_thread_manage, don't continue with the shutdown until all
28123         aborted threads have actually stopped.
28124
28125 2004-05-10  Jackson Harper  <jackson@ximian.com>
28126
28127         * locales.c: Remove the modifier from culture names.
28128         
28129 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28130
28131         * Makefile.am: monosn is not installed any more. It has been deprecated
28132         in favor of sn.
28133
28134 2004-05-07  Jackson Harper  <jackson@ximian.com>
28135
28136         * locales.c
28137         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
28138         Fix array construction, add bailout if the length is 0.
28139
28140 2004-05-07  Dick Porter  <dick@ximian.com>
28141
28142         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
28143         machine doesn't have a DNS entry.  Patch by Urs Muff
28144         (umuff@quark.com), fixes bug 57928.
28145
28146 2004-05-06  Jackson Harper  <jackson@ximian.com>
28147
28148         * reflection.c: Handle null PublicTokens properly. alloc mem for
28149         assembly names culture so we dont crash when freeing it.
28150         
28151 2004-05-06  Jackson Harper  <jackson@ximian.com>
28152
28153         * assembly.c: Check the usergac when loading with partial names.
28154         
28155 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28156
28157         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
28158         does nothing for now (not required for Linux/Windows) but the class
28159         library can call it (and a newer or modified runtime could need it).
28160         * icall.c: Registred icall.
28161
28162 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28163
28164         * loader.c: prints a message on module loading error we set MONO_DEBUG
28165         environment variable.
28166
28167 2004-05-05  Jackson Harper  <jackson@ximian.com>
28168
28169         * appdomain.c: Handle PublicKeyToken=null properly.
28170         
28171 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28172
28173         * environment.c|h: Added icall ves_icall_System_Environment_
28174         GetOSVersionString to get the current OS version as a string.
28175         * icall.c: Registred icall.
28176
28177 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
28178
28179         * object.c: in mono_object_get_virtual_method(), take into account that
28180         non-virtual methods don't have a slot in the vtable. Check needed when
28181         the object is a proxy.
28182
28183 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
28184
28185         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
28186         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
28187
28188         * object.c (mono_class_compute_gc_descriptor): Fix warning.
28189
28190         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
28191         passed when a valuetype is expected.
28192
28193         * object.c (mono_unhandled_exception): Only set the exit code if the
28194         exception happens in the main thread. Fixes thread5.exe.
28195
28196         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
28197         invalid names. Fixes #58047.
28198
28199 2004-05-03  Jackson Harper  <jackson@ximian.com>
28200
28201         * assembly.c: This line was committed accidently and is unneeded.
28202         
28203 2004-05-03  Jackson Harper  <jackson@ximian.com>
28204
28205         * icall.c: Add new icall for Assembly::LoadWithPartialName
28206         * assembly.c/.h: new function that probes the GAC to load partial
28207         assembly names by Paolo Molaro.
28208         
28209 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28210
28211         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
28212         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
28213         (type_get_fully_qualified_name): Added PublicKeyToken when building a
28214         full type name.
28215
28216 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28217
28218         * appdomain.c: fixed check for 'neutral' culture and removed warning.
28219         * reflection.c: fix bug when parsing a full type name and Version is not
28220         the last thing in the string.
28221
28222 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
28223
28224         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
28225         crashes when it is freed.
28226
28227 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28228
28229         * assembly.c: print the compat warning to stderr.
28230
28231 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
28232
28233         * assembly.c (mono_assembly_load_references): Add a compatibility
28234         hack to run old applications that might be still referencing the
28235         3300-based assemblies, only do this for System.xxx.
28236
28237 2004-05-01  Jackson Harper  <jackson@ximian.com>
28238
28239         * appdomain.c: If the culture is neutral we set it to "".
28240         
28241 2004-04-29  Jackson Harper  <jackson@ximian.com>
28242
28243         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
28244
28245 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
28246  
28247         * string-icalls.c: added low overhead function for copying chars
28248         * icall.c: added needed icall for the above function
28249  
28250 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28251
28252         * icall.c: fix return value of get_global_assembly_cache.  Implemented
28253         Environment.GetLogicalDrives.
28254
28255 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
28256
28257         * rand.c: try and talk to egd or prngd
28258         for random bytes if opening devices fail.
28259
28260 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
28261
28262         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
28263         alignment for the type using the native alignment of its members 
28264         instead of using klass->min_align.
28265
28266         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
28267
28268 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28269
28270         * file-io.c:
28271         * socket-io.c: added check for sys/aio.h.
28272
28273 2004-04-28  Dick Porter  <dick@ximian.com>
28274
28275         * threads.c: Don't abort a thread thats already aborting, when
28276         terminating everything.
28277
28278 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28279
28280         * icall.c: added 2 new async calls for Socket.
28281
28282         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
28283         IO on *nix systems.
28284
28285         * threadpool.c: removed unused variable.
28286
28287 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
28288
28289         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
28290
28291 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
28292
28293         * locales.c: put back string_invariant_tolower () and
28294         string_invariant_toupper ().
28295
28296 2004-04-26 David Waite <mass@akuma.org>
28297
28298         * file-io.h:
28299         * socket-io.h:
28300         * threads.h:
28301         * unicode.h: remove comma from end of enumeration declarations
28302
28303 2004-04-26 David Waite <mass@akuma.org>
28304
28305         * debug-mono-symfile.h:
28306         * decimal.c:
28307         * mono_debug.h:
28308         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
28309
28310
28311 2004-04-26  Jackson Harper  <jackson@ximian.com>
28312
28313         * appdomain.c: Increment version number.
28314         
28315 2004-04-26  Jackson Harper  <jackson@ximian.com>
28316
28317         * appdomain.c: Set assembly references public token value when
28318         PublicKeyToken is specified, not the hash_value. Free public token
28319         values when free assembly name data. Previously the public key
28320         token was hex decoded, however we are using hex encoded public key
28321         tokens, so this is not neccasary.
28322         * assembly.c: Lookup assemblies in the gac if their public token
28323         value is set. Add function to allow enabling user gac
28324         lookups. Specify whether or not the assembly was loaded from the
28325         GAC. Compare full assembly names when checking the cache for
28326         assemblies (Temporarily disabled see comment in code). Remove
28327         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
28328         specifies trace-loader they get extra info to stdout on the
28329         loading of assemblies.
28330         * image.h: Add a field for an assembly references public token
28331         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
28332         whether an assembly has been loaded from the GAC.
28333         * image.c: Remove a corlib -> mscorlib name mapping.
28334         * loader.h: Add function to enable/disable the user gac.
28335         * mono-config.c: Check if the usergac is enabled in the config
28336         file.
28337         * icall.c: New icall to determine whether or not an assembly has
28338         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
28339         * tabldefs.h: Add constant for assemblyref flag that specifies a
28340         full public key is used instead of a public token.
28341         * reflection.c: Remove mscorlib -> corlib mappings. Set
28342         PublicTokenValue instead of hash value. This value is a hex
28343         string so it does not need to be expanded.
28344
28345 2004-04-26  Martin Baulig  <martin@ximian.com>
28346
28347         * mono-debug-debugger.c (mono_debugger_initialize): Set
28348         `mono_debugger_initialized' before calling mono_debug_lock().
28349
28350 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
28351
28352         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
28353           InternalToUpper/InternalToLower.
28354         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
28355           removed invariant culture shortcut.  This is now done in managed code.
28356         * locales.c: (string_invariant_toupper/tolower) removed.
28357
28358 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28359
28360         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
28361         Added Poll internal call.
28362
28363         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
28364         call for Poll. Select was too heavy for polling a single socket.
28365
28366         * threadpool.[ch]: added mono_threadpool_cleanup.
28367         * threads.c: use it. Don't use Thread_Abort on windows.
28368
28369 2004-04-23  Martin Baulig  <martin@ximian.com>
28370
28371         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28372
28373 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28374
28375         * icall.c: Registred new icalls for key pair protection and added an
28376         icall for Environment.GetFolderPath on Windows.
28377         * security.c|h: Added new icalls for key pair protection.
28378
28379 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28380
28381         * socket-io.c: don't display the non-supported family warning for known
28382         families. Now this is not displayed on windows when checking support
28383         for IPv4/IPv6.
28384
28385 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28386
28387         * class.c: don't display the layout warning for static fields.
28388
28389 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28390
28391         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28392         * locales.c, locales.h: Added new icalls for culture-specific
28393         Char.ToLower and Char.ToUpper.
28394
28395 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28396
28397         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28398         by David Waite.
28399
28400 2004-04-20  Martin Baulig  <martin@ximian.com>
28401
28402         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28403         of the type name before passing it to mono_reflection_type_from_name().
28404
28405 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28406
28407         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28408         encodings here. Fixes #56965.
28409
28410 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28411
28412         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28413         fix test on strstr result not that I can see anything that
28414         relies on the result.
28415
28416 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28417
28418         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28419         Fixes #57081.
28420
28421         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28422
28423         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28424         function to determine which marshalling to use for strings. Fixes
28425         #56965.
28426
28427         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28428
28429         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28430
28431 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28432
28433         * icall.c: #include mono-config.h
28434
28435 2004-04-15  Jackson Harper  <jackson@ximian.com>
28436
28437         * culture-info-tables.h: Fix date formats for en-US culture.
28438         
28439 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28440
28441         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28442         ThreadPool.SetMinThreads.
28443         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28444         ThreadPool.SetMinThreads.
28445
28446 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28447
28448         * mono-config.c: also load the .config file in the directory
28449         where the assembly was found.
28450
28451 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28452
28453         * assembly.c: load per-assembly config files.
28454         * icall.c: decrapified code to get the config dir and moved to
28455         mono-config.c.
28456         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28457         per-assembly config files. When doing a dll map lookup give precedence
28458         to the per-assembly data.
28459
28460 2004-04-14  Martin Baulig  <martin@ximian.com>
28461
28462         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28463         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28464         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28465
28466         * mono-debugger-debugger.c: While the debugger is locked, remember
28467         whether the symbol tables have changes and send one single
28468         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28469
28470 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28471
28472         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28473
28474         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28475         function.
28476
28477         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28478         account when marshalling string arrays. Fixes #56965.
28479
28480 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28481
28482         * icall.c: Add new icalls mapping for security.
28483         * security.c|h: Add internal calls for WindowsIdentity,
28484         WindowsImpersonationContext and WindowsPrincipal.
28485
28486 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28487
28488         * class.c: Added comment to ensure the System.MonoDummy class
28489         is removed when no longer necessary
28490
28491 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28492
28493         * appdomain.c: Pass arguments to the bootstraping exceptions to
28494         minimize JITed methods at boot
28495
28496         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28497         second string to be null.
28498
28499         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28500         Change the protocol to minimize the JIT methods at startup.  Now
28501         it Returns the internal codepage, if the value of "int_code_page"
28502         is 1 at entry, and we can not compute a suitable code page
28503         number, returns the code page as a string.
28504
28505 2004-04-13  Jackson Harper  <jackson@ximian.com>
28506
28507         * culture-info-tables.h: Fix number of decimal digits for all
28508         english locales.
28509
28510 2004-04-13  Jackson Harper  <jackson@ximian.com>
28511
28512         * icall.c: Clairfy out of sync error message. It is not always
28513         your corlib that is out of sync.
28514
28515 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28516
28517         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28518         properties when only the set accessor is overriden. Fixes #55874.
28519
28520 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28521
28522         * assembly.c (mono_assembly_load_references): Make this thread safe.
28523         Fixes #56327.
28524
28525 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28526
28527         * monosn.c: Add missing initialization calls.
28528
28529 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28530
28531         * locales.c:
28532         ves_icall_System_Globalization_CultureInfo_construct_number_format
28533         Fix g_assert so it compiles on fussier compilers re int/ptr
28534         mismatch
28535
28536 2004-04-08  Dick Porter  <dick@ximian.com>
28537
28538         * socket-io.h:
28539         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28540         53992.  Also rearrange the code so that the internal calls return
28541         an error value and exceptions are thrown from managed code.
28542
28543         * icall.c: Add type info to the socket icalls.
28544
28545 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28546
28547         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28548         owes me a beer.
28549
28550 2004-04-07  Martin Baulig  <martin@ximian.com>
28551
28552         * class.c (mono_class_from_generic_parameter): Don't default
28553         `klass->parent' to `mono_defaults.object_type'.
28554
28555 2004-04-07  Martin Baulig  <martin@ximian.com>
28556
28557         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28558         `param->pklass->reflection_info'.       
28559
28560 2004-04-07  Jackson Harper  <jackson@ximian.com>
28561
28562         * culture-info-tables.h: Fix date separator symbol.
28563         
28564 2004-04-07  Martin Baulig  <martin@ximian.com>
28565
28566         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28567         from System.Type to System.MonoType.
28568
28569 2004-04-07  Martin Baulig  <martin@ximian.com>
28570
28571         * reflection.h
28572         (MonoReflectionGenericParam): Added `has_reference_type' and
28573         `has_value_type' fields.
28574
28575         * reflection.c (mono_image_get_generic_param_info): Encode the
28576         correct flags if we have the `class' or `struct' constraint.
28577
28578 2004-04-07  Martin Baulig  <martin@ximian.com>
28579
28580         * reflection.h
28581         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28582
28583 2004-04-07  Jackson Harper  <jackson@ximian.com>
28584
28585         * appdomain.c: Revert extra patches, just wanted to bump the
28586         version number.
28587         
28588 2004-04-07  Jackson Harper  <jackson@ximian.com>
28589
28590         * Makefile.am: Add culture-info private headers.
28591         * icall.c: Add new icalls for contructing locales.
28592         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28593         * locales.h: Declare new culture info construction methods.
28594         * object.h: Add new fields used to avoid the CultureMap to
28595         MonoCultureInfo.
28596         * culture-info.h: Definition of structs used in the culture info
28597         tables.
28598         * culture-info-tables.h: Autogenerated tables that contain culture
28599         info data. This file was generated with the locale-builder tool.
28600         * appdomain.c: Incement corlib version number.
28601         
28602 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28603
28604         * appdomain.c: (mono_runtime_init) move mono_thread_init
28605         to before mono_object_new calls so critical sections
28606         are initialized before use.
28607
28608 2004-04-07  Martin Baulig  <martin@ximian.com>
28609
28610         * icall.c
28611         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28612         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28613         (ves_icall_MonoGenericParam_initialize): Removed.
28614         (monogenericparam_icalls): Removed.
28615         (generictypeparambuilder_icalls): Added new table for
28616         System.Reflection.Emit.GenericTypeParameterBuilder.
28617
28618         * reflection.c
28619         (mono_reflection_define_generic_parameter): Removed.
28620         (mono_reflection_initialize_generic_parameter): This is now called
28621         from GenericTypeParameterBuilder's .ctor.
28622
28623 2004-04-06  Martin Baulig  <martin@ximian.com>
28624
28625         * class.c (mono_class_init): Don't inflate nested classes in a
28626         generic instance.
28627         (mono_type_get_name_recurse): Include the generic arguments for
28628         generic instances and generic type declarations.
28629         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28630         (_mono_class_get_instantiation_name): Removed.
28631         (mono_class_create_generic): Always use `gklass->name' as our name.
28632
28633         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28634
28635         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28636         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28637         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28638         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28639         closed generic methods here.
28640
28641         * reflection.c
28642         (mono_reflection_generic_inst_get_nested_types): Removed.
28643         (inflate_mono_method): Copy the generic parameters from the
28644         MonoMethodHeader into out MonoGenericMethod.
28645
28646 2004-04-06  Martin Baulig  <martin@ximian.com>
28647
28648         * row-indexes.h
28649         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28650
28651         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28652
28653         * reflection.c (build_compressed_metadata): If we have any entries
28654         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28655         set the header version to 1.1.
28656
28657 2004-04-06  Martin Baulig  <martin@ximian.com>
28658
28659         * class.c (mono_class_init): If we're a generic instance,
28660         initialize our nested classes, too.
28661         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28662         suffix. 
28663
28664 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28665
28666         * process.c: quote the argument passed to the shell on windows.
28667
28668 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28669
28670         * threads.c (mono_alloc_special_static_data): Allow this to be
28671         called during startup.
28672
28673 2004-04-02  Martin Baulig  <martin@ximian.com>
28674
28675         * icall.c
28676         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28677
28678 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28679
28680         * icall.c: Fix build.
28681
28682 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28683
28684         * Makefile.am: Added security.c|h.
28685         * icall.c: Added icall for get_UserName;
28686         * security.c: New file for security related icalls. Added function
28687         get_UserName for System.Environment (fix #56144).
28688         * security.h: New. Header file for security.c
28689
28690 2004-04-02  Dick Porter  <dick@ximian.com>
28691
28692         * icall.c: Deleted the icalls that were obsoleted some time ago
28693         by the ICU string code, and which were mixed into the icall
28694         rearranging.  Fixes bug 55969.
28695
28696         * string-icalls.h: 
28697         * string-icalls.c: Deleted the code that those icalls reference.
28698
28699 2004-04-01  Martin Baulig  <martin@ximian.com>
28700
28701         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28702
28703         * class.c (mono_class_from_generic_parameter): Don't set 
28704         TYPE_ATTRIBUTE_INTERFACE.
28705         (my_mono_class_from_generic_parameter): Likewise.
28706
28707 2004-04-01  Martin Baulig  <martin@ximian.com>
28708
28709         * loader.c (find_method): Added an optional `MonoClass *ic'
28710         argument to search in a specific interface.
28711         (mono_get_method_constrained): New public function.
28712
28713 2004-04-01  Martin Baulig  <martin@ximian.com>
28714
28715         * reflection.c (mono_image_get_generic_field_token): Use the
28716         `handleref' cache here.
28717
28718 2004-04-01  Martin Baulig  <martin@ximian.com>
28719
28720         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28721
28722         * reflection.c (create_generic_typespec): Use the `typespec' hash
28723         here, not the `typeref' one.    
28724
28725 2004-04-01  Martin Baulig  <martin@ximian.com>
28726
28727         * class.c (mono_class_inflate_generic_type): Moved the
28728         functionality into a new static inflate_generic_type() which
28729         returns NULL if it didn't do anything.  Only increment the
28730         `mono_stats.inflated_type_count' if we actually inflated
28731         something.
28732         (mono_class_get_full): Check the classes type to see whether we
28733         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28734
28735 2004-04-01  Jackson Harper  <jackson@ximian.com>
28736
28737         * reflection.c: Set culture for assembly references.
28738         
28739 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28740
28741         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28742
28743 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28744
28745         * assembly.c:
28746         (do_mono_assembly_open): the critical section also covers
28747         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28748
28749 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28750
28751         * threads.c:
28752         (mono_manage_threads): abort the background threads when finishing.
28753         Fixes bug #47232.
28754
28755 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28756
28757         * gc.c: only close the done_event handle if there was no timeout.
28758         C-ified comments.
28759
28760 2004-03-30  Martin Baulig  <martin@ximian.com>
28761
28762         * icall.c (icall_entries): It's called "System.Activator", not
28763         "System.Activation".    
28764
28765 2004-03-30  Martin Baulig  <martin@ximian.com>
28766
28767         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28768         (mono_class_create_from_typespec): Likewise.
28769
28770 2004-03-30  Martin Baulig  <martin@ximian.com>
28771
28772         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28773         `has_ctor_constraint' and `initialized'.
28774
28775 2004-03-30  Martin Baulig  <martin@ximian.com>
28776
28777         * reflection.c (encode_new_constraint): New static function to add
28778         the constructor constraint attribute to a type parameter.
28779         (encode_constraints): Call encode_new_constraint() if necessary.
28780
28781         * reflection.h
28782         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28783
28784         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28785         
28786 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28787
28788         * reflection.c, icall.c: add support for pinning variables. 
28789
28790 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28791
28792         * marshal.c (mono_marshal_get_managed_wrapper):
28793         init bool local with zero rather than null.
28794
28795 2004-03-29  Martin Baulig  <martin@ximian.com>
28796
28797         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28798         the "official" behavior here.
28799         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28800
28801 2004-03-29  Martin Baulig  <martin@ximian.com>
28802
28803         * icall.c: Reflect latest API changes.
28804
28805 2004-03-29  Martin Baulig  <martin@ximian.com>
28806
28807         * loader.c (mono_get_method_from_token): Also call
28808         mono_metadata_load_generic_params () for abstract and interface
28809         methods; replace the type arguments in the method signature with
28810         the ones which are loaded from the metadata.
28811
28812 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28813
28814         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28815         of the lock is not the current thread. MS.NET don't do it, in spite of
28816         what the documentation says. See bug #56157.
28817
28818 2004-03-28  Martin Baulig  <martin@ximian.com>
28819
28820         * class.c (mono_class_init): Don't call init_properties() and
28821         init_events() for generic instances; set `prop->parent' when
28822         inflating properties.
28823
28824         * reflection.c (mono_generic_inst_get_object): Call
28825         `mono_class_init (ginst->klass)'.
28826         (mono_type_get_object): Only create a MonoGenericInst if your
28827         generic type is a TypeBuilder.
28828         (do_mono_reflection_bind_generic_parameters): Only set
28829         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28830
28831 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28832
28833         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28834         Fixes #56091.
28835
28836 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28837
28838         * icall.c: added Kill_internal icall.
28839         * process.[ch]: added Kill_internal icall.
28840
28841 2004-03-25  Martin Baulig  <martin@ximian.com>
28842
28843         * class.h (MonoStats): Added `generic_instance_count',
28844         `inflated_method_count', `inflated_type_count' and
28845         `generics_metadata_size'.       
28846
28847 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28848
28849         * reflection.c: no warnings now.
28850
28851 2004-03-25  Martin Baulig  <martin@ximian.com>
28852
28853         * class.c (mono_class_get_full): New public function; does a
28854         mono_class_get(), but also takes a `MonoGenericContext *'.
28855
28856         * loader.c (mono_field_from_memberref): Renamed to
28857         `field_from_memberref', made static and added `MonoGenericContext *'
28858         argument.
28859         (mono_field_from_token): Added `MonoGenericInst *' argument.
28860         (method_from_memberef): Likewise.
28861         (mono_get_method_from_token): Likewise.
28862         (mono_get_method_full): New public function; does a
28863         mono_get_method(), but also takes a `MonoGenericContext *'.
28864
28865         * verify.c (mono_method_verify): Get the method's generic context
28866         and pass it to mono_field_from_token(), mono_get_method_full() and
28867         mono_class_get_full().
28868
28869 2004-03-25  Martin Baulig  <martin@ximian.com>
28870
28871         * class.c (mono_class_inflate_generic_type): Take a
28872         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28873         `MonoGenericMethod *'.
28874
28875 2004-03-25  Martin Baulig  <martin@ximian.com>
28876
28877         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28878         instead of the MonoGenericMethod here.
28879
28880 2004-03-25  Martin Baulig  <martin@ximian.com>
28881
28882         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28883         each time we create a new MonoGenericInst, we also create a new
28884         context which points back to us.
28885
28886         * class.c (inflate_method): Use `ginst->context' instead of
28887         creating a new context.
28888
28889         * loader.c (method_from_memberref): Use
28890         `klass->generic_inst->context' instead of creating a new context.
28891
28892 2004-03-25  Martin Baulig  <martin@ximian.com>
28893
28894         * class.h (MonoGenericContext): New struct.
28895         (MonoGenericMethod): Removed `generic_inst'.
28896
28897         * class.c (mono_class_inflate_generic_method): Take a
28898         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28899
28900 2004-03-25  Martin Baulig  <martin@ximian.com>
28901
28902         * loader.h (MonoMethodInflated): New typedef.
28903
28904         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28905         `generic_param_count' consume just 30 bits, added `is_inflated'
28906         and `has_type_parameters' flags (one bit each).
28907
28908         * class.c (mono_class_inflate_generic_method): Create a
28909         MonoMethodInflated instead of a MonoMethodNormal and set
28910         `is_inflated' in the method signature.
28911
28912         * class.h (MonoGenericMethod): Removed `generic_method'.
28913
28914 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28915
28916         * image.c: Make sure the name of a MonoImage is always an absolute path.
28917           This fixes bug #54415.
28918
28919 2004-03-24  Martin Baulig  <martin@ximian.com>
28920
28921         * class.c (mono_class_setup_vtable): If we're a generic instance,
28922         use our generic type's vtable size.
28923
28924 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28925
28926         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28927         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28928         problems.
28929
28930 2004-03-23  Martin Baulig  <martin@ximian.com>
28931
28932         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28933         `MonoEvent *events'.
28934
28935         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28936         (typebuilder_icalls): Added "get_event_info"; calls
28937         mono_reflection_event_builder_get_event_info(). 
28938
28939         * reflection.c (mono_reflection_generic_inst_initialize): Added
28940         `MonoArray *events'.
28941         (mono_reflection_event_builder_get_event_info): New function.
28942
28943 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28944
28945         * object.h: add mono_type_initialization_init
28946
28947         * object.c (mono_runtime_class_init): 
28948         implement class constructor synchronization rules
28949         to cope with threading issues.  
28950         add mono_type_initialization_init
28951
28952         * appdomain.c (mono_runtime_init): call 
28953         mono_type_initialization_init
28954
28955         * class.h: removing initializing field from MonoVTable
28956
28957 2004-03-23  Martin Baulig  <martin@ximian.com>
28958
28959         * class.c (my_mono_class_from_generic_parameter): Use
28960         `param->name' if it's not NULL. 
28961
28962 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28963
28964         * class.c: do not insert non-virtual methods in the vtable.
28965         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28966         that means the method is non-virtual. This never would have
28967         happened before.
28968
28969 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28970
28971         * profiler.c: Added lock for accessing coverage_hash.
28972
28973 2004-03-22  Martin Baulig  <martin@ximian.com>
28974
28975         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28976         `method->method->signature->generic_param_count != 0' to make it
28977         work for interface methods.
28978
28979 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28980
28981         * process.c: quote the string passed to the shell using g_shell_quote.
28982
28983 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28984
28985         * threads.c:
28986         (mono_threads_manage): don't remove the finalizer thread and self
28987         from the threads hash table so that mono_thread_manage can be called
28988         more than once.
28989
28990 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28991
28992         * process.c: quote the arguments when UseShellExecute is true. Fixes
28993         bug #55790.
28994
28995 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28996
28997         * threads.c: set mono_thread_detach as a cleanup routine for every
28998         thread. This way it's always executed upon thread termination, either
28999         aborted or finished normally. No more xsp hangs!
29000
29001 2004-03-17  Martin Baulig  <martin@ximian.com>
29002
29003         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
29004         `int count_nested' and a `MonoType **nested'.
29005
29006         * reflection.c (mono_reflection_bind_generic_parameters): Moved
29007         most of the functionality into a new static
29008         do_mono_reflection_bind_generic_parameters() and don't take a
29009         `MonoType *nested_in' argument any more.  Don't compute nested
29010         types here.
29011         (mono_reflection_generic_inst_get_nested_types): New public method
29012         to get nested types.
29013
29014         * class.c (mono_class_create_generic): Set `klass->nested_in' if
29015         we're a nested class.
29016
29017         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
29018         mono_reflection_generic_inst_get_nested_types() to compute the
29019         nested types.
29020
29021 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29022
29023         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
29024         descriptive error message under windows.
29025         
29026 2004-03-17  Martin Baulig  <martin@ximian.com>
29027
29028         * class.c (dup_type): Added `const MonoType *original' argument;
29029         copy the attrs from the original type.
29030
29031 2004-03-17  Martin Baulig  <martin@ximian.com>
29032
29033         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
29034         `m->generic_inst_cache' here.
29035
29036 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29037
29038         * exception.h exception.c: Add stack_overflow_exception.
29039
29040 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29041
29042         * threadpool.c:
29043         (overlapped_callback): call SetEvent *after* invoking the callback.
29044         No need to call CloseHandle.
29045
29046 2004-03-16  Martin Baulig  <martin@ximian.com>
29047
29048         * reflection.c (mono_image_get_fieldref_token): Take a
29049         `MonoReflectionField *' instead of a `MonoClassField *' and a
29050         `MonoClass *'; store the `MonoReflectionField *' in the hash.
29051
29052 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29053
29054         * appdomain.c: don't add the culture to the filename we're looking for
29055         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
29056
29057 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29058
29059         * locales.c: don't ignore symbols when doing case insensitive compares.
29060         Thanks Dick! Fixes bug #54046.
29061
29062         * threads.c: surround 'threads' usage with enter/leave in
29063         mono_thread_manage.
29064
29065 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
29066
29067         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
29068         implicitly marshalled as [Out]. Fixes #55450.
29069
29070         (mono_marshal_get_runtime_invoke): Zero out the result if there is
29071         an exception.
29072
29073 2004-03-16  Martin Baulig  <martin@ximian.com>
29074
29075         * class.c (mono_class_from_generic_parameter): Use the actual
29076         parameter name. 
29077
29078 2004-03-16  Martin Baulig  <martin@ximian.com>
29079
29080         * reflection.c (type_get_signature_size): New static function.
29081         Compues the size of the type in a method signature.
29082         (method_get_signature_size): New static function; calls
29083         type_get_signature_size() to compute the actual size of the
29084         method's signature.
29085         (method_encode_signature): Use method_get_signature_size() to get
29086         the signature's size rather than using `nparams * 10'.
29087
29088 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29089
29090         * file-io.h: define here WapiOverlapped on windows. I don't want the
29091         regular OVERLAPPED one.
29092
29093         * file-io.c:
29094         * threadpool.c: somehow, BindIoCompletionCallback is not found.
29095         Disabling AIO on windows.
29096
29097 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29098
29099         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
29100         bug #55385.
29101
29102 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29103
29104         * appdomain.c: upgraded corlib version.
29105
29106         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
29107         and BeginWrite. Allow opening files for asynchrnous operations.
29108
29109         * file-io.h: new struct that maps FileStreamAsyncResult.
29110         * icall.c: added new icalls.
29111         * process.[ch]: support setting child process environment variables
29112         and use the SHELL or COMSPEC when UseShellExecute is true.
29113
29114         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
29115         callback for async. IO is here and also BindHandle.
29116
29117         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
29118         from here.
29119
29120 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
29121
29122         * reflection.c (create_custom_attr): Allow len == 0.
29123
29124         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
29125         computation on big-endian machines.
29126
29127 2004-03-13  Martin Baulig  <martin@ximian.com>
29128
29129         * class.h (MonoGenericInst): Added `int count_ifaces'.
29130
29131         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
29132         `ginst->count_ifaces' instead `klass->interface_count' since we
29133         may get called before the vtable is created.
29134
29135         * loader.c (mono_method_get_param_names): If we're a generic
29136         instance, return and don't initialize the class.
29137
29138         * reflection.c (mono_reflection_setup_generic_class): Don't call
29139         ensure_runtime_vtable().
29140         (mono_reflection_bind_generic_parameters): Set
29141         `ginst->count_ifaces'.
29142
29143 2004-03-11  Jackson Harper <jackson@ximian.com>
29144
29145         * icall.c:
29146         * unicode.c:
29147         * unicode.h: Remove unused System.Char icalls.
29148         
29149 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
29150
29151         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
29152         code when we P/Invoke the first library in Windows.Forms, instead
29153         of when we first open the assembly.
29154
29155         * assembly.c: Drop the lookup from here.
29156
29157 2004-03-10  Martin Baulig  <martin@ximian.com>
29158
29159         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
29160         class for properties, fields and events.  Finally fixes #54945.
29161
29162 2004-03-10  Martin Baulig  <martin@ximian.com>
29163
29164         * metadata.c (mono_metadata_class_equal): New static function;
29165         checks whether two generic instances or two generic parameters are
29166         equal.
29167         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
29168         compare classes.        
29169
29170 2004-03-10  Martin Baulig  <martin@ximian.com>
29171
29172         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
29173
29174         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
29175         argument and write it into the `reflection_info' field.
29176
29177         * icall.c
29178         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
29179         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
29180
29181 2004-03-09  Jackson Harper  <jackson@ximian.com>
29182
29183         * char-conversions.h: use 8 bits for numeric data its all we need
29184         * icall.c: numeric data is only 8 bits now.
29185
29186 2004-03-09  Martin Baulig  <martin@ximian.com>
29187
29188         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
29189
29190         * class.c (init_properties, init_events): Initialize the new
29191         `parent' field.
29192
29193         * reflection.c (typebuilder_setup_properties): Likewise.
29194         (typebuilder_setup_events): Likewise.
29195
29196         * reflection.h (MonoEventInfo): Replaced `parent with
29197         `declaring_type' and `reflected_type'.
29198
29199         * icall.c (ves_icall_get_property_info): Distinguish between
29200         declaring and reflected type.
29201         (ves_icall_get_event_info): Likewise.
29202
29203 2004-03-09  Martin Baulig  <martin@ximian.com>
29204
29205         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
29206         (ves_icall_Type_GetField): Correctly set field->klass.
29207
29208 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
29209
29210         * loader.h: Fix warning.
29211
29212 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
29213
29214         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
29215         library routine if present.  Notice that it will still continue
29216         executing even if its missing, for those working on the Gtk#
29217         edition of Windows.Forms.
29218
29219         * assembly.c (do_mono_assembly_open): If loading the
29220         System.Windows.Forms call mono_loader_wini_init.
29221
29222 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
29223
29224         * class.h: Added MonoRemoteClass struct.
29225         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
29226         function for MonoStrings.
29227         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
29228         Added internal call for getting the proxy type.
29229         * marshal.c: Get the type of transparent proxies from its remote_class.
29230         Added methods that generate the IL for type checks and casts:
29231         mono_marshal_get_isinst, mono_marshal_get_castclass, 
29232         mono_marshal_get_proxy_cancast.
29233         * marshal.h: Declaration of the previous new methods.
29234         * object.c: Added new moethods for creating and updating MonoRemoteClass
29235         instances: mono_remote_class, mono_upgrade_remote_class, 
29236         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
29237         * verify.c: FIx transparent_proxy_fields layout.
29238         * appdomain.c: Bump corlib version.
29239
29240 2004-03-04  Jackson Harper  <jackson@ximian.com>
29241
29242         * icall.c: Add icall to access char conversion tables.
29243         * char-conversions.h: Character conversion tables.
29244         * Makefile.am: Add char-conversions.h private header file.
29245         
29246 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
29247
29248         * appdomain.c (unload_thread_main): Increase unloading timeout to
29249         10 sec as a temporary workaround for Nant problems.
29250
29251 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
29252
29253         * gc.c: Add checks for GC_enable and GC_disable.
29254
29255         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
29256         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
29257         (bug #54988).
29258         
29259 2004-02-27  Martin Baulig  <martin@ximian.com>
29260
29261         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29262         `MonoReflectionType *' instead of a `MonoType *'.
29263
29264 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
29265
29266         * gc.c (run_finalize): Avoid finalizing the object representing the
29267         finalizer thread.
29268         (finalizer_thread): Fix warning.
29269
29270 2004-02-25  Martin Baulig  <martin@ximian.com>
29271
29272         * class.c (_mono_class_get_instantiation_name): Added `int offset'
29273         argument for nested types.
29274         (mono_class_create_generic): Added support for nested generictypes.
29275
29276         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
29277         `GList *nested'.
29278
29279         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
29280
29281         * reflection.c (method_encode_signature): Increase the minimum
29282         value of `size' from 10 to 11.
29283         (mono_reflection_bind_generic_parameters): Take `int type_argc'
29284         and `MonoType **types' arguments instead of the `MonoArray
29285         *types'; added `MonoType *nested_in'.  Recursively instantiate
29286         nested classes. 
29287
29288 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
29289
29290         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
29291         stack_overflow_ex members which are used by exception handling.
29292
29293         * appdomain.c (mono_runtime_init): Initialize the new members.
29294
29295         * gc.c (mono_gc_enable): New helper function.
29296         * gc.c (mono_gc_disable): New helper function.
29297
29298 2004-02-23  Martin Baulig  <martin@ximian.com>
29299
29300         * icall.c: I must have been really stupid - make it actually work
29301         this time ;-)
29302
29303 2004-02-23  Martin Baulig  <martin@ximian.com>
29304
29305         * loader.c (method_from_memberref): Only inflate the method if
29306         it's in another klass.
29307
29308 2004-02-23  Martin Baulig  <martin@ximian.com>
29309
29310         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
29311         (mono_class_init): If we're a generic instance and an interface,
29312         compute `class->interface_id'; also create `class->interfaces'
29313         here and inflate them.
29314
29315         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
29316         `ginst->is_open'.
29317         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
29318
29319         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
29320
29321 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
29322
29323         * reflection.c (method_encode_code): Improved the error message
29324         generated by the exception.
29325
29326 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29327
29328         * icall.c: Martin did not do what he said in the ChangeLog for
29329         2004-02-18, but put back the changes for properties and events.
29330         Commenting those changes out again and adding comment to bug #54518.
29331         
29332         * process.c: removed warning.
29333
29334 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
29335
29336         * marshal.c (emit_struct_conv): Print an error message instead of
29337         asserting when a type does not have the StructLayout attribute.
29338
29339 2004-02-20  Martin Baulig  <martin@ximian.com>
29340
29341         * reflection.c (mono_type_get_object): Also use the cache for
29342         generic instances.
29343         (mono_reflection_bind_generic_parameters): Always compute
29344         `ginst->ifaces'.        
29345
29346 2004-02-20  Martin Baulig  <martin@ximian.com>
29347
29348         * class.h (MonoGenericMethod): Removed `klass'.
29349
29350         * class.c (mono_class_inflate_generic_method): Added `MonoClass
29351         *klass' argument.
29352
29353 2004-02-20  Martin Baulig  <martin@ximian.com>
29354
29355         * reflection.c (method_encode_methodspec): Actually use the
29356         uninflated signature for the memberref.
29357
29358 2004-02-20  Martin Baulig  <martin@ximian.com>
29359
29360         * class.h (MonoGenericMethod): Removed `declaring'.
29361
29362         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
29363         is NULL, compute it here.
29364
29365 2004-02-20  Martin Baulig  <martin@ximian.com>
29366
29367         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
29368
29369         * metadata.c (mono_metadata_generic_inst_hash): New method.
29370         (mono_metadata_generic_inst_equal): New method.
29371
29372         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29373         `klass->image->generic_inst_cache' cache to avoid creating
29374         duplicate MonoGenericInst's.
29375
29376         * class.c (mono_class_inflate_generic_type): Use the cache.
29377
29378 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29379
29380         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29381
29382 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29383
29384         * icall.c: added Socket.WSAIoctl icall.
29385
29386         * socket-io.[ch]: implemented
29387         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29388
29389 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29390
29391         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29392
29393 2004-02-18  Urs C Muff  <umuff@quark.com>
29394
29395         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29396         this work on PPC and other big-endian architectures.
29397
29398         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29399         fields with an underscore to make sure they're only accessed by
29400         the read32() macro.
29401
29402 2004-02-18  Martin Baulig  <martin@ximian.com>
29403
29404         * icall.c: Put the klass->refclass changes back for methods and
29405         fields, but not for properties and events.  We're currently not
29406         distinguishing between DeclaringType and ReflectedType for
29407         properties and events, that's what caused the regressions.
29408
29409 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29410
29411         * object.c:
29412         (mono_async_result_new): the handle can be NULL.
29413
29414         * threadpool.c: Use an event instead of a semaphore, don't initialize
29415         it until needed. This saves quite a few semaphores from being created
29416         when using the threadpool.
29417
29418 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29419
29420         * object.c (mono_string_is_interned_lookup): Fix interning of long
29421         strings. Fixes #54473.
29422
29423         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29424
29425         * icall.c: Revert the klass->refclass changes since they introduce
29426         regressions (bug #54518).
29427
29428 2004-02-18  Martin Baulig  <martin@ximian.com>
29429
29430         * class.c (mono_class_init): If we're a generic instance and don't
29431         come from a TypeBuilder, inflate our members here.
29432         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29433         (mono_class_create_generic): New public method.
29434         (mono_class_initialize_generic): Removed.
29435         (get_instantiation_name): Renamed to
29436         _mono_class_get_instantiation_name() and made it public.
29437
29438 2004-02-18  Martin Baulig  <martin@ximian.com>
29439
29440         * class.c (mono_class_inflate_generic_type): Clear the new
29441         instance's `nginst->klass' when inflating a generic instance.
29442         (mono_class_is_subclass_of): Added (basic) support for generic
29443         instances.
29444
29445 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29446
29447         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29448         MonoMempool to hold compiled native code.
29449
29450 2004-02-17  Martin Baulig  <martin@ximian.com>
29451
29452         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29453         `properties'.
29454
29455         * reflection.c (mono_reflection_generic_inst_initialize): Added
29456         `MonoArray *properties' argument.
29457
29458         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29459
29460 2004-02-17  Martin Baulig  <martin@ximian.com>
29461
29462         * icall.c (ves_icall_Type_GetFields): Renamed to
29463         ves_icall_Type_GetFields_internal() and added a
29464         `MonoReflectionType *rtype' argument; pass it to
29465         mono_field_get_object() to set the field's "reflected" type.
29466         (ves_icall_Type_GetConstructors): Likewise.
29467         (ves_icall_Type_GetEvents): Likewise.
29468         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29469         argument; pass it to mono_method_get_object() to set the method's
29470         "reflected" type.       
29471
29472 2004-02-17  Martin Baulig  <martin@ximian.com>
29473
29474         * class.h (MonoDynamicGenericInst): New type.
29475         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29476
29477         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29478         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29479         (ves_icall_MonoGenericInst_GetFields): New interncall.
29480
29481         * class.c (mono_class_from_generic): Don't call
29482         mono_class_initialize_generic() if this is a dynamic instance;
29483         ie. it's being created from a TypeBuilder.
29484         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29485         `class->byval_arg.type'.
29486
29487         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29488         to `inflate_method' and made static.
29489         (mono_reflection_inflate_field): Removed.
29490         (mono_reflection_generic_inst_initialize): New public method.
29491
29492         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29493         `ctors' and `fields'; added `initialized'.
29494
29495 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29496
29497         * debug-helpers.c (mono_method_full_name): Fix output for empty
29498         namespaces.
29499
29500 2004-02-12  Martin Baulig  <martin@ximian.com>
29501
29502         * class.h (MonoClassField): Added `MonoType *generic_type'.
29503
29504         * reflection.c (mono_image_get_fieldref_token): Added support for
29505         instantiated generic types.
29506         (field_encode_inflated_field): Removed.
29507         (mono_image_get_inflated_field_token): Removed.
29508         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29509
29510         * reflection.h (MonoReflectionInflatedField): Removed.
29511
29512 2004-02-12  Martin Baulig  <martin@ximian.com>
29513
29514         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29515         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29516
29517         * reflection.c (mono_image_get_methodspec_token): Take a
29518         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29519         (mono_image_create_token): Check whether we have a
29520         `method->signature->gen_method' and call
29521         mono_image_get_methodspec_token() if appropriate.
29522         (inflated_method_get_object): Removed.
29523         (mono_reflection_bind_generic_method_parameters): Return a
29524         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29525         (mono_reflection_inflate_method_or_ctor): Likewise.
29526
29527         * reflection.h (MonoReflectionInflatedMethod): Removed.
29528
29529 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29530
29531         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29532         for custom valuetype marshalling.
29533
29534         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29535
29536 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29537
29538         * icall.c: fixed WSAGetLastError_internal name.
29539
29540 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29541
29542         * threads.c (mono_thread_attach): Allow this to be called multiple
29543         times for a thread.
29544         
29545         * threads.c (build_wait_tids): Do not wait for ourselves.
29546
29547         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29548         appdomain list is empty.
29549
29550         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29551         memory returned by mono_string_builder_to_utf16, since it points into
29552         managed memory. Thanks to Bernie Solomon for noticing this.
29553
29554         * icall.c: Add AppDomainSetup icalls.
29555
29556         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29557
29558         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29559         types.
29560
29561         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29562         custom attributes to the method_aux struct. Also fix array indexes etc.
29563
29564         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29565         
29566 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29567
29568         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29569         (both static and runtime) and reduce startup time.
29570
29571 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29572
29573         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29574         AsAny marshalling conversion instead of crashing.
29575
29576         * marshal.c: Fix warnings.
29577
29578 2004-02-09  Martin Baulig  <martin@ximian.com>
29579
29580         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29581
29582         * reflection.h (MonoReflectionInflatedMethod): Removed the
29583         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29584
29585         * reflection.c (method_encode_methodspec): Removed the `method'
29586         argument; we get it from `gmethod->declaring'.
29587         (inflated_method_get_object): Removed the `declaring' argument.
29588
29589 2004-02-09  Martin Baulig  <martin@ximian.com>
29590
29591         * class.h (MonoGenericMethod): New type.
29592         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29593         `generic_method'.
29594
29595         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29596         a `MonoGenericMethod *gen_method' one.
29597
29598         * class.c (mono_class_inflate_generic_type): Take an additional
29599         `MonoGenericMethod * argument.  This is only non-NULL if we're
29600         inflating types for a generic method.   
29601         (mono_class_inflate_generic_signature): Renamed to
29602         inflate_generic_signature() and made static; take a
29603         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29604         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29605         instead of a `MonoGenericInst *' one.
29606         (mono_class_inflate_generic_method): Likewise.
29607
29608         * reflection.c (encode_generic_method_sig): Take a
29609         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29610         (method_encode_methodspec): Likewise.
29611         (inflated_method_get_object): Likewise. 
29612
29613         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29614         field with a `MonoGenericMethod *gmethod' one.  
29615
29616 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29617
29618         * class.h (mono_class_has_parent): add parens to expansion
29619         so you can ! this.
29620
29621 2004-02-08  Martin Baulig  <martin@ximian.com>
29622
29623         * image.h (MonoImage): Removed `generics_cache'.
29624
29625         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29626         instead of a `MonoType *' argument; removed the `inflate_methods'
29627         argument.  Don't inflate methods here.
29628
29629         * loader.c (find_method): If it's a generic instance, call
29630         mono_class_init() on the `sclass->generic_inst->generic_type'.
29631
29632         * metadata.c (mono_type_size): Make this work on uninitialized
29633         generic instances; call it on the `ginst->generic_type's class.
29634
29635         * reflection.c (mono_reflection_bind_generic_parameters): Call
29636         mono_class_from_generic() to create the `ginst->klass'.
29637
29638 2004-02-08  Martin Baulig  <martin@ximian.com>
29639
29640         * class.h (MonoClass): Changed type of `generic_inst' from
29641         `MonoType *' to `MonoGenericInst *'.
29642
29643 2004-02-08  Martin Baulig  <martin@ximian.com>
29644
29645         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29646         mono_type_get_object(), this is now creating a `MonoGenericInst'
29647         for MONO_TYPE_GENERICINST.
29648         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29649         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29650
29651         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29652         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29653         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29654         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29655         and reflected type.
29656
29657         * reflection.h (MonoReflectionInflatedMethod): Removed
29658         `declaring_type' and `reflected_type'.
29659
29660 2004-02-08  Martin Baulig  <martin@ximian.com>
29661
29662         * class.h (MonoGenericInst): Added `MonoType *parent' and
29663         `MonoType **ifaces'.
29664
29665         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29666         `parent' and `interfaces'.
29667
29668         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29669         `MonoType *' argument and return a `MonoType *'.
29670
29671         * icall.c
29672         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29673         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29674
29675 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29676
29677         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29678         valuetype marshalling.
29679
29680 2004-02-06  Martin Baulig  <martin@ximian.com>
29681
29682         * class.c
29683         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29684         (my_mono_class_from_generic_parameter): Likewise.
29685
29686 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29687
29688         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29689         contents of the symbol files lazily.
29690
29691         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29692
29693         * threads.h threads.c icall.c: New icalls for getting and setting the
29694         threads name.
29695
29696 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29697
29698         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29699         Raise an exception when the domain is not found.
29700
29701 2004-02-03  Martin Baulig  <martin@ximian.com>
29702
29703         * reflection.c (mono_image_get_methodspec_token): Use the
29704         uninflated signature; fixes gen-33.
29705
29706 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29707
29708         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29709         the finalizer code can use thread functionality.
29710
29711         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29712         the finalizer thread.
29713
29714         * threads.c: Make some functions more robust.
29715
29716         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29717
29718         * metadata.h: Add new marshalling conventions.
29719
29720         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29721         stringbuilder marshalling. Fixes #53700.
29722
29723         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29724
29725         * reflection.c (mono_image_get_type_info): Save declarative security
29726         info.
29727
29728         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29729         unmanaged fields as well.
29730
29731         * appdomain.c: Bump corlib version.
29732
29733 2004-02-01  Martin Baulig  <martin@ximian.com>
29734
29735         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29736         method type arguments.  
29737
29738 2004-01-30  Duncan Mak  <duncan@ximian.com>
29739
29740         * marshal.h: Add prototype for
29741         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29742         and
29743         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29744         fix the build.
29745
29746 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29747
29748         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29749         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29750
29751 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29752
29753         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29754         custom marshalling of valuetypes.
29755
29756         * marshal.c: Fix some warnings.
29757
29758 2004-01-29  Martin Baulig  <martin@ximian.com>
29759
29760         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29761         for generic method parameters.
29762
29763         * reflection.c (method_encode_methodspec): Write the uninflated
29764         signature into the methodspec table.
29765         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29766         is always the uninflated method.
29767         (reflection_methodbuilder_to_mono_method): Copy the generic
29768         parameters from the MethodBuilder into `header->gen_params'.
29769
29770 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29771
29772         * class.c (mono_class_from_generic_parameter): Fix warning.
29773
29774 2004-01-27  Martin Baulig  <martin@ximian.com>
29775
29776         * class.c (mono_class_from_generic_parameter): Don't create
29777         `klass->methods' here.  
29778
29779 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29780
29781         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29782         extension since it does not work with libraries named lib<FOO>.dll.so.
29783
29784 2004-01-25  Martin Baulig  <martin@ximian.com>
29785
29786         * class.c (mono_class_inflate_generic_type): Added support for
29787         MONO_TYPE_GENERICINST.
29788
29789         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29790         inflate methods on open constructed types.      
29791
29792 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29793
29794         * object.c: fire ProcessExit event in the root AppDomain after running
29795         Main. Fixes bug #53299.
29796
29797 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29798
29799         * socket-io.c: include the new socket-wrappers.h header.
29800         Use the wrappers instead of the unix socket functions to make the code
29801         more clear.
29802
29803 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29804
29805         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29806
29807         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29808         Fixes #22532.
29809
29810 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29811
29812         * reflection.c (mono_image_create_pefile): Handle the case when the
29813         entry point is not a MethodBuilder.
29814
29815         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29816         field to ReflectionMethod since it is not allways a builder.
29817
29818         * reflection.c (type_get_fully_qualified_name): New helper function to
29819         return the fully qualified name of a type.
29820
29821         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29822         type name for custom marshallers.
29823
29824         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29825
29826         * class.c (mono_class_setup_vtable): If a parent class already 
29827         implements an interface, use the implementing methods from that class.
29828         Fixes #53148.
29829
29830 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29831
29832         * threadpool.c: just return instead of ExitThread to allow for thread
29833         clean up earlier.
29834
29835 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29836
29837         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29838         when closing resource modules.
29839
29840         * reflection.c (mono_image_create_pefile): Handle the case when the
29841         entry point is not a MethodBuilder.
29842
29843         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29844         field to ReflectionMethod since it is not allways a builder.
29845
29846 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29847
29848         * marshal.c (mono_marshal_get_managed_wrapper): 
29849         mono_marshal_alloc takes native int so CONV_I
29850         the arg for 64bits.
29851
29852 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29853
29854         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29855         tokens in the cattr table. Fixes #53108.
29856
29857 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29858
29859         * loader.c: don't trim ".dll" before looking up in the config file.
29860         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29861
29862 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29863
29864         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29865         Return the module which contains the resource as well.
29866         (ves_icall_System_Reflection_Module_Close): New icall.
29867
29868         * appdomain.c: Bump corlib version number.
29869
29870         * image.c (mono_image_addref): New public function.
29871
29872         * assembly.c: Call mono_image_addref.
29873
29874         * reflection.c (mono_module_get_object): Increase reference count of 
29875         the image.
29876
29877         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29878         Fixes #22532.
29879
29880         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29881         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29882         proper exceptions on DllImport problems.
29883
29884 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29885
29886         * class.c, metadata.c: eliminate CSIZE macro.
29887
29888 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29889
29890         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29891         * object.h: Added async_callback field in MonoAsyncResult.
29892         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29893         * verify.c: Added async_callback in MonoAsyncResult layout.
29894
29895 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29896
29897         * reflection.c (mono_reflection_get_custom_attrs): Add support
29898         for Modules.
29899
29900 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29901
29902         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29903         marshalling.
29904         (mono_marshal_method_from_wrapper): Add null pointer check.
29905
29906 2004-01-16  Martin Baulig  <martin@ximian.com>
29907
29908         * debug-mono-symfile.h: Set version number to 36 and reflect
29909         latest symbol writer changes.
29910
29911 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29912
29913         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29914         multi-dimensional arrays.
29915         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29916         (mono_class_from_mono_type): Use bounded_array_class_get.
29917         
29918         * class.c (mono_bounded_array_class_get): New function which takes
29919         a 'bounded' bool argument to distinguish vectors from one dimensional
29920         arrays.
29921
29922         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29923         bounded_array_class_get if the array has bounds.
29924
29925         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29926         Search modules loaded using AssemblyBuilder:AddModule as well.
29927
29928 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29929
29930         * appdomain.c: increased corlib version.
29931         * filewatcher.c: removed g_print.
29932         * icall.c:
29933         (get_property_info): only allocate what is actually requested.
29934         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29935
29936 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29937
29938         * Makefile.am: added filewatcher.[ch]
29939         * filewatcher.[ch]: FileSystemWatcher runtime support.
29940         * icall.c: added new FSW icalls.
29941
29942 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29943
29944         * string-icalls.c: fix stringbuilder regression as suggested by
29945         Iain McCoy <iain@mccoy.id.au>.
29946
29947 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29948
29949         * process.c (process_read_stringtable_block): Recognize '007f' as
29950         a language neutral stringtable block.
29951
29952 2004-01-12  Patrik Torstensson
29953
29954         * object.h (MonoStringBuilder) : Changed layout to support our
29955         new stringbuilder class.
29956         * marshal.c: Change marshalling to support the new layout of 
29957         string builder.
29958         * appdomain.c: increased version number because new layout of
29959         string builder.
29960
29961 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29962
29963         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29964         assembly name as an string instead of an AssemblyName, since it is
29965         easier to extract info from it.
29966
29967         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29968         the culture subdirectories too. Fixes #52231.
29969
29970 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29971
29972         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29973         It takes 2 new parameters with an optional name for the method to look
29974         for and case ignoring info.
29975
29976         * threadpool.c: removed unused variable.
29977
29978 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29979
29980         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29981         It takes 2 new parameters with an optional name for the property to look
29982         for and case ignoring info.
29983         Fixes bug #52753.
29984
29985 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29986
29987         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29988         Fix #52451.
29989
29990 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29991
29992         * appdomain.c:
29993         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29994         Fixes bug #52630.
29995
29996 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29997
29998         * reflection.c: Add support for more than one unmanaged resource.
29999
30000         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
30001         in field->def_value, as done in all other cases.
30002
30003         * reflection.c (mono_reflection_get_custom_attrs): Add support for
30004         TypeBuilders.
30005
30006         * reflection.c (mono_reflection_create_runtime_class): Remove 
30007         errorneous assignment to klass->element_class, since it is already
30008         done in mono_reflection_setup_internal_class.
30009
30010 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30011
30012         * gc.c: added missing LeaveCriticalSection.
30013         * icall.c: indented a couple of lines.
30014         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
30015         if we call EndInvoke inside a callback. Fixes bug #52601.
30016
30017 2004-01-07  Martin Baulig  <martin@ximian.com>
30018
30019         * mono-debug-debugger.h
30020         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
30021
30022 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
30023
30024         * appdomain.c: Use messages in NotImplementedException.
30025
30026         * exception.c (mono_get_exception_not_implemented): Now this takes
30027         a message argument.
30028
30029         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
30030         exception instead of g_asserting an aborting when something is not
30031         implemented.
30032
30033         Add some inline docs.
30034
30035 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
30036
30037         * reflection.h: Update after changes to object layout.
30038
30039         * reflection.c: Implement saving of unmanaged aka win32 resources.
30040
30041         * appdomain.c: Bump version number.
30042
30043         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
30044         Handle missing domains gracefully.
30045
30046 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
30047
30048         * file-io.c : On Windows, there are much more invalid_path_chars.
30049
30050 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
30051
30052         * class.h, object.c: prepare for GetType () speedup.
30053
30054 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
30055
30056         * profiler.c: workaround for --profile null reference exception on
30057           cygwin. Patch by Patrik Torstensson.
30058
30059 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
30060
30061         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
30062         make work for unaligned access.
30063
30064 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
30065
30066         * class.c: small cleanup (class->fields [i] -> field).
30067         * image.c: check address of metadata is valid.
30068
30069 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
30070
30071         * assembly.h assembly.c (mono_assembly_loaded): New public function to
30072         search the list of loaded assemblies.
30073
30074         * reflection.c (mono_reflection_type_from_name): Use 
30075         mono_assembly_loaded instead of mono_image_loaded.
30076
30077         * reflection.c: Fix warnings.
30078
30079 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
30080
30081         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
30082         is dynamic. This is needed since an assembly can contain both dynamic and
30083         non-dynamic images.
30084
30085         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
30086         assembly->dynamic.
30087
30088         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
30089
30090         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
30091         to store modules loaded using AddModule.
30092
30093         * reflection.c (mono_image_fill_file_table): Generalize this so it works
30094         on Modules.
30095
30096         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
30097
30098         * reflection.c (mono_image_fill_export_table_from_module): New function to
30099         fill out the EXPORTEDTYPES table from a module.
30100
30101         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
30102         into a separate function. Also handle loaded non-dynamic modules.
30103
30104         * reflection.c (mono_image_basic_init): Fix memory allocation.
30105
30106         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30107
30108         * assembly.c (mono_assembly_load_references): Make this public.
30109
30110 2003-12-19  Martin Baulig  <martin@ximian.com>
30111
30112         * class.c (mono_class_initialize_generic): Made this static, take
30113         a `MonoGenericInst *' instead of a `MonoClass *'.
30114         (mono_class_from_generic): Call mono_class_initialize_generic()
30115         unless we're already initialized or being called from
30116         do_mono_metadata_parse_generic_inst().
30117
30118         * class.h (MonoGenericInst): Added `initialized' and
30119         `init_pending' flags.
30120
30121         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
30122         `mono_class_init (gklass)' or mono_class_initialize_generic()
30123         here; set `generic_inst->init_pending' while parsing the
30124         `type_argv'.
30125
30126 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
30127
30128         * locales.c: include string.h for memxxx prototypes
30129
30130 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
30131
30132         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
30133         constructor when accessing literal fields.
30134
30135 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
30136
30137         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30138
30139         * reflection.c (assembly_add_resource_manifest): New function to fill
30140         the MANIFESTRESOURCE table.
30141
30142         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
30143
30144         * reflection.h: Update to changes in class layout.
30145
30146         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
30147         Reenable call to mono_runtime_is_shutting_down ().
30148
30149         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
30150         determine if the runtime is shutting down.
30151
30152 2003-12-16  Jackson Harper <jackson@ximian.com>
30153
30154         * icall.c: comment out call to mono_runtime_is_shutting_down to
30155         fix build.
30156         
30157 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
30158
30159         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
30160         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
30161
30162 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
30163
30164         * reflection.c: move definition of swap_with_size
30165         to before its first call
30166
30167 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
30168
30169         * appdomain.c (mono_runtime_is_shutting_down): New public function.
30170
30171         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
30172         icall.
30173
30174         * object.c: Fix warnings.
30175
30176         * icall.c (ves_icall_Type_Get...): Only consider inherited static
30177         members if FlattenHierarchy is set.
30178
30179         * reflection.c (mono_image_add_decl_security): New function to emit
30180         declarative security.
30181
30182         * reflection.h reflection.c: Add support for declarative security.
30183
30184         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30185         
30186 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
30187
30188         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30189         
30190         * appdomain.c verify.c: Moved corlib version checking into its own
30191         function in appdomain.c since it needs to create vtables etc.
30192
30193 2003-12-13  Patrik Torstensson <p@rxc.se>
30194
30195         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
30196         instead of unwrapped server.
30197
30198 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
30199
30200         * verify.c (check_corlib): Fix field index.
30201
30202 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
30203
30204         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
30205         GetGacPath icall.
30206
30207 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
30208
30209         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
30210         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
30211         cope with sizeof(size_t) != sizeof(guint32).
30212
30213 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30214
30215         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
30216         in case of failure.
30217
30218 2003-12-10  Mark Crichton <crichton@gimp.org>
30219
30220         * icall.c: removed the GetNonZeroBytes.  We now handle this case
30221         in managed code.
30222
30223         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
30224
30225 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
30226
30227         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
30228         marked as deleted.
30229
30230 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
30231
30232         * verify.c (check_corlib): Handle the case when the version field is 
30233         initialized by a static constructor.
30234
30235 2003-12-08  Patrik Torstensson  <p@rxc.se>
30236
30237     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
30238
30239 2003-12-08  Martin Baulig  <martin@ximian.com>
30240
30241         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
30242         a MonoReflectionGenericParameter, also take the parameter index
30243         and name as arguments.
30244         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
30245         (ves_icall_MonoGenericParam_initialize): New interncall.
30246         (ves_icall_Type_make_byref_type): New interncall.
30247
30248         * reflection.h (MonoReflectionGenericParam): Derive from
30249         MonoReflectionType, not just from MonoObject.  Added `refobj' and
30250         `index' fields.
30251
30252         * reflection.c (mono_reflection_define_generic_parameter): Create
30253         and return a new MonoReflectionGenericParam; don't initialize the
30254         constraints here.
30255         (mono_reflection_initialize_generic_parameter): New public method;
30256         initializes the constraints and creates the `param->pklass'.
30257
30258 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
30259
30260         * reflection.h reflection.c: Use the new fields 'num_types', 
30261         'num_fields' and 'num_methods' to track the number of types etc.
30262
30263         * verify.c (check_corlib): Check corlib version number.
30264
30265 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
30266
30267         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
30268         function works on all methods.
30269
30270 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
30271
30272         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
30273         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
30274         the custom_type_info flag of the transparent proxy.
30275         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
30276         objects that supports IRemotingTypeInfo.
30277         * object.h: Added custom_type_info field in transparent proxy.
30278
30279 2003-12-06  Martin Baulig  <martin@ximian.com>
30280
30281         * class.c (mono_class_create_from_generic): Removed.
30282         (mono_class_from_generic): Check `ginst->klass' before doing
30283         anything else.  This is important to fully support "recursive"
30284         generic types.
30285
30286         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
30287         empty `generic_inst->klass' before doing anything else.
30288
30289 2003-12-06  Dick Porter  <dick@ximian.com>
30290
30291         * verify.c: 
30292         * object.h:
30293         * icall.c:
30294         * locales.c: Use C structs to access class fields.  Don't do a
30295         conversion between MonoString and UChar because both are
30296         platform-endian UTF-16.  Compare now takes startindex and count
30297         parameters.  Add a char overload for IndexOf.  Speed up the
30298         invariant string IndexOf.
30299
30300 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
30301
30302         * Makefile.am (monosn_LDADD): Fix parallel build.
30303
30304 2003-12-04  Martin Baulig  <martin@ximian.com>
30305
30306         * icall.c
30307         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30308         (ves_icall_Type_make_array_type): New interncall.       
30309
30310 2003-12-04  Martin Baulig  <martin@ximian.com>
30311
30312         * locales.c: also change it in the !HAVE_ICU case.
30313
30314 2003-12-04  Dick Porter  <dick@ximian.com>
30315
30316         * icall.c:
30317         * locales.c: construct_compareinfo is now in CompareInfo, not
30318         CultureInfo.
30319
30320 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
30321
30322         * image.c (mono_image_load_file_for_image): Cache loaded images in the
30323         image->files array.
30324
30325         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
30326         table as well.
30327
30328         * assembly.c (mono_assembly_load_references): Only load references
30329         once.
30330
30331         * class.c (mono_class_from_name): Avoid linear search of the 
30332         EXPORTEDTYPE table.
30333
30334         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
30335
30336 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
30337
30338         * image.h (MonoImage): Add 'field_cache' field.
30339
30340         * loader.c (mono_field_from_token): Cache field lookups.
30341         
30342         * reflection.c (mono_module_get_object): Fix name property.
30343
30344         * icall.c (ves_icall_get_enum_info): Update after changes to 
30345         mono_metadata_get_constant_index ().
30346
30347         * icall.c: Get rid of get_type_info icall, use a separate icall for
30348         each type property to avoid needless memory allocations. Fixes #51514.
30349
30350         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
30351         to avoid needless binary searches.
30352
30353         * class.c (class_compute_field_layout): Move the initialization of
30354         field->def_value to mono_class_vtable ().
30355
30356         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
30357         non-corlib types.
30358
30359         * object.c (mono_object_allocate): Make it inline.
30360
30361         * object.c (mono_object_allocate_spec): Make it inline.
30362         
30363 2003-12-02  Dick Porter  <dick@ximian.com>
30364
30365         * locales.c (create_NumberFormat): NumberFormatInfo construction.
30366         Patch by Mohammad DAMT (mdamt@cdl2000.com).
30367
30368 2003-12-01  Dick Porter  <dick@ximian.com>
30369
30370         * threads.c: Fix signature and call in CreateMutex and
30371         CreateEvent.
30372
30373 2003-12-01  Dick Porter  <dick@ximian.com>
30374
30375         * icall.c: 
30376         * locales.c: Implement string compares and searching
30377
30378         * object.h: Add extra Thread field
30379
30380 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30381
30382         * reflection.c (fixup_method): Add support for MonoCMethod.
30383
30384 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30385
30386         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30387
30388         * reflection.c (assembly_name_to_aname): Allow extra characters in
30389         assembly names. Fixes #51468.
30390
30391 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30392
30393         * exception.c (mono_exception_from_name_domain): New helper function.
30394
30395         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30396         exception object in the correct domain.
30397
30398         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30399         formatting + make a copy a the input data.
30400
30401         * loader.c (mono_get_method_from_token): Methods which contain
30402         native code do not have entries in the ImplMap.
30403
30404         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30405         Thanks to Gonzalo for spotting this.
30406         
30407         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30408         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30409
30410         * assembly.h (mono_assembly_load_from): Split the second part of 
30411         assembly loading into a new public function.
30412
30413         * exception.h (mono_get_exception_bad_image_format): New function.
30414
30415 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30416
30417         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30418         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30419         
30420         * icall.c: Add new icall for creating dynamic methods.
30421
30422         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30423
30424         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30425
30426         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30427         create a dynamic method.
30428
30429         * reflection.c (resolve_object): New helper function.
30430
30431         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30432         which manipulate it so they can also work on dynamic methods.
30433
30434         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30435         creating the MonoReflectionMethodAux structure if it is not needed.
30436         
30437         * reflection.h verify.c: Update after changes to object layout.
30438
30439         * reflection.c (method_builder_encode_signature): Fix compilation on
30440         gcc 2.95.x.
30441
30442 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30443
30444         * appdomain.h: Added support for context static fields. Added static_data
30445           field to MonoAppContext and renamed thread_static_fields to a more
30446           generic special_static_fields in MonoAppDomain, since it can now contain
30447           context static fields.
30448         * domain.c: Updated hashtable name.
30449         * object.c: Replaced field_is_thread_static() for a more generic
30450           field_is_special_static() which also checks for context static attribute.
30451           In mono_class_vtable(), added support for static context fields.
30452         * threads.c: Changed methods that manage thread static fields to more
30453           generic methods so they can be reused both for thread and context static
30454           data.
30455         * threads.h: Declared some new methods.
30456
30457 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30458
30459         * reflection.h: Update after changes to the managed types.
30460
30461         * reflection.c (encode_custom_modifiers): New helper function.
30462
30463         * reflection.c (method_encode_signature): Emit custom modifiers.
30464
30465         * reflection.c (field_encode_signature): Emit custom modifiers.
30466
30467 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30468
30469         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30470
30471         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30472         implementation.
30473
30474         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30475         icall.
30476
30477         * object.c (mono_field_get_value_object): New function.
30478
30479         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30480         specific.
30481
30482 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30483
30484         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30485         return a preallocated out-of-memory exception instance.
30486
30487         * object.c (out_of_memory): Use the new function.
30488
30489         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30490         flag is before the custom modifiers. Fixes #49802.
30491
30492 2003-11-16  Martin Baulig  <martin@ximian.com>
30493
30494         * class.c (mono_class_is_open_constructed_type): Implemented the
30495         MONO_TYPE_GENERICINST case.
30496
30497 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30498
30499         * assembly.c (mono_assembly_fill_assembly_name): New function to
30500         fill out the MonoAssemblyName structure.
30501         (mono_assembly_open): Use the new function.
30502
30503         * icall.c (fill_reflection_assembly_name): New helper function.
30504
30505         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30506         new function.
30507
30508         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30509
30510 2003-11-15  Martin Baulig  <martin@ximian.com>
30511
30512         * class.c (mono_class_is_open_constructed_type): New public
30513         function; checks whether a type is an open constructed type,
30514         ie. whether it still contains type parameters.
30515         (mono_class_inflate_generic_type): If we're a type parameter and
30516         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30517         type.
30518
30519         * class.h (MonoGenericInst): Added `guint32 is_open'.
30520
30521         * loader.c (method_from_methodspec): Check whether we're an open
30522         or closed constructed type and set `ginst->is_open'.
30523
30524         * reflection.c (mono_reflection_bind_generic_parameters): Check
30525         whether we're an open or closed constructed type and set
30526         `ginst->is_open'.
30527         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30528         from open constructed types.
30529
30530 2003-11-15  Martin Baulig  <martin@ximian.com>
30531
30532         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30533         a generic instance (instead of a generic type declaration) with
30534         unbound generic parameters, bind them to our actual types.
30535
30536 2003-11-14  Martin Baulig  <martin@ximian.com>
30537
30538         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30539
30540         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30541         an interface type, populate `res->interfaces' with instantiated
30542         versions of all the interfaces we inherit.
30543
30544 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30545
30546         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30547         when MONO_PATH is set but doesn't contain the install dir.
30548
30549 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30550
30551         * icall.c:
30552         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30553         it's also implemented in base classes. Fixes bug #50927.
30554
30555 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30556
30557         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30558         if this method is called from a finalizer. Fixes #50913.
30559
30560 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30561
30562         * threads.c: Implement VolatileRead/VolatileWrite
30563
30564         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30565
30566 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30567
30568         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30569         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30570         2.95.3.
30571
30572         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30573         from Peter Ross (pro@missioncriticalit.com).
30574         
30575 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30576
30577         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30578
30579 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30580
30581         * assembly.c (mono_assembly_load_references): Disable check because it
30582         triggers on older corlibs which lots of people have.
30583
30584 2003-11-12  Jackson Harper  <jackson@ximian.com>
30585
30586         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30587         load corlib.dll if mscorlib.dll is not found.
30588         * assembly.h: Remove corlib name define.
30589         * class.c:
30590         * domain.c:
30591         * image.c: Change corlib name to mscorlib.
30592         
30593 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30594
30595         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30596
30597 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30598
30599         * appdomain.h: Added loader_optimization here to sync with the C#
30600         code, and add disallow_binding_redirects field.
30601
30602 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30603
30604         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30605
30606         * reflection.c (mono_image_build_metadata): Fix crash on modules
30607         with no types.
30608
30609         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30610
30611         * icall.c (ves_icall_get_method_info): Return callingConvention as
30612         well.
30613
30614         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30615         namespaces from the EXPORTEDTYPE table as well.
30616
30617         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30618         from all modules inside the assembly.
30619         
30620 2003-11-11  Martin Baulig  <martin@ximian.com>
30621
30622         * reflection.c (mono_reflection_bind_generic_parameters): Make
30623         this work for interfaces.
30624
30625 2003-11-11  Martin Baulig  <martin@ximian.com>
30626
30627         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30628
30629 2003-11-11  Martin Baulig  <martin@ximian.com>
30630
30631         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30632         "MonoInflatedMethod" and "MonoInflatedCtor".
30633
30634 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30635
30636         * reflection.c (resolution_scope_from_image): Use the assembly table
30637         from the manifest module, since other modules don't have it.
30638
30639         * debug-helpers.c (mono_type_full_name): New helper function.
30640
30641         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30642
30643         * image.c (mono_image_load_file_for_image): New public function which
30644         is a replacement for the load_file_for_image in class.c.
30645
30646         * assembly.c (mono_assembly_load_module): A wrapper for the function
30647         above which does assembly association and reference loading too.
30648
30649         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30650
30651 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30652
30653         * appdomain.c: not all of the attributes for the full assembly name
30654         are required and the order doesn't matter. Fixes bug #50787.
30655
30656 2003-11-10  Dick Porter  <dick@ximian.com>
30657
30658         * locales.c: Use platform-endian UTF16
30659
30660 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30661
30662         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30663         
30664 2003-11-10  Martin Baulig  <martin@ximian.com>
30665
30666         * metadata.c
30667         (mono_metadata_load_generic_params): Make this actually work.
30668
30669         * reflection.c (mono_reflection_bind_generic_parameters): If our
30670         parent is a generic instance, pass all the `types' to it, no
30671         matter whether it has the same number of type parameters or not.
30672
30673 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30674
30675         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30676
30677         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30678         assignment code to this function so it gets called recursively for all
30679         modules.
30680
30681         * image.c (load_modules): Remove the assembly assignment since it is
30682         now done by mono_assembly_load_references.
30683         
30684         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30685         Add 'module' argument.
30686         (mono_module_get_types): New helper function.
30687         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30688
30689 2003-11-08  Martin Baulig  <martin@ximian.com>
30690
30691         * class.c (mono_class_inflate_generic_method): Interface method
30692         don't have a header.
30693
30694         * reflection.c (mono_image_get_methodspec_token): Take an
30695         additional `MonoGenericInst *' argument instead of reading it from
30696         the header; this is necessary to support interfaces.
30697         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30698         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30699         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30700         argument.
30701
30702         * reflection.h (MonoReflectionInflatedMethod): Added
30703         `MonoGenericInst *ginst'.
30704
30705 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30706
30707         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30708
30709 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30710
30711         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30712
30713 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30714
30715         * reflection.c 
30716         (reflection_methodbuilder_from_method_builder):
30717         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30718         initialize a ReflectionMethodBuilder structure.
30719         (mono_image_get_methodbuilder_token):
30720         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30721         tokens which point to types in another module inside the same assembly.
30722
30723         * reflection.c: Use the new helper functions.
30724         
30725         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30726
30727         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30728         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30729
30730         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30731         neccesary.
30732
30733         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30734         current module. Emit the manifest only for the main module.
30735
30736         * reflection.c (mono_image_create_token): Add assertion when a 
30737         memberref needs to be created.
30738
30739         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30740
30741         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30742         larger buffer for the custom attribute blob. Fixes #50637.
30743         
30744 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30745
30746         * threadpool.c: notify listener on async processing handles after
30747         invoking the async callback. Thanks to Zoltan.
30748
30749 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30750
30751         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30752         avoid code duplication.
30753
30754         * reflection.h (MonoDynamicImage): New type which is currently unused,
30755         but will be used through the ref.emit code in place of 
30756         MonoDynamicAssembly.
30757
30758         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30759         object layout.
30760
30761         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30762         a MonoDynamicImage instead of just a MonoImage.
30763         
30764         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30765         icalls to ModuleBuilder but keep their semantics, so they will work
30766         with moduleb->assemblyb. This will change later.
30767         
30768 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30769
30770         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30771         object layout.
30772
30773         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30774         main module, since it is now done by the managed code.
30775
30776 2003-11-03  Martin Baulig  <martin@ximian.com>
30777
30778         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30779         `ginst->klass' here.
30780         (method_encode_methodspec): Don't use the `ginst->generic_method's
30781         klass if it's a generic instance, use `ginst->klass' in this case.
30782
30783 2003-11-03  Martin Baulig  <martin@ximian.com>
30784
30785         * reflection.c (mono_image_get_generic_method_param_info):
30786         Removed, use mono_image_get_generic_param_info() instead.
30787         (mono_image_get_type_info): Write the GenericParam table before
30788         the Method table.  This is neccessary because in the GenericParam
30789         table, type parameters of the class (ie. '!0' etc.) must come
30790         before the ones from its generic methods (ie. '!!0' etc).
30791
30792 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30793
30794         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30795
30796 2003-11-02  Martin Baulig  <martin@ximian.com>
30797
30798         * reflection.c (create_generic_typespec): Take a
30799         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30800         the generic parameters from it.
30801
30802 2003-11-02  Martin Baulig  <martin@ximian.com>
30803
30804         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30805         instead of a `MonoClassField *' since we just need the type.
30806         (create_generic_typespec): New static function.  Creates a
30807         TypeSpec token for a generic type declaration.
30808         (mono_image_get_generic_field_token): New static function.
30809         (mono_image_create_token): If we're a FieldBuilder in a generic
30810         type declaration, call mono_image_get_generic_field_token() to get
30811         the token.
30812
30813 2003-11-02  Martin Baulig  <martin@ximian.com>
30814
30815         * reflection.h
30816         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30817         `MonoReflectionGenericInst *declaring_type' and
30818         `MonoReflectionGenericInst *reflected_type' fields.
30819
30820         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30821         `MonoReflectionGenericInst *declaring_type' and a
30822         `MonoReflectionGenericInst *reflected_type' argument instead of a
30823         single `MonoReflectionGenericInst *type' one.  Set
30824         `res->declaring_type' and `res->reflected_type' from them.
30825         (mono_reflection_inflate_field): Likewise.      
30826
30827 2003-11-02  Martin Baulig  <martin@ximian.com>
30828
30829         * class.c (mono_class_setup_vtable): Don't store generic methods
30830         in the vtable.  
30831
30832 2003-11-02  Martin Baulig  <martin@ximian.com>
30833
30834         * reflection.h (MonoReflectionGenericInst): Added
30835         `MonoReflectionType *declaring_type'.
30836
30837         * reflection.c (mono_reflection_bind_generic_parameters): Use
30838         `if (tb->parent)' instead of `klass->parent'.
30839
30840 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30841
30842         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30843         with an empty ASSEMBLY table.
30844
30845         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30846         variable in the inner and outer loops.
30847
30848 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30849
30850         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30851         argument.
30852
30853         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30854         
30855         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30856         icalls. Instead, do everything in managed code. This is needed since
30857         it is hard to restore the original domain etc. in unmanaged code in the
30858         presence of undeniable exceptions.
30859
30860         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30861         New icalls to push and pop appdomain refs.
30862
30863 2003-10-31  Martin Baulig  <martin@ximian.com>
30864
30865         * class.c (inflate_generic_type): Renamed to
30866         mono_class_inflate_generic_type() and made it public.
30867
30868         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30869         New interncall.
30870
30871         * loader.c (mono_field_from_memberref): Also set the retklass for
30872         typespecs.
30873
30874         * fielder.c (mono_image_get_inflated_field_token): New static
30875         method; creates a metadata token for an inflated field.
30876         (mono_image_create_token, fixup_method): Added support for
30877         "MonoInflatedField".
30878         (fieldbuilder_to_mono_class_field): New static function.
30879         (mono_reflection_inflate_field): New public function.
30880
30881         * reflection.h
30882         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30883         (MonoReflectionInflatedField): New typedef.     
30884
30885 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30886
30887         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30888         for Solaris and other platforms without s6_addr16
30889
30890 2003-10-30  Martin Baulig  <martin@ximian.com>
30891
30892         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30893         argument instead of two.
30894         (mono_class_inflate_generic_signature): Likewise.
30895         (inflate_generic_header): Likewise.
30896         (mono_class_inflate_generic_method): Likewise.  In addition, if
30897         `ginst->klass' is set, it becomes the new `method->klass'.
30898
30899         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30900         field.
30901
30902         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30903         first byte. [FIXME]
30904         (method_encode_methodspec): If we have generic parameters, create
30905         a MethodSpec instead of a MethodRef.
30906         (fixup_method): Added support for "MonoInflatedMethod" and
30907         "MonoInflatedCtor".
30908         (mono_image_create_token): Added support for "MonoInflatedMethod"
30909         and "MonoInflatedCtor".
30910         (inflated_method_get_object): New static function; returns a
30911         managed "System.Reflection.MonoInflatedMethod" object.
30912         (mono_reflection_bind_generic_method_parameters): Return a
30913         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30914         (mono_reflection_inflate_method_or_ctor): Likewise.
30915         (mono_image_get_generic_method_param_info): Initialize unused
30916         fields to zero.
30917         (mono_image_get_generic_param_info): Likewise.
30918
30919         * reflection.h (MonoReflectionInflatedMethod): New public
30920         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30921         "S.R.MonoInflatedCtor" classes.
30922
30923         * loader.c (method_from_memberref): If we're a TypeSpec and it
30924         resolves to a generic instance, inflate the method.
30925
30926 2003-10-28  Dick Porter  <dick@ximian.com>
30927
30928         * object.c (mono_runtime_run_main): Convert command-line arguments
30929         into utf8, falling back to the user's locale encoding to do so.
30930
30931 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30932
30933         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30934         at this time.
30935
30936         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30937
30938         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30939         up icalls at method definition time. Partially fixes #33569.
30940
30941 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30942
30943         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30944         marshalling of arrays. Fixes #50116.
30945
30946         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30947
30948         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30949         points to a vtable in the dying appdomain.
30950
30951         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30952         listeners into unmanaged code inside the lock.
30953
30954         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30955         domains and add some comments.
30956
30957 2003-10-25  Martin Baulig  <martin@ximian.com>
30958
30959         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30960
30961         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30962
30963         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30964         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30965         currently parsing.  Create the generic class and store it in
30966         `generic_inst->klass' before parsing the type arguments.  This is
30967         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30968         for an example.
30969         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30970         to support recursive typespec entries.
30971
30972         * class.c (mono_class_setup_parent): If our parent is a generic
30973         instance, we may get called before it has its name set.
30974         (mono_class_from_generic): Splitted into
30975         mono_class_create_from_generic() and mono_class_initialize_generic().
30976
30977 2003-10-25  Martin Baulig  <martin@ximian.com>
30978
30979         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30980         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30981         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30982         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30983
30984         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30985         (create_typespec): Likewise.
30986         (mono_reflection_bind_generic_parameters): Return a
30987         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30988         (mono_reflection_inflate_method_or_ctor): New public function.
30989
30990         * reflection.h (MonoReflectionGenericInst): New typedef.        
30991
30992 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30993
30994         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30995         inside the domain lock. Fixes #49993.
30996         
30997         * object.c (mono_class_vtable): When typed allocation is used, 
30998         allocate vtables in the GC heap instead of in the mempool, since the
30999         vtables contain GC descriptors which are used by the collector even
31000         after the domain owning the mempool is unloaded.
31001
31002         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
31003
31004         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
31005         reflect what it does. Also invalidate mempools instead of freeing
31006         them if a define is set.
31007
31008         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
31009         of the appdomain.
31010         
31011         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
31012         hold the finalizable objects in this domain.
31013
31014         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
31015         appdomain.
31016
31017         * appdomain.c (mono_domain_set): New function to set the current
31018         appdomain, but only if it is not being unloaded.
31019
31020         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
31021         appdomain which is being unloaded.
31022         
31023         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
31024         unloading of the root appdomain.
31025
31026         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
31027         icall to execute a method in another appdomain. Intended as a 
31028         replacement for InternalSetDomain, which can confuse the code 
31029         generation in the JIT.
31030
31031         * appdomain.c (mono_domain_is_unloading): New function to determine
31032         whenever an appdomain is unloading.
31033
31034         * appdomain.c (mono_domain_unload): New function to correctly unload
31035         an appdomain.
31036
31037         * assembly.c (mono_assembly_load_references): Check that an assembly
31038         does not references itself.
31039
31040         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
31041         domain manually, it asks the finalizer thread to do it, then waits for
31042         the result. Also added a timeout.
31043
31044         * icall.c: Register the new icalls.
31045
31046         * threads.h threads.c: Export the mono_gc_stop_world and 
31047         mono_gc_start_world functions.
31048         
31049         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
31050         function to fill out the mempool with 0x2a.
31051
31052 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
31053
31054         * reflection.h (MonoReflectionMethodAux): New structure to store
31055         information which is rarely used, thus is not in the MonoMethod
31056         structure.
31057
31058         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
31059         store the aux info.
31060
31061         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
31062         and marshalling info into the aux structure.
31063
31064         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
31065         from the aux structure.
31066
31067         * loader.c (mono_method_get_param_names): Retrieve the param names from
31068         the aux structure.
31069         
31070 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
31071
31072         * exception.h exception.c: Add AppDomainUnloadedException && fix 
31073         warning.
31074
31075 2003-10-21  Dick Porter  <dick@ximian.com>
31076
31077         * socket-io.c
31078         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
31079         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
31080
31081 2003-10-21  Martin Baulig  <martin@ximian.com>
31082
31083         * reflection.c (mono_reflection_bind_generic_parameters):
31084         `klass->parent' is NULL for interfaces.
31085
31086 2003-10-21  Martin Baulig  <martin@ximian.com>
31087
31088         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31089
31090 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
31091
31092         * exception.c (mono_exception_from_name_msg): New helper function for
31093         creating exceptions and initializing their message field.
31094
31095         * exception.c: Simplify functions using the new helper.
31096
31097         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
31098         New function.
31099
31100         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
31101         mono_raise_exception, since otherwise gcc doesn't generate the function
31102         epilog for raise_exception, confusing the stack unwinding in the JIT.
31103         Fixes #45043.
31104
31105         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
31106         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
31107         Fixes #49499.
31108
31109 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31110
31111         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
31112         utf8.
31113
31114 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
31115
31116         * icall.c: Removed GetUninitializedObject method because
31117           AllocateUninitializedClassInstance does the same.
31118
31119 2003-10-18  Martin Baulig  <martin@ximian.com>
31120
31121         * class.c (inflate_generic_signature): Renamed to
31122         mono_class_inflate_generic_signature() and made it public.
31123         (my_mono_class_from_generic_parameter): New static function; if we
31124         don't already have the generic parameter's MonoClass, create a
31125         very simple one which is just used internally in the runtime and
31126         not passed back to managed code.
31127
31128         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
31129
31130         * metadata.h (MonoMethodSignature): Moved the
31131         `MonoGenericParam *gen_params' to the MonoMethodHeader.
31132         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
31133
31134         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
31135         ves_icall_MonoMethod_GetGenericArguments(); this is now an
31136         interncall on the MonoMethod class, not on MethodInfo.
31137         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
31138         calling mono_reflection_bind_generic_method_parameters() directly.
31139
31140         * loader.c (mono_method_get_signature): If this is a MethodSpec;
31141         return the already computed `method->signature'.
31142         (method_from_methodspec): New static function to load a method
31143         from a MethodSpec entry.
31144         (mono_get_method_from_token): Call the new method_from_methodspec()
31145         for MethodSpec tokens.  
31146         (mono_get_method_from_token): If we're a generic method, load the
31147         type parameters.
31148
31149         * reflection.c (mono_image_get_memberref_token): Allow
31150         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
31151         table.
31152         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
31153         (mono_image_create_token): First check whether it's a generic
31154         method (so we'd need to create a MethodSpec), then do the other
31155         two alternatives.
31156         (mono_reflection_bind_generic_method_parameters): Return a
31157         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
31158         called directly from the interncall.
31159
31160 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
31161
31162         * reflection.c (load_public_key): Move loading of the public key
31163         into managed code.
31164
31165         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
31166
31167         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
31168         fields.
31169
31170         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
31171         culture, hash_alg and public_key. Fixes #49555.
31172
31173 2003-10-17  Martin Baulig  <martin@ximian.com>
31174
31175         * class.h (MonoGenericInst): Moved this declaration here and added
31176         `MonoMethod *generic_method'.
31177
31178         * icall.c
31179         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
31180         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
31181
31182         * metadata.c (mono_metadata_type_equal): Two types of
31183         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
31184         index; ie. don't compare the address of the `MonoGenericParam'
31185         structure.
31186         (mono_metadata_load_generic_params): Removed the `MonoMethod
31187         *method' argument.
31188
31189         * metadata.h (MonoGenericInst): Moved declaration to class.h.
31190         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
31191
31192         * reflection.c (method_encode_signature): Encode the number of
31193         generic parameters.
31194         (encode_generic_method_sig): New static function.
31195         (method_encode_methodspec): New static function; creates an entry
31196         in the MethodSpec table for a generic method.
31197         (mono_image_get_methodspec_token): New static function.
31198         (mono_image_create_token): Call mono_image_get_methodspec_token()
31199         for generic methods.
31200         (mono_reflection_bind_generic_method_parameters): New public
31201         function.  Instantiates a generic method.
31202
31203 2003-10-16  Martin Baulig  <martin@ximian.com>
31204
31205         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
31206         *gen_params' here from MonoMethodHeader.
31207
31208         * metadata.c (mono_metadata_parse_method_signature): If we have
31209         generic parameters, initialize `method->gen_params' and then set
31210         the correct `type->data.generic_param' in all the parameters.
31211
31212 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
31213
31214         * threads.c (mono_threads_get_default_stacksize): New function to 
31215         return the default stacksize.
31216
31217         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
31218         termination of the finalizer thread, since the previous method had
31219         race conditions. Fixes #49628.
31220
31221         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
31222         as for the other managed threads.
31223
31224 2003-10-16  Martin Baulig  <martin@ximian.com>
31225
31226         * class.c (inflate_generic_signature): Copy `generic_param_count'
31227         and `gen_params'.
31228
31229         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
31230         New interncall.
31231
31232         * metadata.c (mono_metadata_parse_method_signature): Actually set
31233         the `method->generic_param_count' here.
31234         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
31235
31236 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
31237
31238         * object.h: Add a new field to TypedRef to simplify the implementation
31239         of the REFANY opcodes in the JIT.
31240
31241         * icall.c: Make use of the new field.
31242
31243         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
31244         dynamically.
31245
31246 2003-10-15  Martin Baulig  <martin@ximian.com>
31247
31248         * class.c (mono_class_from_gen_param): Renamed to
31249         mono_class_from_generic_parameter() and moved most of the
31250         functionality from mono_reflection_define_generic_parameter()
31251         here; ie. we create a "real" class here.
31252         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
31253         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
31254         previously been called.
31255
31256         * class.h (MonoGenericParam): Moved the declaration of this struct
31257         here from metadata.h and added `MonoMethod *method'.
31258
31259         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
31260         interncall.
31261
31262         * loader.c (mono_get_method_from_token): If we have any generic
31263         parameters, call mono_metadata_load_generic_params() to read them
31264         from the MONO_TABLE_GENERICPAR.
31265
31266         * metadata.c (mono_metadata_load_generic_params): Added
31267         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
31268
31269         * metadata.h (MonoMethodSignature): Replaced
31270         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
31271         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
31272
31273         * reflection.c (mono_reflection_define_generic_parameter): Moved
31274         most of the functionality into the new
31275         mono_class_from_generic_parameter(); set the `method' field if
31276         we're a method parameter.       
31277
31278 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
31279
31280         * marshal.c (emit_struct_conv): if native size is 0
31281         emit no code.
31282
31283 2003-10-14  Martin Baulig  <martin@ximian.com>
31284
31285         * icall.c: The generics API has changed in the spec since it was
31286         added to System.Type; these modifications make it match the spec
31287         again.
31288         (ves_icall_Type_GetGenericParameters): Renamed to
31289         `ves_icall_Type_GetGenericArguments'.
31290         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
31291         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
31292         `ves_icall_MonoType_get_HasGenericArguments'.
31293         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
31294         `ves_icall_MonoType_get_IsGenericParameter'.
31295         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
31296         this is no interncall anymore.
31297         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
31298         `ves_icall_TypeBuilder_get_IsGenericParameter'.
31299
31300 2003-10-14  Martin Baulig  <martin@ximian.com>
31301
31302         * reflection.c (mono_reflection_bind_generic_parameters): Also
31303         inflate generic methods if we're reading the class from IL.
31304
31305 2003-10-13  Martin Baulig  <martin@ximian.com>
31306
31307         * reflection.c (mono_reflection_define_generic_parameter): This
31308         method isn't called directly from the icall anymore; take a
31309         `MonoReflectionAssemblyBuilder *' so we can use this for type and
31310         method generic parameters.
31311         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
31312         (method_builder_encode_signature): Encode generic parameters.
31313         (mono_image_get_method_info): Write generic params to the
31314         MONO_TABLE_GENERICPARAM table.
31315
31316         * reflection.h (MonoReflectionMethodBuilder): Added
31317         `MonoArray *generic_params'.
31318
31319         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
31320
31321         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
31322         wrapper for mono_reflection_define_generic_parameter().
31323         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
31324
31325 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
31326
31327         * marshal.h: Add missing function to fix build.
31328
31329         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
31330         the SetLastError pinvoke attribute.
31331
31332         * marshal.c (mono_marshal_set_last_error): New helper function called
31333         by the generated code.
31334         
31335         * marshal.c (mono_mb_emit_branch): New helper function.
31336
31337         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
31338
31339         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31340         classes as parameters and return values of delegates. Fixes #29256. 
31341
31342 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
31343
31344         * locales.c: use gint32 in non HAVE_ICU case
31345
31346 2003-10-11  Martin Baulig  <martin@ximian.com>
31347
31348         * mono-debug.c (mono_debug_add_method): Added a workaround for
31349         bug #48591.
31350
31351 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
31352
31353         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
31354         delegates passed to native code must use the STDCALL calling 
31355         convention. Fixes #35987.
31356
31357 2003-10-10  Martin Baulig  <martin@ximian.com>
31358
31359         * class.c (inflate_generic_type): If we're inflating for a generic
31360         type instance (and not for a generic method), return
31361         MONO_TYPE_MVAR unchanged.
31362
31363 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31364
31365         * string-icalls.c: Join ignores null strings in the source array.
31366         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
31367         * threads.c: GetAvailableTheads is slightly more accurate.
31368
31369 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31370
31371         * threads.h threads.c : add mono_threads_set_default_stacksize
31372         and pass default to CreateThread calls.
31373
31374 2003-10-09  Dick Porter  <dick@ximian.com>
31375
31376         * icall.c:
31377         * locales.h:
31378         * locales.c: Internal calls for constructing CultureInfo and
31379         related objects from libicu (if its available.)
31380
31381 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31382
31383         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31384
31385 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31386
31387         * threadpool.c: added an argument to async_invoke_thread that is the
31388         item to process, pass the MonoAsyncResult to the thread start function
31389         when creating a new thread. This way we don't need to acquire any lock
31390         when we're creating a new thread. Readded a semaphore for faster
31391         response times (instead of that Sleep i added).
31392
31393 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31394
31395         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31396         get daylight change dates better on Windows, fix handling
31397         of platforms without tm_gmtoff.
31398
31399 2003-10-06  Martin Baulig  <martin@ximian.com>
31400
31401         * class.c (inflate_generic_method): Renamed to
31402         mono_class_inflate_generic_method() and made public.
31403         (mono_class_init): Don't inflate the generic methods here.
31404         (mono_class_from_generic): Added `gboolean inflate_methods'
31405         argument.  Inflate the methods here.
31406
31407         * loader.c (mono_method_get_param_names): Ignore instances of
31408         generic types for the moment.
31409
31410         * reflection.c (fixup_method): Added support for inflated methods.
31411         (mono_image_create_token): Use mono_image_get_methodref_token()
31412         for inflated methods.
31413         (mono_custom_attrs_from_param): Ignore instances of generic types
31414         for the moment.
31415         (mono_reflection_bind_generic_parameters): New public function.
31416         Moved all the functionality from
31417         ves_icall_Type_BindGenericParameters() here and added support for
31418         dynamic types.
31419         (mono_reflection_define_generic_parameter): Initialize
31420         `klass->methods' here.
31421
31422         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31423         functionality into mono_reflection_define_generic_parameter().
31424         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31425         TypeBuilder, return that TypeBuilder.
31426
31427 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31428
31429         * appdomain.c: removed mono_delegate_semaphore.
31430
31431         * threadpool.c:
31432         (mono_thread_pool_add): moved hash table creation inside and the thread 
31433         creation outside of the critical region.
31434         (mono_thread_pool_finish): removed obsolete code.
31435         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31436         continue or exit the thread depending on the queue.
31437
31438 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31439
31440         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31441         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31442         handle more bool marshalling options
31443
31444 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31445
31446         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31447         arrays of structs. Also add a more descriptive error message when
31448         a structure member is marshalled as LPArray.
31449
31450 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31451
31452         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31453         marshalling arrays of complex types. Fixes #29098. Also remove an
31454         usused and incomplete function.
31455
31456 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31457
31458         * gc.c: report heap_size - free_bytes as total memory allocated
31459         (bug#49362).
31460
31461 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31462
31463         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31464         fix timezone handling problems on Windows.
31465         
31466         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31467         asserts when the year is outside the range handled by ms the functions.
31468
31469         * class.c (setup_interface_offsets): If the class is an interface,
31470         fill out its interface_offsets slot.
31471
31472 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31473
31474         * threadpool.c: mark threadpool threads as background.
31475
31476 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31477
31478         * decimal.c - define DECINLINE to nothing if not using GCC
31479
31480 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31481
31482         * assembly.c: More refcount fixes.
31483
31484 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31485
31486         * string-icalls.c: if we're not trimming, return the same string.
31487         When not splitting, don't create a new string.
31488
31489 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31490
31491         * image.c:
31492         (mono_image_open): increment the ref_count inside the critical section.
31493
31494 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31495
31496         * image.c (mono_image_open): Fix reference counting bug.
31497
31498 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31499
31500         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31501         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31502         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31503         mono_lookup_pinvoke_call throws.        
31504
31505 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31506
31507         * reflection.c (mono_reflection_parse_type): Fix #49114.
31508
31509         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31510         temporary workaround for cygwin header problem.
31511
31512         * object.c (mono_object_isinst): Synchronize this with the code
31513         generated by the JIT for casts.
31514
31515 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31516
31517         * reflection.c (encode_type): Fix #38332.
31518
31519 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31520
31521         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31522         the original method from the wrapper method.
31523
31524 2003-09-25  Martin Baulig  <martin@ximian.com>
31525
31526         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31527         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31528         (ves_icall_Type_get_IsGenericInstance): New interncall.
31529
31530 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31531
31532         * object.c: fix cast warning in big endian code.
31533
31534 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31535
31536         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31537         
31538 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31539
31540         * assembly.c: don't call check_env from mono_assembly_load. It's
31541         already done once in mono_assemblies_init and may cause headaches when
31542         multiple threads are loading assemblies.
31543
31544 2003-09-19  Martin Baulig  <martin@ximian.com>
31545
31546         * reflection.c (mono_reflection_define_generic_parameter): Don't
31547         allocate `klass->methods', set `klass->flags' to
31548         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31549
31550 2003-09-18  Martin Baulig  <martin@ximian.com>
31551
31552         * class.c (mono_class_init): Don't create `class->methods' if it's
31553         already initialized.
31554
31555         * metadata.c (mono_metadata_load_generic_params): Make this
31556         actually work.
31557
31558         * reflection.c (mono_reflection_define_generic_parameter): Set
31559         parent class and interfaces from the constraints.
31560
31561         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31562         to keep this struct in sync with the declaration in TypeBuilder.cs.
31563
31564 2003-09-17  Martin Baulig  <martin@ximian.com>
31565
31566         * metadata.h (MonoType): Replaced the data's `int type_param'
31567         field with `MonoGenericParam *generic_param'.
31568         (MonoGenericParam): Added `MonoClass *klass'.
31569
31570         * class.c (mono_class_from_gen_param): Removed the
31571         `MonoImage *image' and `int type_num' arguments.
31572
31573         * metadata.c (mono_metadata_parse_generic_param): New static
31574         method; creates a MonoGenericParam which just contains the index.
31575         (do_mono_metadata_parse_type): Call
31576         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31577         MONO_TYPE_MVAR.
31578
31579         * reflection.c (mono_image_typedef_or_ref): Generic type
31580         parameters may be in the same assembly, but never use a typedef
31581         for them.
31582         (mono_reflection_define_generic_parameter): We're now creating a
31583         "real" class for the type parameter; it's now safe to call
31584         mono_class_from_mono_type() on the class'es type, it'll do the
31585         right thing.
31586
31587 2003-09-16  Martin Baulig  <martin@ximian.com>
31588
31589         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31590         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31591         the `symfile' data structure must be fully initialized before it
31592         gets added to the table.
31593
31594 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31595
31596         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31597
31598         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31599         class init trampolines.
31600
31601 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31602
31603         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31604         to the built-in profiler to turn off time and allocation profiling
31605         respectively.
31606
31607 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31608
31609         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31610         g_direct_equal.
31611
31612         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31613         in human readable form.
31614
31615 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31616
31617         * reflection.c icall.c: Fixed warnings.
31618
31619         * image.c (load_class_names): Use a temporary hash table to hold the
31620         namespaces in order to avoid doing many string comparisons.
31621
31622         * image.h: Fix typo.
31623
31624         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31625         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31626         since the NULL case is short-circuited inside g_hash_table_lookup, 
31627         leading to better performance.  
31628
31629         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31630         obtain the first custom attribute for a given index. Depends on the
31631         CustomAttribute table being sorted by the parent field.
31632
31633         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31634         for better performance.
31635
31636 2003-09-07  Martin Baulig  <martin@ximian.com>
31637
31638         * class.c (mono_class_init): If we're a generic instance, inflate
31639         all our methods instead of loading them from the image.
31640         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31641
31642 2003-09-07  Martin Baulig  <martin@ximian.com>
31643
31644         * mono-debug-debugger.c: Added support for constructors.
31645
31646 2003-09-06  Martin Baulig  <martin@ximian.com>
31647
31648         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31649         New interncall.
31650
31651         * reflection.c (mono_reflection_setup_generic_class): Call
31652         ensure_runtime_vtable() to create the vtable.
31653
31654 2003-09-05  Martin Baulig  <martin@ximian.com>
31655
31656         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31657         MONO_TYPE_MVAR.
31658
31659 2003-09-04  Martin Baulig  <martin@ximian.com>
31660
31661         * reflection.c (mono_reflection_define_generic_parameter): Generic
31662         parameters start with zero.
31663
31664 2003-09-04  Martin Baulig  <martin@ximian.com>
31665
31666         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31667
31668         * reflection.h (MonoReflectionGenericParam): New typedef.
31669         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31670         the generic parameters from the managed TypeBuilder.
31671
31672         * reflection.c (mono_reflection_define_generic_parameter): New function.
31673         (mono_reflection_create_runtime_class): Encode generic parameters.
31674         (mono_reflection_setup_generic_class): New function; this is
31675         called after adding adding all generic params to the TypeBuilder.
31676         (encode_type): Added MONO_TYPE_VAR.
31677
31678 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31679
31680         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31681         here from the JIT.
31682
31683         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31684         load hook.
31685
31686 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31687
31688         * reflection.h reflection.c class.h class.c: Delete duplicate 
31689         definition of mono_type_get_name () from reflection.c and export the
31690         one in class.c.
31691
31692         * class.c: Class loading fixes from Bernie Solomon 
31693         (bernard@ugsolutions.com).
31694
31695         * reflection.c: Endianness fixes from Bernie Solomon 
31696         (bernard@ugsolutions.com).
31697         
31698 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31699
31700         * assembly.h assembly.c: Define a file format version for AOT
31701         libraries.
31702         
31703         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31704
31705         * appdomain.h (MonoJitInfo): New field to determine whenever the
31706         code is domain neutral.
31707         
31708 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31709
31710         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31711
31712 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31713
31714         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31715         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31716         Avoid caching the result since strings must be domain specific. Fixes
31717         #48050.
31718
31719 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31720
31721         * marshal.c (mono_marshal_init): Make this callable multiple times
31722         since it is hard to find a correct place to call it.
31723
31724         * object.c (mono_runtime_class_init): Execute static constructors in
31725         the correct appdomain.
31726
31727         * image.c (build_guid_table): Handle the case when multiple images have
31728         the same GUID.
31729
31730 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31731
31732         * icall.c: added a couple of icalls for System.Web.
31733
31734 2003-08-28  Martin Baulig  <martin@ximian.com>
31735
31736         * icall.c (ves_icall_Type_BindGenericParameters): Use
31737         `klass->generic_inst' instead of `&klass->byval_arg' in the
31738         mono_type_get_object() call.  The returned type must be
31739         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31740
31741 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31742
31743         * NOTES: New file.
31744
31745         * object.c (mono_class_proxy_vtable): Make it thread safe.
31746
31747         * pedump.c: Fix warning.
31748
31749         * object.c appdomain.h: Get rid of metadata_section. 
31750         It is no longer needed and it was causing deadlocks with domain->lock.
31751
31752         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31753
31754 2003-08-26  Martin Baulig  <martin@ximian.com>
31755
31756         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31757
31758 2003-08-26  Martin Baulig  <martin@ximian.com>
31759
31760         * pedump.c (main): Call mono_metadata_init(),
31761         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31762         and mono_loader_init().
31763
31764 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31765
31766         * loader.h: Add missing include to fix build.
31767
31768         * image.h: mono_image_load_references is no more.
31769
31770         * assembly.c: Reworked assembly loading to make it really thread safe.
31771         After these changes, the assembly returned by mono_assembly_open is
31772         fully initialized, i.e. all its references assemblies are loaded.
31773
31774         * assembly.c (mono_image_load_references): Renamed to 
31775         mono_assembly_load_references, and made private, since clients no
31776         longer need to call it.
31777
31778         * class.c: Removed calls to mono_assembly_load_references, since it was
31779         a source of deadlocks.
31780
31781         * loader.h loader.c class.h class.c: Protect data structures using a 
31782         new lock, the loader lock.
31783
31784         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31785         GPtrArrays only when needed.
31786
31787         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31788         into empty structures by mcs. Fixes pinvoke7.cs.
31789         
31790         * domain.c (mono_init): Call a new initialization function.
31791
31792         * appdomain.c (mono_runtime_init): Call the new initializer function
31793         of the marshal module.
31794
31795         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31796         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31797
31798         * marshal.h marshal.c: Added locks around the wrapper caches to make
31799         this module thread safe.
31800
31801         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31802         this argument. Fixes pinvoke1.exe.
31803
31804 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31805
31806         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31807         enumeration of values. Removed fields to store remote call output values in
31808         MonoAsyncResult. Not needed any more.
31809         * object.c: Initialize call_type and async_result fields in mono_message_init.
31810         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31811         dispatching the message.
31812         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31813         async call to finish. To do it use a message with EndInvoke call type.
31814
31815 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31816
31817         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31818         determines whenever a method has marshalling info.
31819
31820 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31821
31822         * assembly.c: fix the build on windows.
31823
31824 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31825
31826         * object.cs: Fixed bug #47785.
31827
31828 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31829
31830         * string-icalls.c (StringReplace): If their are no occurances of
31831         the old string found return a reference to the supplied
31832         string. This saves some memory and matches MS behavoir.
31833         
31834 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31835
31836         * socket-io.c: fixed compilation for systems that define AF_INET6
31837         and don't define SOL_IP/SOL_IPV6.
31838
31839 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31840
31841         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31842         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31843
31844         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31845
31846         * domain.c: Make this module thread safe.
31847
31848         * domain.c (mono_init): Call new initialization function.
31849
31850         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31851         reference types too. Fixes #38812.
31852
31853         * image.c (mono_image_init): Fixed warnings.
31854
31855         * class.c (mono_class_from_typeref): Handle assembly load failure
31856         correctly.
31857
31858         * appdomain.c (add_assemblies_to_domain): Handle the case when
31859         the references of an assembly are not yet loaded.
31860
31861         * metadata.c image.c assembly.c: Moved initialization of global
31862         variables to a separate function called at startup since lazy 
31863         initialization of these variables is not thread safe.
31864         
31865         * image.c assembly.c: Made this module thread safe by adding locks in 
31866         the appropriate places.
31867
31868         * domain.c (mono_init): Call the new initialization functions of the
31869         three modules.
31870
31871 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31872
31873         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31874           make a direct call. It is proxy's work to make the call asynchronous.
31875           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31876           the return values.
31877         * object.cs: mono_method_call_message_new(): read AsyncResult and
31878           state object from parameters list, if this info is requested.
31879         * object.h: Added fields to store remote call output values in
31880           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31881
31882 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31883
31884         * object.h: add needed fields to MonoThread.
31885         * threads.c, threads.h: allow registering a function to cleanup data
31886         allocated per thread by the JIT.
31887
31888 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31889
31890         * loader.h: portability fix by Bernie Solomon
31891         * <bernard@ugsolutions.com>.
31892
31893 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31894
31895         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31896         return a MonoArray. This simplifies the code and also ensures that
31897         the cache allways contains an object reference as a value.
31898
31899         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31900         function.
31901
31902 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31903
31904         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31905         fixes a problem with byte ordering when getting the address family for
31906         a socket.
31907
31908 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31909
31910         * .cvsignore: Added monosn.
31911
31912         * reflection.h reflection.c loader.c: Added support for parameter
31913         marshalling to dynamically created types. Fixes #47295.
31914
31915 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31916
31917         * rand.c: remove useless warnings.
31918
31919 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31920
31921         * class.c: implemented ldtoken for methods and fieldrefs.
31922
31923 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31924
31925         * threadpool.c: when mono_async_invoke was called, no one took care of
31926         monitoring the queue. So if the method invoked took some time and we
31927         got new async invoke requests after 500 ms (the thread created waited
31928         that long in WaitForSingleObject), the new async invoke was not called
31929         until the previous one finished.
31930
31931         This is fixed now. Thanks to Totte for helping with it.
31932
31933 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31934
31935         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31936
31937 2003-08-11  Martin Baulig  <martin@ximian.com>
31938
31939         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31940
31941 2003-08-06  Martin Baulig  <martin@ximian.com>
31942
31943         * mono-debug-debugger.c: Added support for static fields,
31944         properties and methods.
31945
31946 2003-08-06  Martin Baulig  <martin@ximian.com>
31947
31948         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31949         make this work for applications with multiple application domains.
31950
31951 2003-08-04  Martin Baulig  <martin@ximian.com>
31952
31953         * mono-debug-debugger.c: Completely reworked the type support; the
31954         most important thing is that we're now just using one single
31955         `MonoType' instance per type.
31956
31957 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31958
31959         * mono-endian.h, mono-endian.c, icall.c: Added icall
31960         ves_icall_System_Double_AssertEndianity to assert double word endianity
31961         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31962
31963 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31964
31965         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31966         support, icalls and fixes.
31967
31968 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31969
31970         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31971         classes that are a punctuation character in .NET is not the same a
31972         g_unichar_ispunct.
31973
31974 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31975
31976         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31977
31978 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31979
31980         * icall.c: Add new MemCopy internalcall.
31981         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31982         Simplified code; It is not necessary to handle all the cases here,
31983         as the C# code takes care of it.  Only handle the case of the name
31984         resource embedded into the assembly.
31985
31986         Changed signature to return the data pointer and the size of the
31987         data. 
31988
31989 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31990
31991         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31992         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31993
31994 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31995
31996         * socket-io.c: ignore EINTR error in select.
31997
31998 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31999
32000         * class.h, class.c: removed unused subclasses field in MonoClass.
32001
32002 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32003
32004         * icall.c: improve fix of get_base_definition(). If the parent class
32005           doesn't have the mehod, look at the parent of the parent.
32006         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
32007           to check if a parameter is an in or out parameter
32008           (PARAM_ATTRIBUTE_IN is not set by default).
32009           mono_method_return_message_restore(): Use mono_class_value_size to
32010           get the size of a value type. mono_type_stack_size (parameterType)
32011           does not return the correct value if parameterType is byRef.
32012           mono_load_remote_field(), mono_load_remote_field_new(),
32013           mono_store_remote_field(), mono_store_remote_field_new():
32014           raise exception if the remote call returns an exception.
32015
32016 2003-07-28  Martin Baulig  <martin@ximian.com>
32017
32018         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
32019         method.  This is a wrapper around mono_runtime_invoke() which
32020         boxes the instance object if neccessary.
32021
32022 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32023
32024         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
32025         metadata.h, row-indexes.h, verify.c: first cut of generics support.
32026
32027 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32028
32029         * icall.c: disable mcs bug workaround.
32030
32031 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
32032
32033         * object.c (mono_runtime_class_init): Take the metadata_section
32034         mutex before obtaining the domain mutex.
32035
32036         * appdomain.h: Added definition of metadata_section mutex here. 
32037
32038         * object.c: define metadata_mutex here.
32039
32040 2003-07-24  Ravi Pratap  <ravi@ximian.com>
32041
32042         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
32043         fixed.
32044
32045 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
32046
32047         * reflection.c: Fix bug #46669
32048
32049 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32050
32051         * exception.c:
32052         * exception.h:
32053         * icall.c:
32054         * object.h: fill in the type name for TypeLoadException.
32055
32056 2003-07-23  Ravi Pratap  <ravi@ximian.com>
32057
32058         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
32059         relationship between TypeBuilders while compiling corlib) and bug
32060         45993 (Array types returned from the runtime while compiling
32061         corlib were from the loaded corlib).
32062
32063 2003-07-22  Martin Baulig  <martin@ximian.com>
32064
32065         * mono-debug-debugger.c: Reworked the type support a bit more;
32066         distinguish between types and classes.
32067
32068 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
32069
32070         * icall.c: add IsArrayImpl icall.
32071
32072 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
32073
32074         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
32075         initializing real_size only once. Also fix bug #46602.
32076
32077 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
32078
32079         * object.c: Renamed mono_metadata_section to metadata_section.
32080
32081 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
32082
32083         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
32084           empty array if the type is an array. Fixed.
32085           ves_icall_MonoMethod_get_base_definition: if the base method
32086           is abstract, get the MethodInfo from the list of methods of
32087           the class.
32088         * reflection.c: ParameterInfo.PositionImpl should be zero-based
32089           and it was 1-based. Fixed in mono_param_get_objects.
32090
32091 2003-07-20  Martin Baulig  <martin@ximian.com>
32092
32093         * mono-debug.h: Set version number to 31.
32094         (mono_debug_init): Added `MonoDomain *' argument.
32095
32096         * mono-debug-debugger.c: Reworked the type support; explicitly
32097         tell the debugger about builtin types; pass the `klass' address to
32098         the debugger.
32099
32100 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
32101
32102         * image.c: Allow new metadata tables to be loaded without a
32103         warning. Also update the warning message to give the new constant value.
32104                 
32105 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
32106
32107         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
32108         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
32109         array type representation changes.
32110
32111 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32112
32113         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
32114         on Environment.Exit () call.
32115
32116 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
32117
32118         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
32119         requires a matching corlib.
32120
32121 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32122
32123         * Changelog: My editor decided to add a CR to each line. Sorry about that.
32124           Committed again without the CRs.
32125         
32126 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32127
32128         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
32129           getting it from the "this" socket instance. Did not work
32130           if the socket is a subclass of Socket.
32131           Also fixed bug #35371.
32132
32133 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32134
32135         * metadata.c: fixed size for TypedByRef.
32136         * loader.c: when searching for a method, consider the vararg amrker.
32137         * unicode.c, decimal.c: constify some arrays.
32138
32139 2003-07-15  Dick Porter  <dick@ximian.com>
32140
32141         * socket-io.c: Fixed compilation for gcc < 3.2.
32142
32143         Fixed compilation for machines that don't have AF_INET6 (thanks to
32144         Bernie Solomon <bernard@ugsolutions.com> for that part.)
32145
32146         Fixed compile warnings.
32147         
32148         Fixed formatting and line endings.
32149
32150 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
32151
32152         * socket-io.h:
32153         * socket-io.c: Added IPv6 support.
32154
32155 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
32156
32157         * class.c (mono_class_is_assignable_from): New function to implement
32158         the is_assignable_from logic. Used by mono_object_isinst, 
32159         Type::IsAssignableFrom () and the interpreter.
32160
32161         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
32162         Object, even interfaces.
32163         
32164         * object.c (mono_object_isinst): Implement in terms of 
32165         is_assignable_from.
32166
32167         * icall.c (ves_icall_type_is_assignable_from): New icall.
32168
32169 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
32170
32171         * domain.c (foreach_domain): fix compiler warning.
32172
32173 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
32174
32175         * image.c (load_metadata_ptrs): use g_strndup because strndup is
32176         not available on all plattforms
32177
32178 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
32179
32180         * image.h image.c: Store the metadata version string in MonoImage.
32181         * icall.c: New icall to retrieve the image version.
32182         * reflection.c (create_dynamic_image): Fill in the image version field
32183         * reflection.c (build_compressed_metadata): Use the image version
32184         from the image structure.
32185
32186 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32187
32188         * appdomain.c: modified comment.
32189         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
32190         That will be its last iteration when mono_gc_cleanup is called from
32191         mono_runtime_cleanup and before the domain is unloaded.
32192
32193         Fixes bug #45962.
32194
32195 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
32196
32197         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
32198         attributes.
32199
32200 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32201
32202         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
32203         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
32204         Bernie Solomon <bernard@ugsolutions.com>.
32205
32206 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32207
32208         * object.c, object.h: provide mono_object_new_fast() for faster
32209         allocation in some special cases.
32210
32211 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
32212
32213         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
32214         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
32215
32216 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
32217
32218         * threadpool.c: fix leaks.
32219
32220 2003-07-01  Dick Porter  <dick@ximian.com>
32221
32222         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
32223         using MonoGHashTables.  Fixes threadpool bug posted to list.
32224
32225 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
32226
32227         * image.h, image.c: added support to load an assembly from a byte array.
32228         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
32229         assembly bundle support.
32230
32231 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
32232
32233         * threadpool.c (mono_thread_pool_add): keep a reference to the
32234         AsyncResult to prevent GC
32235
32236 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32237
32238         * class.c: leak fix.
32239
32240 2003-06-25  Dick Porter  <dick@ximian.com>
32241
32242         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
32243         for the async object, the WaitHandle object will close the handle.
32244         Fixes bug 45321.
32245
32246 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32247
32248         * class.c: in mono_array_class_get (), lookup from the hash with the
32249         same type we insert: this works around a bug in
32250         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
32251         lluis. The real fix will have to wait for after the release.
32252
32253 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32254
32255         * icall.c: fix memory leak when getting type members.
32256
32257 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32258
32259         * reflection.c: added more pubtoken special cases.
32260
32261 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
32262
32263         * class.c: handle field offset correctly when class size
32264         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
32265
32266 2003-06-20  Martin Baulig  <martin@ximian.com>
32267
32268         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
32269         *image' field.
32270
32271 2003-06-20  Martin Baulig  <martin@ximian.com>
32272
32273         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
32274
32275 2003-06-20  Martin Baulig  <martin@ximian.com>
32276
32277         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
32278         just distinguish between variables in registers and variables at
32279         an offset relative to a register.
32280
32281 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32282
32283         * icall.c: #ifdef out latest changes until mcs is fixed.
32284
32285 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32286
32287         * icall.c: return members in metadata order.
32288
32289 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32290
32291         * icall.c: avoid infinite loop in GetTimeZoneData.
32292
32293 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
32294
32295         * icall.c: added Marshal.Prelink/All icalls.
32296
32297 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32298
32299         * object.c, object.h: fix warnings and do some overflow checking
32300         when creating arrays.
32301
32302 2003-06-17  Dick Porter  <dick@ximian.com>
32303
32304         * file-io.h:
32305         * file-io.c: File attributes need to be tweaked slightly when
32306         passed from the managed to the w32 world.
32307
32308 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32309         * profiler.h profiler-private.h profiler.c: Rework last patch
32310         based on suggestion by Paolo.
32311         
32312 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32313
32314         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
32315         instruction level coverage data collection.
32316         * profiler.h profiler.c (: Added new callback function which can be
32317         used by the profiler to limit which functions should have coverage
32318         instrumentation.
32319         * profiler.c (mono_profiler_load): Call g_module_build_path to
32320         generate the file name of the profiler library.
32321
32322 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32323
32324         * profiler.c, profiler.h, profiler-private.h: added basic block 
32325         coverage profiling API.
32326
32327 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
32328
32329         * reflection.c (mono_reflection_create_runtime_class): Add support
32330         for events in dynamically generated code.
32331
32332         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
32333         not allocated.
32334
32335 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32336
32337         * icall.c: when getting timezone info, return reasonable values if we
32338         can't get the actual data.
32339
32340 2003-06-14  Dick Porter  <dick@ximian.com>
32341
32342         * threads.c (start_wrapper): Remove the reference to the thread
32343         object in the TLS data, so the thread object can be finalized.
32344         This won't be reached if the thread threw an uncaught exception,
32345         so those thread handles will stay referenced :-( (This is due to
32346         missing support for scanning thread-specific data in the Boehm GC
32347         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
32348
32349 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
32350
32351         * reflection.c: ensure streams and tables are first allocated with
32352         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
32353
32354 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32355
32356         * icall.c: fixed GetElementType for byrefs (bug# 44792).
32357
32358 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
32359
32360         * reflection.c (mono_reflection_create_runtime_class): Add support for
32361         properties to dynamically created classes.
32362         * reflection.c: Fix a few places where non-MonoObjects were inserted
32363         into the tokens hashtable.
32364
32365 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32366
32367         * object.c: some support to handle out of memory exceptions.
32368
32369 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32370
32371         * marshal.c (mono_marshal_get_native_wrapper): support reference
32372         return types
32373
32374 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32375
32376         * object.h, object.c: more portability stuff from Bernie Solomon.
32377         Unexport mono_object_allocate(). Added mono_object_unbox ().
32378         Set exitcode when an unhandled exception is thrown.
32379
32380 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32381
32382         * marshal.c (mono_marshal_get_native_wrapper): use custom
32383         marshaler for return types.
32384
32385 2003-06-10  Dick Porter  <dick@ximian.com>
32386
32387         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32388         ip_mreq is available
32389
32390 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32391
32392         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32393         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32394         by Bernie Solomon <bernard@ugsolutions.com>.
32395
32396 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32397
32398         * gc.c (mono_gc_init): Avoid error message on shutdown when
32399         GC_DONT_GC=1 is used.
32400
32401         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32402         New icall to return the GUID of a module.
32403
32404 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32405
32406         * class.c: ensure instance size always includes the parent's size
32407         even whem class size is set explicitly (fixes bug#44294).
32408
32409 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32410
32411         * profiler.h, profiler.c: made the simple profiler thread-safe,
32412         get more accurate timing info. Allow the loading of an
32413         externally-developed profiler module.
32414
32415 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32416
32417         * marshal.c (mono_marshal_get_native_wrapper): improved
32418         class/byref arguments.
32419         (mono_marshal_get_native_wrapper): better string marshaling support.
32420
32421 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32422
32423         * class.c: ensure .pack and .size are handled correctly and
32424         simplified layout of static fields.
32425
32426 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32427
32428         * appdomain.c
32429         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32430
32431         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32432         current directory (fix bug 44008)
32433
32434 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32435
32436         * marshal.c (mono_marshal_get_native_wrapper): started support for
32437         custom marshalers.
32438         (mono_delegate_to_ftnptr): consider marshalling specifications
32439
32440 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32441
32442         * reflection.c, reflection.h: emit custom marshal info.
32443
32444 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32445
32446         * object.c: free the GError.
32447         * icall.c: added CloseEvent_internal.
32448         * threads.[ch]:
32449         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32450         call.
32451
32452 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32453
32454         * loader.c (mono_method_get_signature): Add support for dynamic
32455         assemblies.
32456
32457 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32458
32459         * reflection.c: fixed bug #43905.
32460
32461 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32462
32463         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32464         handling TypedReference and ArgIterator.
32465         * loader.c, loader.h: added function to get signature at call site.
32466
32467 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32468
32469         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32470         data readonly. Buglets and warning fixes. Some MethodSpec support.
32471
32472 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32473
32474         * class.h, class.c, object.c: remove relative numbering support.
32475
32476 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32477
32478         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32479         free the string, until we get a chance to fix Gtk#
32480
32481 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32482
32483         * marshal.c: revert last patch.
32484
32485 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32486
32487         * icall.c: updates for new mono_class_vtable() not calling
32488         the type constructor anymore.
32489
32490 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32491
32492         * object.h, object.c: separate vtable creation from type
32493         initialization. Make running the .cctor thread safe.
32494
32495 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32496
32497         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32498
32499 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32500
32501         * loader.c (mono_get_method): consider calling convention
32502
32503 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32504
32505         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32506         to return the invisible global type for a module.
32507
32508         * reflection.c (mono_image_build_metadata): Emit global fields too.
32509
32510 2003-05-20  Peter Williams  <peterw@ximian.com>
32511
32512         * loader.c (mono_lookup_internal_call): Add a few newlines.
32513
32514 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32515
32516         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32517         literal strings.
32518
32519         * appdomain.c (set_domain_search_path): Recalculate search path when
32520         AppDomainSetup.PrivateBinPath changes.
32521
32522         * object.c (mono_class_compute_gc_descriptor): It turns out some
32523         parts of the class libs (like System.Thread) holds pointers to
32524         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32525         to treat native int a pointer type here.
32526         
32527 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32528
32529         * appdomain.h, domain.c: add hashtable for jump target resolution.
32530
32531 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32532
32533         * reflection.h reflection.c icall.c: Added new icalls 
32534         GetManifestResourceInfoInternal, GetModulesInternal and support
32535         infrastructure.
32536
32537 2003-05-16  Dick Porter  <dick@ximian.com>
32538
32539         * icall.c:
32540         * file-io.h:
32541         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32542
32543 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32544
32545         * object.c: mono_store_remote_field: little fix to previous patch.
32546
32547 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32548
32549         * class.c: add constructors to array classes.
32550         * icall.c: special case array construction for InternalInvoke (),
32551
32552 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32553
32554         * class.h class.c reflection.c object.c: Added support for field
32555         defaults in dynamically generated classes.
32556
32557 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32558
32559         * reflection.c: properly encode charset for ddlimport.
32560
32561 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32562
32563         * threads.c: allow compiling without GC.
32564
32565 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32566
32567         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32568         handling of thread static data.
32569
32570 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32571
32572         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32573
32574 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32575
32576         * class.c (mono_array_class_get): always set the serializable flags
32577         (mono_array_class_get): always set the SEALED attribute for array types
32578
32579 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32580
32581         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32582         attributes (fix for bug 42021).
32583
32584 2003-05-12  Dick Porter  <dick@ximian.com>
32585
32586         * gc.c: Don't run finalizers when the finalizer thread is
32587         finishing up, because the default domain has already been
32588         destroyed.
32589
32590 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32591
32592         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32593         value is null, we should throw an exception.   This is slightly
32594         different than the other conventions used for the constructor.
32595
32596 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32597
32598         * socket-io.c: fixed windows build.
32599
32600 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32601
32602         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32603
32604 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32605
32606         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32607         compilers.
32608
32609 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32610
32611         * class.c (mono_class_layout_fields): Add experimental GC aware
32612         auto layout facility. Requires class library changes to work correctly.
32613
32614         (mono_class_setup_vtable): Avoid overriding explicit interface
32615         method implementations. Fixes iface3.exe test.
32616
32617         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32618         object reference.
32619         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32620         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32621
32622         * metadata.h: Add new type classification macro which determines
32623         whenever the type holds an object reference.
32624
32625 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32626
32627         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32628
32629 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32630
32631         * gc.c (finalizer_thread): Work around a GC bug.
32632
32633 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32634
32635         * marshal.c (emit_struct_conv): allow unions
32636
32637         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32638
32639 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32640
32641         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32642
32643 2003-05-06  Martin Baulig  <martin@ximian.com>
32644
32645         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32646
32647 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32648
32649         * socket-io.c:
32650         (Select_internal): allow NULLs, don't create arrays if not needed.
32651         Coupled with Socket.cs changes.
32652
32653         * threadpool.c:
32654         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32655         register a finalizer for it that will close the semaphore handle. This
32656         fixes the leak and make Lupus' test run with > 4080 loops.
32657
32658 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32659
32660         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32661         Jerome Laban (bug #42287)
32662
32663 2003-05-02  Martin Baulig  <martin@ximian.com>
32664
32665         * debug-mono-symfile.h
32666         (MonoSymbolFile): Moved declaration into mono-debug.h.
32667         (MonoDebugMethodJitInfo): Likewise.
32668         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32669         argument.
32670         (_mono_debug_address_from_il_offset): Take a
32671         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32672
32673         * mono-debug.h
32674         (MonoDebugDomainData): New struct.
32675         (mono_debug_get_domain_data): New function.
32676         (mono_debug_add_method): Take an additional `MonoDomain *'
32677         argument.
32678         (mono_debug_source_location_from_address): Likewise.
32679         (mono_debug_il_offset_from_address): Likewise.
32680         (mono_debug_address_from_il_offset): Likewise.
32681
32682 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32683
32684         * reflection.c: one more check for null type in custom attrs.
32685
32686 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32687
32688         * reflection.c: avoid warning (comparison is always false due to limited
32689         range of data type).
32690
32691 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32692
32693         * icall.c: throw an exception in Type.GetField if the argument 'name'
32694         is NULL.
32695
32696 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32697
32698         * reflection.c: fixed handling of enums in named arguments to custom
32699         attributes (bug #42123).
32700
32701 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32702
32703         * reflection.c: use the right array element type and handle
32704         a null for a Type argument, too.
32705
32706 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32707
32708         * reflection.c: handle arrays as arguments to custom attributes.
32709
32710 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32711
32712         * reflection.c: handle a string value in a custom attr
32713         ctor that takes an object.
32714
32715 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32716
32717         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32718         (fix bug #42063)
32719
32720 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32721
32722         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32723
32724 2003-04-27  Martin Baulig  <martin@ximian.com>
32725
32726         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32727         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32728         MONO_DEBUGGER_EVENT_BREAKPOINT.
32729         (mono_breakpoint_trampoline_code): Removed.
32730         (mono_debugger_event_handler): The last argument is now a
32731         `guint32'.
32732         (mono_debugger_insert_breakpoint_full): Removed the
32733         `use_trampoline' argument.
32734         (mono_debugger_method_has_breakpoint): Likewise.
32735         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32736         mono_debugger_breakpoint_callback(); take the method and
32737         breakpoint number as arguments.
32738
32739 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32740
32741         * metadata.c: fix off by one when loading parameters attributes.
32742
32743 2003-04-24  Martin Baulig  <martin@ximian.com>
32744
32745         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32746
32747 2003-04-24  Martin Baulig  <martin@ximian.com>
32748
32749         * mono-debug-debugger.c: Moved all code which interacts with the
32750         Mono Debugger here.
32751
32752         * debug-mono-symfile.c: This code now just deals with the symbol
32753         file itself, the debugger code is now in mono-debug-debugger.c.
32754
32755 2003-04-23  Martin Baulig  <martin@ximian.com>
32756
32757         * mono-debug.c (mono_debug_source_location_from_il_offset):
32758         New method; like mono_debug_source_location_from_address(), but
32759         takes an IL offset instead of a machine address.
32760
32761 2003-04-23  Martin Baulig  <martin@ximian.com>
32762
32763         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32764         `line' field; this is now computed by the debugger.
32765
32766 2003-04-23  Martin Baulig  <martin@ximian.com>
32767
32768         * mono-debug.[ch]: New files.  This is the new debugging interface.
32769
32770         * mono-debug-debugger.[ch]: New files.  Moved all code which
32771         interacts with the Mono Debugger here.
32772
32773 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32774
32775         * domain.c (mono_init): initialize mono_defaults.monitor_class
32776
32777 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32778
32779         * reflection.c (method_encode_code): Add a spicy exception to help
32780         future compiler authors.
32781
32782 2003-04-21  Martin Baulig  <martin@ximian.com>
32783
32784         * icall.c
32785         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32786         Make this work with relative pathnames; g_filename_to_uri() needs
32787         an absolute filename.
32788
32789 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32790
32791         * icall.c: Track name changes in Object and ValueType.
32792
32793 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32794
32795         * metadata.c (mono_type_stack_size): size should be a multiple of
32796         sizeof (gpointer)
32797
32798 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32799
32800         * gc.c:
32801         (internal_domain_finalize): moved into mono_domain_finalize. No need
32802         to create another thread because the finalizers will be run in the
32803         finalizer thread.
32804         
32805         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32806         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32807         to be run (MS does this too).
32808
32809 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32810
32811         * object.c (mono_class_compute_gc_descriptor): Update comment.
32812
32813         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32814
32815         * image.h: Add synchronized wrapper cache.
32816
32817         * image.c (do_mono_image_open): Initialize cache.
32818
32819         * reflection.c (create_dynamic_mono_image): Initialize cache.
32820
32821 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32822
32823         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32824         ves_icall_System_Buffer_ByteLengthInternal.
32825
32826 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32827
32828         * reflection.c: setup klass->nested_in earlier. Allow
32829         a dash in the assembly name.
32830
32831 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32832
32833         * metadata.c (mono_type_to_unmanaged): dont access
32834         type->data.klass for MONO_TYPE_OBJECT
32835         (mono_type_to_unmanaged): consider System.Delegate class
32836
32837 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32838
32839         * class.c: just setup supertypes in the proper place instead of
32840         initializing the full element class for arrays.
32841
32842 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32843
32844         * class.c: ensure the element class of arrays is initialized.
32845         Setup the supertype info for array classes, too.
32846
32847 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32848
32849         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32850
32851 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32852
32853         * Makefile.am: re-added -m option when running cygpath. This way,
32854         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32855         separator.
32856         * mono-config.c: same codepath for locating mono config file for WIN32
32857         and the rest.
32858         * assembly.c: if mono_assembly_setrootdir is called, don't override
32859         the value set.
32860
32861 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32862
32863         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32864         MONO_ASSEMBLIES variable.
32865
32866 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32867
32868         * icall.c: added Assembly::GetNamespaces() icall.
32869
32870 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32871
32872         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32873
32874 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32875
32876         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32877         * object.c: fixed bug in the construction of vtable for proxies
32878
32879 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32880
32881         * object.c (mono_array_new): Mark mono_array_new as an icall.
32882
32883 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32884
32885         * class.c: fixed test for public method when overriding interfaces.
32886         Closes bug #40970.
32887
32888 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32889
32890         * appdomain.h, domain.c: added mono_domain_foreach() to
32891         be able to access the currently loaded appdomains.
32892         * object.c: make string interning work across sppdomains.
32893         Mark some functions for use as icalls.
32894
32895 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32896
32897         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32898
32899         * reflection.h reflection.c: Allocate long living data using 
32900         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32901
32902         * reflection.c: Double the allocation size in streams instead of
32903         increasing it, to prevent unneccesary copying on large assemblies.
32904         
32905         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32906         creation if the assembly does not have the Run flag set.
32907
32908 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32909
32910         * class.h: avoid the C++ keywords in header files (Jerome Laban
32911         spotted and fixed this).
32912
32913 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32914
32915         * object.c:
32916         (mono_unhandled_exception): fill in the arguments for the
32917         UnhandledException event. Only trigger that event for the default
32918         domain (as MS does).
32919
32920 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32921
32922         * object.c: Improve typed allocation stuff based on suggestions from
32923         Paolo. Also turn it on if the GC library supports it.
32924
32925 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32926
32927         * object.c object.h class.h: Added experimental typed allocation
32928         facility using the interfaces in gc_gcj.h.
32929
32930         * os/gc_wrapper.h: Added new include files.
32931         
32932 2003-04-03  Martin Baulig  <martin@ximian.com>
32933
32934         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32935         which is not yet enabled by default.
32936
32937         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32938         functions.
32939         (mono_gc_lock, mono_gc_unlock): New static functions.
32940
32941         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32942         functions; stop/start the world for the garbage collector.  This
32943         is using the windows API; we need to complete the SuspendThread()/
32944         ResumeThread() implementation in the io-layer to make this work on Unix.
32945         (mono_gc_push_all_stacks): New public function; tells the garbage
32946         collector about the stack pointers from all managed threads.
32947
32948 2003-04-03  Martin Baulig  <martin@ximian.com>
32949
32950         * object.h (MonoThread): Added `gpointer stack_ptr'.
32951
32952         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32953
32954 2003-04-03  Martin Baulig  <martin@ximian.com>
32955
32956         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32957
32958 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32959
32960         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32961         field.last.
32962
32963 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32964
32965         * loader.c (mono_lookup_internal_call): Report the corlib that is
32966         out of sync.
32967
32968 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32969
32970         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32971         System.DBNull (it's class not valuetype).
32972
32973 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32974
32975         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32976         if the array method was already assigned a token (fixes bug#40646).
32977
32978 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32979
32980         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32981         if no assembly is given.
32982
32983 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32984
32985         * metadata.h: Added the new tables.
32986
32987         * row-indexes.h: Added definitions for new tables.
32988
32989         * metadata.c: Add schemas for new tables, and add support for
32990         computing the sizes of them.
32991
32992         * class.c: Update for handling the new type cases.
32993
32994 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32995
32996         * metadata.h (MONO_TYPE_IS_VOID): new macro
32997
32998 2003-03-31  Martin Baulig  <martin@ximian.com>
32999
33000         * threads.h (MonoThreadCallbacks): Added `thread_created'.
33001
33002         * threads.c (mono_thread_new_init): Call `thread_created' in the
33003         mono_thread_callbacks.
33004
33005 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
33006
33007         * loader.h: added marshalbyrefobject_class to mono_defaults
33008         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
33009         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
33010           generation of output parameters.
33011           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
33012         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
33013           contextbound and the target object belongs to the context of the caller.
33014         * object.h: added context and unwrapped_server variables in MonoRealProxy.
33015         * object.c: Implemented support for interfaces and abstract classes
33016           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
33017           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
33018
33019 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
33020
33021         * class.h class.c (mono_class_is_subclass_of): New function.
33022         
33023         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
33024         routines for most common case (calls from ArrayList::ToArray).
33025
33026         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
33027         routine so programs which call Environment::Exit() can be profiled.
33028
33029         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
33030         Added MONO_ARCH_SAVE_REGS.
33031
33032         * icall.c (ves_icall_type_is_subtype_of): Use new function.
33033
33034 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
33035
33036         * blob.h: Add a couple of new MonoType types definitions.
33037
33038         * tabledefs.h: Add a couple of new call convs.
33039
33040 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
33041
33042         * reflection.h (MonoReflectionDynamicAssembly): track changes in
33043         the layout of the class.
33044
33045         * reflection.c (alloc_table): double the size on overflow to avoid
33046         unnecessary copying.
33047
33048         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
33049         avoid filling out metadata tables and blobs. Also set mb->ilgen to
33050         null so it can be garbage collected.
33051         
33052 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
33053
33054         * reflection.c (mono_reflection_get_type): Return the resolved type
33055         only if it is in the assembly we searched.
33056
33057         * reflection.c (ensure_runtime_vtable): Initialize method slots.
33058
33059         * class.c (mono_class_setup_vtable): Set the slot of the overriding
33060         method.
33061
33062 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33063
33064         * appdomain.c:
33065         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
33066         the right one is 'file:///blah', but MS allows it.
33067         * assembly.c:
33068         (mono_assembly_open): allow 'file://blah'
33069
33070         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
33071
33072 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
33073
33074         * socket-io.c: fixes bug #40310.
33075
33076 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
33077
33078         * reflection.c (mono_reflection_parse_type): handle deeply nested
33079         types correctly.
33080
33081         * reflection.c (mono_image_create_token): Use unique token values
33082         since they will be put into a hash table.
33083
33084         * class.c (mono_class_setup_vtable): If a method occurs in more than
33085         one place in the vtable, and it gets overriden, then change the
33086         other occurances too.
33087
33088         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
33089         object as return type.
33090
33091 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33092
33093         * icall.c: Deleted "ToString" implementation for double and float
33094         because they are full implemented in managed code.
33095
33096 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33097
33098         * reflection.c, reflection.h: implemented and exported functions
33099         to retrieve info about custom attributes.
33100
33101 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33102
33103         * appdomain.c: moved Uri handling to assembly.c
33104         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
33105         work when using a file Uri in *nix and windows.
33106
33107         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
33108         GetReferencedAssemblies.
33109
33110 2003-03-18  Dick Porter  <dick@ximian.com>
33111
33112         * icall.c: Rename a couple of internal calls
33113
33114         * threads.c: Set the thread state to Stopped when a thread exits.
33115         Fixes bug 39377.
33116
33117 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
33118
33119         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
33120         New icall.
33121
33122         * object.c (mono_class_vtable): fix warning.
33123
33124 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
33125
33126         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
33127
33128         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
33129         memory.
33130         (method_encode_clauses): Create exception info structures in the right
33131         order.
33132         (mono_reflection_setup_internal_class): Initialize supertypes field.
33133
33134         * class.c object.c: Handle interfaces which implement other interfaces 
33135         correctly.
33136
33137         * class.h class.c: Move the supertypes array initialization code into 
33138         a separate function so it can be used for dynamic types too. Also call
33139         it earlier, in mono_class_init(), since it can be used before the
33140         type is initialized.
33141
33142 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33143
33144         * Makefile.am:
33145         * assembly.c:
33146         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
33147
33148         * appdomain.c:
33149         * appdomain.h:
33150         * marshal.c:
33151         * object.c: remove warnings.
33152
33153 2003-03-13  Martin Baulig  <martin@ximian.com>
33154
33155         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
33156         (MonoDebugLexicalBlockEntry): New types.
33157
33158         * debug-mono-symfile.c
33159         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
33160
33161 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33162
33163         * process.c: ret can be any non-zero value accroding to MS doc.
33164
33165 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
33166
33167         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
33168         fixing a warning for a miss-used prototype, would have cause
33169         random memory corruption.
33170
33171 2003-03-07  Martin Baulig  <martin@ximian.com>
33172
33173         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
33174         getting really annoying ....
33175
33176 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
33177
33178         * reflection.c (fixup_method): added support for array methods.
33179
33180 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
33181
33182         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
33183         (pointed out by Michael Adams).
33184
33185 2003-03-04  Dick Porter  <dick@ximian.com>
33186
33187         * icall.c: Temporarily reverted the Double and Single ToString()
33188         change, because it broke nunit.
33189
33190 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
33191
33192         * object.h, threads.h: make include files compatible with C++
33193         (patch by Jerome Laban <jlaban@wanadoo.fr>).
33194
33195 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33196
33197         * icall.c: Erased ToString helper functions for Double and Single.
33198         Now, that implementations ar all in managed code (Double and Single
33199         Formatters).
33200
33201 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
33202
33203         * appdomain.c: Added method for initializing the default context of
33204         a domain. Added internal call for getting the default context.
33205         * appdomain.h: Added context variable in MonoDomain struct.
33206         * domain.c: mono_domain_set also sets the default context of the domain
33207         * icall.c: Mapped internal method InternalGetDefaultContext.
33208         * object.c: mono_object_get_virtual_method returns always a remoting
33209         wrapper if the object is a transparent proxy.
33210         mono_runtime_invoke_array: when creating an object by calling the
33211         constructor, if the created object is a proxy, then the constructor should
33212         be called using the a remoting wrapper.
33213
33214 2003-03-03  Dick Porter  <dick@ximian.com>
33215
33216         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
33217         variable so it compiles on solaris.  Problem spotted by
33218         Christopher Taylor <ct@cs.clemson.edu>
33219
33220 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33221
33222         * appdomain.c:
33223         (get_info_from_assembly_name): don't leak value.
33224
33225         * icall.c:
33226         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
33227         result.
33228
33229 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
33230
33231         * assembly.c: export mono_image_load_references ().
33232         * class.c: handle function pointers. mono_class_from_name() now
33233         supports nested type names directly.
33234
33235 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
33236
33237         * reflection.h reflection.c: Encode already created dynamic methods 
33238         and fields correctly as a DEF instead of a REF.
33239
33240         * reflection.c: Get rid of the force_ref argument to 
33241         mono_image_typedef_or_ref since it was wrong in the first place.
33242
33243         * string-icalls.c: add error checking to string constructors according
33244         to the MSDN docs.
33245
33246         * reflection.c: Emit types in the order their TypeBuilders were 
33247         created. Previously, a new table index was assigned to each type before
33248         the tables were emitted. This was wrong because the signature blob
33249         might already refer to a type by its original table index.
33250
33251 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
33252
33253         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
33254         change.
33255         
33256 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33257
33258         * Makefile.am: make assemblies dir have \ instead of / on windows.
33259
33260 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
33261
33262         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
33263         iterate over the NESTEDCLASS table using a linear search since the
33264         table is not guaranteed to be sorted by the secondary key.
33265
33266         * class.c (mono_class_create_from_typedef): fixed up call to
33267         mono_metadata_nesting_typedef.
33268         
33269 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
33270
33271         * marshal.c (mono_string_to_byvalstr): clear the memory as
33272         suggested by Jerome Laban <jlaban@wanadoo.fr>
33273
33274 2003-02-26  Dick Porter  <dick@ximian.com>
33275
33276         * process.c: Cope with padding in .rsrc blocks
33277
33278 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33279
33280         * metadata.h: reverted the filter_len change, it breaks reflection
33281         
33282 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33283
33284         * metadata.h: added a new field to store the filter_len
33285         
33286
33287 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
33288
33289         * reflection.c: handle custom attributes for types and members
33290         created with Reflection.Emit (bug#38422).
33291
33292 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
33293
33294         * reflection.c: define RTSpecialName automatically for constructors for
33295         compatibility with MS.NET.
33296
33297         * reflection.c (mono_reflection_create_runtime_class): initialize
33298         nested_in field of dynamically created classes.
33299
33300 2003-02-22  Martin Baulig  <martin@ximian.com>
33301
33302         * debug-mono-symfile.h: Incremented version number.
33303
33304 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33305
33306         * object.h icall.c process.c: fix warnings.
33307
33308 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33309
33310         * appdomain.h appdomain.c:
33311         (mono_domain_try_type_resolve): split the 
33312         name_or_tb argument into a name and a tb argument.
33313         (mono_domain_has_type_resolve): new function to check whenever the
33314         application has registered a TypeResolve event handler.
33315         
33316         * icall.c reflection.h reflection.c: move the type resolve logic into
33317         mono_reflection_get_type () so it will be invoked when 
33318         Assembly::GetType () is called.
33319
33320         * reflection.c:
33321         (mono_reflection_get_type): renamed to get_type_internal.
33322         (mono_reflection_get_type): fixed type name generation so it works 
33323         for nested types too.
33324         (mono_reflection_get_type): call has_type_resolve () to avoid the 
33325         costly type name generation if there is no resolve event handler.
33326
33327 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33328
33329         * class.c, image.c: load exported types from file references.
33330
33331 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
33332
33333         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
33334           used to cache the managed methods used to create proxies and make 
33335           remote invocation of methods.
33336         * class.h: Added in MonoVTable a flag to indicate that a class needs 
33337           to be remotely created.
33338         * object.c: Modified the method mono_class_vtable(). It now initializes 
33339           the remote flag of the vtable. Modified mono_object_new_specific(), 
33340           so now it checks the remote flag.
33341         * icall.c: Added a couple of internal methods, one for enabling instance 
33342           creation interception for a type, and one for creating objects bypassing
33343           the remote check.
33344
33345 2003-02-18  Martin Baulig  <martin@ximian.com>
33346
33347         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
33348         New interncall to get a method's metadata token.
33349
33350         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
33351         New interncall for the debugger.
33352
33353 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
33354
33355         * class.c (mono_class_setup_vtable): allocate supertype array
33356
33357 2003-02-18  Martin Baulig  <martin@ximian.com>
33358
33359         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
33360
33361 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33362
33363         * reflection.c:
33364         (assembly_name_to_aname): jump over unknown properties (i've found
33365         something like: 'type, assembly, version=xxx, custom=null, public...',
33366         so now will ignore custom=null and still get the rest of the values).
33367
33368 2003-02-17  Dick Porter  <dick@ximian.com>
33369
33370         * threads.c: Have Thread.Start() wait for a semaphore to signal
33371         that the thread has set up all its local data.  This fixes bug
33372         34323, where Abort() raced the new thread's TLS data.
33373
33374         Also removes the handle_store() call from start_wrapper, because
33375         threads are now always created suspended and there is no longer a
33376         race between the parent and child threads to store the info.
33377
33378 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33379
33380         * image.c: explain the #- heap issue in a message, hopefully
33381         avoiding FAQs on mono-list.
33382
33383 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33384
33385         * icall.c:
33386         (GetEntryAssembly): if the domain has not invoked
33387         AppDomain.ExecuteAssembly yet, return the assembly of the default
33388         AppDomain.
33389
33390 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33391
33392         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33393
33394 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33395
33396         * metadata.c, reflection.c: simple speedup to type hash
33397         and equals code.
33398
33399 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33400
33401         * image.c, image.h, class.c, assembly.c: move module loading
33402         to MonoImage. When loading metadata, consider alignemnet from
33403         the start of metadata, not from the metadata address in memory.
33404
33405 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33406
33407         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33408         AssemblyBuilder objects. Factored out custom attribute creation into
33409         a separate function.
33410         (create_custom_attr): new function to create custom attributes.
33411
33412 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33413
33414         * Makefile.am: Got tired of typing the full pathname to pedump.
33415         Until there is another option, am installing this.
33416
33417 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33418
33419         * class.c (class_compute_field_layout): always set field->parent 
33420         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33421
33422 2003-02-11  Dick Porter  <dick@ximian.com>
33423
33424         * threads-types.h:
33425         * monitor.c: Rewrote Monitor, making lock much faster and
33426         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33427         creates them as needed.
33428
33429         * exception.c: Added SynchronizationLockException
33430
33431         * threads.c: Deleted old Monitor implementation.  The new one is
33432         in a new file.
33433
33434 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33435
33436         * class.c: handled TypedReference type code. Set the correct size for
33437         class data. Setup interface_offsets for interface classes, too.
33438
33439 2003-02-09  Martin Baulig  <martin@ximian.com>
33440
33441         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33442
33443 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33444
33445         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33446         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33447         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33448         * verify.c: check for code that runs after the end of the method.
33449
33450 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33451
33452         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33453         "System.Math::Round2".
33454         * sysmath.h: Added Floor, Round and Round2 definitions.
33455         * sysmath.c: Modified certain functions that were not 100% compliant
33456         with MS.NET (math precision) and added the implementation of Floor,
33457         Round and Round2.
33458
33459 2003-02-07  Martin Baulig  <martin@ximian.com>
33460
33461         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33462
33463 2003-02-07  Martin Baulig  <martin@ximian.com>
33464
33465         * debug-mono-symfile.c: Reflected latest symwriter changes.
33466         (mono_debug_create_mono_symbol_file): Removed.
33467         (mono_debug_open_mono_symbol_file): Take an argument which
33468         specifies whether to create a dynamic symbol file.
33469
33470 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33471
33472         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33473
33474 2003-02-05  Martin Baulig  <martin@ximian.com>
33475
33476         * reflection.c (mono_image_build_metadata): Make this public,
33477         protect it against being called multiple times, don't create
33478         resources and don't build the compressed metadata here.
33479         (mono_image_create_pefile): Do this here.
33480
33481         * icall.c
33482         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33483
33484 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33485
33486         * socket-io.c: fixed bug #36322.
33487
33488 2003-02-06  Piers Haken <piersh@friskit.com>
33489
33490         * appdomain.[ch]:
33491         * class.h:
33492         * debug-mono-symfile.c:
33493         * icall.c:
33494         * loader.c:
33495         * mono-config.c:
33496         * monosn.c:
33497         * reflection.c:
33498         * socket-io.c: warning cleanups
33499
33500 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33501
33502         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33503         function. works like remoting invoke, but does a check for the Proxy first.
33504
33505 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33506
33507         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33508
33509 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33510
33511         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33512         array of pointers.
33513         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33514         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33515
33516         * object.c (mono_store_remote_field_new): used by the new jit
33517         instead of mono_store_remote_field
33518         (mono_load_remote_field_new): used by the new jit
33519         instead of mono_load_remote_field
33520
33521 2003-02-05  Patrik Torstensson
33522
33523         * appdomain.c: changed unload to take the domain id instead
33524         of domain
33525         
33526         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33527
33528
33529 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33530
33531         * appdomain.c: don't look for assemblies in ApplicationBase if
33532         PrivateBinPathProbe is set.
33533
33534 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33535
33536         * object.c: make the first argument in main_args contain the absolute
33537         path to the assembly. Fixes bug #37511.
33538
33539 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33540
33541         * icall.c: get correct UTC offset for countries not using daylight
33542         time saving. Fixes bug #30030.
33543
33544 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33545
33546         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33547         and 1 are the family).
33548
33549 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33550
33551         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33552
33553         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33554
33555 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33556
33557         * reflection.c: added support for SignatureHelper tokens, which is
33558         needed by the Calli opcode.
33559
33560         * reflection.h: track changes to SignatureHelper class.
33561
33562         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33563
33564 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33565
33566         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33567
33568 2003-02-03  Patrik Torstensson
33569         * appdomain.[c|h], domain.c : 
33570          - Added support for getting a domain via domain id
33571          - Support for setting and getting domain from System.AppDomain 
33572            (used in cross appdomain channel)
33573          - Added support for get/set for a MonoAppContext on a thread 
33574            (Context class in System.Runtime.Remoting.Contexts),
33575          - Removed hack in Get/SetData and ExecuteAssembly.
33576         
33577         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33578         the managed world to get control when a proxy is created.
33579
33580         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33581         
33582 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33583
33584         * icall.c
33585         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33586         Populate the codebase field as well.
33587
33588 2003-02-02  Martin Baulig  <martin@ximian.com>
33589
33590         * debug-mono-symfile.c
33591         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33592         (mono_debug_symfile_add_method): Allow interncalls.
33593
33594 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33595
33596         * icall.c: throw parse exception if strtod fails or the string is empty.
33597
33598 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33599
33600         * marshal.c: handle object type separately from defined
33601         class types.
33602
33603 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33604
33605         * marshal.c: handle NATIVE_LPSTR for strings when it's
33606         explicitly specified.
33607
33608 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33609
33610         * reflection.c, reflection.h, icall.c: setup the reflection
33611         handle cache for ModuleBuilders and AssemblyBuilders.
33612
33613 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33614
33615         * reflection.c (reflection_methodbuilder_to_mono_method): set
33616         pinvoke flag
33617
33618 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33619
33620         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33621
33622 2003-01-29  Dick Porter  <dick@ximian.com>
33623
33624         * threads.c: No need for the fake_thread kludge now that Thread
33625         doesn't run a class constructor
33626         
33627 2003-01-29  Dick Porter  <dick@ximian.com>
33628
33629         * threads.c: Use g_direct_hash instead of the rather bogus
33630         g_int_hash
33631
33632 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33633
33634         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33635         (fix pinvoke12.exe)
33636         (mono_marshal_get_struct_to_ptr): generate valid IL code
33637         (mono_marshal_get_ptr_to_struct): generate valid IL code
33638         (*): correctly set sig->pinvoke, we need to memdup the signature
33639         to do that
33640
33641 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33642
33643         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33644         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33645
33646 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33647
33648         * profiler.c: provide more callers information.
33649
33650 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33651
33652         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33653
33654         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33655
33656         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33657
33658 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33659
33660         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33661         exception instead of going into an infinite loop on dates which it 
33662         can't yet handle.
33663
33664         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33665         out-of-range exception if needed.
33666
33667         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33668         an implementation for an interface method and to override an inherited
33669         method at the same time. 
33670         Imagine a scenario when a virtual method is used to override a
33671         virtual abstract method in a parent class, and this same method 
33672         provides an implementation for an method inherited from an interface. 
33673         In this case, the interface resolution code will set im->slot, which 
33674         means that the virtual method override pass will skip this method 
33675         which means a pointer to the abstract method inherited from the parent
33676         will remain in the vtable of this non-abstract class.
33677
33678         * class.c: (mono_class_setup_vtable): continue search for a real 
33679         method if only an abstract method is found.     
33680
33681 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33682
33683         * reflection.c: add size to encoding for ByValStr and ByValArray
33684         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33685
33686 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33687
33688         * class.c (mono_class_setup_vtable): pass the override info as an
33689         argument.
33690
33691         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33692         correctly.
33693         
33694         * reflection.c (ensure_runtime_vtable); add support for method 
33695         overrides.
33696         
33697 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33698
33699         * reflection.c (resolution_scope_from_image): Hack to work to work with
33700         dynamic assemblies.
33701
33702         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33703         added a 'force_ref' argument to force this function to allways return 
33704         a TypeRef. This is needed by mono_image_get_memberref_token ().
33705         
33706 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33707
33708         * reflection.c (mono_image_get_type_info): interfaces really don't have
33709         a parent.
33710
33711         * reflection.c (mono_image_basic_init): fill out missing fields of
33712         image structure.
33713
33714         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33715         dynamic assemblies. This is required so dynamic assemblies show up in
33716         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33717         Type::GetType() etc. This is consistent with MS behaviour.
33718
33719         * image.c image.h reflection.c: add newly created classes to the name 
33720         cache so mono_class_get () will find them.      
33721
33722 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33723
33724         First part of changes to get IKVM.NET running under mono.
33725         
33726         * appdomain.h, appdomain.c: added new function 
33727         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33728         This function will call AppDomain::DoTypeResolve to do the actual work.
33729
33730         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33731         moved existing code dealing with dynamic tokens to a new function 
33732         called mono_reflection_lookup_dynamic_token (). This function will 
33733         raise TypeResolve events when appropriate. Since reflection.c is not 
33734         part of libmetadata, a new hook function called 
33735         mono_lookup_dynamic_token() is added to class.c which will call this.
33736
33737         * assembly.h assembly.c: make the invoke_load_hook function public,
33738         so it can be called for dynamic assemblies.
33739
33740         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33741
33742         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33743         type isn't found.
33744
33745         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33746         MonoGHashTable, since it contains pointers to objects which the GC 
33747         needs to track.
33748
33749         * assembly.c (search_loaded): remove unused variable.
33750         
33751 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33752
33753         * object.c: fixed issue exposed by gcc-generated IL programs
33754         that use RVA data for pointers.
33755
33756 2003-01-25  Martin Baulig  <martin@ximian.com>
33757
33758         * threads.c (start_wrapper): Moved the initialization of
33759         `start_func' above the mono_new_thread_init() call to which we
33760         pass it as argument.
33761
33762 2003-01-24  Martin Baulig  <martin@ximian.com>
33763
33764         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33765         the MonoThread pointer.
33766
33767 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33768
33769         * icall.c: Rename `PowImpl' to Pow.
33770
33771 2003-01-23  Dick Porter  <dick@ximian.com>
33772
33773         * threads.c (start_wrapper): Create a Thread object if needed, so
33774         the Main() thread can do the class initialisation in a subthread
33775         that has been set up to allow managed code execution.
33776
33777         Pass the thread ID instead of the MonoThread pointer to the thread
33778         start and attach callbacks.  This change is required, because the
33779         jit thread start callback must be called _before_ the Thread
33780         object can be created.
33781         
33782         (mono_thread_init): Removed much object creation code that is no
33783         longer needed.  No managed code is called from here now.
33784
33785         * object.c (mono_runtime_exec_managed_code): Create a subthread
33786         for Main, and call back to the runtime to use it.
33787         Set the exit code when Main exits.
33788
33789         * gc.c: Make sure domain finalisation happens in a subthread.
33790         Re-enable threaded GC, fixing bug 31333 (again).
33791
33792         * environment.c: System.Environment internall calls (so far just
33793         ExitCode is here, the others are still in icall.c)
33794
33795         * appdomain.c (mono_runtime_cleanup): All threads running managed
33796         code should have finished before mono_runtime_cleanup() is
33797         reached, so no need to clean up threads.
33798
33799 2003-01-22  Martin Baulig  <martin@ximian.com>
33800
33801         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33802         `gpointer func' arguments.      
33803         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33804         but added `MonoThread *thread' argument.
33805         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33806
33807         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33808         and pass it to the mono_thread_start_cb callback.
33809         (mono_install_thread_callbacks): New public function to install a
33810         set of callbacks which are set by the debugger.
33811         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33812
33813 2003-01-22  Martin Baulig  <martin@ximian.com>
33814
33815         * Makefile.am: Install debug-mono-symfile.h.
33816
33817 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33818
33819         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33820
33821 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33822
33823         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33824         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33825         (mono_array_class_get): correctly set access levels of arrays
33826
33827 2003-01-20      Patrik Torstensson
33828         * image.h (MonoAssemblyName): changed major, minor, build, revision
33829         from signed to unsigned.
33830
33831 2003-01-20  sean kasun <skasun@azstarnet.com>
33832
33833         * reflection.c (load_cattr_value): Now this handles
33834         MONO_TYPE_SZARRAY.  Fixes bug #35629
33835
33836 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33837
33838         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33839         integer value
33840
33841 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33842
33843         * decimal.c: fixed bug #26056.
33844
33845 2003-01-17  Martin Baulig  <martin@ximian.com>
33846
33847         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33848
33849 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33850
33851         * exception.[ch]:
33852         (mono_get_exception_type_initialization): new function.
33853
33854         * object.c: throw a TypeInitializationException when an exception is
33855         thrown invoking the class constructor.
33856
33857 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33858
33859         * reflection.c: fixed attribute reading.
33860
33861 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33862
33863         * icall.c:
33864         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33865         provided, look for the type in the calling assembly and then in
33866         mscorlib; if the assembly name is provided, only try that one.
33867
33868 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33869
33870         * object.c: register the vtable before there is a chance it's
33871         queried again recursively.
33872
33873 2003-01-13  Duncan Mak  <duncan@ximian.com>
33874
33875         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33876         gc-internal.h. 
33877         
33878 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33879
33880         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33881
33882 2003-01-11  Martin Baulig  <martin@ximian.com>
33883
33884         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33885         this to 20 for the release.
33886
33887 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33888
33889         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33890
33891         * loader.c (mono_method_get_marshal_info): bug fix
33892
33893         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33894         structures with explicit layout
33895
33896 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33897
33898         * profiler.c: made the output more readable (and sorted). 
33899         Added caller information for the allocation profiler.
33900
33901 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33902
33903         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33904
33905 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33906
33907         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33908         to get value types.
33909         
33910 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33911
33912         * object.c, profiler.h, profiler.c, profiler-private.h:
33913         Added object allocation profiler.
33914
33915 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33916
33917         * reflection.h, reflection.c: handle global methods.
33918         Compress blob entries.
33919
33920 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33921
33922         * marshal.c: fix compilation.
33923
33924 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33925
33926         * loader.c (mono_method_get_marshal_info): impl.
33927
33928         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33929
33930 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33931
33932         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33933         for reference types.
33934
33935 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33936
33937         * loader.c: fixed off by one error in loaded parameter names.
33938
33939 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33940
33941         * marshal.c (mono_marshal_get_icall_wrapper): like
33942         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33943         instead of a MonoMethod.
33944
33945 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33946
33947         * decimal.c: fixed bug #36537.
33948
33949 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33950
33951         * marshal.c: throw a missing method exception if a
33952         P/Invoke method is not found.
33953
33954 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33955
33956         * icall.c: allow a null this for constructors.
33957
33958 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33959
33960         * icall.c: raise the proper exceptions if the arguments to the
33961         internal Invoke are incorrect.
33962
33963 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33964
33965         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33966
33967 2003-01-03  Martin Baulig  <martin@ximian.com>
33968
33969         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33970
33971 2002-12-31  Martin Baulig  <martin@ximian.com>
33972
33973         * debug-mono-symfile.c: Completely rewrote the type section.
33974         Instead of using individual malloc()ed fields, we use one big
33975         continuous memory area and offsets into this area.
33976         See the comments in the source code for details.
33977
33978 2002-12-30  Martin Baulig  <martin@ximian.com>
33979
33980         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33981
33982 2002-12-30  Martin Baulig  <martin@ximian.com>
33983
33984         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33985         line number table in this data blob instead of using an external
33986         pointer.
33987
33988 2002-12-28  Martin Baulig  <martin@ximian.com>
33989
33990         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33991
33992 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33993
33994         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33995         as a boxed return type.
33996
33997 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33998
33999         * appdomain.c
34000         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
34001         g_build_filename to properly get separators on the filename created.
34002
34003         * object.h: Small change, introduce MonoMarshalByRefObject to
34004         track the layout of that structure in the C# universe as we make
34005         changes there.
34006
34007 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
34008
34009         * object.c: removed assert to allow static fields on interfaces.
34010         * loader.c: a TypeSpec may be used for any type, not just arrays.
34011
34012 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34013
34014         * class.c, class.h: added mono_class_array_element_size ().
34015         Ignore static methods in interfaces.
34016
34017 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34018
34019         * threads.c: fixed the build under cygwin.
34020
34021 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34022
34023         * reflection.c: handle nullref constants. Allocate keys for
34024         reflection handles with the GC.
34025
34026 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34027
34028         * threads.c, threads.h: added mono_thread_get_abort_signal()
34029         to get a suitable signal for thread abort.
34030
34031 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34032
34033         * metadata.c: fix handling of ExportedType table.
34034
34035 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34036
34037         * icall.c: added WriteWindowsDebugString internal call.
34038
34039 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34040
34041         * reflection.h: added fields to match C# implementation.
34042
34043 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34044
34045         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
34046
34047 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
34048
34049         * gc.h, gc-internal.h: Rename header for GC internal calls to
34050         gc-internal.h from gc.h as to not clash with Boehm GC having its
34051         header installed as <gc.h> in outside include paths.
34052         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
34053         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
34054
34055 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34056
34057         * icall.c: assign minor, build and revision in FillName.
34058
34059 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
34060
34061         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
34062         Added support for running code generated by Reflection.Emit.
34063
34064 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34065
34066         * appdomain.c: check for NULL argument in LoadFrom.
34067
34068 2002-12-10  Dick Porter  <dick@ximian.com>
34069
34070         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
34071
34072 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34073
34074         * appdomain.c: fix buglet when building exe file name.  Handle full
34075         assembly name (needed after latest changes to AssemblyName).
34076         * image.c:
34077         (mono_image_close): free some hashtables.
34078
34079 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
34080
34081         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
34082         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
34083         on some systems (redhat 7.3) 
34084
34085 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
34086
34087         * threads.c: delete the critical section of a sync block,
34088         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
34089
34090 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
34091
34092         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
34093
34094 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34095
34096         * appdomain.[ch]: handle the assembly preload event to try loading the
34097         assemblies using the paths we have in the current domain.
34098
34099         * assembly.[ch]: created an assembly preload hook that is called to try
34100         loading the assembly by other means that the ones provided here.
34101
34102         * domain.c: initialize the domain search path.
34103
34104         From now on, assemblies (TODO: except corlib and System) are loaded
34105         according to these rules when using mono_assembly_load ():
34106
34107                 1. It tries to load the assembly from the ApplicationBase
34108                 of the current domain appending .dll and .exe (TODO: have to
34109                 try loading from name/name.dll and name/name.exe).
34110
34111                 2. It tries the search path specified in PrivateBinPath for the
34112                 current domain (if any).
34113
34114                 3. Previous behavior.
34115
34116 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
34117
34118         * icall.c: implemented GetInterfaceMap() related icall.
34119         * domain.c, loader.h: load MethodInfo in mono_defaults.
34120
34121 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34122
34123         * gc.c: disable the finalizer thread for now, untill all the issues
34124         with it are resolved.
34125
34126 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34127
34128         * string-icalls.c: handle embedded nulls in string ctor when the
34129         length is specified.
34130
34131 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34132
34133         * class.c: look for explicit interface implementation in parent
34134         classes, too.
34135
34136 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
34137
34138         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
34139
34140 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34141
34142         * gc.c: protect handles with a critical section.
34143
34144 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34145
34146         * icall.c:
34147         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
34148         parameters. If no assembly specified, try getting the type from all
34149         the assemblies in the current domain, else, load the assembly and get
34150         the type from it.
34151
34152 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34153
34154         * marshal.c: applied patch from Aleksey Demakov that fixes
34155         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
34156
34157 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34158
34159         * icall.c: fixed get_location.
34160
34161 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
34162
34163         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
34164         declarations to make it work with older gcc. 
34165
34166         * loader.c (mono_get_method): set signature->pinvoke for native calls
34167
34168 2002-11-20  Dick Porter  <dick@ximian.com>
34169
34170         * threads.c (mono_thread_init): Set the main thread's handle
34171
34172 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34173
34174         * gc.c: allow compilation without GC support. Changed to match the
34175         mono coding style.
34176
34177 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34178
34179         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
34180
34181 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
34182
34183         * reflection.c: set a public key token on the core assemblies.
34184
34185 2002-11-18  Dick Porter  <dick@ximian.com>
34186
34187         * threads.c: Split out some thread initialisation so that other
34188         files can set the start callback function.
34189
34190         * gc.c: Run finalisers in a separate thread, to avoid stack
34191         overflow.  Fixes bug 31333.
34192
34193         * appdomain.c: Set up GC finalisation thread.
34194
34195         * reflection.c: 
34196         * object.c: 
34197         * domain.c: Use gc.h macros for GC_malloc
34198         
34199 2002-11-15  Dick Porter  <dick@ximian.com>
34200
34201         * threadpool.c: 
34202         * threads.c:
34203         * appdomain.c: Removed mono_runtime_init_with_attach(),
34204         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
34205         merging the extra parameter with the existing function.  Removed
34206         unneeded code in mono_thread_attach().
34207
34208 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
34209
34210         * image.c (mono_image_loaded_by_guid): a method to get loaded
34211         images by guid. 
34212         (load_metadata_ptrs): we store the guid as string.
34213
34214 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
34215
34216         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
34217
34218         * metadata.c (mono_guid_to_string): imported method form Zoltan
34219         Varga (slightly modified)
34220
34221         * assembly.c (mono_assembly_open): load precompiled code
34222
34223         * loader.h (MonoMethod): we store the method token for use in the
34224         aot compiler. 
34225
34226 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34227
34228         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
34229         the hook function called when an assembly is loaded.
34230         
34231         * domain.c: Modified file.
34232         (mono_domain_assembly_load): removed hash table insertion of assemblies.
34233
34234         Fixes bug #33196.
34235
34236 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
34237
34238         * reflection.c: Map PEFileKind to the value expected by the WinNT
34239         image loader. 
34240
34241 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34242
34243         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
34244         Read until the buffer is filled completely.
34245
34246 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34247
34248         * icall.c: implemented MonoType.InternalGetEvent ().
34249
34250 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34251
34252         * appdomain.c: implemented InitAppDomainSetup. Delayed
34253         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
34254         the entry_assembly.
34255
34256         * assembly.c: base_dir is now an absolute path ending with
34257         G_DIR_SEPARATOR.
34258
34259         * icall.c: modified get_location according to the above changes.
34260
34261         * object.c: init AppDomain.SetupInformation for the default domain after
34262         we have the entry assembly.
34263
34264         * domain.c: when unloading a domain, setup = NULL.
34265
34266 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
34267
34268         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
34269
34270 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
34271
34272         * object.h, object.c: introduced mono_object_get_virtual_method ()
34273         to lookup the method invoked on an object when a callvirt is done on
34274         a method.
34275         * icall.c: make MethodInfo::Invoke() always do a virtual call.
34276
34277 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34278
34279         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
34280         current domain when loaded an assembly and failed to load it.
34281
34282         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
34283
34284 2002-10-31  Dick Porter  <dick@ximian.com>
34285
34286         * icall.c: 
34287         * file-io.h: 
34288         * file-io.c: Return the error status in a parameter, as the
34289         GetLastError() value has long since been blown away if we try and
34290         look it up in a subsequent internal call invocation.  Delete the
34291         GetLastError() internal call, because it's useless.
34292
34293 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
34294
34295         * class.[ch]: added cast_class to fix bug 29517
34296
34297 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
34298
34299         * marshal.c: create valid IL code in the filter clause:
34300         the new JIT is less forgiving:-)
34301
34302 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34303
34304         * icall.c: removed get_property internal call.
34305
34306 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
34307
34308         * appdomain.h domain.c: Added an ID to appdomains.
34309         
34310         * threads.c threads.h icall.c: Implement icall
34311         Thread:GetDomainID(), and remove unused icall 
34312         CurrentThreadDomain_internal.
34313
34314 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34315
34316         * icall.c: Don't recurse through the base types in GetConstructor.
34317         Fixes bug #32063. 
34318
34319 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34320
34321         * mempool.h, mempool.c: added mono_mempool_empty() and
34322         mono_mempool_stats().
34323
34324 2002-10-23  Dick Porter  <dick@ximian.com>
34325
34326         * file-io.c: 
34327         * file-io.h: 
34328         * icall.c: Added MonoIO.GetFileType internal call
34329
34330 2002-10-17  Dick Porter  <dick@ximian.com>
34331
34332         * appdomain.c (mono_runtime_cleanup): Don't signal the async
34333         delegate semaphore before waiting for all threads to finish,
34334         because new threads can also call async delegates.  Fixes bug
34335         32004.
34336
34337         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
34338         of 3 seconds, in case another async job is queued.  (This part is
34339         needed because the bug fix reintroduced the 3s exit lag.)  This
34340         makes the mono_runtime_shutdown flag superfluous.
34341
34342 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34343
34344         * reflection.c: include ehader size in method section headers.
34345         Really check for suplicated modules entries.
34346
34347 2002-10-17  Martin Baulig  <martin@gnome.org>
34348
34349         * debug-mono-symfile.c: Added back support for locals.
34350
34351 2002-10-14  Martin Baulig  <martin@gnome.org>
34352
34353         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
34354         MONO_TYPE_VOID.
34355
34356 2002-10-14  Martin Baulig  <martin@gnome.org>
34357
34358         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
34359         mono_class_get() instead of looking in the class cache. 
34360
34361 2002-10-13  Martin Baulig  <martin@gnome.org>
34362
34363         * debug-mono-symfile.c: Set version number to 28, include the
34364         signature in method names.
34365
34366 2002-10-13  Martin Baulig  <martin@gnome.org>
34367
34368         * debug-mono-symfile.h: Set version number to 27.
34369
34370 2002-10-11  Martin Baulig  <martin@gnome.org>
34371
34372         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34373
34374 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34375
34376         * metadata.c, metadata.h: added helper function to allocate signatures.
34377
34378 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34379
34380         * icall.c: added internal call to get the location of machine.config.
34381
34382 2002-10-08  Martin Baulig  <martin@gnome.org>
34383
34384         * debug-mono-symfile.c: Ignore classes with a pending init for the
34385         moment.
34386
34387 2002-10-03  Dick Porter  <dick@ximian.com>
34388
34389         * threads.c: Freebsd pthread_t is a pointer
34390
34391 2002-10-03  Dick Porter  <dick@ximian.com>
34392
34393         * socket-io.c: Implemented GetHostName_internal
34394
34395 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34396
34397         * mono-config.c:
34398         (mono_config_parse_file): don't leak the text.
34399
34400 2002-10-02  Martin Baulig  <martin@gnome.org>
34401
34402         * debug-mono-symfile.c: Added support for methods.
34403
34404 2002-10-01  Martin Baulig  <martin@gnome.org>
34405
34406         * debug-mono-symfile.c: Don't emit methods and line numbers for
34407         the dynamic symbol file, just write the type table.  We can easily
34408         have an external helper program which creates a symbol file for an
34409         IL file.        
34410
34411 2002-10-01  Dick Porter  <dick@ximian.com>
34412
34413         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34414         Only add the handle to the cleanup array when we're about to
34415         launch the thread.  Bug 31425 deadlocked when the test was run on
34416         mono under w32.
34417
34418 2002-10-01  Martin Baulig  <martin@gnome.org>
34419
34420         * debug-mono-symfile.c: Added support for properties.
34421
34422 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34423
34424         * reflection.c: unaligned store fix from Mark Crichton
34425         <crichton@gimp.org>.
34426
34427 2002-09-27  Martin Baulig  <martin@gnome.org>
34428
34429         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34430         New interncall.
34431
34432 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34433
34434         * assembly.h, assembly.c: use a sane API to hook into the assembly
34435         loading process instead of a useless special-purpouse hack
34436         (ngen needs a hook, too, for example).
34437
34438 2002-09-27  Dick Porter  <dick@ximian.com>
34439
34440         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34441         io-layer can set up some process handle info.  Not needed on w32,
34442         but doesn't hurt either.
34443
34444         * process.c: Pass the program name in the second parameter to
34445         CreateProcess, so the path is searched.  Include the working
34446         directory. Implemented process name, process enumeration, and some
34447         process detail internal calls.
34448         
34449         * icall.c: Added internal calls for process lookup, and some
34450         process details
34451
34452 2002-09-26  Martin Baulig  <martin@gnome.org>
34453
34454         * assembly.c (mono_install_open_assembly_hook): New global
34455         function to install a function to be invoked each time a new
34456         assembly is loaded.
34457         (mono_assembly_open): Run this callback function if set.
34458
34459         * debug-mono-symfile.c: Put back line numbers for the dynamic
34460         symbol file and also record the .il file as source file.  This
34461         allows us to install the temporary symbol file as `file.dbg' just
34462         like a compiler-generated one.
34463
34464 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34465
34466         * Corrected typo in gc.c (BOHEM vs BOEHM).
34467
34468 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34469
34470         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34471         GetProperties. Also avoid calling g_slist_length in GetProperties and
34472         GetMethods.
34473
34474 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34475
34476         * reflection.c: avoid unaligned stores (bug spotted by
34477         Mark Crichton  <crichton@gimp.org>).
34478
34479 2002-09-25  Martin Baulig  <martin@gnome.org>
34480
34481         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34482         instead of guint64 for addresses and added prologue/epilogue info.
34483
34484 2002-09-25  Martin Baulig  <martin@gnome.org>
34485
34486         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34487         store line number info.  For the dynamic symbol file, we only need
34488         to provide the JIT generated dynamic line number info for the dynamic
34489         symbol file.
34490
34491 2002-09-25  Martin Baulig  <martin@gnome.org>
34492
34493         * debug-mono-symfile.h: Incremented version number.
34494
34495 2002-09-24  Martin Baulig  <martin@gnome.org>
34496
34497         * class.c (mono_debugger_class_init_func): New global function
34498         pointer variable.
34499         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34500         call it.
34501
34502         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34503         function.  This is called via the mono_debugger_class_init_func
34504         hook to add all types to the dynamic type table.
34505         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34506         from its metadata token.
34507
34508         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34509         New interncall for the debugger.
34510
34511 2002-09-24  Nick Drochak <ndrochak@gol.com>
34512
34513         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34514         before using it in case it is null.
34515         
34516 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34517
34518         * metadata.c: allow custom modifiers in local var signatures
34519         (bug spotted by Zoltan Varga).
34520
34521 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34522
34523         * class.c: deal with the <Module> class that may have a NULL vtable.
34524         Eliminate warnings.
34525
34526 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34527
34528         * image.c, image.h: more strong name helpers.
34529         * monosn.c: more work: convert pem keys to cryptoapi format.
34530
34531 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34532
34533         * string-icalls.c: speedup IndexOf.
34534
34535 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34536
34537         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34538
34539 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34540
34541         * icall.c: cleanup: use mono_object_domain ().
34542
34543 2002-09-23  Martin Baulig  <martin@gnome.org>
34544
34545         * debug-mono-symfile.c: Improved type support.
34546
34547 2002-09-22  Martin Baulig  <martin@gnome.org>
34548
34549         * debug-mono-symfile.c: Added support for reference types and strings.
34550
34551 2002-09-22  Martin Baulig  <martin@gnome.org>
34552
34553         * debug-mono-symfile.c: Started to work on the type table.
34554
34555 2002-09-21  Martin Baulig  <martin@gnome.org>
34556
34557         * debug-mono-symfile.c: Largely reworked the symbol table format.
34558         The symbol table is now incrementally updated each time a new
34559         method is added.  We're now also using our own magic and version
34560         so that you don't need to recompile all your classes if the
34561         dynamic table changes.
34562         (mono_debug_update_mono_symbol_file): Removed.
34563         (mono_debug_symfile_add_method): New function to add a method.
34564
34565 2002-09-21  Martin Baulig  <martin@gnome.org>
34566
34567         * icall.c
34568         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34569         New interncall.
34570
34571         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34572         New interncall to get a method from its metadata token.
34573
34574 2002-09-21  Martin Baulig  <martin@gnome.org>
34575
34576         * debug-mono-symfile.c: Create type table.
34577
34578 2002-09-20  Martin Baulig  <martin@gnome.org>
34579
34580         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34581
34582 2002-09-20  Martin Baulig  <martin@gnome.org>
34583
34584         * debug-mono-symfile.c: Provide information about params and locals.
34585
34586 2002-09-20  Martin Baulig  <martin@gnome.org>
34587
34588         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34589         New interncall.
34590
34591         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34592         interncall to get a method from its metadata token.
34593
34594 2002-09-20  Martin Baulig  <martin@gnome.org>
34595
34596         * debug-mono-symfile.c: Added a few checks for method->header
34597         being non-NULL.  This should never happen, but for the moment
34598         let's use a g_warning() rather than a g_assert().
34599
34600 2002-09-19  Mark Crichton  <crichton@gimp.org>
34601
34602         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34603         even if support for it isn't present.  Added an #ifdef to fix this.
34604
34605         * socket-io.c: Added checks back for Solaris support.
34606
34607 2002-09-19  Martin Baulig  <martin@gnome.org>
34608
34609         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34610         changes in the symbol file format.
34611
34612 2002-09-18  Martin Baulig  <martin@gnome.org>
34613
34614         * debug-mono-symfile.c: Set version number to 21.
34615
34616 2002-09-18  Dick Porter  <dick@ximian.com>
34617
34618         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34619         on netbsd.  Fixes bug 30051.
34620
34621 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34622
34623         * reflection.c:
34624         (set_version_from_string): little fix.
34625
34626 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34627
34628         * monosn.c, Makefile.am: added strong name utility.
34629         * reflection.h, reflection.c: implemented delayed signing,
34630         locale, version and hash id assembly attributes.
34631
34632 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34633
34634         * loader.c, metadata.c: load param attributes in signatures.
34635
34636 2002-09-16  Martin Baulig  <martin@gnome.org>
34637
34638         * debug-mono-symfile.c: Added string table with all method names.
34639
34640 2002-09-14  Martin Baulig  <martin@gnome.org>
34641
34642         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34643         fast method lookup.
34644
34645 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34646
34647         * reflection.c: record the public key token of referenced assemblies.
34648
34649 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34650
34651         * image.c, image.h: added functions to get the strong name and the
34652         public key of an assembly.
34653         * pedump.c: use them.
34654
34655 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34656
34657         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34658
34659 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34660
34661         * marshal.c (mono_marshal_get_managed_wrapper): Added
34662         MONO_TYPE_BOOLEAN 
34663
34664 2002-09-11  Martin Baulig  <martin@gnome.org>
34665
34666         * gc.c: Call GC_unregister_disappearing_link() on all links when
34667         finalizing them, this is necessary to aviod a crash in boehm's
34668         finalize handler.
34669
34670 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34671
34672         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34673         nick@chemlab.org.
34674
34675 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34676
34677         * icall.c: implemented MonoType::Module.
34678         * reflection.c, reflection.h: mono_module_get_object () from
34679         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34680
34681 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34682
34683         * icall.c: ignore overridden methods in GetMethods ().
34684         Fix for FieldInfo::SetValue().
34685         * object.c: handle float/double in runtime invoke.
34686
34687 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34688
34689         * object.c: allow a constructor to be called again on an object.
34690
34691 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34692
34693         * class.h, class.c: move field layout code to it's own function and
34694         export it. Get an interface id earlier. Move fields in MonoClass
34695         so they are more cache friendly and align the bitfields.
34696         * loader.c: temporary handle get_param_names() for a runtime method.
34697         * reflection.c, reflection.h: more code to handle runtime creation of
34698         types.
34699
34700 2002-09-09  Martin Baulig  <martin@gnome.org>
34701
34702         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34703         signature with the pinvoke field being set for the actual call.
34704
34705 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706
34707         * icall.c: removed some unused icalls. Start of map of glib charsets
34708         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34709
34710 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34711
34712         * debug-helpers.c: break infinite loop (found and fixed by
34713         Holger Arnold <harnold@gmx.de>).
34714
34715 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34716
34717         * icall.c: target may be null in create_delegate.
34718
34719 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34720
34721         * marshal.c: handle a boolean return type.
34722
34723 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34724
34725         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34726
34727 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34728
34729         * gc.c: fix weakreferences.
34730
34731 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34732
34733         * icall.c: added icall to get default codepage.
34734
34735 2002-09-03  Dick Porter  <dick@ximian.com>
34736
34737         * threads.h: 
34738         * threads.c: Use MonoThread instead of MonoObject where
34739         apropriate.
34740
34741         Store running thread objects in a hash table, so that we have all
34742         the info to hand when waiting for them to finish
34743         (means we don't need OpenThread() any more, so mingw builds should
34744         be fully functional again.)
34745
34746         * verify.c:
34747         * object.h: Added thread ID to MonoThread
34748
34749 2002-09-03  Martin Baulig  <martin@gnome.org>
34750
34751         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34752
34753 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34754
34755         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34756
34757 2002-09-03  Martin Baulig  <martin@gnome.org>
34758
34759         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34760         argument to store the end address of the disassembled instruction.
34761
34762         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34763         here from debug-symfile.h.
34764         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34765         JIT into this struct.
34766         (MonoSymbolFile): Added `char *image_file' field.
34767         (MonoDebugGetMethodFunc): Removed.
34768         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34769         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34770         (mono_debug_find_method): New method.
34771
34772         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34773         create a full symbol file.
34774         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34775         and static symbol files.
34776         (mono_debug_find_method): The symbol file keeps an internal method hash,
34777         call this to get a MonoDebugMethodInfo from a MonoMethod.
34778
34779         * debug-symfile.[ch]: Removed.
34780
34781 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34782
34783         * image.c (do_mono_image_open): Remove linker version check.
34784
34785 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34786
34787         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34788         wrappers for instance methods.
34789         
34790 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34791
34792         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34793
34794 2002-08-28  Dick Porter  <dick@ximian.com>
34795
34796         * Makefile.am: Export HOST_CC for w32 builds
34797
34798 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34799
34800         * file-io.c process.c: MonoString are null terminated, no
34801         need for mono_string_to_utf16() anymore.
34802
34803 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34804
34805         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34806
34807 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34808
34809         * icall.c, reflection.h: speedup System.MonoType.
34810
34811 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34812
34813         * reflection.c: allow null as the value of a string argument in
34814         custom attributes constructors.
34815
34816 2002-08-27  Martin Baulig  <martin@gnome.org>
34817
34818         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34819         `trampoline_address' field.
34820
34821 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34822
34823         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34824         check (fixes bug #29486) 
34825
34826 2002-08-27  Martin Baulig  <martin@gnome.org>
34827
34828         * debug-mono-symfile.c: Changed the file format in a way that allows us
34829         open it read-only and to use a specially malloced area for all the
34830         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34831         debugging IL code and there is no MCS generated symbol file for it.
34832
34833 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34834
34835         * object.c: added a define for a good string and array
34836         creation speedup (not enabled by default because we need to deal with
34837         the synch stuff).
34838
34839 2002-08-26  Martin Baulig  <martin@gnome.org>
34840
34841         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34842         function to create a dynamic symbol file.  This is used by the
34843         debugger to create a symbol file for IL code on-the-fly.
34844
34845 2002-08-26  Martin Baulig  <martin@gnome.org>
34846
34847         * loader.c (mono_lookup_pinvoke_call): Include the error message
34848         from g_module_error() in the error message.
34849
34850 2002-08-24  Martin Baulig  <martin@gnome.org>
34851
34852         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34853         function to update the symbol file.  The symbol file is mmap()ed
34854         writable, but private.  This allows us to install the symbol file
34855         together with the assembly.
34856
34857 2002-08-24  Martin Baulig  <martin@gnome.org>
34858
34859         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34860         but they can read the new symbol file format which mcs is now creating.
34861
34862         * debug-symfile.c (mono_debug_find_source_location): Moved to
34863         debug-mono-symfile.c; this is now operating on the new symbol file.
34864
34865 2002-08-23  Martin Baulig  <martin@gnome.org>
34866
34867         * debug-helpers.c (mono_method_desc_from_method): New function to get
34868         a MonoMethodDesc from a MonoMethod.
34869
34870 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34871
34872         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34873         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34874
34875 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34876
34877         * string-icalls.[ch]: make helper methods static.
34878
34879 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34880
34881         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34882         types to it and to SetValueInternal.
34883
34884         * object.c: Moved handle_enum label to its proper place. This was the
34885         f... bug! ;-)
34886
34887         This time i compiled mcs and gtk-sharp and they both work.
34888
34889 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34890
34891         * icall.c: reverted partially my previous patch until 
34892         object.c:set_value handles enums correcly.
34893
34894 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34895
34896         * icall.c:
34897         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34898         (ves_icall_System_Environment_get_MachineName): removed warning when
34899         compiling under cygwin.
34900
34901 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34902
34903         * object.c: fixed field_get_value() for reference types.
34904
34905 2002-08-22  Dick Porter  <dick@ximian.com>
34906
34907         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34908         Don't free a buffer while it's still needed.  Patch from Jonathan
34909         Liger <Jonathan.liger@wanadoo.fr>
34910
34911 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34912
34913         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34914         internal call.
34915
34916 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34917
34918         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34919         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34920
34921         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34922         we call unmanaged code which throws exceptions.
34923
34924 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34925
34926         * appdomain.h: added per-domain entry_assembly.
34927         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34928         arguments.
34929         * icall.c: Assembly::GetEntryAssembly icall.
34930         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34931         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34932
34933 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34934
34935         * appdomain.h, gc.c: added mono_domain_finalize ().
34936
34937 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34938
34939         * object.c:
34940         (mono_print_unhandled_exception): changed g_warning by g_printerr
34941         because g_log has a 1024 characters limit (yeah, i got a big stack
34942         trace). Don't print exception name, that should be in ToString 
34943         returned string.
34944
34945 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34946
34947         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34948         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34949
34950 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34951
34952         * object.c:
34953         (mono_print_unhandled_exception): after previous commit, i realized
34954         that MS calls ToString on the exception. I changed this function to
34955         do that. This way we get stack_trace for free.
34956
34957 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34958
34959         * object.c:
34960         (mono_print_unhandled_exception): invoke Message property instead of
34961         getting 'message' field from Exception. Don't allocate memory for
34962         'trace' and 'message' if not needed.
34963
34964 2002-08-18  Dick Porter  <dick@ximian.com>
34965
34966         * unicode.c: Fix asserts to match Encoder.cs checks
34967
34968 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34969
34970         * marshal.c: fix unaligned store issue and a few wrong
34971         opcode argument types.
34972
34973 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34974
34975         * icall.c: added GetUninitializedObjectInternal internal call.
34976
34977 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34978
34979         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34980         to the right domain.
34981
34982 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34983
34984         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34985
34986         * class.c (class_compute_field_layout): set blittable to false for Strings
34987
34988         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34989
34990 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34991
34992         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34993         first chunk of code to create types at runtime. Code to
34994         handle ReflectedType/DeclaringType. Make reflection handles
34995         domain specific.
34996
34997 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34998
34999         * class.c: set correct name in arrays.
35000
35001 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
35002
35003         * appdomain.c (mono_domain_transfer_object): make it work with
35004         valuetypes. bug fixes.
35005
35006 2002-08-12  Dick Porter  <dick@ximian.com>
35007
35008         * object.h: Rename some parameters to avoid c++ keywords (Patch
35009         from Joseph Wenninger <kde@jowenn.at>)
35010
35011 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
35012
35013         * icall.c: added icall to implement Assembly.GetFile*.
35014
35015 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35016
35017         * reflection.h, reflection.c: code to embed managed resources.
35018
35019 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35020
35021         * class.c: move all the type size stuff into
35022         class_compute_field_layout().
35023
35024 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35025
35026         * class.c: ensure enums have always the correct instance size.
35027         * unicode.c: remove wrong assert.
35028
35029 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35030
35031         * assembly.c: fix mem corruption issue.
35032         * image.h, image.c: added mono_image_get_resource () to access
35033         managed resources.
35034         * icall.c: implemented Assembly.EntryPoint property and some
35035         Managed Resources related internalcalls.
35036
35037
35038 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35039
35040         * image.c, image.h: impemented mono_image_get_entry_point ().
35041         * appdomain.c: use mono_image_get_entry_point.
35042
35043 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35044
35045         * reflection.c: support the object type argument when loading
35046         custom attributes.
35047
35048 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
35049
35050         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
35051         String as return type.
35052
35053 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
35054
35055         * reflection.c: fix encoding of named args for custom attrs to match
35056         the ms implementation. Read them back when instantiating custom
35057         attributes.
35058
35059 2002-08-02  Radek Doulik  <rodo@ximian.com>
35060
35061         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
35062         by Dietmar as quick fix
35063         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
35064         16 as stack size, used on more places as quick fix before Dietmar
35065         will fix it properly
35066
35067 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35068
35069         * object.h, object.c: added accessors for fields and properties.
35070
35071 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35072
35073         * class.c, class.h: made mono_class_get_field_from_name ()
35074         loop on parent types.
35075         Added mono_class_get_property_from_name ().
35076
35077 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35078
35079         * class.c, class.h: move the code to setup the type vtable in its own
35080         function so that it can be reused also for types created at runtime.
35081         Eliminate the "class" identifier from the header file.
35082         * reflection.c: setup the vtable for enums so that we can create
35083         objects for use in SetConstant ().
35084
35085 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
35086
35087         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
35088         instead of the delegate itself as this pointer (bug #28383)
35089
35090 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
35091
35092         * marshal.c (mono_marshal_get_managed_wrapper): added return type
35093         conversions.
35094
35095 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096
35097         * loader.c: don't set the pinvoke bit on icalls.
35098
35099 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
35100
35101         * debug-helpers.c (mono_method_full_name): only print a number to
35102         indicate wrapper type (so that the output is more readable in traces).
35103
35104 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
35105
35106         * class.c (mono_class_init): include method override patch from Paolo
35107
35108 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
35109
35110         * icall.c: fixed GetTypeCode().
35111
35112 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
35113
35114         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
35115         use real delegate invoke function to make it work with multicast
35116         delegates (fix bug# 28291).
35117
35118 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35119
35120         * object.c: load constant strings.
35121
35122 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35123
35124         * reflection.c: no magic numbers.
35125         * tabledefs.h: security action enum.
35126
35127 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35128
35129         * assembly.c: fix possible memory corruption.
35130
35131 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35132
35133         * reflection.h, reflection.c: added support for linking resources.
35134         * verify.c: check we have an updated corlib.
35135
35136 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
35137
35138         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
35139         string arrays.
35140         (mono_marshal_string_array): null terminate unmanaged string arrays.
35141         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
35142
35143 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35144
35145         * icall.c: Type.GetType () can now return also types from the
35146         calling assembly.
35147
35148 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35149
35150         * loader.h, loader.c: stack walking support.
35151         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
35152         GetCallingAssembly.
35153
35154 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
35155
35156         * marshal.c: added optimisations for blittable types 
35157
35158         * class.c (mono_array_class_get): do not set blittable attribute on arrays
35159         (mono_class_setup_mono_type): set blittable attribute for single
35160         and double.
35161
35162         * marshal.c (mono_string_utf8_to_builder): impl.
35163         (mono_string_builder_to_utf8): impl.
35164         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
35165
35166 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
35167
35168         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
35169         (mono_marshal_get_managed_wrapper): impl. byref types
35170
35171 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35172
35173         * icall.c:
35174         (search_method): don't display debug message. 
35175
35176 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35177
35178         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
35179
35180 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35181
35182         * appdomain.c: set the missing filename when throwing exception.
35183
35184 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35185
35186         * metadata.c (mono_type_size): code cleanup
35187         (mono_type_stack_size): removed some test code
35188
35189 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
35190
35191         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
35192         mono_get_exception_file_not_found now.
35193
35194         * exception.c (mono_exception_from_name_two_strings): New version
35195         that will call a constructor with two string arguments. 
35196         (mono_get_exception_file_not_found): New helper routine, used to
35197         report file-not-found errors.
35198
35199 2002-07-20  Dick Porter  <dick@ximian.com>
35200
35201         * process.h:
35202         * process.c: Pass file handles to CreateProcess
35203         
35204         * icall.c:
35205         * file-io.h:
35206         * file-io.c: Implemented CreatePipe
35207
35208 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35209
35210         * metadata.c (mono_get_param_info): set alignment for value types
35211
35212 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35213
35214         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
35215         Constify mono_domain_assembly_open().
35216         * loader.c: handle null namespace in icalls.
35217
35218 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35219
35220         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
35221         (emit_str_to_ptr_conv): marshal object as structs
35222
35223         * metadata.c (mono_type_to_unmanaged): marshal object as structs
35224
35225         * marshal.c (mono_marshal_get_runtime_invoke): support value types
35226
35227 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
35228
35229         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
35230         (mono_marshal_get_native_wrapper): we an now return value types
35231
35232 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35233
35234         * verify.c: more checks implemented.
35235
35236 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
35237
35238         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
35239         (fix bug #27695)
35240         (mono_marshal_get_native_wrapper): allow byref arguments
35241         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
35242         impl. PtrToStringXXX methods
35243         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
35244         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
35245         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
35246         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
35247         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
35248
35249 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35250
35251         * reflection.c: fix buglet in parsing an assembly name.
35252
35253 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35254
35255         * marshal.c (emit_ptr_to_str_conv): first impl.
35256
35257 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35258
35259         * object.c, class.h: cache the vtable in the class as suggested by
35260         vargaz@freemail.hu (Zoltan Varga).
35261
35262 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35263
35264         * class.h, loader.c: added mono_field_from_token().
35265         * verify.c: first cut of type checking code.
35266
35267 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35268
35269         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
35270
35271 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
35272
35273         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
35274         (fix bug #27782)
35275         (mono_marshal_get_remoting_invoke): impl.
35276         (mono_delegate_begin_invoke): impl.
35277         (mono_mb_emit_save_args): impl.
35278         (mono_delegate_end_invoke): impl.
35279         (mono_marshal_get_delegate_begin_invoke):
35280         (mono_marshal_get_delegate_end_invoke):
35281         (mono_marshal_get_delegate_invoke): generate a special name for
35282         those methods (including the signature) and associate them whith
35283         the delegate class. 
35284
35285 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
35286
35287         * reflection.[ch]: 
35288         (mono_reflection_type_from_name): now it has a MonoImage parameter
35289         which is used as the default image to search the type in. If the image
35290         is NULL or getting the type from it fails, it defaults to corlib.
35291
35292         * icall.c: changed 1 call to mono_reflection_type_from_name to match
35293         new parameter.
35294
35295 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35296
35297         * reflection.c: update the parameter table index.
35298
35299 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35300
35301         * domain.c: don't include the mark byte in the string hash.
35302
35303 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35304
35305         * icall.cs: icall for Type.GetTypeCode ().
35306         * verify: a couple of fixes and disabled local initialization checks.
35307
35308 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
35309
35310         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
35311
35312         * debug-helpers.c (mono_method_full_name): print the type of the
35313         runtime wrapper
35314
35315         * metadata.c (mono_signature_hash): a hash function for signatures
35316         (mono_signature_hash): better hash algorithm
35317
35318         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
35319
35320         * debug-helpers.c (mono_method_full_name): this can now generate
35321         method names with signatures
35322
35323         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
35324         method dont have this pointers.
35325
35326 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35327
35328         * reflection.c: fixup typebuilder tokens.
35329         * image.c: fix buglet.
35330         * marshal.h: remove whitespace.
35331         * metadata.h, metadata.c: reinstate code that was removed.
35332         * verify.c: handle catch directives and fix another couple of bugs.
35333
35334 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
35335
35336         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
35337         (mono_marshal_get_native_wrapper): make it comp. with the old code
35338         (mono_marshal_get_native_wrapper): support boolean
35339         (mono_marshal_get_managed_wrapper): support more types
35340
35341 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
35342
35343         * class.c (class_compute_field_layout): compute class->blittable attribute.
35344
35345 2002-07-09  Dick Porter  <dick@ximian.com>
35346
35347         * threads.c: Make the thread cleaning up cope with threads that
35348         call ExitThread()
35349
35350 2002-07-08  Radek Doulik  <rodo@ximian.com>
35351
35352         * reflection.c (method_encode_code): use non-translated values to
35353         compute finally_start, this fixes exception handling on ppc, yay!
35354
35355         * decimal.h (struct signscale): fix endianess
35356
35357 2002-07-07  Radek Doulik  <rodo@ximian.com>
35358
35359         * reflection.c: swap box_val and not val
35360
35361 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35362
35363         * reflection.c, reflection.h: handle full assembly info in type name.
35364         Handle Type arguments when loading custom attributes.
35365         * icall.c: updated to use new mono_reflection_type_from_name () method.
35366
35367 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35368
35369         * loader.c:
35370         (method_from_memberref): also print assembly name when method not found.
35371
35372 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35373
35374         * icall.c:
35375         (ves_icall_TypeGetProperties): fixed bug #27473. 
35376
35377 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35378
35379         * reflection.c: display image name and token when cannot find the
35380         .ctor for an attribute.
35381
35382 2002-07-05  Martin Baulig  <martin@gnome.org>
35383
35384         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35385
35386 2002-07-04  Dick Porter  <dick@ximian.com>
35387
35388         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35389         compile on mingw.  This will cause mingw builds to not wait for
35390         subthreads to terminate after the main thread does.  I've lodged a
35391         bug with the mingw developers for them to wrap OpenThread().
35392
35393 2002-07-03  Dick Porter  <dick@ximian.com>
35394
35395         * threads.c: Store thread IDs instead of handles, because
35396         GetCurrentThread() returns a pseudohandle and therefore stores
35397         useless values.  mono_thread_cleanup() continues checking the
35398         array of threads until it is empty, to cope with subthreads
35399         spawning new threads after the main thread has finished.
35400
35401         * profiler.h:
35402         * profiler.c:
35403         * profiler-private.h: Pass the thread ID to thread profiler
35404         functions, instead of a handle
35405
35406 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35407
35408         * verify.c: fixes to make it more usable.
35409         * pedump.c: added --verify code to verify IL code in an assembly.
35410
35411 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35412
35413         * reflection.c: turn errors into warnings to allow compiling corlib.
35414
35415 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35416
35417         * reflection.c: add special cases to compile corlib.
35418
35419 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35420
35421         * reflection.c: handle properties with only a set method.
35422
35423 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35424
35425         * opcodes.h: add enum with opcodes in opval order.
35426
35427 2002-07-01  Dick Porter  <dick@ximian.com>
35428         
35429         * object.h:
35430         * object.c (mono_runtime_run_main): Removed unneeded argument
35431
35432 2002-06-28  Martin Baulig  <martin@gnome.org>
35433
35434         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35435
35436 2002-06-27  Dick Porter  <dick@ximian.com>
35437
35438         * threads.c: Store the handle in both the parent thread and in the
35439         subthread, to minimise the time between starting a new thread and
35440         storing its ID.
35441
35442 2002-06-26  Dick Porter  <dick@ximian.com>
35443
35444         * appdomain.c (mono_runtime_cleanup): Close the socket library
35445         after all the threads have finished, not before
35446
35447 2002-06-26  Martin Baulig  <martin@gnome.org>
35448
35449         * debug-symfile.c (mono_debug_find_source_location): Added
35450         `guint32 *line_number' argument.  If it's not NULL, store the line number
35451         there and return the file name without the line number.
35452
35453 2002-06-25  Dick Porter  <dick@ximian.com>
35454
35455         * icall.c:
35456         * process.h:
35457         * process.c: Process forking and other support functions
35458
35459 2002-06-25  Dick Porter  <dick@ximian.com>
35460
35461         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35462         things dont happen when the image is closed.
35463         (mono_image_lookup_resource): Walk the resource section looking
35464         for a particular entry
35465
35466         * cil-coff.h: PE resource section decoding
35467
35468 2002-06-25  Dick Porter  <dick@ximian.com>
35469         
35470         * assembly.h:
35471         * assembly.c: 
35472         (mono_assembly_foreach): Accessor functions to walk the list of
35473         loaded assemblies
35474         (mono_assembly_set_main):
35475         (mono_assembly_get_main): Process methods need to know which
35476         assembly is the "main" one
35477
35478         * object.c (mono_runtime_run_main): Record the main assembly
35479
35480         * debug-helpers.c: Fix typo
35481
35482 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35483
35484         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35485         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35486
35487 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35488
35489         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35490
35491 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35492
35493         * image.c (do_mono_image_open): Initialize reference count,
35494         otherwise we leak the MonoImage.
35495
35496 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35497
35498         * reflection.c: small tweak to handle self-hosting.
35499
35500 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35501
35502         * reflection.c: fix type name parse code.
35503
35504 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35505
35506         * reflection.c: break out of the loop.
35507         * image.c: special case corlib.
35508
35509 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35510
35511         * reflection.c: add all the custom attrs at the end to ensure the
35512         ctors have been properly initialized when the attributes are defined
35513         in the current assembly.
35514
35515 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35516
35517         * reflection.c: handle correctly multiple-nested types.
35518
35519 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35520
35521         * row-indexes.h: fix typos.
35522         * reflection.c: adjust for typos and fix method_def_or_ref
35523         encoding in MethodImpl table.
35524
35525 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35526
35527         * reflection.c: fix entry point patching (thanks Serge!).
35528
35529 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35530
35531         * verify.c: add check for System.Exception
35532
35533 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35534
35535         * image.c, class.c: minifix for code just c&p'ed.
35536         * reflection.c: warning fix.
35537         * object.h, loader.h, domain.c: load also StringBuilder.
35538
35539 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35540
35541         * marshal.h, marshal.c: some support code to handle complex marshaling.
35542
35543 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35544
35545         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35546         Better signatures with vtable error dump.
35547
35548 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35549
35550         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35551
35552 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35553
35554         * icall.c (ves_icall_Type_GetField): impl.
35555
35556 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35557
35558         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35559         to retrieve a marshal description blob for a field or param.
35560
35561 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35562
35563         * reflection.h, reflection.c: change order of nested type emission
35564         to avoid table corruption. The NestedTypes table is sorted.
35565         * icall.c: change order of GetConstructor results to workaround mcs bug.
35566
35567 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35568
35569         * reflection.h, reflection.c: handle field and param marshal
35570         information.
35571
35572 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35573
35574         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35575
35576 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35577
35578         * reflection.c: fix call convention.
35579
35580 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35581
35582         * reflection.h, reflection.c: mono_image_get_memberref_token()
35583         takes a type instead of a class, now. Added
35584         mono_image_get_array_token() to create tokens for the special
35585         multi-dim array methods.
35586
35587 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35588
35589         * assembly.c: handle modules (no assembly table). Split
35590         loading references in its own function.
35591         * class.c: handle moduleref resolution scope.
35592         * image.c, image.h: cache module name in image.
35593
35594 2002-06-07  Martin Baulig  <martin@gnome.org>
35595
35596         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35597         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35598
35599 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35600
35601         * icall.c: more signature fixes that used uint instead of int.
35602
35603 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35604
35605         * reflection.c: fixed signature of field refs.
35606
35607 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35608
35609         * class.c, reflection.c: handle typerefs of nested types
35610         (both on read and when writing files).
35611
35612 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35613
35614         * icall.c: fix method signatures that tried to workaround the previous
35615         typo, d'oh!
35616
35617 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35618
35619         * debug-helpers.c: fix typo.
35620
35621 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35622
35623         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35624         rewrote the PE/COFF writing code (our programs are understood by the
35625         ms runtime, now).
35626
35627 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35628
35629         * gc.c, gc.h, icall.c: weakreference support.
35630
35631 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35632
35633         * Makefile.am, mono-config.c: use $(sysconfdir).
35634
35635 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35636
35637         * icall.c: changed default precision of Double.ToString() to 15.
35638         Fixed memory leak. Unified with Single.ToString.
35639
35640 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35641
35642         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35643
35644 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35645
35646         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35647         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35648         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35649         and myself.
35650
35651 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35652
35653         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35654
35655 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35656
35657         * reflection.c, socket-io.c: more compilation fixes.
35658
35659 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35660
35661         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35662         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35663         unicode.c: warning and compiler compatibility fixes.
35664
35665 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35666
35667         * class.h, metadata.c: fixed warnings/compilation errors.
35668
35669 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35670
35671         * Makefile.am, mono-config.c, mono-config.h: configuration file
35672         support routines.
35673         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35674         config file. Export methods to insert and lookup mappings.
35675
35676 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35677
35678         * reflection.c: handle types and boxed objects in custom attr
35679         constructors.
35680
35681 2002-05-30  Martin Baulig  <martin@gnome.org>
35682
35683         * debug-symfile.c
35684         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35685
35686 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35687
35688         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35689         to lookup the implmap row for a P/Invoke method.
35690         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35691         P/Invoke method from the runtime on an as needed basis.
35692
35693 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35694
35695         * metadata.c (mono_metadata_parse_signature): impl.
35696
35697 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35698
35699         * class.c: handle .pack directive.
35700
35701 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35702
35703         * object.c: initialize static fields with RVA data.
35704
35705 2002-05-25  Martin Baulig  <martin@gnome.org>
35706
35707         * debug-symfile.c
35708         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35709
35710 2002-05-24  Martin Baulig  <martin@gnome.org>
35711
35712         * debug-symfile.c
35713         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35714         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35715         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35716
35717 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35718
35719         * object.c: special case string ctros in invoke.
35720         * gc.c: silly whitespace changes.
35721
35722 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35723
35724         * threadpool.[ch]: impl. a threadpool that can
35725         be used by mint and mono.
35726
35727 2002-05-22  Martin Baulig  <martin@gnome.org>
35728
35729         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35730         The first argument is now a `MonoReflectionModuleBuilder *', the return
35731         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35732         `methods' field to get the method builder.  The `token' argument is the
35733         unfixed token.
35734
35735         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35736         invalid characters instead of g_assert_not_reached()ing.  This seems
35737         to be the behaviour of mscorlib.
35738
35739 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35740
35741         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35742         Hestilow to fix bug #25104
35743
35744 2002-05-21  Martin Baulig  <martin@gnome.org>
35745
35746         * debug-symfile.c (mono_debug_find_source_location): New function.
35747         Looks up an IL offset in the line number table and returns the source
35748         location as a string.
35749
35750 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35751
35752         * icall.c:
35753         (mono_double_ToStringImpl): changed %f by %g until we have something
35754         better.
35755
35756 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35757
35758         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35759         parameters first in C#.
35760
35761 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35762
35763         * icall.c, reflection.h: added icall to get info about an event.
35764
35765 2002-05-20  Radek Doulik  <rodo@ximian.com>
35766
35767         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35768         endian
35769         (mono_value_box): don't use memcpy for small sizes on
35770         architectures with unaligned access
35771
35772 2002-05-20  Martin Baulig  <martin@gnome.org>
35773
35774         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35775         if `tb->parent == NULL'.
35776         (mono_reflection_create_internal_class): New function.  This is
35777         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35778         for enum types.
35779
35780         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35781         New interncall.
35782
35783 2002-05-19  Martin Baulig  <martin@gnome.org>
35784
35785         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35786         argument to get the length, don't default to the array length.
35787
35788 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35789
35790         * assembly.c (mono_assembly_setrootdir): New function used to
35791         override the MONO_ASSEMBLIES directory.
35792
35793 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35794
35795         * icall.c: ValueType_GetHashCode() initialize local var.
35796
35797 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35798
35799         * reflection.c: sort custom attributes table.
35800
35801 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35802
35803         * reflection.c: support named args in custom attributes (write support).
35804
35805 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35806
35807         * reflection.c: fix finally position calculation.
35808
35809 2002-05-15  Radek Doulik  <rodo@ximian.com>
35810
35811         * reflection.c: fixed endianess at many places
35812
35813         * icall.c (ves_icall_InitializeArray): comment out debug msg
35814
35815 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35816
35817         * object.c (mono_unhandled_exception): new function to handle
35818         unhandled exceptions.
35819         (mono_unhandled_exception): call the UnhandledException event.
35820         (mono_runtime_delegate_invoke): impl.
35821
35822 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35823
35824         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35825         returns the RVA, not the direct pointer to the data. Handle the case
35826         when the class size is fixed.
35827
35828 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35829
35830         * reflection.c: fix some endianess issues.
35831
35832 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35833
35834         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35835
35836         * threads.c (mono_thread_init): added a callback which is invoked
35837         at thread start.
35838
35839 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35840         
35841         * icall.c: make GetHashCode return non-negative values.
35842
35843 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35844
35845         * object.c, icall.c, gc.c: revert to address-based hashcode.
35846
35847 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35848
35849         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35850
35851 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35852
35853         * icall.c, class.c: special case <Module>.
35854
35855 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35856
35857         * icall.c: fix bug in GetNow().
35858
35859 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35860
35861         * object.c (mono_runtime_class_init): make sure that we call all
35862         static class constructors.
35863
35864 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35865
35866         * reflection.c: sort methodsemantics table.
35867
35868 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35869
35870         * reflection.h, reflection.c: honour init locals setting.
35871
35872 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35873
35874         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35875
35876 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35877
35878         * reflection.c: support ContructorBuilders in attribute blob creation.
35879
35880 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35881
35882         * reflection.c: some changes to build a binary that can be run
35883         directly in windows.
35884
35885 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35886
35887         * loader.c: print a big message when an icall can't be found.
35888
35889 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35890
35891         * string-icalls.c: fix bug 24248.
35892
35893 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35894
35895         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35896         icall.c, reflection.h: separate assembly loading by pathname and by
35897         assembly name. Use the MONO_PATH env var to search for assemblies.
35898
35899 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35900
35901         * assembly.c, image.h: add some support for assemblies
35902         with multiple modules.
35903         * class.c, class.h: export mono_class_from_typeref().
35904         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35905         instead.
35906
35907 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35908
35909         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35910         documentation says (the ECMA one is correct).
35911
35912 2002-05-02  Dick Porter  <dick@ximian.com>
35913
35914         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35915         Don't name the synchronisation mutex.
35916
35917 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35918
35919         * rand.c
35920         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35921         Make the prototypes match.
35922         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35923         Same.
35924
35925         * icall.c
35926         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35927         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35928         all systems have tm.tm_zone, so use strftime() with %Z to print
35929         the timezone abreviation into a temp string.
35930
35931         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35932         rather than mono_array_addr() on a MonoString on Big Endian
35933         machines.
35934
35935 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35936
35937         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35938         fix bug 24041
35939
35940 2002-04-30  Dick Porter  <dick@ximian.com>
35941
35942         * socket-io.c: Cope with SOCKET being an integer rather than a
35943         pointer now.
35944
35945         * threads.c: Added Thread_free_internal, to deal with thread
35946         handle cleanup.  Moved calls to handle_store() and handle_remove()
35947         to start_wrapper(), so each can only be called once.  Allocate
35948         synchronisation blocks with GC_malloc(), and use GC finalisation
35949         to close the handles.
35950
35951         * icall.c: added System.Threading.Thread::Thread_free_internal
35952
35953 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35954
35955         * icall.c: support Environment.Exit, CommandLineArgs().
35956
35957 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35958
35959         * object.c, object.h: added mono_runtime_run_main () and
35960         mono_runtime_get_main_args () for use in System.Environment.
35961
35962 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35963
35964         * gc.c: fix thinko, enable actual finalization since the jit is now
35965         fixed.
35966
35967 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35968
35969         * gc.c, object.c: take into account that an object may be offset wrt the address
35970         returned by GC_malloc().
35971
35972 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35973
35974         * image.c: handle files without entries in the assembly table (modules).
35975
35976 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35977
35978         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35979         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35980         allowed to be null when it's System.Object class setup.
35981
35982 2002-04-27  Martin Baulig  <martin@gnome.org>
35983
35984         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35985         if `tb->parent == NULL' rather than crashing.
35986
35987 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35988
35989         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35990         calling acos() where asin() should have been called.
35991
35992 2002-04-26  Martin Baulig  <martin@gnome.org>
35993
35994         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35995         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35996         there's a subdirectory called `System', but we don't want to read that
35997         subdirectory as an assembly.
35998
35999 2002-04-25  Martin Baulig  <martin@gnome.org>
36000
36001         * debug-symfile.c: Reflect latest MonoString changes.
36002
36003 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
36004
36005         * rand.c, rand.h: instance method icalls need to have an explicit
36006         this pointer as first argument in the C implementation.
36007
36008 2002-04-25  Nick Drochak <ndrochak@gol.com>
36009
36010         * icall.c: Fix typo in map for GetNonZeroBytes
36011
36012 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36013
36014         * string-icalls.c : String does now passes unit tests without any 
36015         errors, the following changes has been made:
36016         
36017         Implemented replace methods.
36018         Renaming of methods to (try) follow the standard.
36019         Fixed compare ordinal
36020         Made all memory allocated directly to function instead of via icall function.
36021         Small performance fix in is_in_array function
36022                         
36023  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
36024
36025         c (mono_string_Internal_ctor_charp_int_int):
36026         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
36027         sindex < 0, throw ArgumentOutOfRangeException instead of
36028         ArgumentNullException.
36029
36030         Added new check for length == 0, however
36031         I need to make it return String.Empty from the C code.
36032         
36033         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
36034         that calculate the length for us here.
36035         
36036         (mono_string_Internal_ctor_sbytep_int_int): Replaced
36037         mono_string_new_utf16 with mono_string_new, since value is utf8.
36038
36039 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36040
36041         * object.c: register the object for finalization if needed.
36042         Allocate one more char in the string for the terminating 0 char.
36043
36044 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
36045
36046         * class.c, class.h, image.c: check if a type implemenst a destructor.
36047         Use the proper key for array class lookups.
36048         * icall.c: register the icalls in the System.GC class.
36049         * gc.c, gc.h: GC-related functions and icalls.
36050
36051 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36052
36053         * icall.c:
36054         * socket-io.c:
36055         * unicode.c: free some strings gotten from mono_string_to_utf8 and
36056         changed a couple of free () by g_free ().
36057
36058         * decimal.c: one-liner in the comments for decimal2string ().
36059
36060 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36061
36062         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
36063
36064 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36065
36066         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
36067         * object.c (mono_runtime_invoke_array) : handle null in params
36068
36069 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36070
36071         * string-icalls.c: fixed bug in split (one off bug)
36072
36073 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36074
36075         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
36076         * icalls.c: added String::Equals as internal method
36077
36078 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36079
36080         * threads.c: fixed bug in the double interlocked functions
36081
36082 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
36083
36084         * threads.c: implemented all of the new interlocked icalls.
36085         * string-icalls.c: fix a bug in insert.
36086         * icalls.c: added the icalls for interlocked, removed old string functions.
36087         
36088 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36089
36090         * loader.c: fix off-by-one error when reading argument names.
36091
36092 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36093
36094         * profiler.c: win32 counter implementation (untested).
36095         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
36096         (the latter needs testing and more complete impl. from win32 folks).
36097
36098 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
36099
36100         * object.c: mono_array_new_full workaround mono_array_class_get
36101         problem.
36102
36103 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36104
36105         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
36106         * object.h (mono_string_chars): Changed casting type.
36107
36108 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36109
36110         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
36111                            method signatures to use gunichar2 instead of gint16.
36112
36113 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
36114
36115         * object.h, object.c: domain-specific versions of mono_object_new and
36116         mono_array_new.
36117
36118 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
36119
36120         * object.c: changed String layout
36121
36122         * string-icalls.c (mono_string_Internal_ctor_chara): added
36123         internal string constructors.
36124
36125 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
36126
36127         * threads.c: pass 'this' to the thread start routine.
36128
36129 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36130
36131         * string-icalls.c: fix IndexOf and LastIndexOf. Now
36132         InternalCompareStr don't call twice mono_string_cmp_char for the last
36133         character. Improved performance in mono_string_cmp_char.
36134
36135 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
36136
36137         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
36138         code into its own library: libmonoruntime.
36139
36140 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
36141
36142         * object.h, object.c: changed array format so that szarrays do not
36143         require a bounds structure.
36144         * icall.c, appdomain.c: support for new szarray format.
36145
36146 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
36147
36148         * metadata.c: compare also the retuns type when comparing signatures:
36149         we didn't do this as an optimization since really overloaded methods
36150         must differ also in the arguments, but this doesn't work with
36151         low-level IL code (or when using explicit conversion operators: see
36152         bug#23498 for an example).
36153
36154 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
36155
36156         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
36157
36158 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
36159
36160         * icall.c: make MonoType::GetElementType its own icall.
36161
36162 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
36163
36164         * icall.c: remove MonoMethod_get_Name().
36165         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
36166         object.
36167
36168 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36169
36170         * string-icalls.c: optimized a few methods.
36171
36172 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36173
36174         * icall.c: added all new string internal calls
36175         * string-icalls.c: added, new string internal call implementation.
36176         * object.c: added mono_string_new_size for allocating a string a size
36177
36178 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
36179
36180         * object.c (mono_object_isinst): use the same code as in the
36181         optimized x86 version.
36182
36183 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36184
36185         * profiler.c: TSC-based timer code (faster and more accurate).
36186         Not hooked up in configure, yet (set USE_X86TSC to 1).
36187
36188 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
36189
36190         * profiler.c, profiler.h: track time spent compiling methods.
36191         * threads.c: track thread creation/destruction.
36192
36193 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
36194
36195         * profiler.c, profiler.h, profiler-private.h: profiling interface
36196         and sample implementation. Moved here so that it can be used also by
36197         the jit.
36198
36199 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
36200
36201         * reflection.c, reflection.h: keep types and other handles separate in
36202         the hash tables for referred tokens. Add guid for modules.
36203
36204 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
36205
36206         * assembly.c: fix bugs found with valgrind.
36207         * metadata.h, metadata.c: added mono_metadata_guid_heap().
36208
36209 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
36210
36211         * threads: added icall support for getting current domain for
36212                    the thread.
36213  
36214 2002-04-13  Martin Baulig  <martin@gnome.org>
36215
36216         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
36217         (MonoDebugVarInfo): Added `index' field for register based addresses.
36218         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
36219         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
36220         `MonoDebugVarInfo *params' and `guint32 this_offset' with
36221         `MonoDebugVarInfo *this_var'.
36222
36223         * debug-symfile.c (relocate_variable): New static function to write
36224         a location description for a local variable or method parameter.
36225
36226 2002-04-12  Martin Baulig  <martin@gnome.org>
36227
36228         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
36229         stack offset and begin/end scope address of a local variable.
36230         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
36231         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
36232         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
36233
36234         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
36235         Added new relocation types for start/end scope of a local variable.
36236
36237 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36238
36239         * object.h: add mono_object_domain() macro.
36240         * reflection.c: handle typespecs.
36241         * icall.c: MonoMethod::get_Name() implementation.
36242
36243 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36244
36245         * icall.c: String::GetHashCode() icall implementation.
36246
36247 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36248
36249         * icall.c: String::IndexOfAny icall.
36250         * object.c, object.h: make array->max_length more useful.
36251         Intrduced mono_object_class() and mono_string_length() macros.
36252
36253 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36254
36255         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
36256         instead of g_unichar_isdigit.
36257
36258 2002-04-11  Nick Drochak  <ndrochak@gol.com>
36259
36260         * icall.c: Implement a simple Double.ToString().
36261
36262 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36263
36264         * appdomain.h: only io-layer.h is supposed to be included.
36265         * icall.c: explicitly import environ. Fix warning.
36266
36267 2002-04-10  Nick Drochak  <ndrochak@gol.com>
36268
36269         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
36270                 return true even if it's not Daylight Savings time.
36271                 Only return false for the case where the function isn't
36272                 implemented for a plaform (read Windows).
36273
36274 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36275
36276         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
36277         data with a mutex.
36278
36279 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
36280
36281         * mempool.c (mono_mempool_alloc): only use g_malloc when
36282         absolutely necessary.
36283
36284 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36285
36286         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
36287
36288         * class.c (mono_class_vtable): use domain mempool to allocate vtable
36289         (mono_class_proxy_vtable): use domain mempool
36290
36291 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
36292
36293         * appdomain.h, appdomain.c: split initialization that requires the
36294         execution engine support into mono_runtime_init().
36295
36296 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36297
36298         * class.c (mono_class_init): don't include vtable inside MonoClass
36299         to save some memory, gather some statistics.
36300         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
36301
36302 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36303
36304         * icall.c: internalcall implementation for ValueType.Equals().
36305
36306 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
36307
36308         * object.c (mono_message_init): moved 
36309         (mono_runtime_exec_main): new arch. independent impl.
36310         (mono_runtime_invoke_array): new method - like
36311         mono_runtime_invoke, but you can pass an array of objects.
36312         (mono_remoting_invoke): new arch. independent impl.
36313         (mono_message_invoke): new arch. independent impl.
36314         (mono_runtime_class_init): new arch. independent impl.
36315         (mono_runtime_object_init): new arch. independent impl.
36316
36317 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36318
36319         * metadata.c, object.c, reflection.c: documented the exported
36320         functions.
36321
36322 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
36323
36324         * icall.c: simpler code to pass the assembly builder data to corlib.
36325         Implement GetNestedTypes() internalcall.
36326
36327 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36328
36329         * class.c: warn if a type can't be loaded.
36330
36331 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
36332
36333         * image.h: typedef MonoImageOpenStatus
36334         * types.h: removed unused file
36335         
36336 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
36337
36338         * icall.c: Enum_ToObject accepts enum value arguments.
36339
36340 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
36341
36342         * class.c: move initialization of properties, events and nested
36343         classes, so that they happen for interfaces, too.
36344
36345 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
36346
36347         * icall.c: cleanup some ugly casts in Array_SetValue*.
36348
36349 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36350
36351         * icall.c: the values array fro enums is of the correct type, now.
36352         Implement (correctly) getFullName instead of assQualifiedName for
36353         MonoType.
36354         * reflection.h, reflection.c: added mono_type_get_name ().
36355
36356 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36357
36358         * assembly.c, image.h: for each MonoImage, record from wich assembly
36359         it was loaded.
36360         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
36361         Make Type.Assembly work.
36362
36363 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
36364
36365         * debug-symfile.h: use char* instead of gpointer to avoid
36366         unnecessary casts.
36367
36368         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36369
36370         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36371         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36372
36373 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36374
36375         * icall.c (mono_message_init): impl. (code cleanup)
36376         (ves_icall_InternalExecute): impl. FieldGetter
36377
36378         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36379         defined we call all (non-static)methods through the vtable. 
36380
36381 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36382
36383         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36384         finalizer even though the memory is still referenced (and the chunk of
36385         memory is not freed).
36386
36387 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36388
36389         * assembly.c: fix brokeness.
36390
36391 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36392
36393         * class.c: kill some warnings. Check explicit interface method
36394         implementation also without considering the namespace.
36395         Load also literal strings in static class data.
36396
36397 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36398
36399         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36400         (default_assembly_name_resolver): Make the resolver take the
36401         "base" directory where the assembly was originally defined, so we
36402         can load DLLs that are in the same directory as the assembly that
36403         is being referenced.
36404
36405 2002-03-28  Dick Porter  <dick@ximian.com>
36406
36407         * file-io.h: 
36408         * file-io.c:
36409         * socket-io.c: 
36410         * unicode.h: 
36411         * unicode.c: Warning cleanups
36412
36413 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36414
36415         * object.h, reflection.h: use the correct type instead of MonoObject.
36416
36417 2002-03-28  Martin Baulig  <martin@gnome.org>
36418
36419         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36420         (mono_debug_update_symbol_file): Initialize classes if necessary.
36421
36422 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36423
36424         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36425         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36426
36427 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36428
36429         * assembly.h: fix function prototype.
36430         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36431         * mono-endian.h: use const cast.
36432
36433 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36434
36435         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36436
36437 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36438
36439         * loader.c: don't assert when a typeref can't be loaded, give
36440         a chance to the runtime to trow an exception instead.
36441         * loader.h: fix warning.
36442
36443 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36444
36445         * class.c (mono_class_proxy_vtable): added proxy support
36446
36447 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36448
36449         * icall.c: removed last of PAL calls, added System.Environment
36450         * file-io.h, file-io.c: MonoIO implementation
36451         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36452
36453 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36454
36455         * appdomain.c: do not use the byte marker in ldstr table lookup.
36456         * debug-helpers.c: allow two ':' to separate class and method name.
36457         * object.c: allocate arrays bounds with the GC, too.
36458         * verify: add a few more checks.
36459
36460 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36461
36462         * reflection.c: output also literal strings. Allocate parameter data
36463         with GC_malloc() (thanks, Martin, for catching this!).
36464
36465 2002-03-26  Martin Baulig  <martin@gnome.org>
36466
36467         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36468         include the `this' offset in the `param_offsets'.
36469
36470 2002-03-25  Martin Baulig  <martin@gnome.org>
36471
36472         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36473         mono_debug_get_class() function to get the classes. Added new
36474         relocation types for arrays and strings.
36475         (mono_debug_get_class): New static function to search in all
36476         referenced assemblies for a metadata token.
36477
36478         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36479
36480 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36481
36482         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36483         hold gc-allocated objects. Make the string heap a stream like the
36484         others. Removed duplicated code when writing stream info.
36485         Added asserts to catch possible buffer overflows. Set the sorted map
36486         for tables that need sorting. Added some documentation.
36487
36488 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36489
36490         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36491         for interned strings and vtables.
36492
36493 2002-03-24  Martin Baulig  <martin@gnome.org>
36494
36495         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36496         it in the array since it was created with g_slist_prepend().
36497
36498 2002-03-24  Martin Baulig  <martin@gnome.org>
36499
36500         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36501         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36502         (mono_debug_method_from_token): Renamed to
36503         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36504         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36505
36506         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36507         relocation types.
36508
36509         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36510
36511 2002-03-24  Martin Baulig  <martin@gnome.org>
36512
36513         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36514         (mono_debug_method_from_token): New func.
36515
36516         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36517         New interncall, calls mono_debug_local_type_from_signature().
36518         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36519         calls mono_debug_method_from_token().
36520
36521 2002-03-23  Martin Baulig  <martin@gnome.org>
36522
36523         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36524         specifies the number of bytes to be converted, not the array size.
36525         Return the number of chars, not the number of bytes.
36526         (ves_icall_iconv_get_chars): The `byteCount' argument
36527         specifies the number of bytes to be converted, not the array size.
36528
36529 2002-03-23  Martin Baulig  <martin@gnome.org>
36530
36531         * reflection.h (MonoReflectionSigHelper): New type.
36532
36533         * reflection.c (mono_reflection_sighelper_get_signature_local),
36534         (mono_reflection_sighelper_get_signature_local): New functions.
36535
36536         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36537         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36538         interncalls.
36539
36540 2002-03-23  Martin Baulig  <martin@gnome.org>
36541
36542         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36543         is_writeable is set.
36544         (mono_raw_buffer_update): New function to write the modified map
36545         back to disk.
36546
36547         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36548
36549         * debug-symfile.c (mono_debug_update_symbol_file): Call
36550         mono_raw_buffer_update() when done writing.
36551
36552 2002-03-23  Martin Baulig  <martin@gnome.org>
36553
36554         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36555
36556         * debug-symfile.c: Added support for arguments and local variables.
36557
36558 2002-03-23  Dick Porter  <dick@ximian.com>
36559
36560         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36561         protected by ifdefs, hence breaking the w32 build.
36562
36563 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36564
36565         * object.c: implement is_interned() the right way.
36566
36567 2002-03-21  Martin Baulig  <martin@gnome.org>
36568
36569         * debug-symfile.[ch]: New files to handle debugging information
36570         files. There's also support to dynamically update these symbol
36571         files to include machine dependent information.
36572
36573 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36574
36575         * threads.c (mono_thread_create): new function to create thread
36576         from C
36577
36578 2002-03-20  Martin Baulig  <martin@gnome.org>
36579
36580         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36581         method is a constructor.
36582         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36583         points to ves_icall_InternalInvoke().
36584
36585 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36586
36587         * file-io.c: Flush shouldn't throw exceptions.
36588
36589 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36590
36591         * file-io.c: FileStream flush support; FileSetLength now
36592         restores file pointer.
36593
36594 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36595
36596         * class.c: set image for pointer classes.
36597
36598 2002/03/19  Nick Drochak <ndrochak@gol.com>
36599
36600         * sysmath.c: Forgot one.
36601
36602 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36603
36604         * sysmath.c: Avoid redefining existing names.
36605
36606 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36607
36608         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36609         handled by runtime as icall rather than dllimport from libm.so
36610         * file-io.c, file-io.h: fixed handle argument type.
36611
36612 2002-03-18  Dick Porter  <dick@ximian.com>
36613
36614         * reflection.c (mono_image_get_type_info): rename interface to
36615         iface, because of "#define interface struct" on windows.
36616
36617 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36618
36619         * class.c, class.h: rename and export mono_ptr_class_get().
36620         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36621         * reflection.c, reflection.h, icall.c: better/saner type name
36622         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36623         method signatures.
36624
36625 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36626
36627         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36628
36629         * icall.c (ves_icall_InternalInvoke): impl.
36630
36631 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36632
36633         * reflection.c: output the interface map table, too.
36634
36635 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36636
36637         * class.c (class_compute_field_layout): separate computation of 
36638         static field layout
36639
36640 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36641
36642         * icall.c: added System.Buffer support.
36643         * file-io.c: moved file icalls from PAL to FileStream.
36644
36645 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36646
36647         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36648
36649 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36650
36651         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36652
36653 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36654
36655         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36656
36657 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36658
36659         * debug-helpers.{c,h}: moved here from monograph some useful functions
36660         to locate a method by name/signature in a class or image. Included
36661         also a small and flexible IL disassembler.
36662
36663 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36664
36665         * reflection.c: fixup tokens in methods with small header size, too.
36666
36667 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36668
36669         * object.c (mono_string_to_utf8): remove assert(!error), instead
36670         print a warning. 
36671
36672 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36673
36674         * icall.c: update to the new mono_Array_class_get interface.
36675
36676 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36677
36678         * appdomain.c, object.c: Boehm-GC enable.
36679         * icall.c: make get_data_chunk() support split data requests.
36680         Ensure a class is initialized in more cases. Return only the first
36681         property found in GetProperties() or the compiler gets confused. 
36682         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36683         * reflection.h, reflection.c: add fixup mechanism for field and method
36684         tokens. Initialize assembly->typeref in a single place. Output
36685         properties after events. Support custom attributes for events, too.
36686         Typo fix for paramter custom attrs.
36687
36688 2002-03-07  Martin Baulig  <martin@gnome.org>
36689
36690         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36691
36692 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36693
36694         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36695
36696 2002-03-06  Martin Baulig  <martin@gnome.org>
36697
36698         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36699         non-zero lower bounds. See testcases #F10-#F13.
36700
36701 2002-03-05  Martin Baulig  <martin@gnome.org>
36702
36703         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36704
36705         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36706         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36707         here.
36708         (ves_icall_System_Array_SetValue): Likewise.
36709         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36710         as argument and does the actual work. This function is used when copying a
36711         multi-dimensional array.
36712         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36713         now do all the widening conversions of value types.
36714         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36715
36716 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36717
36718         * class.c: remove some magic numbers and use the smbolic names,
36719         instead. Added init_events() to load event info at class init time.
36720         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36721         and mono_metadata_methods_from_event().
36722         * reflection.h, reflection.c: added support for writing out the evnets
36723         related information.
36724
36725 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36726
36727         * reflection.h, icall.c: use a different method (GetInterfaces)
36728         to gather interface info and add isbyref, isprimitive and
36729         ispointer to the ves_icall_get_type_info() return value.
36730
36731 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36732
36733         * class.h: stared adding support for events.
36734         * icall.c: split find_members implementation. Added debug icall to get
36735         the address of an object.
36736         * reflection.c: handle TypeBuilders in mono_type_get_object().
36737
36738 2002-03-01  Martin Baulig  <martin@gnome.org>
36739
36740         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36741         ArgumentOutOfRangeException(), not an ArgumentException().
36742         (ves_icall_System_Array_GetLowerBound): Likewise.
36743         (ves_icall_System_Array_GetValue): Improved argument checking.
36744         (ves_icall_System_Array_SetValue): Improved argument checking.
36745
36746 2002-03-01  Martin Baulig  <martin@gnome.org>
36747
36748         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36749         called with invalid arguments rather than just dying with g_assert().
36750         (ves_icall_System_Array_SetValue): Likewise.
36751         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36752         raise a NotImplementedException instead.
36753         (ves_icall_System_Array_GetLength): Added argument checking.
36754         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36755
36756 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36757
36758         * object.h (mono_assert): new macros mono_assert and
36759         mono_assert_not_reached
36760
36761 2002-02-28  Martin Baulig  <martin@gnome.org>
36762
36763         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36764         and "System::String::IsInterned" to "System::String::_IsInterned".
36765
36766 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36767
36768         * icall.c: remove hacks for typebuilder. Added icall to create a
36769         modified type from a tybebuilder.
36770         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36771         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36772         to create a backing MonoClass for a TypeBuilder.
36773
36774 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36775
36776         * class.c, class.h: more refactoring of class init.
36777         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36778
36779 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36780
36781         * marshal.c, marshal.h: start of marshaling interface.
36782
36783 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36784
36785         * icall.c: fix order in assembly qualified name icall.
36786
36787 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36788
36789         * class.c: do not free str, since we store it in the hash table.
36790         * reflection.h: add label field to MonoILExceptionInfo.
36791         * reflection.c: handle references to more than one assembly. Handle
36792         case when there isn't a module created in the assembly.
36793
36794 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36795
36796         * class.c: Fix typo. Start refactoring of class init code.
36797
36798 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36799
36800         * appdomain.c: exit with 1 on error.
36801         * class.c: we already have the name in MonoClassField.
36802         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36803         MonoStreamHeader instead of an offset of image->raw_metadata.
36804
36805 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36806
36807         * appdomain.c (mono_init): Be even more descriptive about the error.
36808
36809 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36810
36811         * appdomain.c: give the user an informative message when corlib can't
36812         be loaded.
36813
36814 2002-02-26  Martin Baulig  <martin@gnome.org>
36815
36816         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36817         New icall to get the time zone data.
36818
36819 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36820
36821         * reflection.c: set virtual and raw size of section correctly.
36822         * threads.c: transfer domain information to newly created threads.
36823
36824 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36825
36826         * class.c: when instancing a class in a domain, load the default
36827         vaules for static fields from the constant table. Fix System.Enum to
36828         not be an enum.
36829         * icall.c: implement Object::GetType() internalcall. Implemented
36830         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36831         Fixed checking of binding flags in find_members().
36832         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36833         * reflection.c: handle enumerations when writing to the constant
36834         table. Use a different object cache for types.
36835
36836
36837 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36838
36839         * object.c (mono_object_isinst): fix for arrays
36840
36841         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36842
36843 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36844
36845         * object.c: don't use mprotect ()  and fix intern pool hash table
36846         lookup for big endian systems.
36847
36848 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36849
36850         * icall.c: change type_is_subtype_of () signature.
36851
36852 2002-02-21  Mark Crichton  <crichton@gimp.org>
36853
36854         * rand.c, rand.h: Added random number generator for
36855         System.Security.Cryptography classes.
36856
36857         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36858
36859         * icall.c: Added System.Security.Cryptography calls.
36860
36861 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36862
36863         * class.c, icall.c, metadata.c: better support for pointer types.
36864         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36865         * reflection.c: Add support for getting custom attrs for properties
36866         and simplify some code.
36867
36868 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36869
36870         * icall.c: change getToken () and add custom attribute GetBlob()helper
36871         method.
36872         * reflection.h: add custom attrs array to the reflection builder structures.
36873         * reflection.c: encode and emit custom attributes for all the relevant
36874         reflection objects. Cache fieldref and methodref tokens. Change
36875         mono_image_create_token() interface to take a MonoDynamicAssembly.
36876         More complete custom attributes decoder. Load custom attributes for
36877         Assembly, Field, Method and Constructor objects, too. Make the
36878         returned array an Attribute[] one, not object[]. Added
36879         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36880         custom attribute constructor.
36881
36882 2002-02-20  Dick Porter  <dick@ximian.com>
36883
36884         * icall.c:
36885         * rawbuffer.c:
36886         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36887         problem code out for now).
36888
36889 2002-02-19  Radek Doulik  <rodo@ximian.com>
36890
36891         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36892
36893 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36894
36895         * icall.c: register the GetCustomAttributes method.
36896         * object.c, object.h: add mono_string_new_len ().
36897         * reflection.h, reflection.c: added mono_runtime_invoke(),
36898         mono_install_runtime_invoke(). Added
36899         mono_reflection_get_custom_attrs () to load custom attributes and
36900         create the attribute objects.
36901
36902 2002-02-19  Dick Porter  <dick@ximian.com>
36903         * threads-dummy-types.c:
36904         * threads-dummy-types.h:
36905         * threads-dummy.c:
36906         * threads-dummy.h:
36907         * threads-pthread-types.c:
36908         * threads-pthread-types.h:
36909         * threads-pthread.c:
36910         * threads-pthread.h:  Deleted obsolete files
36911
36912 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36913
36914         * class.c (mono_class_vtable): runtime init the class when we
36915         allocate static class data.
36916
36917         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36918
36919         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36920         and String - but we will need generic marshalling support in the
36921         future. 
36922         (mono_init): set the domain name in a ms compatible way
36923
36924         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36925         String[].
36926
36927 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36928
36929         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36930         for sizes
36931
36932         * appdomain.c (mono_domain_unload): impl.
36933
36934 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36935
36936         * appdomain.c, object.c: fix intern pool implementation.
36937         * class.c: fix alignment code.
36938
36939 2002-02-16  Radek Doulik  <rodo@ximian.com>
36940
36941         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36942         and s2 > s1, just copy lower bytes to be compatible with little
36943         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36944         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36945
36946         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36947         force big_endian to be 1 for big endian machines 
36948         (ves_icall_iconv_new_decoder): ditto
36949
36950 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36951
36952         * socket-io.c (convert_sockopt_level_and_name): If the system
36953         doesn't define SOL_IP or SOL_TCP, get them by hand using
36954         getprotobyname() and caching the values (because this could be a
36955         slow operation).
36956         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36957         Use the appropriate struct when the system does support it. Ie,
36958         not all systems have struct ip_mreqn so use struct ip_mreq when
36959         appropriate.
36960
36961 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36962
36963         * reflection.c: handle finally clauses.
36964
36965 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36966
36967         * socket-io.c: use g_snprintf() instead of snprintf.
36968
36969 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36970
36971         * reflection.c (mono_param_get_objects): Cast second argument to
36972         mono_method_get_param_names to a const char** to silence the
36973         compiler warning.
36974
36975         * appdomain.c (mono_domain_assembly_open): Put parens around the
36976         truth statement in the for-loop.
36977
36978         * unicode.c (iconv_convert): Got rid of a compiler warning about
36979         int i being unused when the system has a new iconv.
36980         (iconv_get_length): Same.
36981
36982         * image.c (load_class_names): Cast the second argument to
36983         g_hash_table_insert() to char* to hush compiler warnings about the
36984         arg being a const.
36985         (mono_image_open): Same here.
36986
36987         * socket-io.c: Don't conditionally include sys/filio.h or
36988         sys/sockio.h here anymore since we now get them from
36989         io-layer/io-layer.h
36990         (inet_pton): If the system doesn't support inet_aton, implement
36991         using inet_addr and also #define INADDR_NONE if it isn't defined
36992         by the system.
36993
36994 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36995
36996         * metadata.c, metadata.h: added function to get packing and size info
36997         of a typedef.
36998         * reflection.h, reflection.c: handle field RVA data. Save info about
36999         the table layout if needed. Assign typedef indexes to all the types
37000         before dumping the info about them to avoid forward reference problems.
37001
37002 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
37003
37004         * socket-io.c (convert_sockopt_level_and_name): ifdef
37005         SO_ACCEPTCONN because it is not defined on my system (old debian)
37006
37007 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
37008
37009         * opcode.c: use stddef.h to get NULL.
37010
37011 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37012
37013         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
37014         for FIONBIO, FIONREAD and SIOCATMARK.
37015         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
37016         define INADDR_NONE and besides, inet_addr() is deprecated and
37017         should not be used. Use inet_pton() instead - it also has the
37018         added bonus that it can easily handle IPv6 addresses as well.
37019         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
37020
37021 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
37022
37023         * decimal.c: remove _MSC_VER conditional.
37024
37025 2002-02-13  Dick Porter  <dick@ximian.com>
37026
37027         * socket-io.c: 
37028         * icall.c: Internal calls for Blocking, Select, Shutdown,
37029         GetSocketOption and SetSocketOption
37030
37031 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37032
37033         * assembly.cs: better resolver: use it instead of some kludgy
37034         code.
37035
37036 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
37037
37038         * reflection.c: the best way to speed-up the compiler is to avoid
37039         infinite loops.
37040
37041 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
37042
37043         * class.c (mono_class_vtable): changed the object layout
37044         (obj->vtable->class). 
37045         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
37046
37047 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37048
37049         * assembly.c: look for assemblies in the assembly dir, too.
37050
37051 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37052
37053         * class.c: fix thinko in mono_class_from_type().
37054
37055 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
37056
37057         * exception.h, exception.c: added TypeLoadException.
37058         * object.h, object.c: added mono_array_clone ().
37059         * icall.c: handle throwOnError in AssemblyGetType().
37060         Added Array.Clone().
37061         * opcode.h, opcode.c: use a single value for the opcode val.
37062         Compile fix for non-gcc compilers.
37063
37064 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
37065
37066         * opcodes.c, opcodes.h: export interesting info about opcodes.
37067
37068 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
37069
37070         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
37071         icalls. 
37072
37073         * class.c (class_compute_field_layout): set element_class for enums
37074         (mono_class_create_from_typedef): set element_class for normal classes
37075
37076         * icall.c (ves_icall_System_Enum_get_value): impl.
37077
37078         * class.c (mono_class_create_from_typedef): do not set valuetype
37079         flag for System.ValueType and System.Enum
37080
37081 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
37082
37083         * unicode.c (iconv_convert): fix big endian problem.
37084
37085 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
37086
37087         * class.c: add asserts if we are ever going to scribble over memory.
37088         * socket-io.c: not all systems have AF_IRDA defined.
37089
37090 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
37091
37092         * class.c (class_compute_field_layout): do not consider static
37093         fields to compute alignment
37094
37095 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
37096
37097         * appdomain.c (mono_appdomain_get): impl.
37098         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
37099
37100 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
37101
37102         * icall.c: ignore "file://" prefix when loading an assembly.
37103
37104 2002-01-23  Dick Porter  <dick@ximian.com>
37105
37106         * socket-io.c:
37107         * icall.c:
37108         * Makefile.am: Added socket support
37109
37110 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37111
37112         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
37113         code back.  This should return the assemblies that are loaded by
37114         the runtime on behalf of an application domain. 
37115
37116         The current implementation is still broken, it just returns every
37117         assembly loaded, but until we get real applications domain this
37118         will do.
37119
37120 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
37121
37122         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
37123         AppDomain object.
37124
37125 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37126
37127         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
37128         the mono_class_from_name lookup.
37129         (ves_icall_get_parameter_info): ditto.
37130         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
37131         method.
37132         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
37133
37134 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
37135
37136         * class.c: load also nested classes on class init.
37137         System.ValueType instance methods gets passed boxed
37138         values, unless methods in derived classed that get a pointer to the
37139         data.
37140         * icall.c: use better name parsing code in GetType().
37141         * image.c, image.h: add mono_image_loaded ().
37142         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
37143         * reflection.c, reflection.h: added mono_reflection_parse_type().
37144
37145 2002-01-22  Veronica De Santis <veron78@interfree.it>
37146
37147         * icall.c : Added mapping of internal calls for Manual and Auto reset events
37148         * threads.c : Added the implementation of internal calls for events
37149         * threads.h : Added prototypes of internal calls for events
37150         
37151 2002-01-21  Radek Doulik  <rodo@ximian.com>
37152
37153         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
37154
37155 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
37156
37157         * class.c (mono_class_init): set min_align to 1 (instead of 0)
37158         (mono_class_value_size): use min_align
37159
37160 2002-01-20  Dick Porter  <dick@ximian.com>
37161
37162         * threads.h:
37163         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
37164         so it compiles on w32.
37165
37166 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
37167
37168         * metadata.c (mono_type_stack_size): impl.
37169
37170         * class.c (mono_class_get_field): impl. memberref token
37171
37172 2002-01-16 Veronica De Santis <veron78@@interfree.it>
37173
37174         * icall.h : Added the internal calls mapping for CreateMutex_internal
37175                     and ReleaseMutex_internal.
37176         * threads.h : Added the prototype of mutexes internal calls.
37177         * threads.c : Added the implementations of mutexes internal calls.
37178
37179 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
37180
37181         * metaparse.h: removed unused file.
37182         * reflection.c, reflection.h: added stream_data_align () function 
37183         to align data in streams and keep stream aligned. Add support for
37184         exception support in method headers.
37185
37186 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
37187
37188         * unicode.c: make iconv_convert () return the number of bytess written
37189         in the output buffer.
37190
37191 2002-01-15  Dick Porter  <dick@ximian.com>
37192         * threads.c: Make the runtime's idea of infinite timeouts coincide
37193         with the class library's
37194
37195         Fix a particularly egregious bug in mono_thread_cleanup(). That
37196         code was so utterly bogus it must have been written on a Monday.
37197
37198 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
37199
37200         * reflection.h: add subtypes field to TypeBuilder.
37201         * reflection.c: encode constants for literal fields.
37202         Handle subtypes. Fix user string token (and add a zero byte)
37203         at the end.
37204         
37205 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
37206
37207         * class.c (mono_class_init): bug fix: assign slot numbers for
37208         abstract methods.
37209
37210 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37211
37212         * reflection.c: don't try to output a code RVA for abstract methods.
37213         Small fixes for method header format. Output parameter info to the
37214         ParamDef table. Save method overriding info to MethodImpl table.
37215         Fix property support. Allow typedef.extends to be a type in the
37216         building assembly.
37217         * verify.c: fix off-by-one error.
37218
37219 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
37220
37221         * class.c: fix mono_class_from_mono_type () for szarray types.
37222         Remove unused cache check in mono_class_from_type_spec().
37223         * icall.c: *type_from_name () functions handle simple arrays and byref.
37224         * reflection.c: handle byref and szarray types. Handle methods without
37225         body (gets P/Invoke compilation working). Handle types and fields in
37226         get_token ().
37227         * reflection.h: add rank to MonoTypeInfo.
37228
37229 2002-01-10  Dick Porter  <dick@ximian.com>
37230
37231         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
37232         internal calls
37233
37234 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
37235
37236         * icall.c: initialize class in type_from_handle ().
37237         Loop also in parent classes for get_method ().
37238         * reflection.c: properly encode class and valuetype types.
37239         Start on encoding TypeBuilder types. Handle fieldrefs.
37240         Use correct length when registering a user string.
37241         Handle ConstructorBuilder and MonoMethod in get_token ().
37242         Make mono_type_get_object () aware of cached types.
37243         * object.c: back out change to mono_string_new ().
37244
37245 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
37246         * object.c: mono_string_new should return a NULL when the string 
37247         passed in is NULL -- not try to deference it.
37248         
37249 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
37250
37251         * icall.c: hack to make IsSubType work for TypeBuilders.
37252         * reflection.c: emit constructors before methods.
37253         Retrieve param names in mono_param_get_objects().
37254
37255 2002/01/05  Nick Drochak  <ndrochak@gol.com>
37256
37257         * Makefile.am: fix list of headers and sources so automake 1.5
37258         doesn't complain. Removed \# at end of list.
37259
37260 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
37261
37262         * reflection.c: get token for a method ref. Set return type of
37263         constructor to void.
37264         * loader.c: debug message.
37265         * class.c: typo fix.
37266
37267 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
37268
37269         * icall.c: fix array init with rank > 1. FindMembers
37270         loops in parent class as well.
37271         * image.c: do not insert nested types in name cache.
37272         * reflection.c: warning fix.
37273         * reflection.h: add override method (for interface impl).
37274
37275 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
37276
37277         * metadata.c: fix customattr decoding.
37278
37279 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
37280
37281         * rawbuffer.cs: Added native Win32 implementation, avoids using
37282         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
37283
37284 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
37285
37286         * class.c: make the low-level routines handle the cache.
37287
37288 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
37289
37290         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
37291
37292 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
37293
37294         * class.c: fix mono_array_element_size() for objects.
37295         * class.h, class.c: add properties to MonoClass and load them
37296         at init time.
37297         * icall.c: check with isinst() when assigning a value to an array
37298         instead of requiring the classes to match exactly.
37299         Implemented icall for System.Type::GetType().
37300         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
37301         enums. Handle bindingflags when looking for methods and fields.
37302         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
37303         and mono_metadata_methods_from_property().
37304         * reflection.h, reflection.c: added structures for propreties,
37305         parameters and enums. Implemented mono_property_get_object() and
37306         mono_param_get_objects().
37307
37308 2001-12-18  Dick Porter  <dick@ximian.com>
37309
37310         * file-io.c: Use mono_string_to_utf16() instead of
37311         mono_string_chars()
37312
37313         * object.c: Added mono_string_to_utf16(), which copies the non
37314         NULL-terminated MonoString into a new double-null-terminated
37315         buffer.
37316
37317 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
37318
37319         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
37320
37321 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
37322
37323         * file-io.c: raise exceptions if handle is invalid.
37324
37325 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
37326
37327         * assembly.c: yet another check for mscorlib.
37328         * class.c, class.h: load nesting info for classes.
37329         * icall.c: many new functions to support the Reflection classes.
37330         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
37331         * reflection.h, reflection.c: mono_image_create_token(),
37332         mono_assembly_get_object(), mono_type_get_object(),
37333         mono_method_get_object(), mono_field_get_object(): methods to return
37334         objects that parallel the C representation of assemblies, types,
37335         methods, fields.
37336
37337 2001-12-11  Dick Porter  <dick@ximian.com>
37338
37339         * icall.c:
37340         * file-io.c: Internal calls for file IO.
37341
37342 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
37343
37344         * tabledefs.h: missing FileAttributes.
37345         * verify.h, verify.c: use is_valid_string () to simplify and check for
37346         valid strings more correctly. Fix warnings and speeling.
37347         Check more tables: Filed, File, ModuleRef, StandAloneSig.
37348         Check code: branches, maxstack, method calls.
37349
37350 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
37351
37352         * object.c (mono_object_allocate): removed static, so that the jit
37353         can allocate value types.
37354
37355         * icall.c (ves_icall_System_DateTime_GetNow): impl.
37356
37357 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37358
37359         * class.c: init enum types right away and register the
37360         token->MonoClass map in mono_class_create_from_typedef ().
37361         * verify.h, verify.c: first cut of the verifier.
37362         * pedump.c: add --verify switch to verify metadata tables.
37363         * tabledefs.h: add some missing enums.
37364
37365 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
37366
37367         * class.c (mono_install_runtime_class_init): impl.
37368         (mono_class_init): renamed mono_class_metadata_init to
37369         mono_class_init, also removed the metadata_inited flag
37370
37371         * object.c (mono_object_isinst): use faster algorithm
37372
37373 2001-11-30  Radek Doulik  <rodo@ximian.com>
37374
37375         * mono-endian.h: reverted last change
37376         added function prototypes
37377
37378         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37379         add mono-endian.c back
37380
37381         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37382         for unaligned access, I've mistaked it with endianess. I am
37383         sorry.
37384         (mono_read16): fix reverted endianess
37385         (mono_read64): ditto
37386         (mono_read32): ditto
37387
37388 2001-11-30  Dick Porter  <dick@ximian.com>
37389
37390         * exception.c: Implement mono_exception_from_name()
37391
37392 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37393
37394         * metadata.h, metadata.c: remove params_size and locals_size and their
37395         calculation from the metadata code: they are only usefult to the
37396         interp.
37397
37398 2001-11-29  Radek Doulik  <rodo@ximian.com>
37399
37400         * object.c (mono_ldstr): swap bytes here, it's probably not the
37401         best place, but works for me now, I'll redo it once I know mono
37402         better, also note that I add PROT_WRITE and don't reset back, also
37403         note that it's only affects big endians, so x86 should be OK
37404
37405         * mono-endian.h (read16): use just glib macros for both endians
37406
37407         * mono-endian.c: removed as glib macros are used in in
37408         mono-endian.h so we don't need to care about endianess for read
37409         macros as glib does that for us already
37410
37411 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37412
37413         * class.h, class.h: take minimum alignment into consideration so
37414         that the fields of a class remain aligned also when in an array.
37415
37416 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37417
37418         * loader.h, loader.c: add mono_method_get_param_names().
37419         * class.c: 0-init class fields.
37420
37421 2001-11-26  Dick Porter  <dick@ximian.com>
37422
37423         * icall.c:
37424         * threads-types.h:
37425         * threads.c: New file that handles System.Threading on all platforms
37426
37427         * object.c: 
37428         * object.h: Remove the synchronisation struct from MonoObject,
37429         replace it with a pointer that gets initialised on demand
37430
37431         * Makefile.am: Replace all the system-specific threading code with
37432         a single file that uses the new wrapper library
37433
37434 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37435
37436         * class.c, class.h: add mono_install_trampoline() so that the runtime
37437         can register a function to create a trampoline: removes the ugly
37438         requirement that a runtime needed to export arch_create_jit_trampoline.
37439         * object.h, object.c: added mono_install_handler() so that the runtime
37440         can install an handler for exceptions generated in C code (with
37441         mono_raise_exception()). Added C struct for System.Delegate.
37442         * pedump.c: removed arch_create_jit_trampoline.
37443         * reflection.c: some cleanups to allow registering user strings and
37444         later getting a token for methodrefs and fieldrefs before the assembly
37445         is built.
37446         * row-indexes.h: updates and fixes from the new ECMA specs.
37447
37448 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37449
37450         * class.h, class.c: add enum_basetype field to MonoClass.
37451         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37452         to get index in the constant table reated to a field, param or
37453         property.
37454         * reflection.h, reflection.c: handle constructors. Set public-key and
37455         version number of the built assembly to 0.
37456         * row-indexes.h: update from new ECMA spec.
37457
37458 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37459
37460         * class.h, class.c: add a max_interface_id to MonoClass.
37461         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37462         since it's used to do that. Added mono_type_type_from_obj().
37463         Make GetType() return NULL instead of segfaulting if the type was not
37464         found. Handle simple arrays in assQualifiedName.
37465         * object.h: add a struct to represent an Exception.
37466         * reflection.c: output call convention in method signature.
37467         Add code to support P/Invoke methods and fixed offsets for fields.
37468
37469 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37470
37471         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37472         the value.
37473         * icall.c: use mono_array_addr instead of array->vector: fixes the
37474         reflection image writing.
37475         * reflection.c: init call convention byte to 0 in method signature.
37476         Encode the property signature. Don't output property-related methods
37477         twice. Really process the properties for a type (don't cast a field to
37478         a property, my mom always told me that).
37479         Fix 64 bit issues in pointer alignment in a different and more
37480         readable way.
37481
37482 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37483
37484         * loader.h: Removed type class from MonoDefaults, added monotype
37485
37486         * loader.c: Loaded MonoType, removed loading of Type
37487
37488         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37489         and fills in System.Type._impl with a RuntimeTypeHandle rather
37490         than the actual MonoClass *
37491
37492         (ves_icall_type_from_handle): change from type_class to
37493         monotype_class
37494
37495         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37496         implemented
37497
37498         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37499         implemented
37500
37501         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37502
37503         (ves_icall_System_Reflection_Assembly_GetType): implemented
37504
37505         (ves_icall_System_MonoType_assQualifiedName): implemented
37506
37507         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37508
37509 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37510
37511         * assembly.c (mono_assembly_open): Implement a cache for the
37512         assemblies. 
37513
37514         (mono_assembly_close): only destroy the assembly when the last
37515         reference is gone.
37516         
37517 2001-11-09  Dick Porter  <dick@ximian.com>
37518
37519         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37520
37521 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37522
37523         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37524
37525 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37526
37527         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37528         from Martin Weindel.
37529         * object.h: add mono_string_chars ().
37530
37531 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37532
37533         * reflection.c (build_compressed_metadata): Eliminates warnings
37534         and uses 64-bit clean code.
37535
37536         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37537         (mono_type_equal): Change signature to eliminate warnings.
37538
37539 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37540
37541         * icall.c, loader.c: remove the internalcall array constructors.
37542         Changes to match the new MonoArray structure.
37543         * object.h, object.c: an array object doesn't allocate an extra
37544         vector. Add mono_array_new_full () to create jagged arrays easily.
37545
37546 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37547
37548         * metadata.h, metadata.c: add mono_metadata_field_info () to
37549         retreive all the info about a field from vairous tables.
37550         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37551         * class.h, class.c: augment MonoClassField with more info.
37552         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37553         policy and load a field's RVA if needed.
37554
37555 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37556
37557         * class.c (mono_class_metadata_init): create a trampoline for all
37558         virtual functions instead of actually compiling them.
37559
37560 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37561
37562         * class.h, class.c: include name in MonoClassField.
37563         * class.c: fix fundamental type of System.Object and System.String.
37564         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37565         tokens in ldtoken.
37566         * icall.c: remove internalcalls for the Reflection stuff that is now
37567         done in C# code.
37568         * loader.c: mono_field_from_memberref () implementation.
37569         * mono-endian.c: thinko (s/struct/union/g).
37570         * object.c, object.h: make the mono_string_* prototypes actually use
37571         MonoString instead of MonoObject.
37572         * reflection.c, reflection.h: updates for changes in the reflection
37573         code in corlib: we use C structures that map to the actual C# classes.
37574         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37575         fat method header if needed and use the info from the ILGenerator for
37576         methods. Handle fields in types. Misc fixes.
37577
37578 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37579
37580         * class.c (mono_class_metadata_init): bug fix: always allocate
37581         space for static class data
37582
37583 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37584
37585         * class.c (mono_compute_relative_numbering): use relative
37586         numbering to support fast runtime type checks.
37587
37588 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37589
37590         * class.c (mono_class_create_from_typeref): added debugging output
37591         to print class name when MonoDummy is returned instead of real class
37592
37593 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37594
37595         * class.c (mono_class_metadata_init): interface offset table now
37596         contains pointers into the vtable - this is more efficient for the jit
37597
37598 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37599
37600         * class.c (mono_class_metadata_init): use a temporary vtable (the
37601         old algorithm only worked for the interpreter, but not for the jit)
37602
37603 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37604
37605         * loader.c (method_from_memberref): use mono_class_get to get the
37606         class of an array instead of using System.Array directly.
37607         (mono_get_method): also add MEMBERREF methods to the method cache
37608         which usefull for arrays.
37609
37610 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37611
37612         * pedump.c (arch_compile_method): added to compute vtable entry
37613
37614         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37615         number of interfaces.
37616         
37617         * class.h: merged MonoArrayClass into MonoClass
37618
37619         * class.c (mono_class_create_from_typedef): compute the vtable size and
37620         allocate space to include the vtable inside MonoClass
37621         (mono_class_metadata_init): initialize the vtable
37622
37623 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37624
37625         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37626         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37627         * image.c: endian fixes by Laurent Rioux.
37628         * object.h, object.c: rename MonoStringObject to MonoString and
37629         MonoArrayObject to MonoArray. Change some function names to conform to
37630         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37631         guint16* as first argument, so don't use char*.
37632         Provide macros to do the interesting things on arrays in a portable way.
37633         * threads-pthread.c: updates for the API changes and #include <sched.h>
37634         (required for sched_yield()).
37635         * icall.c: updates for the API changes above.
37636         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37637         platforms that need them.
37638
37639 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37640
37641         * class.c: set the correct type for all the fundamental
37642         type when loading the class.
37643
37644 2001-10-05  Dick Porter  <dick@ximian.com>
37645
37646         * threads-pthread.c (pthread_mutex_timedlock): Simple
37647         compatibility version for C libraries that lack this call.
37648
37649 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37650
37651         * class.c: MonoTypes stored in MonoClass are stored as
37652         fundamental MonoTypes when the class represents a
37653         fundamental type (System.Int32, ...).
37654         The TypeHandle return by ldtoken is a MonoType*.
37655         * icall.c: ves_icall_get_data_chunk () write out all the
37656         PE/COFF stuff. Implement ves_icall_define_method (),
37657         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37658         * image.c: properly skip unknown streams.
37659         * loader.h, loader.c: add type_class to mono_defaults.
37660         * metadata.c, metadata.h: export compute_size () as
37661         mono_metadata_compute_size () with a better interface.
37662         Typo and C&P fixes.
37663         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37664         * reflection.c, reflection.h: many cleanups, fixes, output method
37665         signatures and headers, typedef and typeref info, compress the metadata
37666         tables, output all the heap streams, cli header etc.
37667         * row-indexes.h: typo fixes.
37668
37669 2001-10-04  Dick Porter  <dick@ximian.com>
37670
37671         * object.h: Add a synchronisation mutex struct to MonoObject
37672
37673         * object.c (mono_new_object): Initialise the object
37674         synchronisation mutexes
37675
37676         * icall.c: System.Threading.Monitor internal calls
37677         
37678         * threads-pthread.h:
37679         * threads-pthread.c: System.Threading.Monitor internal calls
37680
37681         * threads-types.h: New file, includes the system-specific thread
37682         structures
37683         
37684         * threads-pthread-types.h:
37685         * threads-pthread-types.c: New files, handle pthread-specific
37686         synchronisation types
37687
37688         * threads-dummy-types.h: 
37689         * threads-dummy-types.c: New files of dummy support for
37690         thread-specific types
37691
37692         * metadata.c:
37693         * image.c:
37694         * pedump.c: include mono-endian.h not endian.h
37695         
37696         * Makefile.am: More threads files.
37697         Name mono-endian.h not endian.h
37698
37699 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37700
37701         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37702         stuff and implement a few more bits.
37703         * icall.c: a field needs to be dereferenced twice. Do not use the same
37704         name for two variables in the same scope.
37705         * image.c, image.h: cleanups.
37706
37707 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37708
37709         * class.c (mono_class_metadata_init): bug fix: compute the right size
37710
37711 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37712
37713         * icall.c: implemented some of the Reflection internalcalls.
37714         * image.c, image.h: start writing out the PE/COFF image.
37715         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37716         that does the reverse than decode_blob_size ().
37717         * object.c: use mono_metadata_encode_value (). Move here
37718         temporary implementation of mono_string_to_utf8 ().
37719         * rawbuffer.c: make malloc_map static.
37720
37721 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37722
37723         * metadata.c: fix type comparison for arrays.
37724         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37725         Added a couple of new classes to monodefaults.
37726         * icall.c: added a couple of Reflection-related internalcalls.
37727         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37728         Added a byval_arg MonoType to MonoClass.
37729
37730 2001-09-28  Dick Porter  <dick@ximian.com>
37731
37732         * icall.c:
37733         * threads-pthread.h: 
37734         * threads-pthread.c: Implemented internal calls for
37735         LocalDataStoreSlot operations.  Applied mutexes around all shared
37736         data.  Reworked the thread creation and Start() operations to
37737         avoid a race condition.
37738         
37739         * threads-dummy.h:
37740         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37741
37742 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37743
37744         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37745
37746 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37747
37748         * class.c, loader.c: warn and return NULL instead of erroring out.
37749         * icall.c: added System.AppDomain::getCurDomain().
37750         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37751
37752 2001-09-25  Dick Porter  <dick@ximian.com>
37753
37754         * threads-pthread.h:
37755         * threads-pthread.c: Implemented timed thread joining and added
37756         System.Threading.Thread::Join_internal internal call
37757
37758         * icall.c: Added System.Threading.Thread::Join_internal internal call
37759
37760         * threads-dummy.h:
37761         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37762
37763 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37764
37765         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37766         mono_string_intern () to implement the semantics of the ldstr opcode
37767         and the interning of System.Strings.
37768         * icall.c: provide hooks to make String::IsIntern and String::Intern
37769         internalcalls.
37770
37771 2001-09-23  Dick Porter  <dick@ximian.com>
37772
37773         * threads-dummy.c: 
37774         * threads-dummy.h: New files of dummy threading routines
37775
37776         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37777         support code based on system specifics
37778
37779         Rename PTHREAD_LIBS to THREAD_LIBS
37780         
37781 2001-09-23  Dick Porter  <dick@ximian.com>
37782
37783         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37784         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37785         internal calls.
37786         (mono_thread_init): Set up a Thread object instance to return when
37787         the main thread calls Thread.CurrentThread
37788         (mono_thread_cleanup): Wait for all subthreads to exit
37789
37790         * icall.c: New internal calls for System.Threading.Thread::Sleep
37791         (including Schedule) and CurrentThread
37792
37793         * threads.h: New file, to insulate thread-specific stuff from the
37794         rest of the code
37795
37796 2001-09-21  Dick Porter  <dick@ximian.com>
37797
37798         * threads-pthread.h: 
37799         * threads-pthread.c: New file, for handling pthreads-style
37800         threading support.  Start() now starts a new thread and executes
37801         the ThreadStart delegate instance.
37802
37803         * icall.c: Added the internalcall for
37804         System.Threading.Thread::Start_internal
37805
37806         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37807
37808 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37809
37810         * loader.c: work around the different signatures for delegates
37811         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37812
37813 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37814
37815         * class.h, class.c: add mono_class_get_field_from_name ().
37816         * *: Fix C comments and other ANSI C issues.
37817
37818 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37819
37820         * endian.h, assembly.c: fix some endianness issues.
37821
37822 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37823
37824         * loader.h, load.c: add delegate_class to mono_defaults.
37825         Handle runtime provided methods in mono_get_method ().
37826
37827 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37828
37829         * loader.c (mono_get_method): use pinvoke for internal call
37830
37831         * icall.c: use pinvoke for internal call
37832
37833         * loader.c (method_from_memberref): set the method name
37834
37835 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37836
37837         * metadata.c: help the compiler generate better code for
37838         mono_class_from_mono_type ().
37839
37840 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37841
37842         * class.c (mono_class_metadata_init): delayed computing of the
37843         class size to mono_class_metadata_init ()
37844
37845 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37846
37847         * class.c, class.h: add an interfaces member to MonoClass.
37848         * image.c, image.h: add assembly_name field to MonoImage
37849         from the assembly table.
37850         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37851
37852 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37853
37854         * class.c: Handle Array in mono_class_from_mono_type ().
37855         * metadata.c, pedump.c: some endian fixes.
37856
37857 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37858
37859         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37860         * metadata.c: fix small problem introduced with the latest commit.
37861
37862 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37863
37864         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37865         We don't need a MonoMetadata pointer anymore to compare signatures in
37866         mono_metadata_signature_equal (), update callers.
37867         Reduced memory usage an number of allocations for MonoMethodHeader and
37868         MonoMethodSignature.
37869
37870 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37871
37872         * metadata.c: added compare for szarray.
37873
37874 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37875
37876         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37877         and add a couple more types to it and mono_defaults. Give an hint on
37878         classes that need implementing in our corlib and are referenced
37879         in mscorlib.
37880
37881 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37882
37883         * class.h, class.c: keep track if a class is also an Enum.
37884         * loader.c: Implement a couple more types for use in libffi
37885         marshalling. Gives better diagnostics when failing to dlopen
37886         a library. Set method->klass for P/Invoke methods, too.
37887
37888 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37889
37890         * class.c, class.h: add a MonoType this_arg to MonoClass that
37891         represents a pointer to an object of the class' type that
37892         can be used by the interpreter and later the type cache.
37893         Add best guess alignment info for valuetype objects.
37894
37895 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37896
37897         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37898         into MonoType: one less level of indirection and allocation and
37899         simplifies quite a bit of code. Added cache for MonoTypes that are
37900         used frequently, so that we don't need to allocate them all the time.
37901
37902 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37903
37904         * class.c (mono_class_create_from_typedef): System.Enum is also a
37905         value type, although it does not derive from System.ValueType
37906         (maybe a bug in the ms compiler?)
37907
37908         * metadata.c (mono_type_size): return the right size for value types
37909
37910         * loader.c (mono_get_method): only initialize method header if not abstract
37911
37912         * class.c (mono_class_from_mono_type): use mono_default values. 
37913
37914 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37915
37916         * *: use MonoClass pointers instead of <type_tokens>
37917         
37918         * class.h: new flag: metadata_inited.
37919
37920         * class.c (mono_class_metadata_init): impl.
37921         (mono_class_instance_size): impl.
37922         (mono_class_data_size): impl.
37923
37924 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37925
37926         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37927         MonoClass now has the name and name_space fields. 
37928         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37929         mono_get_method () takes and optional MonoClass as argument.
37930         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37931         instead that takes advantage of a map from class names to typedef
37932         tokens in MonoImage.
37933
37934 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37935
37936         * metadata.c: zero is not a valid alignment boundary.
37937         Merge MONO_TYPE_VOID in default decoding code.
37938
37939 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37940
37941         * image.h: merged MonoMetadata into MonoImage
37942
37943         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37944         identify the type of elements.
37945
37946 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37947
37948         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37949         * cil-coff.h: split MonoMSDOSHeader and add size info.
37950         * image.c: add some consistency checks.
37951         * metadata.c: fix row size computation: one programmer
37952         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37953         add explanation for the locator routine.
37954         Fix decoding of size in method header.
37955         
37956 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37957
37958         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37959         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37960         function from gnome-libs.  This uses the right path separator
37961         based on the OS, and also works around a bug in some systems where
37962         a double slash is not allowed. 
37963         (default_assembly_name_resolver): Use g_concat_dir_and_file
37964         (mono_assembly_open): ditto.
37965
37966 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37967
37968         * metadata.c (mono_metadata_signature_equal): impl.
37969
37970         * *: void is now a realy MonoType (instead of using NULL)
37971         
37972         * metadata.c (do_mono_metadata_parse_type): use
37973         mono_metadata_parse_type to parse void value.
37974
37975 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37976
37977         * metadata.c, metadata.h: in the signature and method header store
37978         only the space required for holding the loca vars and incoming arguments.
37979
37980 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37981
37982         * metadata.c (do_mono_metadata_parse_type): treat void like any
37983         other type (instead of assigning NULL);
37984
37985 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37986
37987         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37988
37989 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37990
37991         * image.c (do_mono_image_open): added a cache for arrays.
37992
37993 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37994
37995         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37996         decode a single column from a row in a metadata table and changes
37997         to take advantage of it in the typedef locator (gives a nice speed up).
37998         Store offset info for function params.
37999
38000 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
38001
38002         * image.h (MONO_IMAGE_IS_CORLIB): removed 
38003
38004 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
38005
38006         * assembly.c: how could mono_assembly_close () had ever worked?
38007         * metadata.c, metadata.h: provide offset info for local vars.
38008         Implement mono_type_size () to take care of alignment as well
38009         as size (it was mono_field_type_size in cli/class.c before).
38010
38011 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
38012
38013         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
38014
38015         * assembly.h (CORLIB_NAME): set to corlib.dll
38016
38017         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
38018
38019 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38020
38021         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
38022         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
38023         tokentype.h: massive namespace cleanup.
38024
38025 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
38026
38027         * metadata.h, metadata.c: decode exception clauses when parsing method header.
38028
38029 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
38030
38031         * metadata.c (mono_metadata_free_type): added check for type !=
38032         NULL (void) before calling mono_metadata_free_type()
38033
38034 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
38035
38036         * metadata.h, row_indexes.h: added header with enumerations to use
38037         to index in the columns from tables in metadata and to decode coded
38038         tokens: we should start using this instead of embedding magic numbers
38039         all over the code.
38040
38041 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
38042
38043         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
38044         Move metadata_t info from cli_image_info_t to MonoImage, where
38045         it's easily accessible. Changed all the uses accordingly.
38046         Added the method and class caches to MonoImage.
38047         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
38048         and mono_metadata_decode_value () signature to be more consistent
38049         with the other parse functions (and simplify code). Taken advantage
38050         of zero-length array allocation with GCC. Removed reduntant (and
38051         wrong) MonoFieldType struct and use MonoParam instead. Changed
38052         mono_metadata_parse_field_type () to use common code for parsing.
38053         Added mono_metadata_typedef_from_field () and
38054         mono_metadata_typedef_from_method () to lookup a typedef index from a
38055         field or method token.
38056         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
38057
38058 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
38059
38060         * metadata.c (mono_metadata_parse_field_type): Implement. 
38061         (do_mono_metadata_parse_type): Split engine from
38062         mono_metadata_parse_type, so that we can create smaller structures
38063         for things that just have one pointer to the MonoType (look at
38064         the MonoFieldType)
38065
38066 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
38067
38068         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
38069         as Jan Gray found out, it is incorrect. 
38070
38071 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
38072
38073         * assembly.c: Implement asssembly loading.  This loads an image
38074         and loads all the referenced assemblies.  Come to think of it, we
38075         could always do lazy loading of the assemblies. 
38076
38077         * image.c (mono_image_open): Keep loaded images in a hashtable.
38078
38079         * image.h (MonoImage): Add reference count.
38080
38081 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
38082
38083         * assembly.c (mono_assembly_open): Keep track of the file name in
38084         case the assembly has no ASSEMBLY table.
38085
38086         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
38087         from get.c here.
38088
38089 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
38090
38091         * metadata.c, metadata.h: decode local vars in method header
38092         parse function. Change callers accordingly.
38093
38094 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
38095
38096         * metadata.h, cil-coff.h: protect against multiple inclusion.
38097         Added some new structures to hold information decoded from metadata:
38098         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
38099         and relevant decoding/free functions.
38100         * metadata.c: implement decoding functions. Add warning for out of bounds
38101         index in mono_metadata_locate(). Implement mono_get_method () to retreive
38102         all the info about a method signature and invocation. Remove check on
38103         uninitialized local var in parse_mh() and fix memory leak.
38104
38105 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
38106
38107         * metadata.h: More macros.
38108
38109         * tokentype.h: New file.
38110
38111 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
38112
38113         * assembly.c: added a consistency check and initialize
38114         some structures with g_new0().
38115         * metadata.c: fixed a couple more bugs in table size computation
38116         and add other checks for out-of bound access to metadata.
38117
38118 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
38119
38120         * metatada.c: fix bugs computing table sizes. Spew a
38121         warning when index in string heap is out of bounds.
38122
38123 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
38124
38125         * metadata.h: Add a couple of macros to manipulate tokens. 
38126
38127 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
38128
38129         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
38130         cli_section_tables).
38131
38132 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
38133
38134         * metadata.c (mono_metadata_user_string): New function, provides
38135         access to the UserString heap. 
38136
38137 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
38138
38139         * metadata.c: Add inline documentation.
38140
38141 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
38142
38143         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
38144         files. 
38145
38146 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
38147
38148         * typeattr.h: New file, TypeAttribute flags. 
38149
38150 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
38151
38152         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
38153         mono_assembly_ensure_section): Section loading code.
38154         (load_section_tables): Load the sections.
38155
38156         * mono/metadata/metadata.c (mono_metadata_locate_token,
38157         mono_metadata_locate): Functions to locate the information
38158         definition given a token or a table and an index.
38159         (mono_metadata_compute_table_bases): New.
38160         (compute_size): New function to compute the sizes of the various
38161         tables.
38162
38163         * mono/metadata/metadata.h: Finish listing the different index
38164         types. 
38165
38166         * mono/metadata/pedump.c: Improve to dump new information.
38167
38168 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
38169
38170         * mono/metadata/metadata.c: Entered all the tables matching
38171         Beta2. 
38172
38173         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2