950ad67a5625fdf56bfbf3def4738b9f5fbf4283
[mono.git] / mono / metadata / ChangeLog
1 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
2
3         * loader.c (mono_loader_cleanup): Delete loader_mutex, the shutdown races should
4         be fixed now.
5
6 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
7
8         * loader.c (mono_loader_lock_if_inited): New helper function which can be called
9         during startup before the loader lock is initialized.
10         (mono_loader_unlock_if_inited): Ditto.
11
12
13 2010-07-21  Geoff Norton  <gnorton@novell.com>
14
15         * sgen-archdep.h: Fix the build on amd64-darwin.
16
17 2010-07-16  Zoltan Varga  <vargaz@gmail.com>
18
19         * object.c (mono_print_unhandled_exception): Fix a warning.
20
21 2010-07-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
22
23         * threadpool.c: use a monitor thread to start up new ones when needed.
24         Fixes bug #622398.
25
26 Thu Jul 15 18:44:44 CEST 2010 Paolo Molaro <lupus@ximian.com>
27
28         * reflection.c, class-internals.h, class.c, icall.c: support
29         reflection of default constant value for Re.Emit properties.
30
31 2010-07-14  Miguel de Icaza  <miguel@novell.com>
32
33         * reflection.c (load_cattr_value): Add support for encoding
34         DateTime constants into the blob.    Turns out that this is
35         required by .NET, it was only documented post 1.0.
36
37         * icall.c (ves_icall_type_GetTypeCodeInternal): Guard test for
38         System.Decimal and System.DateTime inside a mono_is_corlib_image
39         call.   A sample program showed that we could return the wrong
40         TypeCode just by creating a class with those names. 
41
42         * class.c (mono_is_corlib_image): Exposed this to other metadata/
43         code.
44
45 2010-07-14  Sebastien Pouliot  <sebastien@ximian.com>
46
47         * security-core-clr.c: Don't abort (only warn) if we cannot find 
48         a caller for relfecting code (transparent is assumed). Fix
49         get_method_access_exception to accept a NULL caller.
50
51 2010-07-14  Mark Probst  <mark.probst@gmail.com>
52
53         * sgen-gc.c: Heavy statistics on the internal allocator.
54
55 2010-07-13  Mark Probst  <mark.probst@gmail.com>
56
57         * sgen-marksweep.c, sgen-gc.h: Keep track of num_empty_blocks
58         properly and in a thread-safe way.
59
60 2010-07-13  Mark Probst  <mark.probst@gmail.com>
61
62         * sgen-gc.c, sgen-marksweep.c: Make object marking thread-safe.
63
64 2010-07-13  Mark Probst  <mark.probst@gmail.com>
65
66         * sgen-gc.c: Versions of safe_object_get_size() and
67         copy_object_no_checks() that work without the object's vtable
68         intact, by passing the correct vtable as an argument.
69
70 2010-07-13  Mark Probst  <mark.probst@gmail.com>
71
72         * sgen-marksweep.c: Make allocation of major sections thread-safe.
73
74 2010-07-13  Mark Probst  <mark.probst@gmail.com>
75
76         * sgen-gc.c, sgen-gc.h, sgen-los.c, sgen-major-copying.c,
77         sgen-marksweep.c: Update the heap boundaries thread-safe and lock
78         free if parallel mark is enabled.
79
80 2010-07-13  Mark Probst  <mark.probst@gmail.com>
81
82         * sgen-gc.c, sgen-gc.h, sgen-major-copying.c: Lock the internal
83         allocator if parallel mark (not committed yet) is enabled.
84
85 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
86
87         * reflection.c (inflate_mono_method): Handle dynamic
88         generic instances that have method.count set but
89         methods not. Fixes another crash from boo's test suite.
90
91 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
92
93         * icall.c (ves_icall_MonoMethod_get_base_method): If
94         the method slot is bigger than the class vtable, return
95         the original method. Makes booc work again.
96
97 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
98
99         * verify.c (mono_generic_param_is_constraint_compatible):
100         The candidate type itself might satisty the required
101         constraints.
102
103         Fixes #621599.
104
105 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
106
107         * reflection.c (fix_partial_generic_class): Inflate the
108         generic instance parent in case it was changed after
109         MonoGenericClass was instantiated.
110
111         Fixes one of the issues from #389886.
112
113 2010-07-10  Mark Probst  <mark.probst@gmail.com>
114
115         * sgen-gray.c: Store only a pointer to one end of the gray queue.
116
117 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
118
119         * loader.c (mono_method_signature_checked): Release the domain
120         lock on failure.
121
122 2010-07-10  Mark Probst  <mark.probst@gmail.com>
123
124         * sgen-gc.c: Store the forwarding address in the first word of an
125         object, where the forwarding bit is stored.
126
127 2010-07-10  Mark Probst  <mark.probst@gmail.com>
128
129         * gc.c, gc-internal.h, sgen-gc.c, sgen-gc.h, sgen-os-mach.c: An
130         interface to register our Mach exception thread which will not be
131         suspended by stop-the-world.
132
133 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
134
135         * loader.c (mono_get_method_constrained): Properly unlock the
136         domain lock on failure. Use checked variant of
137         inflate_generic_signature.
138
139 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
140
141         * loader.c (mono_method_signature_checked): Use checked
142         variant of inflate_generic_signature.
143
144         Fixes #606353.
145
146 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
147
148         * metadata.c (mono_metadata_parse_type_internal): Don't use
149         cannonical types when a transient type was requested.
150
151         Fixes #608626.
152
153 2010-07-10  Mark Probst  <mark.probst@gmail.com>
154
155         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
156         All functions that touch the gray queue directly or indirectly now
157         take it as an argument.
158
159 2010-07-10  Mark Probst  <mark.probst@gmail.com>
160
161         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
162         Put the gray queue data into a struct and pass it around.
163
164 2010-07-09 Rodrigo Kumpera  <rkumpera@novell.com>
165
166         * class.c (mono_method_can_access_method_full): Handle type
167         accessibility with very deep nested types.
168
169         * class.c (mono_method_can_access_field_full): Ditto.
170
171         Fixes #619300.
172
173 2010-07-10  Mark Probst  <mark.probst@gmail.com>
174
175         * sgen-gc.c, sgen-los.c, sgen-major-copying.c, sgen-marksweep.c,
176         sgen-scan-object.h: Use a macro for rounding up sizes and
177         addresses to ALLOC_ALIGN.
178
179 2010-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
180
181         * file-io.c: fix GetFileSystemEntries for patterns containing
182         directories.
183
184 2010-07-09  Mark Probst  <mark.probst@gmail.com>
185
186         * sgen-marksweep.c (major_finish_major_collection): Don't free
187         major heap blocks on 32 bit platforms because it can lead to
188         address space fragmentation.  We'll figure this out later.
189
190 2010-07-09  Mark Probst  <mark.probst@gmail.com>
191
192         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c: Free major
193         heap blocks for mark&sweep eventually.
194
195 2010-07-09  Mark Probst  <mark.probst@gmail.com>
196
197         * sgen-protocol.c: Fix build when binary protocol is disabled.
198
199 2010-07-09  Mark Probst  <mark.probst@gmail.com>
200
201         * sgen-protocol.c, sgen-gc.c: Make binary protocol lock-freely
202         thread-safe.
203
204 2010-07-08 Neale Ferguson <neale@sinenomine.net>
205
206         * sgen-archdep.h: Add support for s390x
207         * domain.c: Use gsize so that 64-bit big endian systems produce 
208         bitmap.
209
210 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
211
212         * pedump.c (verify_image_file): Initialize the vtable as well.
213
214 2010-07-07  Geoff Norton  <gnorton@novell.com>
215
216         * sgen-gc.h:  Not every system has sys/signal.h.  Prefer the posix
217         header.
218
219 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
220
221         * assembly.c (mono_assembly_load_reference): Replace a g_warning
222         with a mono_trace calls. This makes compiling MD a lot less scary.
223
224 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
225
226         * verify.c (do_stobj): Improve error message.
227
228 2010-07-08  Mark Probst  <mark.probst@gmail.com>
229
230         * sgen-gc.c (OBJ_COMPLEX_ARR_FOREACH_PTR): Don't load the vtable
231         from the object because it might have pinned/forwarding bits set.
232
233 2010-07-06  Zoltan Varga  <vargaz@gmail.com>
234
235         * Makefile.am (sgen_sources): Add missing sgen files.
236
237 2010-06-07  Martin Baulig  <martin@ximian.com>
238
239         * mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
240         New helper function since mono_thread_get_abort_signal() is now
241         internal.
242
243 2010-06-07  Martin Baulig  <martin@ximian.com>
244
245         * mono-debug.h, debug-mono-symfile.h: Kill glib dependencies.
246
247 2010-07-02  Michael Hutchinson  <mhutchinson@novell.com>
248
249         * object-internals.h, object.h: Make mono_string_to_utf_8_checked 
250         public, as mono_string_to_utf_8 is deprecated.
251
252         * object.(c|h): Added mono_object_to_string, a public helper function 
253         that calls ToString on a MonoObject and returns a MonoString.
254
255         * object.c (mono_print_unhandled_exception): Use mono_object_to_string.
256
257 2010-07-01  Zoltan Varga  <vargaz@gmail.com>
258
259         * filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
260         from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
261         match their declarations and vice-versa.
262
263
264 Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com>
265
266         * class-internals.h, domain-internals.h: mark functions that are
267         needed by the llvm module.
268
269 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
270
271         * assembly.c (framework_assemblies): Add 3.5 assemblies.
272
273         * domain-internals.h (MonoRuntimeInfo): Increase version_sets
274         by one to have room to remap 3.5 assemblies.
275
276         * domain.c (supported_runtimes): Add 3.5 remapping information.
277
278 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
279
280         * reflection.c (mono_image_create_token): Handle a
281         FieldBuilder from a different assembly.
282
283         Fixes #611836.
284
285 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
286
287         * verify.c (do_store_static_field): Improve error
288         message.
289
290 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
291
292         * assembly.c: Revert r159692 since it breaks loading 3.5
293         assemblies under 2.0.
294
295 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
296
297         * icall.c (ves_icall_Type_make_array_type): Raise a TLE if a
298         TypedByRef is passed.
299
300         * icall.c (ves_icall_Type_make_byref_type): Ditto.
301
302         * icall.c (ves_icall_Type_MakePointerType): Ditto.
303
304         Fixes #612780.
305
306 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
307
308         * assembly.c: Add a few more assemblies to the list of framework
309         assemblies.
310
311         Fixes #617714.
312
313 2010-06-28  Zoltan Varga  <vargaz@gmail.com>
314
315         * class.c (mono_class_get_vtable_entry): Avoid a crash if mono_class_setup_vtable ()
316         fails.
317
318 2010-06-25  Mark Probst  <mark.probst@gmail.com>
319
320         * class.c (mono_class_inflate_generic_method_full_checked): Added
321         a comment regarding a hack in mini-trampolines.c.
322
323 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
324
325         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Use SIZEOF_VOID_P instead of
326         sizeof(SIZEOF_VOID_P) which is 4.
327
328         * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c.
329
330 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
331
332         * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these
333         GCs too.
334
335         * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs.
336
337         * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move
338         objects.
339
340         * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in
341         desktop mode.
342
343 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
344
345         * *-gc.c (mono_gc_get_description): New function returning a human readable
346         description of the current GC.
347
348 2010-06-24  Miguel de Icaza  <miguel@novell.com>
349
350         * mono-hash.c: Moved here from mono/utils as this file is
351         GC-aware, and the utils directory is not.
352
353 2010-06-23  Miguel de Icaza  <miguel@novell.com>
354
355         * Makefile.am: Add support for building a sgen-aware versions of
356         the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la,
357         they share all the components of the default, but use a differen
358         set of CFLAGS to enable SGEN instead.
359
360         Put the BOEHM defines in the CFLAGS definition. 
361
362         * domain-internals.h (MonoJitInfo): this structure used to have
363         different sizes depending on the GC that was configured (Boehm vs
364         SGen).   I have removed this difference for the sake of avoiding
365         the complexity of dealing with the mono/arch directory requiring
366         GC-specific changes to their Makefiles.
367
368 2010-06-23  Mark Probst  <mark.probst@gmail.com>
369
370         * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.
371
372 2010-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
373
374         * metadata.c (mono_metadata_type_hash): Don't hash
375         the type kind for dynamic types since it can change.
376
377 2010-06-22 Geoff Norton  <gnorton@novell.com>
378
379         * sgen-os-mach.c: We cannot call malloc from the gc, so we need to use
380         alloca instead to prevent a deadlock.
381
382 2010-06-22  Geoff Norton  <gnorton@novell.com>
383
384         * domain.c: Allow gettings the tls key, since we need it for
385         cross thread tls poking in sgen-mach
386         * sgen-gc.(c|h), gc-internal.h: Rework sgen into having some functions
387         in external files for platform specific STW support.
388         * sgen-os-mach.c: Add a new mach kernel backend implementation of STW.
389         * sgen-os-posix.c: Move the existing posix signal based STW here.
390
391 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
392
393         * marshal.c (mono_array_to_lparray): Allow MONO_TYPE_PTR. Fixes #615952.
394
395 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
396
397         * object-internals.h: Map new PropertyBuilder fields.
398
399         * reflection.c (property_encode_signature): Emit an instance
400         signature if property's callconv is hasthis.
401
402         * appdomain.c: Bump corlib version.
403
404 2010-06-20  Jb Evain  <jbevain@novell.com>
405
406         * metadata-verify.c: do not consider the assembly invalid if it
407         doesn't have a #Blob stream as resource assemblies don't
408         necessarily have one.
409
410 2010-06-17  Geoff Norton  <gnorton@novell.com>
411
412         * sgen-archdep.h: sgen support for arm linux and darwin.
413
414 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
415
416         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
417         has a faulty header.
418
419 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
420
421         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
422         way to mono_gc_wbarrier_value_copy but takes a bitmap that
423         indicates which slots need a write barrier.
424
425 2010-06-14  Jonathan Pryor <jpryor@novell.com>
426
427         * Makefile.am (EXTRA_DIST): Add runtime.h.
428
429 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
430
431         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
432
433 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
434
435         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
436         IMT slot which is passed to callbacks.get_imt_trampoline.
437
438 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
439
440         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
441         imt trampoline per imt slot when using LLVM.
442
443 2010-06-10  Jonathan Pryor <jpryor@novell.com>
444
445         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
446           runtime.c:mono_runtime_shutdown().
447         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
448           AppDomain.ProcessExit event in all AppDomains.
449
450 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
451
452         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
453         done by the caller.
454
455 2010-06-05  Mark Probst  <mark.probst@gmail.com>
456
457         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
458         up freeing.
459
460 2010-06-05  Mark Probst  <mark.probst@gmail.com>
461
462         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
463         segments of memory at once, to reduce the number of mmap/munmap
464         calls.
465
466 2010-06-05  Mark Probst  <mark.probst@gmail.com>
467
468         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
469         allocations and distinguish between normal, degraded and pinned
470         allocations.
471
472 2010-06-05  Mark Probst  <mark.probst@gmail.com>
473
474         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
475         allocations count toward major collections and trigger major
476         collections from degraded allocations if appropriate.
477
478 2010-06-05  Mark Probst  <mark.probst@gmail.com>
479
480         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
481
482 2010-06-05  Mark Probst  <mark.probst@gmail.com>
483
484         * sgen-gc.c: Enable mark&sweep again.
485
486 2010-06-05  Mark Probst  <mark.probst@gmail.com>
487
488         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
489
490 2010-06-05  Mark Probst  <mark.probst@gmail.com>
491
492         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
493         major heap allowance for minor collections, instead of two
494         separate ones for small and large objects.  This reduces the
495         number of major collections.
496
497 2010-06-04  Marek Habersack  <mhabersack@novell.com>
498
499         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
500         the BFLAGS_IgnoreCase is raised
501
502 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
503
504         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
505         all information in a single structure. Return information about scopes as well.
506
507         * mono-debug.c (mono_debug_lookup_locals): Ditto.
508
509 2010-06-02  Geoff Norton  <gnorton@novell.com>
510
511         * appdomain.c: If we are running with IOMAP we might
512         have been provided a string that isn't case-aware for our file-
513         system, so we need to use io-portability to check if the file 
514         exists, rather than a simple glib test.
515
516         Fixes #608849
517
518 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
519
520         * verify.c (verify_generic_parameters): Verify if
521         there are not loops in constraints.
522
523 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
524
525         * verify.c (is_compatible_boxed_valuetype): Constaints
526         must be recursively checked if one generic argument
527         has a constraint on another.
528
529         Fixes #610625.
530
531 2010-05-31  Miguel de Icaza  <miguel@novell.com>
532
533         * console-unix.c (terminal_get_dimensions): Fix my previous
534         botched commit and return the actual value obtained from the ioctl.
535
536 2010-05-29  Mark Probst  <mark.probst@gmail.com>
537
538         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
539         references so that we don't have to do the cache-cold fetch of the
540         class in copy_object_no_checks().
541
542 2010-05-29  Robert Jordan  <robertj@gmx.net>
543
544         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
545         mono_marshal_string_to_utf16_copy () to avoid memory allocation
546         mismatches under Windows. Fixes pinvoke2:test_0_asany.
547
548 2010-05-28  Mark Probst  <mark.probst@gmail.com>
549
550         * sgen-gc.c: Change default nursery size to 4MB, because it
551         improves performance on many applications and benchmarks.
552
553 2010-05-28  Mark Probst  <mark.probst@gmail.com>
554
555         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
556         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
557         the GC descriptor by one bit, and don't encode the size for value
558         types not containing references.  Also get rid of
559         DESC_TYPE_STRING.
560
561 2010-05-28  Mark Probst  <mark.probst@gmail.com>
562
563         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
564         other than for remset processing.
565
566 2010-05-28  Mark Probst  <mark.probst@gmail.com>
567
568         * sgen-gc.c: More and better remset consistency checks.
569
570 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
571
572         * sgen-gc.c: Add a note about the int[] trick to avoid some
573         memset.
574
575 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
576
577         * sgen-gc.c (sort_addresses): Use heap sort since it has better
578         performance.
579
580         This helps programs with lots of threads or thread with big stacks
581         since the bottleneck the pin queue can get quite big.
582
583 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
584
585         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
586         a separate function called setup_fragment.
587
588         * sgen-gc.c (search_fragment_for_size_range): Variant of
589         search_fragment_for_size that does search for a secondary smaller
590         size.
591
592         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
593         for tlab allocation so small fragments are used.
594
595         This patch uses small fragments for tlab allocation when possible in order
596         to improve nursery utilization. With a fixed size tlab this patch is not very
597         usefull but once size gets dynamically adjusted, this will be invaluable.
598
599         Performance under pystone 500k is unchanged. Nursery utilization improves by
600         3.5% and 18 more fragments are used per minor GC.
601
602         Performance under modified binary-tree is unchanged. Nursery utilization
603         improves by 0.5% and 3 more fragments are used per minor GC.
604
605         These numbers make sense since as more pinning happens, more fragments are
606         created and so are the chances of having a bunch of small ones.
607
608 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
609         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
610         the current fragment when allocating a TLAB.
611
612         Reduces number of pystone 500k minor collections by 7%.
613
614 2010-05-25  Martin Baulig  <martin@ximian.com>
615
616         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
617
618         * debug-mono-symfile.c: Release memory from symfiles that were
619         loaded from memory.
620
621 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
622
623         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
624         during shutdown.
625
626 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
627
628         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
629         target class and remove some dead code.
630
631 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
632
633         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
634         the MonoTypes inside method headers can be freed when the header is freed.
635
636 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
637
638         * threadpool.c: Fix the DISABLE_SOCKETS build.
639
640 2010-05-19 Martin Baulig  <martin@novell.com>
641
642         Fix #604911.
643
644         * threads.c (wait_for_tids_or_state_change): Use an
645         alertable WaitForMultipleObjectsEx().
646         (wait_for_tids): Likewise.
647
648 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
649
650         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
651         icall.
652
653         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
654         gc tracked memory.
655
656         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
657         argument from a gchandle.
658
659         * marshal.c: Get rid of the delegate_target_locations hash table.
660
661         Fixes #605295.
662
663 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
664
665         * sgen-gc.c: Use _fast variants for string and array length.
666
667 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
668
669         * sgen-gc.c: Fix counters to be 64 bits.
670
671         * sgen-gc.c (dump_heap): Fix formating strings.
672
673 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
674
675         * sgen-gc.c (global_remset_location_was_not_added): New
676         function that implements a 2 element LRU cache for just
677         added remsets. It is used to avoid adding duplicate ones.
678
679         * sgen-gc.c (add_to_global_remset): Check cache before
680         adding new entry.
681
682         * sgen-gc.c (scan_from_remsets): Don't process global remsets
683         that fail the cache test.
684
685         * sgen-gc.c (scan_from_remsets): Simplify the global remset
686         loop removing one condtion that is not possible.
687
688         A 2 element LRU cache was chosen by profiling IronPython 2.6
689         pytones with 1M passes and corlib compilation.
690
691         For the ipy test duplication was originally 940.92, measured
692         by "Store remsets" divided by "Unique store remsets".
693
694         With a 2-element LRU, duplication went to 1.007. Without the
695         check in scan_from_remsets 1.438.
696
697         With a 16-elements LRU, duplication reduction was negligibe.
698         A single element cache was basically of no use.
699
700         With corlib compilation duplication went from  1.4 to 1.02.
701
702         Performance results is a 20% time decrease for ipy and 2%
703         with corlib.
704 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
705
706         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
707
708 2010-05-15  Geoff Norton  <gnorton@novell.com>
709
710         * mono-debug.c: Fix a leak of the global table on shutdown.
711
712 2010-05-15  Geoff Norton  <gnorton@novell.com>
713
714         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
715         to clean up MonoDebugSourceLocation's.
716
717 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
718
719         * class.c (mono_class_create_from_typedef): Fail a class
720         if there is a loop with its parent.
721
722         Fixes #598239.
723
724 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
725
726         * loader.c (mono_loader_set_error_type_load): Convert
727         a g_warninig to mono_trace_warning.
728
729 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
730
731         * class.c (mono_class_get_full): Release strings on failure
732         to avoid leaking them.
733
734 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
735
736         * class.c (mono_class_create_from_typedef): Only return
737         the class if no exceptions were detected.
738
739         * class.c (mono_class_create_from_typedef): Don't remove
740         broken classes from class_cache. Just set failure and
741         bail out.
742
743         This fixes a memory a memory leak where resolving the same
744         broken class multiple times resulted in a memory leak.
745
746         The right behavior would be to actually return the class
747         a let the caller figure it out.
748
749 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
750
751         * mono-ptr-array.h: Add mono_ptr_array_sort.
752
753         * reflection.c (mono_image_build_metadata): Replace that ugly
754         qsort call with mono_ptr_array_sort.
755
756 2010-05-13  Mark Probst  <mark.probst@gmail.com>
757
758         * sgen-gc.c: Switch to the copying major collector, because
759         Mark&Sweep is still buggy.
760
761 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
762
763         * reflection.c (mono_image_build_metadata): Don't put managed
764         references on non-tracked memory.
765
766 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
767
768         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
769
770 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
771
772         * icall.c: Switch to mono-ptr-array.h.
773
774 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
775
776         * Makefile.am: Add mono-ptr-array.h.
777
778         * mono-ptr-array.h: New header that implements
779         a GC tracked equivalent of g_ptr_array. 
780
781 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
782
783         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
784         method to avoid initializing the class.
785
786         Fixes #605115.
787
788 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
789
790         * icall.c (ves_icall_System_MonoType_getFullName): It
791         doesn't require to init the class.
792
793 2010-05-11  Miguel de Icaza  <miguel@novell.com>
794
795         * console-unix.c: Signal handlers now save and restore errno.   We
796         have never had a bug report about this, ioctl does change errno. 
797
798         Hide the unused method.   
799
800         Remove internal declarations from public headers.
801
802         Document what the signal handler is doing
803
804 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
805
806         * sgen-gc.c (clear_unreachable_ephemerons): Clear
807         unreachable keys with a tombstone.
808
809         * sgen-gc.c (mark_ephemerons_in_range): Ignore
810         tombstone keys.
811
812 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
813
814         * icall-def.h:
815         * gc-internals.h:
816         * gc.c: New GC:get_ephemeron_tombstone.
817
818 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
819
820         * appdomain.c (create_exceptions): Rename to
821         create_domain_objects. Create the ephemeron tombstone object.
822
823         * domains-internals.h (MonoDomain): Add new field for the
824         ephemeron tombstone.
825
826         * domain.c (mono_domain_free): Set ephemeron_tombstone to
827         NULL.
828
829 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
830
831         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
832         and dislinks must be processed before LOS since they
833         could end up with pointers to memory returned to the
834         OS.
835
836 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
837
838         * class.c (mono_class_alloc): New helper function to centralize memory allocation
839         for classes, allocates either from the image mempool or from the heap.
840
841         * class.c: Use mono_class_alloc to allocate memory owned by classes.
842
843         * metadata.c (free_generic_class_dependents): Free more items belonging to
844         generic classes.
845
846 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
847
848         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
849         as well. Fixes #604054.
850
851 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
852
853         * metadata-verify.c: MS doesn't mind duplicates in the
854         typeref table. Move it to full verification.
855
856         Fixes #600508.
857
858 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
859
860         * image.c (do_mono_image_load): Report verification
861         errors when loading an image fails.
862
863 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
864
865         * reflection.c (mono_type_get_object): Remove chunk of code
866         no longer in use.
867
868 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
869
870         * icall-def.h
871         * icall.c: Delete some unused icalls.
872
873 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
874
875         * appdomain.c (mono_domain_has_type_resolve): Check for
876         NULL domain objects to make pedump happy.
877
878         * object.c (mono_field_get_value): Assert on NULL object.
879         It's the caller resposibility to check for this.
880
881         * object.c (mono_field_get_value_object): Ditto.
882
883         Fixes #601384.
884
885 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
886
887         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
888         checks can avoid doing a mono_class_init.
889
890         * icall.c: Remove mono_class_init from a bunch of icalls that
891         don't need it.
892
893         Hopefully we're now lazy enough to fix most victims of #601431.
894
895 2010-05-07  Mark Probst  <mark.probst@gmail.com>
896
897         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
898
899 2010-05-07  Mark Probst  <mark.probst@gmail.com>
900
901         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
902
903 2010-05-07  Marek Habersack  <mhabersack@novell.com>
904
905         * culture-info-tables.h: updated to include en-TT culture. Fixes
906         bug #594035
907
908 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
909
910         Move mono_class_init from mono_type_get_object to icalls.
911         This causes massive memory savings for Assembly::GetTypes () and
912         make it fail a lot less due to missing dependencies.
913
914         This is a conservative, naive change as it doesn't remove some
915         mono_class_init from places that might not need them. Carefull
916         review of those should follow.
917
918         * reflection.c (mono_type_get_object): Don't mono_class_init the
919         returning type.
920
921         * reflection.c:
922         * cominterop.c:
923         * icall.c:
924         * marshal.c: Call mono_class_init in functions receiving a MonoType
925         object.
926
927         First step into fixing #601431.
928
929 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
930
931         * gc-internal.h: Add new functions required for ephemeron support.
932
933         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
934
935         * icall-def.h: Add GC::register_ephemeron_array.
936
937         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
938         under sgen. Its fields must not be marked.
939
940         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
941
942         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
943         handling finalizable objects. Clean dead ones after all finalizable
944         handling.
945
946         * sgen-gc.c (dump_heap): Add new kind of internal memory.
947
948         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
949         arrays from the dead domain.
950
951         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
952
953         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
954         whose keys are reachable.
955
956         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
957         list of live ephemeron arrays.
958
959 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
960
961         * class.c (mono_class_layout_fields): Don't perform alignment
962         if align is zero.
963
964         * class.c (mono_class_layout_fields): Init field related information
965         to sane defaults.
966
967 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
968
969         * verify.c (mono_verifier_verify_class): Verify the constraint
970         of generic type definitions.
971
972 2010-05-04  Mark Probst  <mark.probst@gmail.com>
973
974         * sgen-marksweep.c: Simplify free list maintenance in sweep.
975
976 2010-05-02  Mark Probst  <mark.probst@gmail.com>
977
978         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
979         major_do_collection() across the two major collectors.
980
981 2010-05-02  Mark Probst  <mark.probst@gmail.com>
982
983         * sgen-gc.c: Add heavy statistics counter for re-added global
984         remsets.
985
986 2010-05-02  Mark Probst  <mark.probst@gmail.com>
987
988         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
989         get rid of a division in critical code.
990
991 2010-04-29  Mark Probst  <mark.probst@gmail.com>
992
993         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
994         blocks for objects without references in mark&sweep, to improve
995         performance.
996
997 2010-04-28  Mark Probst  <mark.probst@gmail.com>
998
999         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
1000         statistics up-to-date.
1001
1002 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1003
1004         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
1005         heap-dump for mark&sweep.
1006
1007 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
1008
1009         * loader.c (mono_method_get_header): Move the is_inflated case before the
1010         wrapper case, as a method can be both.
1011
1012 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1013
1014         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
1015         separate pass to scan pinned and large object but use the gray
1016         queue like for regular objects.
1017
1018 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
1019
1020         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
1021         string.h for memmove.
1022
1023         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
1024         ipaddress_to_struct_in6_addr() is only needed when
1025         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
1026
1027 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1028
1029         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
1030         separate copy_object functions for major vs nursery.  Allows us to
1031         get rid of a few checks and the start and end parameters for many
1032         functions.
1033
1034 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1035
1036         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
1037         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
1038         collector.
1039
1040 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
1041
1042         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
1043         calling setup_mono_type () since the nested parent could recursively reference
1044         the nested class using generic constraints. Fixes #599469.
1045
1046 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1047
1048         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
1049         abstraction.
1050
1051 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1052
1053         * sgen-gc.c: Remove more unneeded code.
1054
1055 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1056
1057         * sgen-gc.c: Disable managed allocator and wbarrier when the
1058         binary protocol is enabled.
1059
1060 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1061
1062         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
1063
1064 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1065
1066         * sgen-gc.c: Remove a few commented out and unneeded bits.
1067
1068 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1069
1070         * threadpool.c: patch from Robert Nagy that fixes a nullref and
1071         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
1072
1073 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
1074
1075         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
1076         types.
1077
1078         Fixes #331126
1079
1080 2010-04-21  Mark Probst  <mark.probst@gmail.com>
1081
1082         * sgen-gc.c: Turn off semi-precise stack mark.
1083
1084 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
1085
1086         * reflection.c (mono_custom_attrs_from_index): Use right function
1087         to free 'list' (i.e. g_list_free) if the verifier fails.
1088
1089 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1090
1091                 * verify.c: Handle the case where mono_type_get_underlying_type_any
1092                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
1093                 and MONO_TYPE_VALUETYPE in those case.
1094
1095                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
1096
1097                 Hopefully Fixes #564253.
1098
1099 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
1100
1101         * domain-internals.h: made threadpool_jobs volatile.
1102         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
1103         all local jobs.
1104         * threadpool.c:
1105                 -When two threads try to initialize the socket IO pool,
1106                 the second one waits until the intialization is finished
1107                 instead of continuing right away.
1108                 -Add checks for domain unload: no items added in this case.
1109                 -Only measure the time every 10 elements added to the queue.
1110                 This is an experiment since linux x86 gettimeofday() sucks.
1111                 -Create new thread if there are none waiting for work items.
1112                 -There was a missing decrement of the busy threads.
1113                 -Make sure the local queue is cleaned up before exiting the
1114                 thread when the program ends.
1115
1116 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1117
1118         * reflection.c (mono_type_get_object): Normalize generics types
1119         as to how managed code expect them to be. A generic instance over
1120         the GTD arguments must have the same mirror as the GTD itself.
1121
1122         Fixes #473289.
1123
1124 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
1125
1126         * locales.c: Implement support for DISABLE_NORMALIZATION.
1127
1128 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1129
1130         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
1131         since it is not a MonoMethod.
1132
1133 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
1134
1135         * icall-def.h: Add get_RequiresElevatedPermissions icall to
1136         System.Security.SecurityManager - used only by Moonlight
1137         * security-core-clr.c|h: Add Elevated Trust/Permission support
1138         for CoreCLR / Moonlight
1139
1140 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1141
1142         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
1143         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
1144
1145 2010-04-16  Marek Habersack  <mhabersack@novell.com>
1146
1147         * mono-perfcounters.c: added code for the "Mono
1148         Memory/Total Physical Memory" performance counter.
1149
1150         * mono-perfcounters-def.h: added definition of the "Mono
1151         Memory/Total Physical Memory" performance counter.
1152
1153 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1154
1155         * class.c (mono_class_get_method_by_index): Return NULL
1156         on type load failures.
1157
1158 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1159
1160         * class.c (mono_class_from_typeref): Check if the supplied
1161         image has an assembly bound to it.
1162
1163         Fixes #567884.
1164
1165 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1166
1167         * loader.c (mono_method_get_signature_full): Use new function
1168         inflate_generic_signature_checked to check for errors.
1169
1170         Fixes #560839.
1171
1172 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1173
1174         * loader.c (inflate_generic_signature): Add _checked variant
1175         and move this function to use it.
1176
1177 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1178
1179         * class.c (mono_class_setup_vtable_general): Use error checking
1180         version of mono_class_inflate_generic_method_full.
1181
1182         Fixes #596975.
1183
1184 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1185
1186         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
1187         error handling passing MonoError around.
1188
1189         Fixes #560336.
1190
1191 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1192
1193         * socket-io.c: make GetHostByName ("") work on windows.
1194         Fixes bug #456723.
1195
1196 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1197
1198         * object-internals.h:
1199         * threads.c: use a spin lock when accesing the per-thread appdomain
1200         list.
1201
1202 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1203
1204         * threads.c: no need to take the threads lock in push/pop appdomain.
1205
1206 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1207
1208         * reflection.c (_mono_reflection_parse_type): MS supports
1209         non-assembly-qualified types in a generic type parameter list
1210         when enclosed in '[]' (which signals that they should be a fqn).
1211
1212         This breaks ECMA specs for how type names are encoded in cattr
1213         blobs but F# does it.
1214
1215         Fixes #576342.
1216
1217 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1218
1219         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
1220         for instance methods/ctors.
1221
1222         Fixes #422113.
1223
1224 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1225
1226         * reflection.c: Use the new verifier support for checking
1227         custom attributes.
1228
1229         Fixes #595306.
1230
1231 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1232
1233         * metadata-verify.c: Implement structural verification
1234         of custom attributes. This check requires access to the
1235         loader since to resolve the size of an enum we have to
1236         look it up.
1237         We don't check if named argumenments are encoded in a
1238         compatible fashion to their underlying field/prop.
1239         Maybe we should?
1240
1241         * verify-internals.h: Add two new cattr verification API.
1242
1243 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1244
1245         * metadata-verify.c (decode_signature_header): Fix signature.
1246
1247 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1248
1249         * verify.c (mono_verifier_is_enabled_for_method): Handle
1250         assembly less images.
1251
1252         * verify.c (mono_verifier_is_class_full_trust): Ditto.
1253
1254 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1255
1256         * loader.c (mono_method_signature_checked): Properly
1257         init MonoError.
1258
1259         * loader.c (mono_method_signature): It's the calee
1260         resposibility to init the error object.
1261
1262 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1263
1264         * metadata-verify.c (decode_signature_header): Do proper
1265         overflow checking.
1266
1267 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
1268
1269         * reflection.c: maintain the invariants required by
1270         mono_class_layout_fields() also in typebuilder_setup_fields ().
1271
1272 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
1273
1274         * security-core-clr.c: Call mono_class_setup_methods in 
1275         get_default_ctor before checking klass->methods. Fix typo in
1276         comment
1277
1278 2010-04-10  Jb Evain  <jbevain@novell.com>
1279
1280         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
1281         add .net 4.0 RTM version.
1282
1283 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1284
1285         * reflection.c (resolve_object): Properly inflate generic
1286         methods when a context is supplied.
1287
1288         Fixes #591226.
1289
1290 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1291
1292         * verify.c (mono_method_verify): A switch op don't empty
1293         the stack for the next one. Fixes a bug when running fsi
1294         under --verify-all.
1295
1296 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1297
1298         * metadata-verify.c (is_valid_standalonesig_blob): Accept
1299         fields as valid standalone sig too. F# does generate them.
1300
1301         * metadata-verify.c (verify_typedef_table_full): Ignore
1302         what <module> extends.
1303
1304 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1305
1306         * verify.c (do_invoke_method): It's ok to do use call with
1307         virtual, non-final methods if their class is sealed.
1308
1309 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1310
1311         * icall.c (ves_icall_MonoField_GetValueInternal): This function
1312         is a near identical copy of mono_field_get_value_object. So simply
1313         call it.
1314
1315         * object.c (mono_field_get_value_object): Handle literal fields
1316         on open generic classes.
1317
1318         Fixes #594942.
1319
1320 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1321
1322         * reflection.c (mono_reflection_create_runtime_class): Setup
1323         parent/supertype information again since it can be changed
1324         without notice.
1325
1326 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1327
1328         * verify.c (verify_type_compatibility_full): Properly handle
1329         stores between arrays of primitives.
1330
1331         Fixes the verifier side of #555950.
1332
1333 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1334
1335         class.c (mono_bounded_array_class_get): Properly init
1336         cast_class to take the fact that uint[] and int[] can be
1337         casted between each other.
1338
1339         Fixes #555950.
1340
1341 2010-04-07  Geoff Norton  <gnorton@novell.com>
1342
1343         * domain.c: Avoid a deadlock on osx.  Fixes #565765
1344
1345 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1346
1347         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
1348         builders. Fixes #594464.
1349
1350 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1351
1352         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
1353         waiting for all threads to suspend, as those threads can't be suspended.
1354
1355 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1356
1357         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
1358         to avoid crashes on newly created threads.
1359
1360 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1361
1362         * file-io.c: reset the MonoIOStat structure in case of error.
1363         Fixes bug #582667.
1364
1365 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
1366
1367         * class.c (print_implemented_interfaces): Print proper type name.
1368
1369         * class.c (mono_class_setup_vtable): Don't try that hard to produce
1370         the override map for generic instances since it later ignored.
1371
1372         * class.c (mono_class_implement_interface_slow): Don't break for
1373         dynamic generic instances.
1374
1375         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
1376
1377         * reflection.c (mono_reflection_method_get_handle): New method that
1378         resolves a method handle.
1379
1380         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
1381         case when we override methods from a dynamic generic instance interface.
1382
1383         Fixes #575941.
1384
1385 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1386
1387         * threadpool.c: don't attempt to close the pipe when it has not been
1388         created.
1389
1390 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1391
1392         * threadpool.c: if there are no waiting threads, try to start a new
1393         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1394         No need to use InterlockedCompareExchange to read volatile variables.
1395
1396 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1397
1398         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1399         and reference types that point to the same class.
1400
1401         Fixes #565598.
1402
1403 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1404
1405         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1406         when verifying compatibility between a generic instance and a generic
1407         parameter.
1408
1409         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1410
1411         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1412         name.
1413
1414         Fixes #587849.
1415
1416 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1417
1418         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1419
1420 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1421
1422         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1423
1424 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1425
1426         * process.c: when cross-compiling with MinGW, force GetProcessId
1427         lookup using GetProcAddress.
1428
1429 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1430
1431         * sgen-gc.c: parse_environment_string_extract_number() must be
1432         static.
1433
1434 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1435
1436         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1437         gray_object_dequeue(), to make sure they're inlined.
1438
1439 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1440
1441         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1442         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1443
1444 2010-04-02  Jb Evain  <jbevain@novell.com>
1445
1446         * exception.c: remove dead code.
1447
1448 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1449
1450         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1451         with mono-gc.h.
1452
1453 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1454
1455         * sgen-gc.c: Make the nursery size adjustable by the
1456         MONO_GC_PARAMS environment variable.
1457
1458         Code is contributed under MIT/X11 license.
1459
1460 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1461
1462         * threadpool.c: threadpool threads wait is alertable.
1463         Fixes bug #592964.
1464         Reduced the stack size of the *poll_wait thread.
1465
1466 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1467
1468         * exception.c|metadata-internals.h: Add new mono_get_exception_
1469         field_access_msg and mono_get_exception_method_access_msg 
1470         functions that accept a const char* parameter to provide more 
1471         details when the exception is thrown.
1472         * security-core-clr.c|h: Rework code to allow logging exceptions
1473         (export MONO_LOG_MASK="security") and to supply more details in
1474         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1475         mono_security_core_clr_is_field_access_allowed and 
1476         mono_security_core_clr_is_call_allowed to return an exception,
1477         with messages and logging, that can be emitted by method-to-ir.c
1478
1479 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1480
1481         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1482         pinned object.
1483
1484 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1485
1486         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1487         the assembly name is not well formed utf8. Fixes #567882.
1488
1489 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1490
1491         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1492         the generic parameters from the builder. Fixes #473298.
1493
1494 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1495
1496         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1497
1498         * marshal.c (emit_marshal_boolean): Eliminate possible
1499         uninitialized local warning. 
1500
1501 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1502
1503         * class.c (mono_class_init): Postpone coreclr inheritance check
1504         until the end of the initialization (so we can check up the 
1505         default ctor manually for the core-clr inheritance rules).
1506         * security-core-clr.c: Add the missing (undocumented) checks on
1507         default constructors when verifying inheritance rules.
1508
1509 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1510
1511         * domain-internals.h (MonoJitExceptionInfo): Add new field
1512         handler_end to the data union. To be used to point the end
1513         of a finally block.
1514
1515 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1516
1517         * reflection.c: Add support for new v4 type
1518         System.Reflection.MonoModule that is the concrete version
1519         of Module which is abstract unver v4.
1520
1521 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1522
1523         * class.c (mono_class_init): Don't set class failure after
1524         inited = 1 is set. It must be done before.
1525
1526 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1527
1528         * mono-config.c: Add support for OS "haiku"
1529         * ChangeLog: Fix UTF-8 encoding
1530
1531         Code is contributed under MIT/X11 license.
1532
1533 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1534
1535         * console-unix.c: fixed include logic for sys/ioctl.h.
1536
1537 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1538
1539         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1540         systems.
1541
1542 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1543
1544         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1545         unfinished/broken typebuilders.
1546
1547 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1548
1549         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1550         for the minor section allowance.
1551
1552 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1553
1554         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1555         "NoOptimization".
1556
1557 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1558
1559         * sgen-gc.c: Count bytes allocated with heavy statistics.
1560
1561 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1562
1563         * sgen-gc.c: More detailed time statistics.
1564
1565 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1566
1567         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1568         fix the user defined mark interface to pass a pointer
1569         to the object location and not the object itself.
1570
1571 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1572
1573         * reflection.c (mono_method_body_get_object): Release
1574         the method header before the call to CACHE_OBJECT since
1575         this is a macro that returns.
1576
1577 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1578
1579         * class.c (inflate_generic_type): mono_metadata_type_dup
1580         already dupes array information, the g_memdup was just
1581         leaking memory.
1582
1583 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1584
1585         * verify.c: Add stack_peek function. Fix CEE_DUP
1586         to not read from invalid memory if push did expand
1587         the stack.
1588
1589 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1590
1591         * verify.c: Remove old table verification code that has
1592         been superseeded by the new metadata verifier.
1593
1594         * verify.h: Remove mono_image_verify_tables from the public
1595         API.
1596
1597         * pedump.c: Fix for removed bits.
1598
1599 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1600
1601         * verify.c: Allocate stack slows lazily to reduce stack usage
1602         in case of methods with huge stacks. Reduces memory consumption
1603         for mcs yyparse from 459Mb to 1.8Mb.
1604
1605 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1606
1607         * threadpool.c: don't try executing items from domains being
1608         unloaded. Fixes appdomain-async-invoke test.
1609
1610 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1611
1612         * threadpool.c: spin while the threadpool initializes.
1613         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1614         down, don't do anything.
1615
1616 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1617
1618         * threads.c (mono_thread_create_internal): Set the GC type of the
1619         threads_starting_up hash table.
1620
1621 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1622
1623         * threadpool.c: reset 'state' to avoid returning non-null when the
1624         event type is not found.
1625
1626 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1627
1628         * sgen-gc.c: make copy_object () take the address of the
1629         slot holding the reference. This allows saving memory stores
1630         when not needed and it allows keeping track of oldspace->nursery
1631         references for the card table code.
1632
1633 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1634
1635         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1636
1637         Code is contributed under MIT/X11 license.
1638
1639 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1640
1641         * object.c, threads.c, threads-types.h, threads.h: make the
1642         managed thread local storage references precisely tracked.
1643
1644 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1645
1646         * threadpool.[ch]: reworked the threadpool:
1647                 -Threadpool threads use a work-stealing queue. Adding a work
1648                 item from a threadpool thread will queue it in the thread
1649                 local queue without locking (in most cases).
1650                 -epoll events are coalesced before being added to the IO
1651                 queue.
1652                 -Dynamically change the number of active threads
1653                 -Changed the global queue to be more GC friendly
1654
1655         * class-internals.h: add 2 new performance counters for the number of
1656         threads in the threadpool and the IO threadpool.
1657
1658         * object-internals.h: new field in MonoAsyncResult.
1659         * icall-def.h: new internal call for queueing work items.
1660
1661         * Makefile.am: add 2 new files.
1662
1663         * appdomain.c: bump up corlib version.
1664
1665         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1666
1667         * mono-perfcounters-def.h:
1668         * mono-perfcounters.c: added 2 new performance counters.
1669
1670 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1671
1672         * sgen-gc.c: More FIXME/TODO updates.
1673
1674 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1675
1676         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1677         function mono_gc_invoke_with_gc_lock() which invokes a function
1678         with the guarantee that no collection will occur during its execution.
1679
1680 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1681
1682         * sgen-gc.c: Update a few comments.
1683
1684 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1685
1686         * reflection.c: Add support for new v4 type
1687         System.Reflection.MonoAssembly that is the concrete version
1688         of Assembly which is abstract unver v4.
1689
1690 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1691
1692         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1693         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1694
1695         Expose a few macros that are needed for SR but not SRE to the
1696         world (previous inside the SRE ifdef)
1697
1698 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1699
1700         * sgen-gc.c (gc_register_current_thread): We need
1701         stack_start_limit as well in the non-attribute pthread case.
1702
1703 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1704
1705         * threads.c: Fix windows build.
1706
1707 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1708
1709         * thread-types.h: Add mono_thread_resume_interruption.
1710
1711         * threads.c: Add mono_thread_resume_interruption, this
1712         function should be called after the last protected handler
1713         found at interruption time has finished.
1714
1715 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1716
1717         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1718         Check MonoInternalThread's ::state instead of ::abort_exc
1719         since the later can be lazily created.
1720
1721         This is specially problematic when running a finally block
1722         under AbortRequested state. ResetAbort must work, but the
1723         abort_exc object has not been created because interruption
1724         has not began.
1725
1726 2010-03-22  Geoff Norton  <gnorton@novell.com>
1727
1728         * locales.c: Its possible for CFStringGetCStringPtr
1729         to return null and not convert encodings.  Use
1730         CFStringGetCString instead.
1731
1732 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1733
1734         * class-internals.h, class.c, object.c: introduce compressed
1735         interface bitmaps (for now only under small config): this saves
1736         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1737         startups.
1738
1739 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1740
1741         * mono-debug.c: don't try to get the method header, it causes a
1742         deadlock and it is not used for anything anymore.
1743
1744 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1745
1746         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1747         broken by the last change.
1748
1749 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1750
1751         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1752         SOCK_RDM.
1753         
1754         Code is contributed under MIT/X11 license.
1755
1756 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1757
1758         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1759         nursery.
1760
1761         Code is contributed under MIT/X11 license.
1762
1763 2010-03-19  Martin Baulig  <martin@ximian.com>
1764
1765         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1766         dummy field, containing an empty string.
1767         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1768
1769
1770 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1771
1772         * class.c: setup_interface_offsets() refactor to not call
1773         mono_class_get_implemented_interfaces () more times than needed and
1774         to reduce the runtime memory requirements to be O(num_interfaces)
1775         instead of O(max_interface_id).
1776
1777 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1778
1779         * mono-mlist.[ch]: add mono_mlist_set_next ().
1780
1781 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1782
1783         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1784         associated changes to support holes in the protected range of a
1785         try block.
1786
1787         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1788         retrieves the holes table from a given MonoJitInfo.
1789
1790 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1791
1792         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1793         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1794         hide the contents of the MonoString and MonoArray structs from the
1795         public API. Change the accessor macros to accessors functions where
1796         needed. Adjusted the array API to allow for pointer-sized lengths and
1797         starting positions, so 64 bit arrays can be optionally provided in an
1798         API compatible way if needed on 64 bit systems.
1799
1800 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1801
1802         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1803         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1804
1805 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1806
1807         * class-internals.h: remove the method header from MonoMethod since
1808         from now on it will be transient. We have a header pointer for method
1809         wrappers, since in that case we need to keep track of it. For this
1810         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1811         structs now. The same happens with MonoMethodInflated.
1812         * class.c: reset the sre_method flag for inflated method structures:
1813         this makes the code that cares look at the header in the MonoMethodInflated
1814         structure.
1815         * loader.c: lookup the method header in the appropriate field now that
1816         it is removed from MonoMethod.
1817         * metadata-internals.h: add a flag to the method header to know if it
1818         can be freed inside mono_metadata_free_mh ().
1819         * method-builder.c: updates after moving the header field from
1820         MonoMethod to MonoMethodWrapper.
1821         * reflection.c: MonoMethods generated from Reflection.Emit use
1822         MonoMethodWrapper structs if they need a method header now (later take
1823         advantage of this and remove all the current unsafe uses of method_aux_hash).
1824         * metadata.c: make method header parsing not leak when verification
1825         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1826         These changes save a few hundred KB of runtime memory in a mcs
1827         bootstrap or a monodevelop startup.
1828
1829 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1830
1831         * verify.c: Improve error message.
1832
1833 2010-03-12  Jb Evain  <jbevain@novell.com>
1834
1835         * reflection.c (add_exported_type): populate the exported
1836         table with the type's nested type.
1837
1838 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1839
1840         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1841         can't read parentheses.
1842
1843 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1844
1845         * threads.c (thread_cleanup): Add a guard to dereferencing
1846         "thread" to avoid an unlikely race condition.
1847
1848 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1849
1850         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1851         instead of an empty string.
1852
1853 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1854
1855         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1856         convert to a boolean, recent gcc versions compile this differently.
1857
1858 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1859
1860        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1861        inlined.
1862
1863 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1864
1865         * sgen-gc.c (STRING_SIZE): Off by one.
1866
1867 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1868
1869         * sgen-archdep.h: Fix the signal context register access for
1870         AMD64.
1871
1872 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1873
1874         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1875
1876 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1877
1878         * verify.c: Store the initial basic block returned by mono_basic_block_split
1879         so we can release the whole list and not just the first one.
1880
1881 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1882
1883         * verify.c, debug-helpers.c, profiler.c, loader.c,
1884         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1885         MonoMethodHeader a transient entity.
1886
1887 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1888
1889         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1890         uncontrolled growth of the gray stack.
1891
1892         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1893         added items are removed first, improving cache locality. Avoid freeing queue
1894         segments in the fast path, use the list of segments as the free list, truncate
1895         it to its max size at the start of collection.
1896
1897 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1898
1899         * metadata-internals.h: more memory savings, both with small config and without.
1900
1901
1902 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1903
1904         * appdomain.c, domain-internals.h, domain.c, object.c:
1905         make class_vtable_hash into an array to reduce memory usage.
1906
1907 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1908
1909         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1910         object-internals.h, object.c, reflection.c, threadpool.c:
1911         reduce resource usage when the small config is selected.
1912         In particular, up to 64K of methods/fields/properties/events
1913         are allowed and "other" methods in events are ignored.
1914
1915 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1916
1917         * threads.c: reduce resource usage when compiled for a small config.
1918
1919 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1920
1921         * sgen-gc.c: Also collect number of degraded-alloced objects with
1922         heavy statistics.
1923
1924 2010-03-04  Geoff Norton  <gnorton@novell.com>
1925
1926         * assembly.c: Only support OSX bundling if the bundle is 
1927         actually detectable.
1928
1929 2010-03-04  Geoff Norton  <gnorton@novell.com>
1930
1931         * loader.c: The marshal specs are freed at the end of the call
1932         but it explicitly frees the strings as well as the container,
1933         so we need to dup them too to avoid referencing free'd memory.
1934
1935 2010-03-04  Geoff Norton  <gnorton@novell.com>
1936
1937         * icall-def.h:
1938         * icall.c: Add a new private internal icall to construct
1939         an object from its type without running the ctor.
1940
1941 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1942
1943         * profiler.c: allow multiple profiler engines to be loaded
1944         at the same time.
1945
1946 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1947
1948         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1949         profiler event to track object moves.
1950
1951 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1952
1953         * object.c, profiler.c, profiler.h, string-icalls.c:
1954         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1955
1956 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1957
1958         * decimal.c (mono_double2decimal): Add support for reducing the
1959         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1960         expected.
1961
1962 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1963
1964         * icall-def.h:
1965         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1966
1967 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1968
1969         * mono-config.c (mono_config_parse_assembly_bindings): added -
1970         parses assembly binding redirections from appdomain's config
1971         file.
1972
1973         * metadata-internals.h: added definition of a new function -
1974         mono_config_parse_assembly_bindings - to support parsing assembly
1975         binding redirections defined in appdomain's config file.
1976
1977         * domain-internals.h: added two new fields to _MonoDomain - a list
1978         of assembly bindings and a flag to parse the config file only
1979         once.
1980
1981         * assembly.c (assembly_binding_maps_name): empty culture name and
1982         NULL culture name are considered equal.
1983         (mono_assembly_apply_binding): added support for domain specific
1984         assembly binding redirections, read from the appdomain's
1985         configuration file. Fixes bug #580185
1986
1987 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1988
1989         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1990         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1991         support.
1992
1993 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1994
1995         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1996         from this function. The new function receive the parent token instead of a type.
1997
1998         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1999         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
2000         typebuilders. This make it possible to properly encode generic type builders since
2001         their unmanaged type don't have generics data while unfinished.
2002
2003         Fixes #583655.
2004
2005 2010-03-02  Mark Probst  <mark.probst@gmail.com>
2006
2007         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
2008         writing binary log files (can be enabled by #define'ing
2009         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
2010         bugs in longer running programs.
2011
2012 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
2013
2014         * metadata.c: added some API documentation.
2015
2016 2010-03-01  Robert Jordan  <robertj@gmx.net>
2017
2018         * filewatcher.h: Include glib.h to fix the MSVC build.
2019
2020 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
2021
2022         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
2023         a GC handle instead. This is a bit slower to access, but avoids burdening the
2024         GC with 100s of individual roots.
2025
2026         * reflection.c (mono_class_get_ref_info):
2027         (mono_class_set_ref_info):
2028         (mono_class_free_ref_info): New internal helper fuctions.
2029
2030         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
2031         of accessing klass->reflection_info directly.
2032
2033         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
2034         words.
2035
2036         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
2037         the previous array.
2038
2039 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
2040
2041         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
2042         needs an indirection.
2043
2044 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2045
2046         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
2047         so all generic sharing code is in one place.
2048
2049         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
2050         we don't call setup_interface_offsets () for unfinished types.
2051
2052 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2053
2054         * class.c (mono_class_generic_sharing_enabled): Move this to
2055         generic-sharing.c.
2056
2057         * image.c: Add an unload hook which is called before an image is unloaded.
2058
2059         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
2060         metadata.c having to depend on generic sharing.
2061
2062 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2063
2064         * class.c: reduce size of ridiculously large cache.
2065
2066 2010-02-26  Martin Baulig  <martin@ximian.com>
2067
2068         * mono-debug.h
2069         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
2070
2071         * threads.c (mono_thread_internal_reset_abort): New method; resets
2072         the abort, but doesn't throw any exception if no abort was requested.
2073
2074 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2075
2076         * class.c (get_implicit_generic_array_interfaces): Call
2077         mono_class_setup_interface_offsets () before accessing
2078         eclass->interface_offsets_count. This only shows up on platforms without IMT for
2079         some reason.
2080
2081 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
2082
2083         * environment.c, environment.h, icall.c: make the GetOSVersionString()
2084         icall internal.
2085
2086 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
2087
2088         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
2089         direct access to the MonoType fields.
2090
2091 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
2092
2093         * threads.h: Move some internal functions which were added to this header by
2094         mistake to threads-types.h.
2095
2096         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
2097
2098 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
2099
2100         * class-internals.h, class.h, object.h: make MonoRemoteClass
2101         and mono_remote_class() internal.
2102
2103 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2104
2105         * metadata-internals.h, class-internals.h, metadata.h: make the
2106         MonoType guts internal as well.
2107
2108 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
2109
2110         * reflection.h: the MonoTypeNameParse guts are internal now.
2111         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
2112         are internal now, provide accessors as needed.
2113         * metadata.h, metadata-internals.h: the MonoMethodSignature
2114         guts are internal now.
2115         * Makefile.am: mempool.h is an internal header now.
2116         * *.h, *.c: remove glib.h usage from the public headers.
2117
2118 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
2119
2120         * culture-info-table.h : regenerated.
2121
2122 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
2123
2124         * metadata.c: Add mono_method_get_header_summary which returns minimal
2125         information about the header of a method. This is the information used
2126         by the inline oracle to reject methods.
2127
2128         This method doesn't decode local variables and doesn't cache it's result,
2129         so it should cause a minimal reduction in memory usage.
2130
2131         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
2132         mono_method_get_header_summary.
2133
2134 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
2135
2136         * threads.c (mono_thread_exit): Make sure that the main thread is
2137         non-null before dereferencing it.
2138
2139 2010-02-21  Geoff Norton  <gnorton@novell.com>
2140
2141         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
2142         locale.
2143         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
2144         before falling back to the posix lookup.
2145
2146 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
2147
2148         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
2149         the DONT_MANAGE flag set.
2150
2151 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2152
2153         * domain.c: Remove old v1 version strings. Let the runtime
2154         default to 2.0 instead of failing because it can't find a
2155         working 1.0 instalation.
2156
2157 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2158
2159         * domain.c: Add v4 RC version string.
2160
2161 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2162
2163         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
2164         of overflow checking function.
2165
2166 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
2167
2168         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
2169         generic methods.
2170
2171         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
2172         cases for ParameterInfo.
2173
2174         Fixes #579493.
2175
2176 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
2177
2178         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
2179         have has_cctor set. Fixes #575946.
2180
2181 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
2182
2183         * appdomain.c: display a warning if the parsing the config file
2184         produces any error.
2185         Skip the BOM in UTF-8 files.
2186         Copy the AppDomainSetup before setting the privateBinPath so that the
2187         correct configuration file is read.
2188
2189 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
2190
2191         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
2192         vtable trampoline per vtable slot index. Not used yet.
2193
2194 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2195
2196         * icall-def.h:
2197         * icall.c: add internal call that returns the system page size.
2198
2199 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
2200
2201         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
2202         'int' for system classes.
2203
2204 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
2205
2206         * icall.c, icall-def.h: new icall to check for sufficient
2207         stack space.
2208
2209 2010-02-12  Mark Probst  <mark.probst@gmail.com>
2210
2211         * reflection.c (ensure_complete_type): Check that reflection_info
2212         is set, too.  Fixes crash of corlib testsuite with -O=-all.
2213
2214 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
2215
2216         * attrdefs.h:
2217         * tabledefs.h: Add NoOptimization flag.
2218
2219 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2220
2221         * sgen-gc.c: Don't consider it a missing remset if the target
2222         object is pinned - we might have done the store but not added the
2223         remset yet.
2224
2225 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2226
2227         * sgen-gc.c: When checking for missing remsets, don't assert on
2228         the first one, but print them all and then assert.
2229
2230 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2231
2232         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
2233
2234 2010-02-09  Miguel de Icaza  <miguel@novell.com>
2235
2236         * console-unix.c: On OSX Control-Y is assigned to
2237         VDSUSP (non-Posix), the
2238         suspend-program-next-time-it-tries-to-read-input command (this is
2239         different than C-z, which suspends immediately).
2240
2241         Do the same thing that bash does and ignore this setting,
2242         making our repl/getline support pasting.
2243
2244 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2245
2246         * sgen-gc.c: Simple plausibility check for scan_starts.
2247
2248 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2249
2250         * sgen-gc.c: Round up when calculating the number of scan starts.
2251
2252 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2253
2254         * reflection.c: Export mono_get_object_from_blob.
2255
2256         * object-internals.h: Ditto.
2257
2258         * icall.c: New icall property_info_get_default_value to get the default
2259         value of a property. Since using this is not common, no caching is done.
2260
2261         * icall-def.h: Add new icall.
2262
2263 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2264
2265         * class.c: Add mono_class_get_property_default_value.
2266
2267         * class-internal.h: Export mono_class_get_property_default_value.
2268
2269 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2270
2271         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
2272
2273 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
2274
2275         * sgen-gc.c: introduced critical regions to allow some lockless
2276         operations and increase scalability.
2277
2278 2010-02-10  Geoff Norton  <gnorton@novell.com>
2279
2280         * reflection.c: Support building with DISABLE_REFLECTION
2281
2282 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
2283
2284         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
2285         Closes bug #566057.
2286
2287         * exception.c: fix typo in comment.
2288
2289 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
2290
2291         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
2292         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
2293
2294         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
2295
2296         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
2297         the internal API.
2298
2299         Fixes #574434.
2300
2301 2010-02-09  Mark Probst  <mark.probst@gmail.com>
2302
2303         * threads.c: Removed two assertions that were too strict.  Added a
2304         clarifying comment.  Fixes #577090.
2305
2306 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
2307
2308         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
2309         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
2310
2311         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
2312
2313         * verify.c (mono_type_get_stack_name): Fix a warning.
2314
2315 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
2316
2317         * marshal.c (mono_marshal_get_wrapper_info): Rename from
2318         mono_marshal_wrapper_info_from_wrapper.
2319
2320         * marshal.c (mono_marshal_set_wrapper_info): Rename from
2321         mono_marshal_method_set_wrapper_data, and export.
2322
2323         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
2324         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
2325         by calling mono_marshal_get_wrapper_info ().
2326
2327         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
2328         small objects which does no size checks.
2329
2330 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
2331
2332         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
2333
2334 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2335
2336         * verify.c (mono_method_verify): Use the new basic block formation pass
2337         to avoid verifying dead basic blocks. This is the same behavior as the
2338         runtime MS verifier.
2339
2340 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2341
2342         * mono-basic-block.c:
2343         * mono-basic-block.h: New implementation of a basic block formation pass.
2344         The formation pass does static liveness analysis as well to detect dead
2345         basic blocks.
2346
2347 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2348
2349         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
2350         'this' argument in icalls.
2351
2352 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2353
2354         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
2355
2356 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2357
2358         * object.c, domain.c: When using SGen, we must register
2359         vtable->type as a root if it's not a MonoType, because then it
2360         wasn't pin-alloced.
2361
2362 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2363
2364         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
2365         at the start of nursery collections, because we might have had
2366         degraded allocations which changed next_data.
2367
2368 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2369
2370         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
2371         custom attr so this function works in cross-compiling mode.
2372
2373 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2374
2375         * class.c (make_generic_param_class): Initialize interface offsets since we
2376         set klass->inited. Fixes #574819.
2377
2378 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2379
2380         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
2381         calling the JIT domain cleanup hook.
2382
2383 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2384
2385         * pedump.c (main): Properly set the verifier mode when running the metadata
2386         verifier.
2387
2388 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2389
2390         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
2391         overlapping fields now that we're called before has_references is set.
2392
2393         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2394         method. Otherwise all sort of weird stuff happens.
2395
2396 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2397
2398         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2399         Fixes #572874.
2400
2401 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2402
2403         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2404         Fixes #573322.
2405
2406 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2407
2408         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2409         pin_staging_area_index is greater than 0.
2410
2411 2010-01-22 Miguel de Icaza (miguel@novell.com)
2412
2413         * loader.c: Since we do nothing with the error returned, pass NULL
2414         to ignore the error.
2415
2416 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2417
2418         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2419         happened before starting to encode the actual fields. This avoid ciclic
2420         dependencies and eventual crashes.
2421
2422         Fixes #572660.
2423
2424 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2425
2426         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2427         atomic and remove the half-constructed hack in SGen.
2428
2429 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2430
2431         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2432         has a recursive reference to itself.
2433
2434         Fixes #571863.
2435
2436 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2437
2438         * loader.c (mono_method_signature): Fix error message.
2439
2440 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2441
2442         * sgen-gc.c: Reuse to-space sections between nursery collections.
2443
2444 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2445
2446         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2447         from the current assembly or mscorlib. Fixes bug #322957.
2448
2449 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2450
2451         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2452         get_wrapper_target_class.
2453
2454 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2455
2456         * sgen-gc.c: Fix warnings.
2457
2458 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2459
2460         * verify.c (store_local): Better error message.
2461
2462 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2463
2464         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2465         arguments.
2466
2467 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2468
2469         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2470         function is generics variance aware.
2471
2472 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2473
2474         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2475         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2476
2477 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2478
2479         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2480           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2481
2482         Code is contributed under MIT/X11 license.
2483
2484 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2485
2486         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2487         on a GTD.
2488
2489 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2490
2491         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2492         return a point to a wrapper specific info structure describing the wrapper.
2493         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2494  
2495 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2496  
2497         * sgen-gc.c: Make minor collection section allowance adaptive,
2498         depending on the amount of memory reclaimed in the last major
2499         collection.  If more memory was reclaimed (i.e. more garbage
2500         produced), do the next collection earlier.
2501
2502 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2503
2504         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2505         to itself.
2506
2507         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2508         the token as parameter.
2509
2510         * verify-internals.h: Ditto.
2511
2512         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2513
2514         Fixes #571460.
2515
2516 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2517
2518         * sgen-gc.c: Make store_remset_buffer_index long.
2519
2520 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2521
2522         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2523
2524         Fixes #569579.
2525
2526 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2527
2528         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2529         off precise marking if it is available.
2530         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2531
2532 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2533
2534         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2535
2536         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2537         pinned objects.
2538
2539         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2540         to the array allocator.
2541
2542 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2543
2544         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2545         result of mono_compile_method (), it already includes an ftnptr.
2546
2547 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2548
2549         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2550
2551 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2552
2553         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2554         hash value which doesn't depend on glib/eglib versions.
2555         (mono_metadata_type_hash): Use it.
2556
2557         * object.c (mono_method_get_imt_slot): Ditto.
2558
2559 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2560
2561         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2562         independently of the GTD.
2563
2564         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2565
2566         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2567         to the upper limit since instance_size includes this amount.
2568
2569         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2570
2571         Fixes #569544.
2572
2573 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2574
2575         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2576         with static methods.
2577
2578         * object.c (build_imt_slots): Avoid asserting when static methods are
2579         encountered in an interface.
2580
2581 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2582
2583         * sgen-gc.c (to_space_expand): Fix assertion.
2584
2585 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2586
2587         * string-icalls.c: missing declaration fixes.
2588         * sgen-gc.c: portability fixes.
2589
2590 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2591
2592         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2593
2594         * class.c:
2595         * cominterop.c:
2596         * icall.c:
2597         * object.c: 
2598         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2599
2600 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2601
2602         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2603         it can fail loading the type.
2604
2605         * class.c: Add mono_class_inflate_generic_class_checked.
2606
2607         * class.c:
2608         * verify.c:
2609         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2610
2611 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2612
2613         * loader.c (mono_method_signature_checked): New internal function taking an
2614         MonoError argument.
2615
2616         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2617         Fixes build on rh 7.3.
2618
2619 2010-01-10  Aaron Bockover  <abockover@novell.com>
2620
2621         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2622         at runtime in the same way as on Windows, which yields a relocatable
2623         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2624         of the running mono process.
2625
2626         On TARGET_ARM, fallback () will always be executed.
2627
2628 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2629
2630         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2631
2632 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2633
2634         * class.c (mono_class_is_assignable_from_slow): Support variant
2635         generic delegates.
2636
2637         * class.c (mono_class_implement_interface_slow): Support types with
2638         variant generic arguments.
2639
2640 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2641
2642         * verify.c: Remove some code duplication.
2643
2644 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2645
2646         * object.c: Update docs.
2647
2648 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2649
2650         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2651
2652         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2653         fallback trampoline as well.
2654
2655         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2656         out argument that is set to TRUE if the match was direct. 
2657
2658         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2659
2660         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2661
2662 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2663
2664         * class.c: Add mono_class_interface_offset_with_variance function that does same
2665         as mono_class_interface_offset but takes variance into account.
2666
2667         * class-internal.h: Export mono_class_interface_offset_with_variance.
2668
2669         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2670
2671 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2672
2673         * object.c:
2674         * icall.c:
2675         * class.c: Add some FIXME for due to variant generic arguments.
2676
2677         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2678         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2679         the bitfield check fails.
2680
2681 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2682
2683         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2684         to be easier to read and fix bugs in the case a non generic type implements a variant
2685         interface.
2686
2687         * class.c (mono_class_has_variant_generic_params): Make non static.
2688
2689         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2690         the private API.
2691
2692 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2693
2694         * assembly.c: fix MONO_PATH debug output.
2695
2696 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2697
2698         * culture-info-table.h : regenerated.
2699
2700 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2701
2702         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2703         types that are meant to not have a parent.
2704
2705 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2706
2707         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2708         from the image mempool, so it is not leaked.
2709
2710 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2711
2712         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2713
2714 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2715
2716         * verify.c (verify_valuetype_layout_with_target): Fix case
2717         that can lead to infinite recursion. Fix bug #567861
2718
2719 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2720
2721         * pedump.c: Run code verifier even if image verification fails
2722         due to a failed type we. This allows more errors to be shown.
2723
2724 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2725
2726         * class.c (count_virtual_methods): Remove the assert and now
2727         fail properly.
2728         
2729         * class.c (setup_interface_offsets): This can fail now.
2730
2731         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2732         errors. Check setup_interface_offsets errors.
2733
2734         * class.c (setup_interface_offsets): Simplify the return error logic
2735         and remove class_init_ok.
2736
2737         Fixes #560327.
2738
2739 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2740
2741         * class.c (mono_class_init): Do class verification at the beginning. Add
2742         some asserts to avoid tripping into invalid memory.
2743
2744         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2745         g_error and a decent message.
2746
2747         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2748
2749         Fixes #567548.
2750
2751 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2752
2753         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2754         as inline functions instead of defining them in mempool.c.
2755
2756         * metadata-internals.h (MonoImageSet): New structure representing a set of
2757         MonoImages, which own a collection of generic instances.
2758
2759         * metadata.c: Get rid of the global generic caches, instead assign each generic
2760         instance to the image set which consists of all the images referenced by the
2761         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2762         the memory used by generic instances to be allocated from a per image-set mempool
2763         later.
2764
2765 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2766
2767         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2768
2769 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2770
2771         * appdomain.c (zero_static_data): Fix a warning.
2772
2773         * locales.c (construct_culture_from_specific_name): Applied patch from
2774         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2775         not found. Fixes #567900.
2776
2777 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2778
2779         * loader.c (mono_method_get_signature_full): Remove two asserts.
2780         Return NULL instead so that the verifier can handle both cases 
2781         gracefully.
2782
2783 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2784
2785         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2786         so we can properly fail types instead of crashing.
2787
2788         Fixes #567676.
2789
2790 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2791
2792         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2793         generic method.
2794
2795 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2796
2797         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2798
2799 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2800
2801         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2802         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2803         we can't remove it from it since we don't hold the lock.
2804         (mon_new): Free the orphaned events here when a mon structure is added to the
2805         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2806         this down.
2807
2808 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2809
2810         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2811         as max stack might be zero.
2812
2813         Fixes #562320.
2814
2815 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2816
2817         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2818
2819         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2820         instances if the GTD did.
2821
2822         * class.c (mono_class_setup_properties): Ditto.
2823
2824         * class.c (mono_class_setup_events): Ditto.
2825
2826         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2827
2828         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2829         error setting.
2830
2831         * class.c (mono_class_init): Fail if GTD did.
2832
2833         * cominterop.c:
2834         * generic-sharing.c:
2835         * icall.c:
2836         * loader.c:
2837         * object.c:
2838         * verify.c: Properly handle failure of mono_class_setup_methods.
2839
2840 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2841
2842         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2843         mono_class_inflate_generic_method_full internal.
2844
2845         * class.c (inflate_generic_context): Now takes a MonoError argument.
2846
2847         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2848         errors.
2849
2850 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2851
2852         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2853         they cannot be patched. Partly fixes #564408.
2854
2855 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2856
2857         * metadata-internals.h, reflection.c: Use the
2858         MonoDynamicImage.handleref hash table only with unmanaged keys,
2859         and add a managed hash table handleref_managed for managed keys.
2860
2861 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2862
2863         * sgen-gc.c: Unset to-space bumper between collections.  It might
2864         become invalid due to degraded allocations.
2865
2866 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2867
2868         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2869         with the one from the original method.
2870
2871         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2872         compatibility.
2873
2874         * verify-internals.h: Add new function to the internal API.
2875
2876 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2877
2878         * culture-info-tables.h: regenerated it to include the Georgian culture.
2879
2880 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2881
2882         * sgen-gc.c: Include mono/utils/memcheck.h.
2883
2884         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2885         instead of the current domain, since the two might not match if this is called
2886         from the debugger.
2887
2888         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2889         domain which created this assembly.
2890
2891 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2892
2893         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2894
2895 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2896
2897         * sgen-gc.c: Managed implementation of the specialized generic
2898         store write barrier.
2899
2900 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2901
2902         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2903         A private virtual newslot method is used to implement an interface method without exposing
2904         it to users. When querying for public instance methods, such method would hide a public one
2905         on a parent type.
2906
2907         Fixes #564379.
2908
2909 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2910
2911         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2912         conventions.
2913
2914 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2915
2916         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2917
2918 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2919
2920         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2921         as they are no longer used.
2922         
2923          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2924
2925         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2926
2927 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2928
2929         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2930         if the owner class has not been finished before returning reflection_info.      
2931
2932         Fixes #565127.
2933
2934 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2935
2936         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2937         param doesn't have custom attributes. Fixes #565117.
2938
2939         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2940         #565120.
2941
2942 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2943
2944         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2945
2946 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2947
2948         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2949         same amount done by a core-clr enabled runtime.
2950
2951 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2952
2953         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2954         the target files is reset to writable by owner and readable by
2955         everyone else to prevent problems when updating shadow copies of
2956         files whose source is read-only. Fixes bug #556884
2957
2958 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2959
2960         * class.c (mono_generic_class_get_class): Allocate the generic
2961         class via malloc again, so that it can be freed when any one of
2962         the images of its constituent types is closed.
2963
2964         * metadata.c: When closing an image, don't free generic insts and
2965         generic classes right away, but put them into a list for later
2966         freeing.
2967
2968         * image.c, metadata-internals.h: Store the free list and in the
2969         second pass of closing an image, free it.
2970
2971 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2972
2973         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2974
2975         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2976         types in type_hash.
2977
2978         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2979
2980 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2981
2982         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2983         user type.
2984
2985         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2986         is used.
2987
2988 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2989
2990         * verify.c (mono_method_verify): The Unused opcodes produce an
2991         InvalidProgramException on .NET
2992
2993 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2994
2995         * loader.c (mono_method_get_header): Move assert after the verifier
2996         has been called on the method header.
2997
2998 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2999
3000         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
3001
3002         * appdomain.c: Bump corlib version.
3003
3004 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
3005
3006         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
3007         types as well since otherwise generic instances would not return UT as arguments but
3008         their undelying system type.
3009
3010         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
3011         to reflect the fact that they can have now multiple different types.
3012
3013         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
3014
3015         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
3016
3017         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
3018
3019         * reflection.c (mono_reflection_register_with_runtime): Init super types
3020         if the image is not dynamic.
3021
3022         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
3023         check if the generic type definition is a TypeBuilder.
3024
3025         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
3026         doesn't belong to a dynamic image, skip initialization.
3027
3028         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
3029         base definition is not a dynamic type.
3030
3031 2009-12-11  Marek Habersack  <mhabersack@novell.com>
3032
3033         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
3034         mono_profiler_string_allocation
3035
3036         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
3037         if string profiling is enabled, call
3038         mono_profiler_string_allocation
3039
3040         * profiler.h: added two MonoProfileFlags -
3041         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
3042         installation functions for the hooks below.
3043
3044         * profiler-private.h, profiler.c: added two hooks:
3045         mono_profiler_string_allocation called whenever a string is
3046         allocated by InternalAllocateStr and mono_profiler_iomap called
3047         whenever IOMAP code performs an adjustement on a file path.
3048
3049 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
3050
3051         * boehm-gc.c: fixed race condition while getting the target of a
3052         disappearing link (bug #522233).
3053
3054 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3055
3056         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
3057         the error.
3058
3059 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3060
3061         * reflection.c: Add mono_reflection_register_with_runtime icall to
3062         allow a MonoGenericClass to register itself as the managed mirror of
3063         a given generic instance.
3064         This is a temporary workaround until all MGC instantiation happens in
3065         managed code.
3066
3067         * object-internals.h: Ditto.
3068
3069         * icall-def.h: Ditto.
3070
3071 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3072
3073         * sgen-gc.c (find_in_remsets): Also search the generic store
3074         remsets.
3075
3076 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3077
3078         * sgen-gc.c: Don't access class names in debugging code when
3079         unloading a domain, because they might not be valid anymore.
3080
3081 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3082
3083         * domain.c, domain-internals.h: New function mono_domain_unset().
3084
3085         * appdomain.c (unload_thread_main): Detach the thread again at the
3086         end.
3087
3088         * threads.c: When a thread exists or is detached, unset its domain
3089         so that it's NULL when, for example, a pthread destructor runs.
3090
3091         * sgen-gc.c: Assert that there is no domain set after a thread is
3092         done.
3093
3094 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3095
3096         * class.c (mono_generic_class_get_class),
3097         metadata.c (free_generic_class): Allocate generic MonoClass's from
3098         the image mempool, not via malloc.  The problem with malloc is
3099         that when unloading a domain those classes are freed before
3100         clearing the heap and SGen needs the classes.  Rewriting the
3101         unloading code to do the free later would be more work and there's
3102         no point in using malloc anyway.
3103
3104 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
3105
3106         * loader.c (mono_method_signature): Always call mono_loader_unlock 
3107         before returning.
3108
3109 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3110
3111         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
3112         user string blobs.
3113
3114         * verify-internals.h: Add new function to the internal API.
3115
3116         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
3117         check if it's a valid string.
3118
3119         * object.c (mono_ldstr): Ditto.
3120
3121         Fixes #561943.
3122
3123 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3124
3125         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
3126         from a method before returning it. This is the expected behavior.
3127
3128 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3129
3130         * reflection.c (inflate_method): Handle the case of a regular system type.
3131
3132 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3133
3134         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
3135         gathering code.
3136
3137         * mempool.c, mempool-internals.h: New function
3138         mono_mempool_get_bytes_allocated().
3139
3140         * Makefile.am: sgen-pinning-stats.c added.
3141
3142 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3143
3144         * sgen-gc.c (create_allocator): Only use the fast path if the
3145         object size is within the small object size limit.
3146
3147 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3148
3149         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
3150         possibly adding padding to sizeof (GCMemSection).
3151
3152 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3153
3154         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
3155         reference is not in the nursery.
3156
3157 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
3158
3159         * class.c (mono_class_from_typeref): Bounds check idx against the 
3160         assemblyref table.
3161
3162 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3163
3164         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
3165         through the potential roots, then sort the results and find the
3166         pinned objects from there.
3167
3168         * Makefile.am: sgen-pinning.c added.
3169
3170 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3171
3172         * sgen-gc.c: Record generic stores in specialized remset buffers.
3173
3174 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3175
3176         * sgen-gc.c: Make pinned chunks the same size as major heap
3177         sections, and align them as well, so that we can check whether an
3178         object is in a pinned chunk or a major section in constant time.
3179
3180 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3181
3182         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
3183
3184 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3185
3186         * sgen-gc.c: Make all major heap sections the same size (currently
3187         128k) and allocate them on aligned addresses.  Small heap sections
3188         give us better granularity with pinned objects - we can free up
3189         much more memory.
3190
3191 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3192
3193         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
3194         output removed.
3195
3196 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3197
3198         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
3199
3200         * mono/metadata/assembly.c: When opening an assembly image, pass the real
3201         names in addition to the runtime generated one.
3202
3203         * mono/metadata/image.h: Add a function to take the real name of the assembly
3204         image.
3205
3206         * mono/metadata/image.c: If a real name has been passed to load an assembly,
3207         use it instead of the runtime generated one.
3208
3209         Code is contributed under MIT/X11 license.
3210
3211 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3212
3213         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
3214         before the other checks to prevent problems if the DateTime class is blittable.
3215         Hopefully fixes #559600.
3216
3217 2009-12-05  Mark Probst  <mark.probst@gmail.com>
3218
3219         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
3220         returns the largest string length that will not be put into the
3221         LOS.
3222
3223         * sgen-gc.c, gc-internal.h: New function that returns the largest
3224         object size that will not be put into the LOS.
3225
3226         * appdomain.c: Bump corlib version.
3227
3228 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3229
3230         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3231
3232         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3233
3234 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3235
3236         * reflection.c (inflate_method): Fix signature.
3237
3238         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
3239         in managed code.
3240
3241 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3242
3243         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
3244
3245 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3246
3247         * sgen-gc.c: Abstract to-space handling.
3248
3249 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
3250
3251         * loader.c (find_method_in_class): Ignore methods with broken signatures.
3252
3253         Fixes #559906.
3254
3255 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3256
3257         * sgen-gc.c: Only add references from outside the nursery to
3258         within the nursery to the global remset list.
3259
3260 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3261
3262         * appdomain.c (create_exceptions): Set the domain temporarily if
3263         necessary to avoid cross-domain references.
3264
3265 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3266
3267         * verify.c (get_stack_type): Return that the type is invalid instead of
3268         asserting.
3269
3270         * verify.c (mono_method_verify): Verify that all locals and arguments
3271         have valid stack types.
3272
3273         Fixes #559913.
3274
3275 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3276
3277         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
3278         bounds checking overflow aware.
3279
3280         Fixes #559910.
3281
3282 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3283
3284         * verify.c (do_invoke_method): Check for invalid method signatures.
3285
3286         Fixes #553450.
3287
3288 2009-12-02  Jb Evain  <jbevain@novell.com>
3289
3290         * appdomain.c (MONO_CORLIB_VERSION): bump.
3291         * icall-def.h (get_base_definition): renamed to get_base_method
3292         and add a boolean argument indicating we want the original
3293         method definition, or the immediate base method.
3294         * icall.c: apply the get_base_definition to get_base_method change.
3295
3296 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3297
3298         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
3299
3300         Fixes #558042.
3301
3302 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
3303
3304         * class.c: remove asserts for invalid type token in
3305         mono_class_name_from_token(), mono_assembly_name_from_token() and
3306         mono_class_create_from_typedef () (fixes bug #553318).
3307
3308 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
3309
3310         * metadata.c, class.c, loader.c: remove assert after bsearch() for
3311         incorrect assemblies (bug #553322).
3312
3313 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3314
3315         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
3316
3317         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
3318
3319         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
3320
3321         * class.c (inflate_generic_context): Ditto.
3322
3323         * loader.c (method_from_methodspec): Ditto.
3324
3325         Fixes #558230.
3326
3327 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3328
3329         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
3330
3331         * class.c (mono_class_create_from_typespec): Ditto.
3332
3333         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
3334
3335         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
3336
3337         Fixes #558184.
3338
3339 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3340
3341         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
3342
3343         * verify.c (verify_delegate_compatibility): Ditto.
3344
3345         * verify.c (do_newobj): Ditto.
3346
3347         Fixes #558046.
3348
3349 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3350
3351         * sgen-gc.c: Use a gray queue instead of requiring that gray
3352         objects are in a contiguous region.
3353
3354         * sgen-gray.c: The gray queue implementation.
3355
3356         * Makefile.am: sgen-gray.c added.
3357
3358 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3359
3360         * appdomain.c: When unloading a domain, zero its static data and
3361         perform a minor collection when using SGen.  That will get rid of
3362         all the remsets pointing into that domain's static data.
3363
3364         * sgen-gc.c: Allow remsets into static data.  By doing this we
3365         need less checks so we're more efficient.
3366
3367 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3368
3369         * verify.c (mono_method_verify): Check for catch clauses with broken
3370         types.
3371
3372         Fixes #558465.
3373
3374 2009-12-01  Jb Evain  <jbevain@novell.com>
3375
3376         * class.c (make_generic_param_class): set the namespace of
3377         the generic parameter class from its owner, if available.
3378
3379 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3380
3381         * verify.c (code_bounds_check): Do proper overflow checking.
3382
3383         * verify.c (mono_method_verify): The number of switch entries is
3384         an unsigned int. Properly bounds check it.
3385
3386         Fixes #558594.
3387
3388 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3389
3390         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
3391         mono_metadata_method_has_param_attrs which only checks if a given param
3392         list has a non zero flags entry.
3393
3394         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3395         to inform how many params should we expect to decode.
3396
3397         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3398         as it's faster than mono_metadata_get_param_attrs.
3399
3400         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3401         add mono_metadata_method_has_param_attrs.
3402
3403 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3404
3405         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3406         failures.
3407
3408         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3409         is -1 but its class is broken.
3410
3411         Fixes #558522.
3412
3413 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3414
3415         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3416         for parameter overflow.
3417
3418         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3419         of mono_metadata_get_param_attrs.
3420
3421         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3422         API.
3423
3424         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3425
3426 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3427
3428         * class.c (mono_class_setup_fields): Check for fields with broken types.
3429
3430         Fixes #558741.
3431
3432 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3433
3434         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3435         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3436         its TypeBuilder::CreateType ().
3437
3438         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3439         if not needed.
3440
3441         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3442         to make setup_interface_offsets happy.
3443
3444         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3445         compilation now works.
3446
3447 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3448
3449         * appdomain.c (create_exceptions): New helper function extracted from
3450         mono_runtime_init () to precreate objects used during exception handling.
3451         (mono_runtime_init): Call it.
3452         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3453
3454 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3455
3456         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3457         compilation until the proper one is found.
3458
3459 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3460
3461         * class.c (mono_class_setup_vtable_general): Cache the result of
3462         get_virtual_methods () since it can be slow because of the metadata
3463         optimization.
3464
3465         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3466         from a MonoValueHashTable for now, since the later is based on an earlier
3467         version of hpj's internal probing code and seems to have serious collision
3468         issues.
3469
3470         * loader.c (mono_get_method_full): Update after the change above.
3471
3472 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3475
3476 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3477
3478         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3479         the GTD instead of the DGC instead of crashing.
3480
3481         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3482         required. Inflate fields if needed.
3483
3484         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3485         finished. Renamed.
3486
3487 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3488
3489         * class.c (check_interface_method_override): Check for NULL signatures and fail
3490         the type.
3491
3492         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3493
3494         Fixes #553428.
3495
3496 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3497
3498         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3499         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3500
3501 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3502
3503         * loader.c (field_from_memberref): Resolve the class first then the field
3504         signature. Remove a lot of duplicated code and make sure we don't pass valid
3505         values to mono_loader_set_error_field_load.
3506
3507         Fixes #553306.
3508
3509 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3510
3511         * class.c (inflate_generic_type): Change code to use new signature of
3512         mono_error_set_bad_image.
3513
3514         Fixes #558124.
3515
3516 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3517
3518         * verify.c (mono_method_verify): Don't free ctx.params items if 
3519         we aborted while inflating the ctx.locals. Complete previous fix
3520
3521 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3522
3523         * verify.c (mono_method_verify): Use the uninflated type name, 
3524         when the inflated is null, to report errors. Also take care when
3525         freeing, not to free everything since, in case of an error, some
3526         stuff would be copies (i.e. not allocated by the function itself)
3527         Fix bug #558145
3528
3529 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3530
3531         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3532         or overflow. The caller must have done this check explicitly. This guard us
3533         from accessing invalid memory.
3534
3535         * verify.c (do_push_static_field): Check for stack overflow.
3536
3537         Fixes #553333.
3538
3539 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3540
3541         * loader.c (find_method_in_class): Don't crash if the signature cannot
3542         be resolved.
3543
3544         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3545         of asserting for the case of invalid params.
3546
3547         Fixes #553304.
3548
3549 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3550
3551         * image.c (mono_image_load_module): Fix crash when a bad assembly
3552         has no module at all (fix bug #553412) and also replace the 
3553         g_assert with a return NULL (documented return value for failure)
3554
3555 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3556
3557         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3558
3559 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3560
3561         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3562         file attribute to managed code and avoid doing the mask/attribute
3563         checks here. 
3564
3565 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3566
3567         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3568         the managed world.
3569
3570         * icall-def.h: New entry points.
3571         
3572 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3573
3574         * process.c: Don't put references to managed objects into a
3575         g_ptr_array.
3576
3577 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3578
3579         * class.c (can_access_internals): Allow CoreCLR to participate in
3580         allowing (or not) [InternalsVisibleTo] between assemblies.
3581         * security-core-clr.c|h: Make sure that only trusted code (a 
3582         superset of platform code) can access the internals of platform
3583         code.
3584
3585 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3586
3587         * reflection.c: use the correct base class to get the virtual method
3588         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3589
3590 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3591
3592         * security-core-clr.c (get_caller_no_reflection_related): 
3593         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3594         it's still reflection and must be filtered correctly.
3595
3596 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3597
3598         * object.c (compute_class_bitmap): Fix for large bitmaps.
3599
3600 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3601
3602         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3603
3604         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3605         koush@koushikdutta.com). Disable GC_no_dls on android.
3606
3607 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3608
3609         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3610         tlab_next points outside the TLAB because the allocator was
3611         interrupted.
3612
3613 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3614
3615         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3616
3617 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3618
3619         * object-internals.h: Change signature for mono_string_to_utf8_image.
3620
3621         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3622         argument.
3623
3624         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3625         exceptions due to mono_string_to_utf8.
3626
3627 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3628
3629         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3630
3631         * object.c (mono_remote_class): Make sure all resources are released before
3632         raising an exception.
3633
3634         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3635
3636 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3637
3638         * mono-perfcounters.c (network_get_impl): Change variable initialization
3639         ordering to fix potential memory leak in case of exceptions.
3640
3641         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3642         encoded strings.
3643         
3644 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3645
3646         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3647         variable initialization ordering to fix potential memory leak in case
3648         of exceptions.
3649
3650 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3651
3652         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3653         needed.
3654
3655 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3656
3657         * appdomain.c: Fix shadow path code to better deal with exceptions.
3658
3659 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3660
3661         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3662         exception in the middle of the runtime code.
3663
3664 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3665
3666         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3667         leak memory with broken envvar value.
3668
3669 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3670
3671         * reflection.c (mono_reflection_setup_internal_class): Because
3672         nested classes are not added to the name cache, we must put them
3673         in the reflection_info_unregister_classes list.
3674
3675 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3676
3677         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3678         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3679         platform (trusted) code. Instead we return a TypeLoadException to
3680         be thrown later. This is the exception thrown by Silverlight 2 if
3681         a type, inside application (user) code is marked with [ComImport]
3682
3683 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3684
3685         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3686         mono_is_debugger_attached () too.
3687
3688         * mono-debug.c (mono_is_debugger_attached): New helper function.
3689         (mono_set_is_debugger_attached): Ditto.
3690
3691 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3692
3693         * object-internals.h: Add mono_string_to_utf8_checked.
3694
3695         * object.c: Implement mono_string_to_utf8_checked.
3696
3697 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3698
3699         * class.c: Add missing check for load errors after every
3700         call to mono_class_setup_fields
3701
3702         Fixes #552282.
3703
3704 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3705
3706         metadata-verify.c (verify_tables_schema): Fix the error message.
3707
3708 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3709
3710         * metadata.c: Change event table schema to use TDOR for event type
3711         as this is what it's meant to be.
3712
3713         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3714         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3715         entry.
3716
3717         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3718         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3719         rows in MONO_TABLE_GENERICPARAM.
3720
3721         Fixes #552289.
3722
3723 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3724
3725         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3726         insertion.
3727
3728         * reflection.c (mono_reflection_setup_internal_class): Avoid
3729         registering a gc root the same MonoClass multiple times.
3730         Don't register nested types on the global scope as they should
3731         not be available there.
3732
3733 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3734
3735         * culture-info-tables.h: regenerated.
3736
3737 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3738
3739         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3740
3741 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3742
3743         * string-icalls.c|h: Remove string internal calls that are not 
3744         used anymore by the class libraries.
3745         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3746         which is not used in the class librairies.
3747         * icall-def.h: Update tables.
3748
3749 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3750
3751         * class.h: Move mono_class_inflate_generic_type_checked...
3752
3753         * class-internals.h: to here and make it internal. We don't want to
3754         further expose MonoGenericContext. 
3755
3756 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3757
3758         * verify.c (mono_method_verify): Improve error message.
3759
3760 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3761
3762         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3763         the token is already properly encoded. Fixs 4.0 build.
3764
3765 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3766
3767         * locales.c (construct_number_format): Check if the number index is
3768         valid before trying to use it, if not, just return.
3769         
3770 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3771
3772         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3773         since that loses the abort state. Fixes #539394.
3774
3775 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3776
3777         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3778         explicit this argument to the call signature.
3779         (mono_marshal_get_icall_wrapper): Ditto.
3780
3781 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3782
3783         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3784         to indicate which assembly to use when resolving a custom-mod.
3785
3786         Fixes handling of volatile fields used across assemblies as reported in #551513.
3787
3788 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3789
3790         * loader.c: Improve error messages.
3791
3792 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3793
3794         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3795         of interfaces. Fixes IKVM.
3796
3797         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3798
3799 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3800
3801         * verify.c (verifier_inflate_type): Return the inflated type on success.
3802
3803 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3804
3805         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3806
3807         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3808
3809         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3810
3811         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3812         flag set.
3813
3814         * profiler.c: Add new profiler callbacks for runtime invoke.
3815
3816         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3817
3818 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3819
3820         * sgen-gc.c: Keep track of the reason for a major collection and
3821         write it to the heap-dump file.
3822
3823 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3824
3825         * threads.c: refactor the code that initializes the
3826         thread_start_args into a reusable function and use this in the two
3827         methods that start up threads.
3828
3829 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3830
3831         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3832         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3833
3834 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3835
3836         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3837         Until now, we only had the per-cpu(core) counters.
3838
3839 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3840
3841         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3842         mono_gc_get_suspend_signal(), which returns the suspend signal
3843         number used by the GC.
3844
3845 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3846
3847         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3848
3849         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3850         signalling start_notify.
3851
3852 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3853
3854         * appdomain.c: do not test the st_mode field for shadow-copies.
3855         Fixes bug #545276.
3856
3857 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3858
3859         * threadpool.[ch]: added hooks for thread start/finish and item
3860         processing begin/end. For monotouch use only.
3861
3862 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3863
3864         * threads.c (mono_thread_get_name): New helper function.
3865
3866         * reflection.c (resolve_object): Set handle_class for strings too.
3867         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3868         a cattr blob into a set of arrays and structures without creating the custom
3869         attributes themselves.
3870         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3871
3872         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3873
3874         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3875         function.
3876
3877 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3878
3879         * verify.c: Replace calls to mono_class_inflate_generic_type with
3880         mono_class_inflate_generic_type_checked. Fixes #480005.
3881
3882 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3883
3884         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3885         object since not all paths lead to callees initing it.
3886
3887 2009-10-23  Alp Toker  <alp@nuanti.com>
3888
3889         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3890         header and should not be shipped:
3891
3892         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3893         which is specific to the mono build. Not going to work.
3894
3895 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3896
3897         * security-manager.c: Report if core-clr is active from
3898         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3899         to allow Moonlight BCL to behave appropriately (both in browser
3900         and outside, e.g. smcs)
3901
3902 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3903
3904         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3905         Fixes bug #549108.
3906
3907 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3908
3909         * class.c: fix typo.
3910
3911 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3912
3913         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3914         a MonoError parameter.
3915
3916         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3917         version that can does proper error handling.
3918
3919         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3920
3921         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3922
3923         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3924
3925 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3926
3927         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3928         NO_UNALIGNED_ACCESS is defined.
3929
3930 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3931
3932         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3933         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3934         Fixes #549173.
3935
3936 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3937
3938         * sgen-gc.c: Shorten sections whenever possible.
3939
3940 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3941
3942         * sgen-gc.c: Use our portable semaphore #defines.
3943
3944 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3945
3946         * sgen-gc.c: A debug option for dumping the heap layout to a file
3947         after each collection.
3948
3949 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3950
3951         * sgen-gc.c: Make managed write barriers atomic via
3952         thread-restarts.
3953
3954 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3955
3956         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3957         methods. Fixes #543021.
3958
3959 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3960
3961         * socket-io.[ch]: fix VS build.
3962
3963 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3964
3965         * icall-def.h:
3966         * socket-io.[ch]: implemented SendFile.
3967
3968 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3969
3970         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3971         before the interfaces to avoid crashes later if class initialization fails.
3972         Fixes #548417.
3973
3974         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3975         Fixes #548276.
3976
3977 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3978
3979         * domain.c: Bump 4.0 version.
3980
3981 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3982
3983         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3984         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3985         check since 'pubkey' can't be NULL at this stage
3986         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3987         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3988         initialization of 'iter'
3989
3990 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3991
3992         * cominterop.c : Search the interface parts of vtable to find 
3993           method matches.  Fixes 547030.
3994
3995         Code is contributed under MIT/X11 license.
3996
3997 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3998
3999         * marshal.c: BeginInvoke cannot be called on multicast delegates with
4000         multiple targets. Fixes bug #574426.
4001
4002 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4003
4004         * profiler.h: Put here the definition of
4005         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
4006         (and fix the build...).
4007
4008 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4009
4010         * profiler.c, profiler.h, profiler-private.h:
4011         Added support for different ways of getting call chains in stat mode.
4012
4013 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4014
4015         * object.c, object-internals.h: New function for computing the
4016         size of an array, factored out of mono_array_new_full().  Use
4017         SGen's functions for allocating arrays and vectors.
4018
4019         * sgen-gc.c, gc-internal.h: Special functions for allocating
4020         arrays and vectors without race conditions.  A managed array
4021         allocator method.
4022
4023         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
4024
4025 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4026
4027         * object.c, object.h, icall.c: Write barriers do the copying now,
4028         as well, so no need for an additional memcpy.
4029
4030         * sgen-gc.c: Lock when storing remsets.  Do the memory
4031         copying/moving in the write barriers.
4032
4033         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
4034
4035         * reflection.c: Added an assert.
4036
4037 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4038
4039         * threads.c, process.c: A few missing write barriers.
4040
4041 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
4042
4043         * mono-perfcounters.c, mono-perfcounters-def.h: Add
4044         network performance counters for bytes sent per second, bytes
4045         received per second, and bytes total per second.
4046
4047         Code is contributed under MIT/X11 license.
4048
4049 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4050
4051         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4052         Fix warning.
4053
4054 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4055
4056         * threads.c, object-internals.h, object.c: Move code for
4057         transferring an object to a different domain (via
4058         serialization/remoting) to object.c.
4059
4060         * object.c (call_unhandled_exception_delegate): If the exception
4061         is in a different domain than the delegate, transfer the exception
4062         to that domain.
4063
4064 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
4065
4066         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
4067         Fixes #322934.
4068
4069 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
4070
4071         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
4072
4073 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4074
4075         * object.c (mono_method_return_message_restore): Handle the case
4076         where the argument is an instance of a generic type.  Fixes
4077         #544446.
4078
4079 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4080
4081         * object.c (set_value): Write barrier fix - we must pass the
4082         count, not the size.
4083
4084 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
4085
4086         * domain.c (mono_init_internal): Print a useful error message when encountering
4087         an old mscorlib, instead of crashing. Fixes #544307.
4088
4089 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
4090
4091         * appdomain.c (copy_app_domain_setup): Fix a warning.
4092
4093         * debug-helpers.c (dis_one): Ditto.
4094
4095 2009-10-04  Mark Probst  <mark.probst@gmail.com>
4096
4097         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
4098         into the new domain, instead of referencing the original one.
4099
4100         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
4101         non-static.
4102
4103         * appdomain.c: Corlib version bump.
4104
4105 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4106
4107         * threadpool.c: one more...
4108
4109 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4110
4111         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
4112         threads to die because we're shutting down. delgate5.exe works again.
4113
4114 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
4115
4116         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
4117           ccw_interface_hash table when a ccw is finalized.
4118
4119         Code is contributed under MIT/X11 license.
4120
4121 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4122
4123         * assembly.c, domain.c, image.c, metadata-internals.h: Split
4124         domain and image unloading into two steps.  We must do this
4125         because clearing the domain in SGen requires the class metadata to
4126         be intact, but we need to free the mono_g_hash_tables in case a
4127         collection occurs during domain unloading and the roots would trip
4128         up the GC.
4129
4130 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4131
4132         * object-internals.h: Remove serialized culture fields from
4133         MonoInternalThread.
4134
4135         * icall-def.h, thread-types.h, threads.c: Remove serialized
4136         culture icalls.
4137
4138         * appdomain.c: Corlib version bump.
4139
4140 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
4141
4142         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
4143         Fixes #543133.
4144
4145 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4146
4147         * sgen-gc.c: Try to shorten the new section after a major
4148         allocation to avoid ever-growing sections.
4149
4150 2009-10-13  Martin Baulig  <martin@ximian.com>
4151
4152         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
4153         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
4154         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
4155         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4156
4157         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
4158
4159 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
4160
4161         * threadpool.c: fixed the order in which 'completed' and the wait
4162         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
4163         No need to use the wait_handle field of ASyncCall. Make sure the
4164         threadpool is active when adding a job or queueing an idle thread.
4165
4166 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
4167
4168         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
4169
4170         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
4171         when using --compile-all.
4172
4173 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4174
4175         * metadata.c (free_generic_class): Unregister the field_objects
4176         roots if we're using SGen.
4177
4178 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4179
4180         * reflection.c (mono_dynamic_image_free): Deregister the GC root
4181         for GenericParamTableEntry.gparam.
4182
4183 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4184
4185         * marshal.c: don't create the handle when calling. It is created later
4186         if needed.
4187
4188 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4189
4190         * sgen-gc.c: Warning fixes.
4191
4192 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4193
4194         * sgen-gc.c: New debug option "xdomain-checks", which scans the
4195         whole heap for cross-domain references before each collection.
4196
4197         * sgen-scan-object.h: The scan action can now use SCAN to scan the
4198         object.
4199
4200         * threadpool-internals.h, threadpool.c: New function
4201         mono_thread_pool_is_queue_array() for checking whether a given
4202         array is used as a (cross-domain) queue by the thread pool code.
4203
4204 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4205
4206         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
4207         searches the whole heap for objects containing a specific
4208         reference.  Only for debugging.
4209
4210 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4211
4212         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
4213
4214         * icall-def.h, threads.c, threads-types.h: New icalls for copying
4215         byte arrays between domains.
4216
4217 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4218
4219         * threadpool.c:
4220         * class-internals.h:
4221         * mono-perfcounters-def.h:
4222         * mono-perfcounters.c:
4223         -There is a list of idle threads
4224         -Each of those idle threads wait on their own WaitHandle instead
4225         of all of them using the same semaphore. When a new work item is
4226         added, the job is assigned directly to an idle thread or a newly
4227         created one if possible and then the handle for that thread is
4228         signaled. Compare that to the current approach where all the
4229         threads in the pool compete to dequeue a job from the same
4230         queue.
4231         -New struct ThreadPool that brings together the bunch of static
4232         variable for each threadpool (IO and regular).
4233         -New performance counters: # of items added and its rate per
4234         threadpool. The rate will be used later, perhaps together with
4235         other perf. counters, to decide when idle threads should exit.
4236
4237 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
4238
4239         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
4240         Fix typo on Windows build.      
4241         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
4242         
4243         Code is contributed under MIT/X11 license.
4244
4245 2009-09-25  Mark Probst  <mark.probst@gmail.com>
4246
4247         * object-internals.h: The Thread class is split up into Thread and
4248         InternalThread now.  We have exactly one InternalThread per
4249         thread, and at most one Thread per appdomain per thread.  Most
4250         data is stored in InternalThread.  All InternalThread objects live
4251         in the root domain.
4252
4253         * class-internals.h: Add internal_thread_class to MonoDefaults.
4254
4255         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
4256         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
4257         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
4258         resulting from the split of the Thread class.
4259
4260         * gc-internal.h: Prototype for new function for checking whether a
4261         thread is the finalizer thread.
4262
4263         * appdomain.c: Corlib version bump.
4264
4265 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4266
4267         * appdomain.c|h: Add a mono_domain_try_unload method which is
4268         equivalent to mono_domain_unload, except that it returns an exception
4269         instead of throwing it. Make mono_domain_unload use the
4270         mono_domain_try_unload method to avoid code-duplication.
4271
4272 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
4273
4274         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
4275         a problem.
4276
4277 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
4278
4279         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
4280         aborting when a conversion is not implemented.
4281
4282 2009-09-23  Miguel de Icaza  <miguel@novell.com>
4283
4284         * verify.c: when comparing culture strings, use g_ascii_strcmp
4285
4286         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
4287         when comparing public key tokens to use memcmp on 16 bytes.   I do
4288         not believe this ever worked as advertised in the past.
4289
4290         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
4291         which would have always failed earlier.
4292
4293 2009-06-25  Miguel de Icaza  <miguel@novell.com>
4294
4295         * gc.c: Raise a NullArgumentException if the object passed is
4296         null.
4297
4298 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
4299
4300         * image.c (mono_image_close): Atomically decrement the reference count and
4301         remove the image from the hash tables, to prevent another thread from seeing a
4302         dying MonoImage. Fixes #541194.
4303
4304 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4305
4306         * threadpool.c: actually use the minimum number of 'completion ports'
4307         (for us is just a potential worker thread).
4308
4309 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4310
4311         * threadpool.c: remove ares_htable. It does not make sense any more
4312         since the same objects are now stored in GC-tracked arrays while they are
4313         in the queue.
4314
4315 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4316
4317         * threadpool.c: increase the minimum length of the queues to 128.
4318         Remove warning.
4319
4320 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
4321
4322         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
4323         return the modified signature used by string ctors.
4324
4325 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
4326
4327         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
4328         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
4329         method, to be used by full-aot.
4330
4331 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
4332
4333         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
4334         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
4335         be known to be good.
4336
4337         * class.c (mono_class_init): Fail array types if their element type fails initialization
4338         as well.
4339
4340         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
4341         initialization, additionally we request the element_type vtable to be initialized as well.
4342
4343         This is fine and should not increase the working set in any meaningful way since it's reasonable
4344         to assume       that most code will create an array and eventually populate it, which will require the
4345         type's vtable to be initialized.
4346
4347         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
4348
4349 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
4350
4351         * normalization-tables.h : regenerated.
4352
4353 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4354
4355         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
4356         a leb128 encoding can take up to 5 bytes.
4357
4358 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4359
4360         * class.c (verify_class_overrides): Remove useless argument.
4361
4362         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
4363         before interface enumeration as this is no longer required.
4364
4365 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4366
4367         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
4368         used under mono_class_init context. This functions avoid any code path that
4369         calls mono_class_init, which leads it to be slow as some things like the interface
4370         bitmap are not available.
4371
4372         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
4373         of it's own broken version. Fixes the verifier part of #538588.
4374
4375         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
4376         API.
4377
4378 2009-09-15  Mark Probst  <mark.probst@gmail.com>
4379
4380         * class.c (mono_class_init): Always set an exception in a class if
4381         vtable setup fails.  Fixes #538577.
4382
4383         * generic-sharing.c: Raise an exception if mono_class_vtable()
4384         returns NULL.
4385
4386 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
4387
4388         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
4389         methods of vtypes, as they could be incorrectly shared with static methods
4390         taking an IntPtr argument.
4391
4392 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4393
4394         * domain.c:
4395         * object.c:
4396         * class-internals.h: renamed waithandle_class to
4397         manualresetevent_class.
4398         * marshal.c: propagate the exception if a remoting BeginInvoke call
4399         fails.
4400
4401 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4402
4403         * object.c: Properly handle vtable failures.
4404
4405 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4406
4407         * socket-io.c: Assert on vtable failure.
4408
4409         * mono-mlist.c: Assert on vtable failure.
4410
4411 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4412
4413         * marshal.c: Assert on vtable failure.
4414
4415 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4416
4417         * icall.c: Properly handle vtable failures.
4418
4419 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4420
4421         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4422
4423 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4424
4425         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4426
4427         * console-unix.c (do_console_cancel_event): Same.
4428
4429 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4430
4431         * class-internals.h: Add mono_class_vtable_full function that allows control
4432         if an exception should be raised or not.
4433
4434         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4435         to do what its documentation say, that is to return NULL and set exception_type on
4436         failure.
4437
4438         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4439         and change the code to honor it.
4440
4441 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4442
4443         * verify.c: Fix typo in error message.
4444
4445 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4446
4447         * security-core-clr.c: Fix default_platform_check so it can run
4448         the runtime coreclr tests (without an infinite recursion when
4449         throwing an exception).
4450
4451 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4452
4453         object.c (mono_delegate_ctor_with_method): Guard against null method.
4454
4455 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4456
4457         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4458         that should be replaced with error handling later.
4459
4460 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4461
4462         * marshal.c (mono_delegate_end_invoke): Fix warning.
4463
4464 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4465
4466         * loader.c (mono_field_from_token): Properly handle invalid
4467         dynamic tokens.
4468
4469 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4470
4471         * pedump.c (verify_image_file): Skip types that can't be
4472         decoded.
4473
4474 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4475
4476         * verify.c: Look for recursive valuetypes only against the
4477         type been initialized as this is a lot simpler and works.
4478
4479 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4480
4481         * verify.c: Ensure that fields are properly loaded before
4482         checking them.
4483
4484 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4485
4486         * object.c (mono_object_get_virtual_method) : Call 
4487           mono_cominterop_get_invoke if the object is a COM object.
4488
4489         Code is contributed under MIT/X11 license.
4490
4491 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4492
4493         * verify.c: Check for recursive valuetype definitions.
4494
4495 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4496
4497         Use inheritance-aware interface offsets. Inherited types use the same offsets
4498         of their parents. This reduce offset duplication in case more than one type in
4499         the inheritance tree explicitly implements the same interface.
4500
4501         This also removes a source of vtable bubbles found in #532409. An abstract type
4502         isn't required to provide abstract methods to all interfaces it implements, which
4503         resulted in a bubble with the previous scheme as the child would get a non-full
4504         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4505         should be fixed.
4506
4507         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4508         it's expected to not cause any significant increase beyond that.
4509
4510         * class.c (setup_interface_offsets): Compute super class iface offsets
4511         first to force sharing.
4512
4513         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4514         dumping only the relevant ones.
4515
4516         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4517         methods a new slot regardless if they belong to an interface or not. This allows
4518         an inherited type to override the iface method separately from the class one.
4519
4520 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4521
4522         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4523         applications that take less than 2s to execute.
4524         Bug #524984 fixed.
4525
4526 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4527
4528         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4529
4530         * object.c (mono_get_runtime_callbacks): New helper function to return
4531         the runtime callbacks.
4532
4533         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4534         mono_get_runtime_build_info () as the display name.
4535         
4536 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4537
4538         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4539         argument, since NEWARR expects a native int. Fixes #481559.
4540
4541 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4542
4543         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4544         against broken SRE methods.
4545
4546 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4547
4548         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4549         a NULL variable. Abort early on failure.
4550
4551 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4552
4553         * class.c (can_access_type): Fail visibility test for non nested
4554         types with nested visibility.
4555
4556 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4557
4558         * assembly.c (parse_public_key): Avoid allocating (and not 
4559         freeing) the public key array when it's not requested by the 
4560         caller.
4561         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4562         ves_icall_System_Threading_Thread_Thread_internal): Free 
4563         allocated memory on error.
4564
4565 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4566
4567         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4568
4569 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4570
4571         * class.c (mono_class_setup_fields): Remove duplicated local variable
4572         named gklass.
4573         Rename gklass to gtd to reflect the fact that it points to the generic
4574         type definition.
4575         Remove the duplicated call to mono_class_setup_fields on gtd and move
4576         the error check to the beginning.
4577
4578 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4579
4580         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4581         Remove cruft of the previous patch.
4582
4583 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4584
4585         * metadata-verify.c (verify_method_table): Check for abstract + final.
4586         Fixes #534175.
4587
4588 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4589
4590         * verify.c (verify_class_fields): Check for duplicate fields.
4591
4592 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4593
4594         * metadata-verify.c: Verify the typeref table for duplicates.
4595
4596 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4597
4598         This reverts r140936 and properly handles interfaces with static methods. The
4599         right fix is to ensure vtables without bubles which is an easier to verify
4600         constraint. We should avoid such special cases as of the reverted patch as those
4601         only make the runtime more brittle.
4602
4603         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4604         static methods on interfaces.
4605
4606         * class.c (setup_interface_offsets): Use the number of virtual methods when
4607         calculating interface offsets instead of the number of methods. This way we
4608         avoid bubles on the layout.
4609
4610 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4611
4612         * metadata-verify.c (verify_metadata_header): Some very smart
4613         obfuscators like to add extra stream headers. Ignore them.
4614
4615 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4616
4617         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4618         methods correctly.
4619
4620 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4621
4622         * metadata-verify.c: Verify for duplicated types.
4623
4624 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4625
4626         * metadata-verify.c (verify_typedef_table): Verify for nested types
4627         without an entry on the nested class table.
4628
4629 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4630
4631         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4632         <tom_hindle@sil.org>. Add locking around hash table accesses.
4633
4634 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4635
4636         * verify.c (mono_verifier_verify_class): Verify all interface if
4637         really are interfaces. Fixes #534184.
4638
4639 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4640
4641         * pedump.c: Initialize all types during metadata validation so we report
4642         errors only detected as part of class initialization.
4643
4644 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4645
4646         * metadata-verify.c (verify_method_table): PInvoke requires method to
4647         be static. Fixes #534189
4648
4649 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4650
4651         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4652         being NULL.
4653
4654 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4655
4656         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4657         for holes or bad methods. Fixes #525314.
4658
4659 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4660
4661         * class.c (setup_interface_offsets): Don't allocate slot
4662         for the same interface multiple times. This creates bubbles
4663         that waster space and make vtable verification harder.
4664
4665         The same interface get a slot multiple times since we need
4666         to get the closure of all implemented interfaces, which means
4667         the same interface is reported multiple times.
4668
4669 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4670
4671         * verify.c (mono_verifier_verify_class): Don't check the fields
4672         of generic instances since the context on which they got expanded
4673         might lead to false positives.
4674
4675         Such thing happens when a generic type is inflated in the context
4676         of a generic method and the inflated type of a field turns into a
4677         generic method argument, which causes the checking code to think
4678         it's an invalid class when it's not.
4679
4680 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4681
4682         * verify.c (mono_type_is_valid_in_context): Verify if type
4683         is NULL and remove duplicate test.
4684
4685 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4686
4687         * verify.c (mono_verifier_verify_class): Check fields for
4688         invalid generic arguments.
4689
4690 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4691
4692         * class.c (verify_class_overrides): Verify if for static
4693         and non virtual methods.
4694
4695 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4696
4697         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4698         Check for errors after retrieving the vtable.
4699
4700 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4701
4702         * class.c (mono_class_setup_vtable_general): Verify
4703         if method overrides are valid before processing them.
4704
4705 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4706
4707         * marshal.c (mono_array_to_lparray): Fix minimal build with
4708         cominterop disabled.
4709
4710         * marshal.c (mono_free_lparray): Same.
4711
4712 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4713
4714         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4715         the hash function for the ares_htable.
4716
4717 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4718
4719         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4720         bit for assembly flags. MS is ok with it but there is no spec anywhere
4721         on its mean
4722
4723 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4724
4725         * class.c (mono_class_create_from_typedef): Emit profiler events
4726         in all cases.
4727
4728 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4729
4730         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4731         Release memory on failure.
4732
4733 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4734
4735         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4736         to the internal API.
4737
4738         * metadata.c (get_constraints): Use a single-linked table as we don't
4739         traverse it backward. Fail and return FALSE if only of the contraint types
4740         is not found.
4741
4742         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4743         to mono_metadata_load_generic_param_constraints except for having a return value.
4744         This has to be done since the later is part of the public API.
4745
4746         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4747         and fail the type.
4748
4749         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4750         and fail the method.
4751
4752 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4753
4754         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4755         with MS broken behavior of emmitting EH section sizes without the
4756         header size added.
4757
4758 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4759
4760         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4761         memory until we're sure that we'll need it. This avoids leaking for
4762         broken types or duplicated instantiation.
4763
4764 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4765
4766         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4767         mistake.
4768
4769 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4770
4771         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4772         and expected size calculation.
4773
4774 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4775
4776         * class.c (mono_class_get_field_idx): Add fixme for broken
4777         behavior for types with multiple fields with the same name.
4778         I would rather fix it, but have no idea on how to generate
4779         such artifact for testing.
4780
4781 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4782
4783         * verify.c (verifier_load_field): We should allow references to
4784         fields to be made using the generic type definition. It's up to
4785         the loader system to fail invalid ops.
4786
4787         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4788         are invalid.
4789
4790 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4791
4792         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4793
4794         * metadata-internals.h: Fix declaration of 
4795         mono_metadata_interfaces_from_typedef_full.
4796
4797         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4798         heap_alloc_result parameter that controls if the result should be
4799         g_malloc'd.
4800
4801         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4802         array be g_malloc'd and properly document this public API function.
4803
4804 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4805
4806         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4807         remove METHOD_HEADER_TINY_FORMAT1.
4808
4809         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4810
4811         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4812
4813         Both spec and MS uses only 2 bits to enumerate the kind of header.
4814         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4815         is superfluous, only used for tiny headers with odd code lengths.
4816
4817         This change also make sure that mono doesn't wronly interpret bit 2
4818         of fat header flags, which is currently reserved.
4819
4820 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4821
4822         * metadata.c (do_mono_metadata_parse_type): Do error
4823         checking for element types. Don't abort if presented
4824         with a broken type kind.
4825
4826 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4827
4828         * metadata.c (mono_metadata_parse_method_signature_full):
4829         Gracefully fail bad vararg signatures.
4830
4831 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4832
4833         * profiler.c:
4834         * class.c: Fix warnings for uninitialized variables.
4835
4836 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4837
4838         * icall.c: Fix _NSGetEnviron method declaration warning.
4839
4840 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4841
4842         * icall.c:
4843         * reflection.c: Make bitwise checks explicit.
4844
4845 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4846
4847         * debug-helpers.c:
4848         * marshal.c: Fix printf warnings.
4849
4850 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4851
4852         * reflection.c (encode_cattr_value): Fix a warning.
4853
4854 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4855
4856         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4857         of array bounds.
4858
4859 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4860
4861         * loader.c (mono_method_signature): Don't assert on broken
4862         signature. Print a more useful error message.
4863
4864 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4865
4866         * loader.c (mono_method_get_marshal_info): Assert if
4867         signature is invalid. Bounds check stores to the
4868         mspecs array;
4869
4870 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4871
4872         * loader.c (field_from_memberref): Fix warning.
4873
4874 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4875
4876         * loader.c (mono_method_get_param_names): Check if signature
4877         is null. Don't store beyond the size of the name array.
4878
4879 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4880
4881         * loader.c (mono_get_method_constrained): Check if signature
4882         is null.
4883
4884 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4885
4886         * loader.c (mono_loader_set_error_bad_image): Improve
4887         error messages.
4888
4889 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4890
4891         * loader.c (mono_get_method_full): Convert an assertion
4892         into a loader error.
4893
4894 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4895
4896         * class-internals.h, class.c: Better naming and documentation.
4897
4898 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4899
4900         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4901         obj is NULL.
4902
4903 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4904
4905         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4906         parsing fails.
4907
4908 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4909
4910         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4911         errors with no class set.
4912
4913         * loader.c (field_from_memberref): If the field signature is of the wrong
4914         type fail with a MissingFieldException instead of a BadImageException as
4915         this is the behavior observed on MS. 
4916
4917 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4918
4919         * loader.c (field_from_memberref): Don't crash if either the field
4920         signature or the typespec class are invalid.
4921
4922 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4923
4924         * verify.c (verifier_load_field): Don't allow field related
4925         ops to reference fields on generic type definition.
4926
4927 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4928
4929         * metadata-verify.c: Add new warning level for errors specified
4930         by ECMA 335 but that MS ignores.
4931
4932         * metadata-verify.c (verify_method_table): Make compiler controled
4933         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4934         this check is safe because the end result will only be some visibility
4935         exceptions been thrown.
4936
4937 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4938
4939         * verify.c (get_boxable_mono_type): Don't allow the
4940         use of the generic type definition on boxed type positions.
4941
4942         Fixes #531237.
4943
4944 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4945
4946         * threadpool.c: Make sure no cross-domain references remain in
4947         ares_htable or the arrays that are thrown away when resizing.
4948
4949 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4950
4951         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4952         list of classes for which we have to unregister reflection_info
4953         with the GC and which are not in the namespace cache.
4954
4955         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4956         the class to the list.
4957
4958 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4959
4960         * domain.c (mono_domain_free): Unregister the GC roots in
4961         MonoDomain.
4962
4963 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4964
4965         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4966
4967 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4968
4969         * class.c: Add mono_class_get_field_from_name_full which does
4970         the same as mono_class_get_field_from_name but does check field
4971         signature as well.
4972
4973         * class-internals.h: Export mono_class_get_field_from_name_full as
4974         part of the internal API.
4975
4976         * loader.c (field_from_memberref): Search fields by name and signature
4977         as it's valid to have two fields with same name but different types.
4978
4979         Fixes #528055.
4980
4981 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4982
4983         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4984
4985         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4986
4987         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4988         System.Type.
4989
4990 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4991
4992         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4993
4994         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4995
4996 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4997
4998         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4999         to sgen-scan-object.h, which can be included and parameterized via
5000         macros.
5001
5002         * Makefile.am: sgen-scan-object.h added.
5003
5004 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5005
5006         * gc.c: #define GC_dont_gc if we're compiling with SGen.
5007
5008 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5009
5010         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
5011         before clearing a domain in the GC.
5012
5013 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5014
5015         * exception.c (mono_exception_from_name_domain): Actually create
5016         the exception in the specified domain.
5017
5018         * appdomain.c (mono_domain_create_appdomain_internal): Create the
5019         OutOfMemoryException a bit later so that the domain is inialized
5020         "enough" that it works.
5021
5022 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5023
5024         * threads.c (thread_cleanup): Clean up the cached_culture_info
5025         array to prevent cross-domain references.
5026
5027 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
5028
5029         * metadata.c: more documentation for MonoType accessors.
5030
5031 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
5032
5033         Fix incorrect size definitions where the tail array isn't a list
5034         of pointers
5035         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
5036         define size.
5037         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
5038         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
5039         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
5040
5041 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5042
5043         * reflection.h:
5044         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
5045
5046 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5047
5048         * metadata.c:
5049         * loader.c:
5050         * metadata-internals.h:
5051         * method-builder.c:
5052         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
5053
5054 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5055
5056         * cominterop.c:
5057         * metadata.c:
5058         * metadata.h:
5059         * loader.c:
5060         * marshal.c:
5061         * reflection.c: #define for sizeof in MonoType and
5062         MonoMethodSignature.
5063
5064 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5065
5066         * domain.c:
5067         * domain-internals.h: add and use #define's instead of sizeof()
5068         for MonoJitInfo and MonoJitInfoTable.
5069
5070 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5071
5072         * object.c:
5073         * class.h: use #define instead of sizeof() for MonoRemoteClass.
5074
5075 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5076
5077         * metadata.c:
5078         * metadata.h:
5079         * object.c:
5080         * class-internals.h:
5081         * generic-sharing.c:
5082         * marshal.c: use a #define instead of sizeof() for a few
5083         structures that use a zero-length array.
5084
5085 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5086
5087         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
5088         to handle inflated generic methods.
5089
5090         * appdomain.c: Bump corlib version.
5091
5092         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
5093         instances.
5094
5095         * reflection.c (fixup_method): Same
5096
5097         * reflection.c (resolve_object): Same.
5098
5099         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
5100         g_error and a decent message.
5101
5102 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
5103
5104         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
5105         from the object because it could not yet be available globally
5106         (it happens if the profiler tries to create a gchandle on the
5107         MonoThread object of a thread that is still registering itself
5108         with the runtime).
5109
5110 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
5111
5112         * reflection.c (mono_generic_class_get_object): Initialized the
5113         managed type arguments array.
5114
5115         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
5116
5117         * appdomain.c: Bump corlib version.
5118
5119 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
5120
5121         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
5122         #527902.
5123
5124 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
5125
5126         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5127         Avoid a crash if synch_cs is not set.
5128         
5129         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5130         Handle the case when the handle is 0.
5131
5132         * appdomain.c: Bump corlib version.
5133
5134 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
5135
5136         * reflection.c (mono_type_get_object): Fix a warning.
5137
5138 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5139
5140         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
5141         descriptor here.  We assume it's already been computed.
5142
5143         * generic-sharing.c (instantiate_other_info): Compute the GC
5144         descriptor for info type MONO_RGCTX_INFO_KLASS.
5145
5146 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5147
5148         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
5149         type, so don't use MONO_OBJECT_SETREF to set a field.
5150
5151 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5152
5153         * gc.c: We were missing one case where invoking a finalizer would
5154         not reset the domain.  Also, in the finalizer thread loop, assert
5155         that we're in the root domain.
5156
5157 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5158
5159         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
5160         if the type is not an array.
5161
5162 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5163
5164         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
5165         method bound to the declaring type of the method. Raise an exception
5166         if the type is not a generic param.
5167
5168 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5169
5170         * class.c (print_unimplemented_interface_method_info): Print the
5171         full type name.
5172
5173         * class.c (mono_class_setup_vtable_general): When dealing with a
5174         generic instance first check if the generic type definition is
5175         not broken.
5176
5177 2009-02-11 Tom Hindke <tom_hindle@sil.org>
5178
5179         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
5180
5181         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
5182
5183         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
5184
5185         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
5186
5187         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
5188
5189         Code is contributed under MIT/X11 license
5190
5191 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
5192
5193         * verify.c: Fix naming of stelem and ldelem.
5194
5195 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5196
5197         * generic-sharing.c: Replace the templates lock with the loader
5198         lock because of very hard to resolve deadlock issues.
5199
5200 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
5201
5202         * icall.c (ves_icall_Type_GetMethodsByName): Use 
5203         mono_class_get_vtable_size () instead of accessing klass->vtable_size
5204         directly. Fixes #525338.
5205
5206         * class.c (mono_class_get_vtable_size): New helper function.
5207
5208         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
5209         the field belongs to the type. Fixes #525733.
5210
5211 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5212
5213         * sgen-gc.c: When we stop a thread and its stack top is not within
5214         its allocated stack (because it's in an altstack signal handler),
5215         restart it and stop it again, until it is.
5216
5217 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5218
5219         * sgen-gc.c: Take a thread's stack top and registers from the
5220         sigcontext in the suspend signal handler.
5221
5222         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
5223         stuff to sgen-archdep.h.
5224
5225         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
5226         caller, because have code in sgen-archdep.h to acquire that data.
5227
5228 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
5229
5230         * profiler.c, profiler.h, profiler-private.h:
5231         Added support for keeping track of code chunks and buffers.
5232
5233 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
5234
5235         * metadata-verify.c: Fix endianness problems on decoding functions.
5236         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
5237
5238 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5239
5240         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
5241         schema for vectors and one dimension SZARRAY.
5242
5243 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5244
5245         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
5246         schema for vectors and one dimension SZARRAY.
5247
5248 2009-07-27  Mark Probst  <mark.probst@gmail.com>
5249
5250         * icall-def.h, thread-types.h, threads.c: New separate icalls for
5251         Interlocked.(Compare)Exchange with object arguments, which invoke
5252         write barriers.
5253
5254 2009-07-26  Miguel de Icaza  <miguel@novell.com>
5255
5256         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
5257         passed invalid arguments.   Fixes another crasher in the
5258         Silverlight test suite.
5259
5260         * class.c (mono_class_array_element_size): Return 0 for the size
5261         of the class;  This fixes the crasher exposed by :
5262
5263         typeof (void).MakeArrayType ();
5264
5265         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
5266         if there is no method to dereference.    Put all the code that
5267         depends on this inside the if (method) block.
5268
5269         This fixes the crasher exposed by Microsoft's Silvelright CLR test
5270         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
5271
5272         With this change, we pass the test.
5273         
5274         * reflection.c (mono_reflection_sighelper_get_signature_local):
5275         Only dereference the assembly if it has been set.    Fixes a
5276         crasher exposed by #525328
5277
5278 2009-07-25  Mark Probst  <mark.probst@gmail.com>
5279
5280         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
5281         don't perform the store in mono_gc_wbarrier_generic_nostore().
5282         Remove the second argument (value), which is not needed.
5283
5284 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
5285
5286         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
5287         the build.
5288
5289         * boehm-gc.c: Ditto.
5290         
5291 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5292
5293         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
5294         not perform the store itself.  Introduce
5295         mono_gc_wbarrier_generic_nostore(), which is the same as
5296         mono_gc_wbarrier_generic_store(), except it doesn't perform the
5297         store.
5298
5299 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5300
5301         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
5302         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
5303         we still need the memcpy().
5304
5305 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5306
5307         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
5308         so that big arrays are handled correctly.  Always use
5309         safe_object_get_size() to calculate array object sizes, which
5310         takes bounds into account.
5311
5312 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5313
5314         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
5315         GC descriptor is computed before we use it.
5316
5317 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5318
5319         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
5320         write barrier if necessary.
5321
5322 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5323
5324         * icall-def.h, icall.c, thread-types.h: New separate icall for
5325         VolatileWrite(object&,object) that uses a write barrier.
5326
5327         * console-unix.c, file-io.c, icall.c, threads.c: Use write
5328         barriers in icalls which write to "ref" or "out" arguments.
5329
5330 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
5331
5332         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
5333         handler in a separate icall, to reduce the size of the wrappers.
5334
5335 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5336
5337         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
5338
5339 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5340
5341         * metadata-verify.c (parse_field): Allow byref field.
5342
5343         * metadata-verify.c (parse_locals_signature): Allow byref locals.
5344
5345         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
5346
5347 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5348
5349         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
5350         Fixes #522784.
5351
5352 2009-07-20  Robert Jordan  <robertj@gmx.net>
5353
5354         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
5355         Fix invalid IL in valuetype handling (STOBJ must push the
5356         corresponding class). Fixes bug #523149.
5357
5358         Code is contributed under MIT/X11 license.
5359
5360 2009-07-20  Geoff Norton  <gnorton@novell.com>
5361
5362         * gc.c: Use proper semaphores where available on posix and darwin.
5363
5364 2009-07-19  Geoff Norton  <gnorton@novell.com>
5365
5366         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
5367
5368 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
5369
5370         * refletion.c (is_sre_usertype): Change name to is_usertype and
5371         invert it's result so it returns true if the type is an user type
5372         and not the opposite.
5373
5374         * reflection.c (is_*_type): Change all of those to use new macro
5375         check_corlib_type_cached that cached the type lookup so we don't
5376         need to do string comparisons all the type. Changed the signature
5377         to take a MonoClass instead.
5378
5379         * reflection.c: Change mono_image_create_token and resolve_object
5380         to use is_sre_* functions.
5381
5382 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5383
5384         * sgen-gc.c: Check for writes to the stack in the managed
5385         wbarrier as well.
5386
5387 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5388
5389         * sgen-gc.c: When a thread is unregistered, don't free its remsets
5390         but put them on a list which is processed with the other thread's
5391         remsets.
5392
5393 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5394
5395         * sgen-gc.c: Fix and enable the internal allocator instead of
5396         using malloc/free (which causes deadlocks).
5397
5398 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5399
5400         * refletion.c: Fix builds with SRE disabled by adding a minimal
5401         implementation of mono_reflection_type_get_handle.
5402
5403 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5404
5405         * refletion.c: Make mono_reflection_type_get_handle non static.
5406
5407         * object-internals.h: Export mono_reflection_type_get_handle.
5408
5409         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5410         unmanaged handle using mono_reflection_type_get_handle.
5411
5412 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5413
5414         * refletion.c: Replace all reads of MonoReflectionType::type with
5415         calls to mono_reflection_type_get_handle. Only the functions that
5416         deal with constructing TypeBuilder::type have not been changed
5417         because they have to deal with NULL values.
5418
5419         This is a first step into supporting reflection types that don't
5420         map directly into their unmanaged counterpart.
5421
5422 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5423
5424         * metadata-verify.c (parse_locals_signature): Don't complain
5425         on signature with zero locals since MS generates it and doesn't
5426         bother with.
5427
5428 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5429
5430         * reflection.c (mono_image_get_array_token): Resolve return
5431         type using mono_reflection_type_get_handle.
5432
5433         * reflection.c (mono_image_get_array_token): Resolve array method
5434         parent type using mono_reflection_type_get_handle.
5435
5436 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5437
5438         * reflection.c (mono_image_basic_init): Applied patch from
5439         <Dax@daxxfiles.net>. Set the public key token from the assembly
5440         builder. Fixes #518909.
5441
5442         * appdomain.c: Bump corlib version.
5443
5444 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5445
5446         * class.c (mono_class_needs_cctor_run): Make this return false if
5447         the class has no cctor.
5448
5449 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5450
5451         * sgen-gc.c: When the minor GC needs to allocate a new section,
5452         invoke the major GC afterwards.
5453
5454 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5455
5456         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5457           Applying the window_style field to the SHELLEXECUTEINFO struct.
5458
5459         Code is contributed under MIT/X11 license.
5460
5461 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5462
5463         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5464         locking earlier.  Fix it in the managed allocator by making sure
5465         that no thread is stopped there before the GC runs.  If we do stop
5466         a thread there, we restart it and let it run a but, until it stops
5467         somewhere else.
5468
5469         * gc-internal.h, gc.c: Function for getting the IP from a signal
5470         context via a function registered by mini.
5471
5472 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5473
5474         * object-internals.h (MonoIntPtr): New structure describing a boxed
5475         IntPtr.
5476
5477         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5478         returns. Fixes #519953.
5479
5480         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5481
5482 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5483
5484         * class-internals.h, generic-sharing.c: New RGCTX info type for
5485         getting a remoting invoke with check wrapper.
5486
5487 2009-07-07  Geoff Norton  <gnorton@novell.com>
5488
5489         * icall-def.h: Fix the enable-minimal build.
5490
5491 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5492
5493         * object-internals.h: Add MonoReflectionDerivedType.
5494
5495         * reflection.c: Implement support for PointerType.
5496         Fixed tons of warnings.
5497
5498 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5499
5500         * object-internals.h: Add MonoReflectionByRefType.
5501
5502         * reflection.c: Implement support for ByRefType.
5503
5504 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5505
5506         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5507
5508         * object-internals.h: Add MonoReflectionArrayType and
5509         mono_reflection_create_unmanaged_type.
5510
5511         * reflection.c: Implement support for ArrayType.
5512
5513 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5514
5515         * metadata-verify.c (is_valid_method_header): Parse EH block
5516         flags correctly.
5517
5518 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5519
5520         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5521         processing the disappearing links, and process disappearing links
5522         in a loop until no new objects are copied.
5523
5524 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5525
5526         * object.c (handle_enum): Invoke the write barrier when copying
5527         value type instances.
5528
5529         * sgen-gc.c: Register remsets for unmanaged write barriers only
5530         when the address written to is actually on the heap.  This makes
5531         set_value() in object.c work without requiring that the result be
5532         on the heap.
5533
5534 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5535
5536         The runtime wrappers are all bound to a given type that must
5537         exist in the same image. For regular images we use the <Module>
5538         type, which is required to exist for all images.
5539
5540         The <Module> type can't be used for dynamic images because it
5541         might not exist at the time the wrapper is required, so we create
5542         a synthetic type to use instead.
5543
5544         The current code works because of the 2 stage setup of MonoClass,
5545         but once this is gone it will no longer work.
5546
5547         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5548
5549         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5550
5551         * object-internals.h: Export mono_image_set_wrappers_type icall
5552         as part of the internal API.
5553
5554         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5555         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5556
5557         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5558         image wrappers_type to the provided value.
5559
5560 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5561
5562         * appdomain.c (deregister_reflection_info_roots): No need
5563         to use the image lock here.
5564
5565 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5566
5567         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5568
5569 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5570
5571         * threads.c: Store the thread start argument in a hash table instead of
5572         registering it as a root, as libgc doesn't support unregistering roots
5573         under windows, leading to 'too many root sets' errors when many threads
5574         are created.
5575
5576         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5577         shutdown, they can still be referenced by the other dying objects.
5578         Fixes #514506.
5579
5580 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5581
5582         * socket-io.c: DontLinger does not allow LingerOptions.
5583
5584 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5585
5586         * metadata-verify.c: The spec doesn't mention that it's possible to add
5587         custom attribute to a generic parameter. Fixed.
5588
5589 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5590
5591         * class.c (inflate_generic_type): Don't crash while trying to output a message
5592         on why we're aborting.
5593
5594 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5595
5596         * socket-io.c: DontLinger can take an int or a boolean too.
5597
5598 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5599
5600         * gc.c: check for a null argument to SuppressFinalize () and
5601         ReRegisterForFinalize ().
5602
5603 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5604
5605         * loader.c (method_from_methodspec): Call into the verifier to check
5606         the signature.
5607
5608         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5609
5610         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5611         part of the internal API.
5612
5613 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5614
5615         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5616         the signature.
5617
5618         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5619
5620         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5621         part of the internal API.
5622
5623 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5624
5625         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5626         the signature.
5627
5628         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5629         blob verification.
5630
5631         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5632         part of the internal API.
5633
5634 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5635
5636         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5637         when doing basic verification. 
5638
5639         This check must be done since the runtime peeks into signatures in much
5640         more places than it does decoding so it makes sense to ensure that all
5641         pointers to blob objects are well formed.
5642
5643 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5644
5645         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5646         Use proper overflow dectection. Fix usage of it.
5647
5648 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5649
5650         * loader.c (field_from_memberref): Call into the verifier to check
5651         the signature.
5652
5653         * loader.c (mono_method_get_signature_full): Same.
5654
5655         * loader.c (method_from_memberref): Same.
5656
5657         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5658
5659         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5660         part of the internal API.
5661
5662 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5663
5664         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5665         or unloaded, still return an AsyncResult, but don't add it to the
5666         threadpool.
5667
5668 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5669
5670         * threads.c: fix missing colon when DEBUG is defined.
5671
5672 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5673
5674         * threadpool.c: Don't add new calls to a threadpool if the domain
5675         of the call is unloading or unloaded.  When dequeuing a job, null
5676         the reference in the queue.
5677
5678 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5679
5680         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5681         generation if an object was moved.
5682
5683 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5684
5685         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5686           parameters of type SAFEARRAY[VARIANT].
5687
5688         * reflection.c (encode_marshal_blob): Properly generate element type
5689           (SafeArraySubType marshal attribute option).
5690
5691         Code is contributed under MIT/X11 license.
5692
5693 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5694
5695         * reflection.c: in mono_method_clear_object () really ensure all the
5696         objects are removed.
5697
5698 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5699
5700         * loader.c (mono_method_signature): Call into the verifier to check
5701         the method signature.
5702
5703         * metadata-verify.c (verify_method_table): Move signature verification
5704         to verify_method_table_full.
5705
5706         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5707
5708         * verify-internals.h: Export mono_verifier_verify_method_signature as
5709         part of the internal API.
5710
5711 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5712
5713         * loader.c (mono_method_get_header): Call into the verifier to
5714         check the method header.
5715
5716         * metadata-verify.c: Add mono_verifier_verify_method_header.
5717
5718         * verify-internals.h: Export mono_verifier_verify_method_header as
5719         part of the internal API.
5720
5721 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5722
5723         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5724         check the field signature. Replace an assert with an explicit check.
5725
5726         * class.c (mono_class_setup_fields): Call into the verifier to check
5727         the field signature.
5728
5729         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5730
5731         * verify-internals.h: Export mono_verifier_verify_field_signature as
5732         part of the internal API.
5733
5734 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5735
5736         * class.c (mono_class_find_enum_basetype): Simplify this function
5737         by moving code outside of the loop and not decoding static fields.
5738
5739 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5740
5741         * metadata-verify.c (verify_typedef_table): Check the extends
5742         token here. Move to here a flags check from verify_typedef_table_full.
5743
5744 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5745
5746         * metadata-verify.c (is_valid_method_header): Fix a warning.
5747
5748         * metadata-internals.h (MonoImage): Remove the unused 
5749         static_rgctx_invoke_wrapper_cache.
5750
5751         * image.c marshal.c: Ditto.
5752
5753 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5754
5755         * image.c (do_mono_image_load): Enable table data verification.
5756
5757 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5758
5759         * metadata-verify.c (is_valid_constant): Fix nullref check.
5760
5761 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5762
5763         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5764
5765 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5766
5767         * sgen-gc.c: Managed allocation with pthreads TLS.
5768
5769         * threads.c, threads-types.h: Functions for the JIT to tell the
5770         runtime whether it supports the MONO_TLS opcode.
5771
5772 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5773
5774         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5775         without methods.
5776
5777 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5778
5779         * metadata-verify.c (is_valid_constant): Fix the string length check.
5780         Use safe overflow checking. Add decent error messages.
5781
5782 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5783
5784         * metadata-verify.c: Move remaininh blob checks to the offline
5785         verification path.
5786
5787 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5788
5789         * metadata-verify.c: Move more blob checks to the offline verification
5790         path.
5791
5792 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5793
5794         * object-internals.h : Adding interrupt_on_stop field.
5795
5796         * threads.c (mono_thread_request_interruption) : On Windows exit the
5797           thread if interrupt_on_stop is set.
5798
5799         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5800          Removing old interrupt logic and setting the interrupt_on_stop for the
5801          thread when calling accept.
5802
5803         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5804          setting the interrupt_on_stop for the thread when calling accept.
5805
5806         Contributed under MIT/X11 license.
5807
5808 2009-06-20  Martin Baulig  <martin@ximian.com>
5809
5810         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5811
5812 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5813
5814         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5815         running in no-exec mode.
5816
5817 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5818
5819         * metadata-verify.c (verify_method_table): Move header
5820         checking to verify_method_table_full.
5821
5822         * metata-verify.c (mono_verifier_verify_full_table_data):
5823         Call verify_method_table_full.
5824
5825 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5826
5827         * metadata-verify.c (verify_field_table): Move signature
5828         checking to verify_field_table_full.
5829
5830         * metata-verify.c (mono_verifier_verify_full_table_data):
5831         Call verify_field_table_full.
5832
5833 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5834
5835         * metadata-verify.c (verify_typedef_table): Move remaining
5836         stuff to verify_typedef_table_full.
5837
5838 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5839
5840         * metadata-verify.c: Kill is_corlib from VerifyContext.
5841         It is only used by the offline mode.
5842         So we better remove it from the runtime path.
5843
5844 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5845
5846         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5847         function that perform the offline metadata verification steps.
5848
5849         * metadata-verify.c (verify_typedef_table): Move some checks to
5850         verify_typedef_table_full and make it been called by new function
5851         mono_verifier_verify_full_table_data.
5852
5853         * pedump.c: Call mono_verifier_verify_full_table_data.
5854
5855         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5856         part of the internal API.
5857
5858 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5859
5860         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5861         check.
5862
5863         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5864         flags bits. SupportLastError was confused as bit 7 instead of 6.
5865
5866         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5867         to check against the module ref table instead of module.
5868
5869         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5870
5871         * pedump.c: Call mono_image_load_names.
5872
5873 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5874
5875         * image.c: Extract mono_image_load_names from do_mono_image_load.
5876
5877         * metadata-internals.h: Export mono_image_load_names as part of
5878         the internal API.
5879         
5880 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5881
5882         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5883         first, as it could reference data in the other caches.
5884
5885 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5886
5887         * metadata-verify.c: Finished with method header verification.
5888
5889 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5890
5891         * metadata-verify.c: Added more header verification code.
5892         Now only EH clauses are missing.
5893
5894 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5895
5896         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5897         for return values.
5898
5899 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5900
5901         * metadata-verify.c: Initial method header verification.
5902
5903 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5904
5905         * metadata-verify.c (verify_import_table): The IAT contents
5906         might end been patched by the windows DL when running with
5907         coree enabled.
5908
5909 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5910
5911         * class.c (mono_class_from_typeref): If the enclosing type is not
5912         found return null instead of crashing. Fixes #508487.
5913
5914 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5915
5916         * normalization-tables.h : updated to the latest unicode charcter
5917           data.
5918         * appdomain.c : bump corlib version.
5919
5920 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5921
5922         * class.c (mono_class_from_name): Fix support for assembly references
5923         in the EXPORTEDTYPE table. Fixes #511704.
5924
5925 2009-06-13  Geoff Norton  <gnorton@novell.com>
5926
5927         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5928         assembly in the target domain.
5929
5930 2009-06-12  Robert Jordan  <robertj@gmx.net>
5931
5932         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5933         because "this" of the managed signature has become an
5934         ordinary parameter in the unmanaged signature.
5935
5936 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5937
5938         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5939         field for owner-less generic containers.
5940
5941         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5942         image field of the owner-less generic containers created here.
5943
5944         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5945         contain is ownerless until the caller sets its owner.
5946
5947         * metadata.c (type_in_image): Handle owner-less generic containers
5948         correctly.
5949         
5950 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5951
5952         * image.c (mono_image_close): Support debug_assembly_unload for
5953         dynamic images too.
5954
5955 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5956
5957         * class.c: Fix some typos in comments.
5958
5959 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5960
5961         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5962
5963         * threads.c (mono_thread_execute_interruption): Avoid creating the
5964         abort exception object while holding the synch_cs lock.
5965
5966 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5967
5968         * metadata-verify.c: Verify basic cattr content.
5969
5970 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5971
5972         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5973         nested types.
5974         
5975         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5976         support for nested types. Fixes #511704.
5977
5978 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5979
5980         * metadata-verify.c: Verify methodspec signatures.
5981
5982 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5983
5984         * metadata-verify.c: Verify typespec signatures.
5985
5986 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5987
5988         * metadata.c (free_inflated_method): Call 
5989         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5990
5991 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5992
5993         * mono-config.c: Small change to report the PPC64/ILP32 model.
5994
5995 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5996
5997         * metadata-verify.c (parse_type): Check szarray.
5998
5999 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6000
6001         * metadata-verify.c (parse_type): Check fnptr.
6002
6003 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6004
6005         * metadata-verify.c (parse_type): Check generic instances.
6006
6007 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6008
6009         * metadata-verify.c (parse_type): Check array shape.
6010
6011 2009-06-05  Robert Jordan  <robertj@gmx.net>
6012
6013         * class.c (mono_class_create_from_typedef): Check only for
6014         mscorlib's System.Array.
6015
6016 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6017
6018         * metadata-verify.c (parse_type): Check pointer, class/valuetype
6019         and generic params. 
6020
6021         * metadata-verify.c (parse_field): Check the signature.
6022
6023 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6024
6025         * metadata-verify.c: Implement locals signature check.
6026
6027 2009-06-04  Marek Safar  <marek.safar@gmail.com>
6028
6029         * domain.c: Add .NET 4.0 Beta 1 version.
6030
6031 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
6032
6033         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
6034           For QueryInterface on CCWs consider the base class
6035           interfaces as well.
6036
6037         Code is contributed under MIT/X11 license.
6038
6039 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6040
6041         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
6042
6043         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
6044         used.
6045
6046         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6047         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
6048
6049         * generic-sharing.c (inflate_other_data): Ditto.
6050         
6051 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
6052
6053         * metadata-verify.c: Implement property signature check.
6054
6055 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6056
6057         * sgen-gc.h: Register saving support for PPC.
6058
6059 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6060
6061         * sgen-gc.c: Fixed a pthread TLS screwup.
6062
6063 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6064
6065         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
6066         supported.
6067
6068 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6069
6070         * sgen-gc.c: Disable TLA and managed allocation if the __thread
6071         keyword is not supported.
6072
6073 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6074
6075         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
6076         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
6077         the inflated method is freed. Fixes #508389.
6078
6079         The code is contributed under the MIT/X11 license.
6080         
6081 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
6082
6083         * marshal.c (get_wrapper_target_class): New helper function.
6084         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
6085         the <Module> class of the image. Fixes #509049.
6086
6087 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6088
6089         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
6090         Check if the thread was interrupted and proccess it straight away.
6091         Makes abortion much more responsive.
6092
6093 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6094
6095         * threads.c (mono_thread_execute_interruption): Use atomic cas with
6096         MonoThread::interruption_requested to match it's counterpart.
6097
6098         Fixes a hang in abort-stress-1 on a 2 core x86.
6099
6100         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
6101         Fix warning.
6102
6103 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6104
6105         Change MonoImage::name_cache to be protected by the image lock
6106         instead of the loader lock.
6107
6108         * appdomain.c (deregister_reflection_info_roots): Protect access
6109         to name_cache.
6110
6111         * class.c (mono_image_init_name_cache): Change from the loader lock
6112         to the image lock. Check if the cache wasn't already created.
6113
6114         * class.c: Change from the loader to the image lock.
6115
6116         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
6117         the code to hold the image lock while iterating over name_cache and
6118         not go into mono_array_new holding it.
6119
6120         * metadata-internals.h: Add a comment about this change.
6121
6122 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6123
6124         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
6125         Under the 2.0 profile raise the loader error.
6126
6127         Fixes #508532.
6128
6129 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6130
6131         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
6132         of ldind opcode for generic instances so we don't fail for direct wrappers.
6133         This only affect direct calls.
6134
6135 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
6136
6137         * reflection.c (create_dynamic_mono_image): Fix warnings.
6138
6139         * generic-sharing.c (other_info_equal): Ditto.
6140         
6141 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6142
6143         * metadata-verify.c: Implement field signature check.
6144
6145 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6146
6147         * metadata-verify.c: Implement standalone signature check.
6148
6149 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
6150
6151         * metadata-verify.c: Implement methodref signature check.
6152
6153 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
6154
6155         * object-internals.h (MonoRuntimeCallbacks): New structure containing
6156         callbacks supplied by the runtime.
6157
6158         * object.c (mono_install_callbacks): New internal function to install
6159         the callbacks.
6160
6161         * object.c (mono_create_ftnptr): Move the implementation of this to
6162         mini/.
6163
6164         * object.c (mono_get_addr_from_ftnptr): Ditto.  
6165
6166 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6167
6168         * metadata-verify.c (parse_return_type): Proper byref check.
6169         * metadata-verify.c (is_valid_method_signature): Check for zero arity
6170         generic signatures and method params.
6171
6172 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6173
6174         * metadata-verify.c (decode_signature_header): Fix bounds check.
6175
6176         * metadata-verify.c (parse_custom_mods): Check custom mods.
6177
6178         * metadata-verify.c (parse_type): Do initial basic verification
6179         of valid values.
6180         
6181         * metadata-verify.c (is_valid_method_signature): Parse the generic
6182         param count.
6183
6184 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
6185
6186         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
6187         discarded based on their most specific definition so we set the method_slots
6188         array before checking if the method is acceptable or not.
6189
6190         Fixes #506757.
6191
6192 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6193
6194         * icall.c: Free the old array when resizing a mono_ptr_array.
6195
6196 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6197
6198         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
6199         for the hashes whose keys are managed objects.
6200
6201 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6202
6203         * object-internals.h, threads.c: Set the execution context on
6204         thread start here, not in corlib.
6205
6206         * appdomain.c: Bump corlib version.
6207
6208 2009-05-27  Martin Baulig  <martin@ximian.com>
6209
6210         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
6211         if `_mono_debug_using_mono_debugger' is set to make things work
6212         properly when embedding Mono.
6213
6214 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6215
6216         * class.c (mono_class_setup_fields): Don't mark simd types as having
6217         16 bytes alignment as the whole runtime doesn't support.
6218
6219 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6220
6221         * metadata-verify.c (safe_read): Use endian safe read macros.
6222
6223 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
6224
6225         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
6226         it is read-only when using full aot.
6227
6228 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6229
6230         * metadata-verify.c (is_valid_method_signature): Verify parts
6231         of the return type. Provide an error message in case of failure.
6232
6233 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6234
6235         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
6236
6237 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6238
6239         * metadata-verify.c: Include the size prefix in the bounds check.
6240
6241 2009-05-22  Miguel de Icaza  <miguel@novell.com>
6242
6243         * icall.c: Remove warnings.
6244
6245         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
6246         prevent auto-detection based on GCC defines.
6247
6248         Add PS3
6249
6250         * metadata-verify.c: Do not include signal.h
6251
6252         * generic-sharing.c, marshal.c: Add returns to avoid some warning
6253         messages.  Not sure why the g_assert_not_reached is not enough to
6254         quiet the compiler.
6255         
6256
6257         * appdomain.c: Remove code that is not used when
6258         DISABLE_SHADOW_COPY is set.
6259
6260         * image.c: use g_getenv
6261
6262 2009-05-21  Miguel de Icaza  <miguel@novell.com>
6263
6264         * reflection.c: Remove code that it not used with
6265         DISABLE_REFLECTION_EMIT is defined.
6266
6267 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
6268
6269         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
6270         invoke wrappers.
6271
6272 2009-05-20  Miguel de Icaza  <miguel@novell.com>
6273
6274         * socket-io.c
6275         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
6276         the ifdef here and instead put that on io-layer
6277
6278 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6279
6280         * metadata-verify.c: Verify the generic param constraint table.
6281
6282 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6283
6284         * metadata-verify.c (verify_generic_param_table): Fix
6285         thinko on the valid flags bits for generic params.
6286
6287 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6288
6289         * metadata-verify.c: Verify the methodspec table.
6290
6291 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6292
6293         * metadata-verify.c: Verify the generic param table.
6294
6295 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6296
6297         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
6298
6299 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6300
6301         * sgen-gc.c: Use generation enum more consistently and use the
6302         correct generation in mono_gc_register_for_finalization().
6303
6304 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * metadata-verify.c: Verify the nested class table.
6307
6308 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6309
6310         * metadata-verify.c: Verify the manifest resource table.
6311
6312 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
6313
6314         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
6315
6316 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
6317
6318         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
6319         wrappers, this is now done in the JIT.
6320         
6321         * class.c (mono_set_generic_sharing_supported): New internal function.
6322         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
6323
6324 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6325
6326         * metadata-verify.c: Verify the exported type table.
6327
6328 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6329
6330         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
6331
6332 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6333
6334         * metadata-verify.c: Verify the file table.
6335
6336 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6337
6338         * metadata-verify.c (verify_assembly_table): Fix an error message.
6339
6340         * metadata-verify.c: Verify the assemblyref table.
6341
6342 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6343
6344         * metadata-verify.c (verify_assembly_table): Fix the valid
6345         bits mask for flags.
6346
6347 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
6348
6349         * debug-helpers.c (mono_method_full_name): Print generic parameters of
6350         generic methods as well.
6351
6352 2009-05-15  Geoff Norton  <gnorton@novell.com>
6353
6354         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
6355         use-case and is significantly more performant than the wapi layer.
6356
6357 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6358
6359         * metadata-verify.c: Verify the assembly table.
6360
6361 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6362
6363         * metadata-verify.c: Fix rows limit check.
6364
6365 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6366
6367         * metadata-verify.c: Verify the fieldrva table.
6368
6369 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6370
6371         * sgen.c: Speed up weak links and finalizers by grouping them by
6372         generation.
6373
6374 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6375
6376         * marshal.c (delegate_hash_table_add): When overwriting an entry,
6377         free the old GCHandle (only applies to SGen).
6378
6379 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
6380
6381         * loader.c (mono_get_method_from_token): Avoid the expensive call to
6382         mono_metadata_load_generic_params () for non-generic methods.
6383
6384 2009-05-12  Mark Probst  <mark.probst@gmail.com>
6385
6386         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
6387         New function for returning a monitor's weak link if it has one.
6388
6389         * sgen-gc.c: Remove an object's monitor's weak link (if it has
6390         one) when clearing a domain.  These can still be around because
6391         the object might not have been collected.
6392
6393 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6394
6395         * gc.c: Fix a warning.
6396
6397 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6398
6399         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6400         prevous wait that resulted in a deadlock on Windows when initializing
6401         the runtime form DllMain. Also results in improved startup time.
6402         (finalizer_thread): Get rid of thread_started_event.
6403         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6404         resulting MonoThread.
6405
6406         Contributed under MIT/X11 license.
6407
6408 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6409
6410         * metadata-verify.c: Verify the implmap table.
6411         Don't require that #US and #Strings be present.
6412
6413 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6414
6415         * security-core-clr.c: Delegate checks are done at creation time,
6416         not a invocation time. Fix exception for Telerik Silverlight demo
6417
6418 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6419
6420         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6421         case for the Thread class.
6422
6423         * threads.c: Do clean-up of abort exception/state in
6424         thread_cleanup() instead of Thread.free_internal().  Also clean up
6425         current_appcontext.  The reason we have to do that is because
6426         those references might point into another domain and if that
6427         domain is unloaded before the thread is finalized, they point to
6428         invalid data.
6429
6430 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6431
6432         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6433         stub signatures.
6434         
6435         Contributed unter MIT/X11 license.
6436
6437 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6438
6439         * verify.c, metadata-verifier.c: Add support for disabling the
6440         verifier in some builds.
6441
6442         [ Sorry, my previous commit accidentally commited some work in
6443         progress ]
6444
6445 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6446
6447         * class.c (mono_class_setup_fields): Set class->field.first for
6448         generic instances.
6449
6450 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6451
6452         * metadata-verify.c: Verify the typespec table.
6453
6454 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6455
6456         * metadata-verify.c: Verify the module table.
6457
6458 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6459
6460         * metadata-verify.c: Verify the methodimpl table.
6461
6462 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6463
6464         * metadata-verify.c: Verify the property table.
6465
6466 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6467
6468         * debug-helpers.c (mono_method_desc_match): Add support for generic
6469         glob patterns.
6470
6471 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6472
6473         * metadata-verify.c: Verify the propertymap table.
6474
6475 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6476
6477         * metadata-verify.c: Verify the event table.
6478
6479         * metadata-verify.c (search_sorted_table): Fix offset
6480         calculation.
6481
6482 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6483
6484         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6485
6486 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6487
6488         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6489         because mono_delegate_free_ftnptr() needs it.
6490
6491 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6492
6493         * metadata-verify.c: Verify the eventmap table.
6494
6495 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6496
6497         * metadata-verify.c: Verify the standalonesig table.
6498
6499 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6500
6501         * metadata-verify.c: Verify the field layout table.
6502
6503 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6504
6505         * class.c (mono_type_get_name_recurse): Don't crash
6506         for ownerless generic params.
6507
6508         * debug-helpers.c (mono_type_get_desc): Correct the format
6509         for ownerless generic params.
6510
6511 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6512
6513         * metadata-verify.c: Verify the class layout table.
6514
6515 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6516
6517         * metadata-verify.c: Verify the decl security table.
6518
6519 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6520
6521         * domain.c (mono_domain_set_internal_with_options): Don't do
6522         anything if the old domain is the same as the old one.  Fixes
6523         #499326.
6524
6525 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6526
6527         * appdomain.c: Deregister the reflection_info roots when unloading
6528         a domain.
6529
6530         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6531         memory allocated by a domain and frees its disappearing links.
6532
6533         * boehm-gc.c, null-gc.c: Empty implementation of
6534         mono_gc_clear_domain().
6535
6536 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6537
6538         * appdomain.c (clear_cached_vtable): Free the static fields memory
6539         block.
6540
6541 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6542
6543         * gc.c: Set the correct domain when invoking finalizers.
6544
6545         * appdomain.c: Set the correct domain when creating threads.
6546
6547 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6548
6549         * sgen-gc.c: Fix skip size for vectors.
6550
6551 2009-05-03  Martin Baulig  <martin@ximian.com>
6552
6553         * mono-debug-debugger.c
6554         (mono_debugger_check_breakpoints): Check class init handlers even
6555         if we don't have any method load handers.
6556
6557 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6558
6559         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6560         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6561
6562 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6563
6564         * metadata-verify.c: Verify the field marshal table.
6565
6566 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6567
6568         * metadata-verify.c: Verify the custom attribute table.
6569
6570 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6571
6572         * metadata-verify.c: Verify the constant table.
6573
6574 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6575
6576         * metadata-verify.c: Verify the memberef table.
6577
6578 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6579
6580         * metadata-verify.c (get_coded_index_token): Remove
6581         dead argument.
6582
6583 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6584
6585         * metadata-verify.c: Verify the interfaceimpl table.
6586
6587 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6588
6589         * verify.c: Improve error message.
6590
6591         * debug-helpers.c (mono_type_get_desc): Harden the code that
6592         deals with VAR and MVAR.
6593
6594 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6595
6596         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6597         part of #498692.
6598
6599 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6600
6601         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6602         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6603
6604 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6605
6606         * security-core-clr.c: Avoid redundant checks for platform code, 
6607         e.g. check for method and for class (very common) and check
6608         for class and outer class (less common)...
6609
6610 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6611
6612         * reflection.c: Avoid returning random cattrs for synthetic methods.
6613         Fixes #498545.
6614
6615 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6616
6617         * assembly.c: assemblies in the GAC should never be shadow-copied.
6618
6619 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6620
6621         * domain.c, domain-internals.h: Disable
6622         track_resurrection_{objects,handles}_hash in MonoDomain if using
6623         SGen.
6624
6625 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6626
6627         * metadata-verify.c: Verify the param table.
6628
6629 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6630
6631         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6632         MethodList.
6633
6634         * metadata-verify.c (verify_method_table): Proper check the ParamList
6635         field.
6636
6637 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6638
6639         * metadata-verify.c (verify_method_table): Check for runtime
6640         implemented functions such as delegate .ctors. Remove spurious
6641         printf.
6642         
6643 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6644
6645         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6646
6647 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6648
6649         Don't allocate MonoGenericInfo for ownerless generic params.
6650         * class-internals.h (MonoGenericParam::info): Move field to ...
6651         (MonoGenericParamFull): ... this.  New struct.
6652         (MonoGenericContainer::type_params): Change type to
6653         MonoGenericParamFull.
6654         (MonoGenericParam, MonoGenericContainer): Update accessors.
6655         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6656         'info' field for ownerless generic param.
6657         (mono_metadata_load_generic_params): Update to changes.
6658         * reflection.c (mono_reflection_create_generic_class): Likewise.
6659         (reflection_methodbuilder_to_mono_method): Likewise.
6660         (mono_reflection_initialize_generic_parameter): Likewise.
6661
6662 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6663
6664         Don't use MonoGenericParamInfo for ownerless generic params.
6665         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6666         use ParamInfo class at all.
6667         (mono_class_from_generic_parameter): Use them.
6668         (make_generic_param_class): Fix a couple of instances where 'pinfo
6669         == NULL' wasn't handle.
6670
6671 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6672
6673         * class.c (make_generic_param_class): Carve out of ...
6674         (mono_class_from_generic_parameter): ... here.
6675
6676 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6677
6678         Simplify mono_class_from_generic_parameter
6679         * class-internals.h (MonoGenericParamInfo::token): New field.
6680         * metadata.c (mono_metadata_load_generic_params): Initialize it
6681         from metadata.
6682         * class.c (mono_class_from_generic_parameter): Use it instead of
6683         searching through metadata.
6684
6685 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6686
6687         * metadata-verify.c: Add verification of the method table.
6688
6689 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6690
6691         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6692         Delegate::Invoke optimization.
6693
6694 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6695
6696         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6697         string returned by get_shadow_assembly_location_base.
6698
6699         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6700         about caller's ownership.
6701
6702 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6703
6704         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6705         reflection memory on domain unload.
6706
6707         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6708         reflection cleanup code do it.
6709
6710         * domain-internals.h: Add mono_reflection_cleanup_domain.
6711
6712         This fixes a memory leak for managed mirrors of reflection objects
6713         on domain unload. 
6714
6715 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6716
6717         * metadata-verify.c: Implement more verification of the field table.
6718
6719 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6720
6721         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6722         doesn't try to parse the input assembly, which can be broken.
6723
6724 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6725
6726         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6727         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6728         by using the lowest bit in the link to store whether the link is
6729         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6730
6731 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6732
6733         * Makefile.am: Split the console support in platform specific code
6734         and put together a framework for making this easy in the future so
6735         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6736
6737 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6738
6739         * pedump.c: Fix a warning.
6740
6741 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6742
6743         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6744         mono_class_from_mono_type to avoid bad interactions with the dual representation
6745         of the generic type definition.
6746
6747 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6748
6749         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6750         get the MonoClass for the call context type as it might be a generic
6751         instance.
6752
6753         Fixes #491483.
6754
6755 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6756
6757         * object-internals.h: The Thread object has no execution_context
6758         member anymore.
6759
6760         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6761         the execution context.
6762
6763         * appdomain.c: Bump corlib version.
6764
6765 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6766
6767         * verify.c (do_newobj): Improve error message.
6768
6769 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6770
6771         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6772         is nested in the filter block.
6773
6774         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6775         block is not fully nested.
6776
6777         Fixes #495656.
6778
6779 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6780
6781         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6782         not MonoType to check for equality of valuetypes as the generic type
6783         definition allows for two different encodings: the generic type definition
6784         class or a generic instance over the GTD arguments.
6785
6786         Fixes #496175.
6787
6788 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6789
6790         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6791
6792         * verify.c (do_initobj): Improve error message.
6793
6794 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6795
6796         * metadata-verify.c: Enable pe verification as the issue with #496453
6797         is that the authenticode data directory have a different unspecified
6798         format. Ignore it for now.
6799
6800         * pedump.c: Run the metadata verifier together with the IL verifier.
6801
6802         Fixes ##496453.
6803
6804 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6805
6806         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6807
6808 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6809
6810         * class.c (can_access_type): Check visibility against
6811         the element type for pointers and arrays.
6812
6813         Fixes #496150.
6814
6815 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6816
6817         * metadata-verify.c: Fix cli and table verification to use information
6818         from the MonoImage. A lot of duplicated code got killed.
6819
6820 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6821
6822
6823         This patch starts to integrate the metadata verifier with the runtime code.
6824
6825         This patch causes major regression in functionality for the metadata verifier
6826         as cli and table verification are disabled since they require to be ported to
6827         use MonoImage information.
6828
6829         * image.c (do_mono_image_load): Split the code in this function
6830         into mono_image_load_pe_data and mono_image_load_cli_data.
6831         Add     care_about_pecoff parameter to not load pecoff data.
6832         Call into the metadata verifier for pecoff and cli verification.
6833
6834         * image.c (mono_image_open_raw): New function that doesn't perform
6835         any parsing of the image contents.
6836         
6837         The reason for the 3 new functions is to give pedump better control
6838         into the interaction with the verifier.
6839
6840         * metadata-internals.h: Add new functions from image.c as part of the
6841         internal mono API.
6842
6843         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6844         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6845         to make those functions work together with the runtime.
6846
6847         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6848         true if the image needs to be verified.
6849
6850         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6851
6852         * pedump.c: Use new metadata verifier API.
6853
6854 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6855
6856         * object.c (mono_install_vtable_trampoline): Make this receive a
6857         trampoline creation function instead of trampoline, allowing the JIT
6858         to use a different trampoline for each vtable.
6859
6860 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6861
6862         * object.c (mono_raise_exception): Don't reset the thread abort
6863         exception state here.
6864
6865 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6866
6867         * icall-def.h: New icall for getting the thread abort exception
6868         state for a thread.
6869
6870         * object.c, thread.c, object-internals.h: A thread's abort
6871         exception state is now a GC handle.  To get the object it stands
6872         for, we must move it into the current app domain, if it's
6873         different than the one where it originated from.
6874
6875         * appdomain.c: Bump corlib version.
6876
6877         * domain.c, domain-internals.h: New function for setting the
6878         domain and migrate the thread abort exception or not.
6879
6880 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6881
6882         * metadata-verify.c: Add initial verification of the
6883         field table.
6884
6885 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6886
6887         * metadata-verify.c: Add a macro to conditionally enable
6888         dumping of verification information. Add  make_coded_token
6889         and search_sorted_table to enable search sorted tables
6890         by a given coded token.
6891
6892 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6893
6894         * metadata-verify.c: Add array mapping from table index
6895         to description offset. Add get_col_offset and get_col_size
6896         functions.
6897
6898 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6899
6900         * metadata-verify.c: Add remaining table descriptions offsets.
6901         Add remaining coded index descriptions.
6902
6903 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6904
6905         * metadata-verify.c: Fixed constant table description.
6906         Fixed calculation of HasCustomAttribute coded index size.
6907         Fixed calculation of size for many table indexes. 
6908
6909 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6910
6911         * pedump.c (dump_metadata): Dump table offset instead
6912         of useless pointer in memory.
6913
6914 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6915
6916         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6917
6918 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6919
6920         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6921         a missing of for interface types.
6922
6923 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6924
6925         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6926         the code is commented.
6927
6928         * metadata-verify.c (verify_resources_table): Remove spurious printf
6929         and don't fail if there are unmanaged resources. Gmcs generates a useless
6930         one     for all assemblies - I bet it's some MS compatibility junk.
6931
6932 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6933
6934         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6935
6936         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6937
6938         * verify-internals.h: Same.
6939
6940         * pedump.c: Fix for mono_image_verify new signature.
6941
6942 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6943
6944         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6945         flags combinations.
6946
6947 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6948
6949         * metadata-verify.c (verify_module_table): Ignore the generation field.
6950
6951 2009-04-15  Martin Baulig  <martin@ximian.com>
6952
6953         * debug-mono-symfile.c
6954         (mono_debug_symfile_lookup_location): Don't print a warning for
6955         unknown extended opcodes if they're within 0x40 and 0x7f.
6956
6957 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6958
6959         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6960         invoke signatures returning an enum. Fixes #494847.
6961
6962 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6963
6964         * metadata-verify.c: Initial code to verify the typedef table.
6965
6966 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6967
6968         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6969         with non empty stack happens before the beginning of a try block.
6970
6971         Fixes #494812.
6972
6973 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6974
6975         * metadata-verify.c: Verify typename and typenamespace fields of
6976         the typeref table.
6977
6978 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6979
6980         * metadata-verify.c: Initial code to verify the typeref table.
6981
6982 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6983
6984         * verify.c (verify_delegate_compatibility): Fix error message.
6985
6986 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6987
6988         * security-core-clr.c: Fix typo
6989
6990 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6991
6992         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6993         a MonoGHashTable to keep its values alive.
6994         (emit_marshal_boolean): Fix a warning.
6995
6996 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6997
6998         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6999         not have any interface configured for IPv4/IPv6.
7000
7001 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7002
7003         * assembly.c: fix typo in error message.
7004
7005 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
7006
7007         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
7008         allocating the location holding the this argument to prevent
7009         'too many root sets' errors.
7010
7011         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
7012         to mark fields as special static.
7013         (mono_field_static_get_value): Handle special static fields.
7014         (mono_field_static_set_value): Ditto.
7015
7016         * class-internals.h (struct _MonoClassField): Document this.
7017
7018 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7019
7020         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
7021           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
7022           case.  This will handle when managed code returns null to native code.
7023
7024         Code is contributed under MIT/X11 license.
7025
7026 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7027
7028         * object.c (build_imt_slots): Changing a free to a g_free to match
7029           the g_malloc0 in add_imt_builder_entry that allocated this memory.
7030
7031         Code is contributed under MIT/X11 license.
7032
7033 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7034
7035         * marshal.c (emit_marshal_boolean): Adding code to ensure that
7036           the correct TRUE value is passed through the marshaling layer.
7037
7038         Code is contributed under MIT/X11 license.
7039
7040 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
7041
7042         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
7043         correctly. Fixes #492330.
7044         
7045         * marshal.c: Fix the embedding of object pointers into JITted code in
7046         the native-to-managed wrappers by allocating some GC tracked memory, and
7047         embedding the address of that.
7048
7049 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
7050
7051         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
7052         pointers into the vtable.
7053
7054 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
7055
7056         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
7057
7058         * verify.c (verify_ldftn_delegate): Improve error message.
7059
7060 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7061
7062         * reflection.c (my_mono_class_from_mono_type): Remove.
7063
7064 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7065
7066         Prepare to reduce memory usage of owner-less generic parameters (1/n)
7067         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
7068         and constraints fields into ...
7069         (MonoGenericParamInfo): ... this.
7070         (mono_generic_param_info, mono_generic_container_get_param_info):
7071         New accessors.
7072         * class.c, debug-helpers.c, icall.c: Update to changes.
7073         * metadata.c, reflection.c, verify.c: Likewise.
7074
7075 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
7076
7077         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
7078
7079         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
7080         
7081         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
7082         booleans with sbytes.
7083
7084 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7085
7086         * class.c (can_access_instantiation): Verify accesibility of element types
7087         for arrays and pointers.
7088
7089         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
7090
7091         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
7092
7093         Fixes #493068.
7094
7095 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7096
7097         * verify.c (do_invoke_method): Improve error messages.
7098
7099 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
7100
7101         * verify.c:  Fixing the MSVC build.
7102
7103         Code is contributed under MIT/X11 license.
7104
7105 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
7106
7107         * security-core-clr.c: Simplify get_reflection_caller not to call
7108         mono_method_get_last_managed (another stack walk) and adjust the
7109         callers to handle a (should not happen) NULL return value.
7110
7111 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7112
7113         Add accessors to some MonoGenericParam fields
7114         * class-internals.h (mono_generic_param_owner): New accessor.
7115         (mono_generic_param_num): Likewise.
7116         (mono_type_get_generic_param_owner): New helper.
7117         (mono_type_get_generic_param_num): New helper.
7118         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
7119
7120 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7121
7122         * class-internals.h (mono_generic_container_get_param): New wrapper.
7123         * class.c, icall.c, metadata.c, verify.c: Use it.
7124
7125 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7126
7127         Fix gtest-252.cs
7128         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
7129         the standard case/loop.  In particular, don't complain about
7130         references to generic type definitions.
7131
7132 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
7133
7134         * debug-helpers.c (dis_one): Decode string arguments.
7135
7136 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7137
7138         * pedump.c (dump_verify_info): Dump type name correctly.
7139
7140 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7141
7142         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
7143         are larger than code size.
7144
7145         This can happen in valid code if the try/catch block is not followed by any instruction
7146         and do a backward branch on the leave instruction.
7147
7148         Fixes #492494.
7149
7150 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
7151
7152         * security-core-clr.c: Fix typo while comparing second method names
7153         in can_avoid_corlib_reflection_delegate_optimization
7154
7155 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7156
7157         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
7158
7159         Fixes #487738.
7160
7161 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7162
7163         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
7164         a MVAR using a class context.
7165
7166         Fixes #490335.
7167
7168 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
7169
7170         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
7171
7172         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
7173
7174         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
7175         functions supplied by the JIT for the SGEN GC.
7176
7177         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
7178         
7179 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7180
7181         monitor.c (mono_monitor_try_enter_internal):
7182         Added calls to profile monitor contentions.
7183         Also duplicated a small piece of code (the "get the monitor" logic)
7184         from the fast path to the slow path, and changed the relevant goto
7185         statements, so that monitor acquisition events can be emitted from the
7186         slow path (this is by Paolo Molaro).
7187
7188 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7189
7190         * profiler.c, profiler.h, profiler-private.h:
7191         Added support for profiling monitor contentions.
7192
7193 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
7194
7195         * metadata-verify.c: Verify the modules table.
7196
7197 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
7198
7199         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
7200         using the context of the method been verifier and not of the method been called.
7201
7202         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
7203         safely inflate generic types. 
7204
7205 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
7206
7207         * security-core-clr.c: Change the strategy for checking the 
7208         "reflection using delegates optimization" to avoid unneeded 
7209         attributes in multiple class libraries.
7210
7211 2009-04-02  Mark Probst  <mark.probst@gmail.com>
7212
7213         * sgen-gc.c: Remove object element in the disappearing link struct
7214         by storing the object pointer in the link.
7215
7216 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7217
7218         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
7219
7220 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7221
7222         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
7223
7224         * verify.c (mono_method_verify): Do proper bounds checking of exception
7225         clause ranges.
7226
7227 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7228
7229         * loader.c (mono_field_from_token): Don't crash if the field parent could
7230         not be decoded.
7231
7232 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7233
7234         * sgen-gc.c: Execute critical finalizers after ordinary
7235         finalizers.
7236
7237         * class-internals.h, domain.c: Add CriticalFinalizerObject to
7238         mono_defaults.
7239
7240 2009-03-31 Jb Evain <jbevain@novell.com>
7241
7242         * verify.c (do_ldstr): don't check if a string is in the user strings
7243         heap if the current image is dynamic.
7244
7245 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7246
7247         * sgen-gc.c: Wait until the last finalizer has executed when
7248         returning from WaitForPendingFinalizers.
7249
7250 2009-03-31  Martin Baulig  <martin@ximian.com>
7251
7252         * mono-debug-debugger.h (MonoDebuggerEvent): Add
7253         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
7254         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
7255         (mono_debugger_event_create_appdomain): New function.
7256         (mono_debugger_event_unload_appdomain): New function.
7257
7258         * appdomain.c (mono_domain_create_appdomain_internal): Call
7259         mono_debugger_event_create_appdomain().
7260
7261 2009-03-31  Martin Baulig  <martin@ximian.com>
7262
7263         * mono-debug-debugger.c
7264         (mono_debugger_register_class_init_callback): Also register the
7265         class init callback if the class is already initialized to make
7266         things work with shadow copied assemblies.
7267
7268 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
7269
7270         * security-core-clr.c
7271         (mono_security_core_clr_ensure_reflection_access_field): Let 
7272         critical code access the field (just like we do for methods). Use
7273         check_field_access helper.
7274         (mono_security_core_clr_ensure_reflection_access_method): Use 
7275         check_field_access helper.
7276
7277 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7278
7279         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
7280         call the run-finalize function directly.
7281
7282         * gc.c, gc-internal.h: Make run_finalize() non-static.
7283
7284 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7285
7286         * sgen-gc.c: Use a separate struct for disappearing links.
7287
7288 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7289
7290         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
7291         * MaxIOVectorLength enabled, just ignore them.
7292         Fixes bug #349688.
7293
7294 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
7295
7296         * metadata-verify.c: Fix eglib build.
7297
7298 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
7299
7300         * threads-types.h: Fix the win32 build.
7301
7302 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7303
7304         * class.c: move coreclr inheritance/override checks to 
7305         security-core.clr.c
7306         * security-core.clr.c|h: add code from class.c with additional
7307         documentation. Fix override check when the method is not critical.
7308
7309 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
7310
7311         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
7312         (match_class): Ditto.
7313
7314 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7315
7316         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
7317
7318         * metadata-verify.c: Implement table layout row size calculation. Verify
7319         the total size of the tables.
7320
7321 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7322
7323         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
7324
7325 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7326
7327         * appdomain.c:
7328         * console-io.[ch]: added new mono_console_init() to make sure that
7329         file descriptors 0, 1 and 2 are opened.
7330         Bug #489019 fixed.
7331
7332 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
7333
7334         * appdomain.h: Export a new callback type and a new function to
7335         set this callback. This allow a mono host to provide it's own
7336         definition for "platform code".
7337         * metadata-internals.h: Add a core_clr_platform_code flag on 
7338         _MonoImage to (cache and) know if it is representing platform 
7339         code.
7340         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
7341         on platform code images.
7342         * security-core-clr.c|h 
7343         (mono_security_set_core_clr_platform_callback): Allow the host
7344         to provide it's own platform check definition.
7345         (mono_security_core_clr_determine_platform_image): Detect if an 
7346         image is platform code (using the specified callback).
7347         (mono_security_core_clr_is_platform_image): Return cached value 
7348         for platform code.
7349
7350 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
7351
7352         * threads.c (mono_create_thread): New helper function to wrap CreateThread
7353         which has different parameter types for the 'tid' argument in windows and
7354         the io-layer.
7355
7356         * appdomain.c attach.c threads.c: Use the new helper.
7357
7358 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7359
7360         * metadata-verify.c: Verify valid table bits.
7361
7362 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7363
7364         * metadata-verify.c (verify_metadata_header): Store size in the size field.
7365
7366         * metadata-verify.c: Add initial table schema verification.
7367
7368 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7369
7370         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
7371         obtain the refclass argument needed by mono_param_get_objects (). Fixes
7372         #488383.
7373
7374         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
7375
7376         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
7377
7378 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
7379
7380         * security-core-clr.c: Add/update documentation
7381
7382 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7383
7384         * marshal.c (emit_marshal_object): Generate code to throw an exception
7385         instead of throwing it. Fixes #488670.
7386
7387 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
7388
7389         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
7390         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
7391         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
7392         and add a call to mono_security_core_clr_ensure_delegate_creation
7393         to do the extra checks required by CoreCLR.
7394         * security-core-clr.c|h: Add function to check delegate creation,
7395         both in the binding and accessibility, under CoreCLR.
7396
7397 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7398
7399         * reflection.c (mono_reflection_create_dynamic_method): when 
7400         coreclr is enabled make sure that every resolved object are
7401         checked (e.g. field and method access).
7402         * security-core-clr.c|h: Add function to check objects resolved
7403         when a dynamic method is created.
7404
7405 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7406
7407         * metadata-verify.c: Cache directory rva translations.
7408
7409         * metadata-verify.c: Add cli-header and streams verification.
7410
7411 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7412
7413         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7414         the wrong offset (8 instead of 6).
7415
7416 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7417
7418         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7419         methods, return the native function address itself. Fixes
7420         #487758.
7421
7422 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7423
7424         * console-io.c: some of the values for control characters might not be
7425         present.
7426
7427 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7428
7429         * exception.c|h: Add helpers to create [Field|Method]AccessException
7430         * icall.c: Add required coreclr check calls for field reflection.
7431         Move the existing (method) check logic into security-core-clr.c
7432         * security-core-clr.c: Add functions to check if the access of a
7433         field or method is allowed when reflecting under coreclr. This is
7434         mostly done using a stack walk to find the "real" caller: i.e. the
7435         code that is calling the reflection
7436
7437 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7438
7439         * gc-internal.h: Change location of gc_wrapper.h
7440
7441 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7442
7443         * class.c: Simplification to coreclr checks for overrides that
7444         makes it easier to set breakpoints.
7445
7446 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7447
7448         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7449         mono_security_core_clr_method_level): Avoid potential 
7450         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7451         user/application code) and make it easier to set breakpoints
7452
7453 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7454
7455         * metadata-verify.c: Reject cli header tables that mono don't handle.
7456
7457 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7458
7459         * pedump.c: Fix CLI header dumping.
7460
7461 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7462
7463         * metadata-verify.c: More CLI header verification.
7464
7465 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7466
7467         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7468
7469 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7470
7471         * metadata-verify.c: Initial verification of the CLI header.
7472
7473 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7474
7475         * metadata-verify.c (verify_resources_table): Fix verification of zero
7476         sized resource section and id entries count.
7477
7478 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7479
7480         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7481
7482 2009-03-17  Jb Evain  <jbevain@novell.com>
7483
7484         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7485
7486 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7487
7488         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7489         (mono_gc_make_descr_for_array): Ditto.
7490
7491 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7492
7493         * verify.c (mono_verifier_is_class_full_trust): Add support for
7494         CoreCLR security mode where trusted assemblies are defined as
7495         "platform code".
7496
7497 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7498
7499         * metadata-verify.c: Add minimal PECOFF resource verification.
7500
7501 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7502
7503         * metadata-verify.c: Be less restrictive with some coff fields.
7504
7505 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7506
7507         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7508         params as boxed values on stack. Fixes #485706.
7509
7510 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7511
7512         * console-io.c: the termios values may vary in different flavors of unix.
7513
7514 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7515
7516         * console-io.[ch]: return the entire set of control characters when
7517         initializing the terminal.
7518         * appdomain.c: bump corlib version.
7519
7520 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7521
7522         * mono-perfcounters.c: added support for in-process custom
7523         performance counters.
7524
7525 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7526
7527         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7528
7529 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7530
7531         * metadata-verify.c: Verify the data pointed by the import table. 
7532
7533 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7534
7535         * metadata-verify.c (load_data_directories): Store data
7536         directory contents.
7537
7538         * metadata-verify.c: Verify the import table. 
7539
7540 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7541
7542         * metadata-verify.c: Verify data directories.
7543
7544 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7545
7546         * metadata-verify.c: Check section header flags.
7547
7548 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7549
7550         * appdomain.c: if the assembly name is a shadow-copied file, return
7551         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7552         in mono_make_shadow_copy.
7553         * icall.c: if the assembly name is a shadow-copied file, replace it
7554         with the original assembly path.
7555
7556         Bug #484244 fixed. NUnit tests for corlib can be run without
7557         --noshadow now.
7558
7559 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7560
7561         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7562         entries when the table is reallocated.
7563
7564         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7565         mono_gc_alloc_fixed () since it contains GC refs.
7566
7567 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7568
7569         * reflection.c (ensure_complete_type): New helper function to call
7570         type resolve handlers for unfinished dynamic types.
7571         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7572
7573 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7574
7575         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7576         #483247.
7577
7578 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7579
7580         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7581
7582 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7583
7584         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7585         between GCHandles of type WeakTrackResurrection and the objects they
7586         point to.
7587
7588         * gc.c: Partly implement the sematics of GCHandles of type 
7589         WeakTrackResurrection: these handles should only be cleared after the
7590         finalizer of the object they are pointing to has ran.
7591
7592 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7593
7594         * icall.c: Partially revert r126631 because using the jump
7595         trampolines for generic shared methods makes it superfluous.
7596
7597 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7598
7599         * threads.c (handle_store): Create the 'threads' hash table with the proper
7600         MONO_HASH_VALUE_GC type.
7601
7602 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7603
7604         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7605         FIRST_GC_TRACKED.
7606
7607         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7608         and LAST_GC_TRACKED as a GC root.
7609
7610         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7611
7612         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7613         the static data even if it consists of 1 reference.
7614
7615         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7616         if there is a GC descriptor.
7617
7618         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7619         instead of through the GC since they contain no object references.
7620
7621 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7622
7623         * generic-sharing.c (instantiate_other_info): Always return a jump
7624         trampoline for method code.
7625
7626 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7627
7628         * culture-info-tables.h: generated to include the en-tt culture.
7629
7630 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7631
7632         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7633         capture the thread context.
7634
7635         * object.c (mono_async_result_new): Cache the invoke wrappers to
7636         ExecutionContext::Capture.
7637
7638 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7639
7640         * marshal.h: Add a prototype for what mono_compile_method returns
7641         for invoke wrappers.
7642
7643         * gc.c: Use the new prototype declaration.
7644
7645 2009-03-04  Geoff Norton  <gnorton@novell.com>
7646
7647         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7648         * gc-internal.h:
7649         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7650
7651 2009-03-04  Martin Baulig  <martin@ximian.com>
7652
7653         * mono-debug.h
7654         (mono_debugger_runtime_invoke): Removed.
7655
7656         * mono-debug-debugger.c
7657         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7658
7659 2009-03-02  Martin Baulig  <martin@ximian.com>
7660
7661         * mono-debug.h
7662         (mono_debugger_unhandled_exception): Removed.
7663         (mono_debugger_handle_exception): Removed.
7664         (mono_debugger_throw_exception): Removed.
7665
7666         * mono-debug.c
7667         (mono_debug_debugger_version): Bump to 5.
7668
7669         * mono-debug-debugger.c: Moved the exception handling code to
7670         ../mini/debug-mini.c
7671
7672 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7673
7674         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7675         finalize_objects_hash.
7676
7677         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7678         
7679         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7680         field.
7681
7682         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7683         cache.
7684
7685         * image.c (mono_image_close): Free it.
7686         
7687         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7688         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7689         on the this argument.
7690
7691         * gc.c (run_finalize): Optimize the calling of the finalizers.
7692
7693 2009-03-03  Martin Baulig  <martin@ximian.com>
7694
7695         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7696         of the `MonoGenericInst' changes.
7697
7698 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7699
7700         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7701         mono_array_class_get_cached to reduce locking contention. Extract
7702         a domain var.
7703
7704         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7705         intermediary managed arrays. Use caching version of mono_array_new
7706         to allocate the result array.
7707
7708         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7709
7710         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7711
7712         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7713         to reduce locking contention.
7714
7715 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7716                 
7717         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7718         thunk builder code for the non-interface case.
7719
7720 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7721
7722         * object.c (get_generic_virtual_entries): New helper function to collect
7723         the virtual generic method instances which need to be added to an IMT
7724         thunk.
7725         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7726         Instead of creating a new IMT thunk, reset the vtable slot to the
7727         trampoline, the thunk will be created the next time the trampoline is called.
7728         (build_imt_slots): Add support for virtual generic methods in interfaces by
7729         adding to the IMT thunk all the methods registered using 
7730         mono_method_add_generic_virtual_invocation ().
7731
7732         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7733         (struct _MonoIMTCheckItem): Ditto.
7734
7735         * object.c (mono_method_add_generic_virtual_invocation): Take a
7736         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7737         the IMT thunk to include all items.
7738         
7739         * object.c (mono_class_create_runtime_vtable): Add a missing
7740         mono_loader_unlock ().
7741
7742 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7743
7744         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7745
7746         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7747
7748 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7749
7750         * object-internals.h: Rename _MonoReflectionEvent to
7751         MonoReflectionMonoEvent so it reflects the right managed type.
7752         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7753
7754         * icall.c:
7755         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7756         type.
7757
7758 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7759
7760         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7761         intermediary managed arrays. Use caching version of mono_array_new
7762         to allocate the result array.
7763
7764 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7765
7766         * reflection.c: Use cached version of mono_array_new alongside
7767         the mono_reflection_get_custom_attrs_by_type call path.
7768
7769 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7770
7771         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7772         intermediary managed arrays. Use caching version of mono_array_new
7773         to allocate the result array.
7774
7775         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7776
7777 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7778
7779         * icall.c: Add small implementation of a growable stack bound array.
7780
7781         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7782
7783         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7784         intermediary managed arrays. Use caching version of mono_array_new
7785         to allocate the result array.
7786
7787 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7788
7789         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7790         helps Enum::CompareTo to be implemented without reboxing all enums
7791         to their underlying type.
7792 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7793
7794         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7795         since it acquires a global lock leading to scalability problems.
7796
7797         * profiler.c: Make the stat profiler work with multiple appdomains, this
7798         currently only works when no appdomains are unloaded.
7799
7800 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7801
7802         * appdomain.c: make the check to avoid copying when the assembly is
7803         already shadow copied actually work.
7804
7805 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7806
7807         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7808
7809         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7810         changes to the managed side.
7811
7812 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7813
7814         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7815         classes + a separate lock for it, as it is used frequently at runtime, not
7816         just during metadata loading/JIT compilation.
7817
7818         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7819         for szarrays.
7820         
7821         * object-internals.h (mono_class_from_name_cached): New macro to cache
7822         the results of the lookup locally without having to declare a static
7823         variable to hold it.
7824         (mono_class_get_field_from_name_cached): Ditto.
7825         (mono_array_class_get_cached): Ditto.
7826
7827         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7828         the new macros.
7829         
7830         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7831         slower search in metadata.
7832
7833         * pedump.c: Fix a warning.
7834
7835 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7836
7837         * reflection.c (encode_locals): Add checks for user types.
7838         (method_encode_clauses): Ditto.
7839         (method_encode_code): Ditto.
7840         (mono_image_create_token): Ditto.
7841
7842         * object-internals.h: Change the type of more fields from MonoReflectionType*
7843         to MonoObject*.
7844
7845 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7846
7847         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7848         the a thread does not suspend within 100ms.
7849
7850         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7851         in addition to StopRequested as well.
7852
7853         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7854
7855         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7856         search the method_hash before inserting a new entry, to avoid crashes when
7857         the same method is inserted multiple times, causing the old 
7858         MonoDebugMethodInfo structure to be freed by the value dtor function.
7859
7860 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7861
7862         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7863         SO_EXLUSIVEADDRUSE where available.
7864
7865 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7866
7867         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7868         runtime invoke wrappers, this time it is string ctor wrappers, which
7869         pass a dummy string as 'this' instead of their obj argument. Fixes
7870         #478473.
7871
7872 2009-02-21  Jb Evain  <jbevain@novell.com>
7873
7874         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7875         only get create_culture once.
7876
7877 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7878
7879         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7880         check before the locking.
7881         
7882         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7883         (mono_reflection_create_runtime_class): Ditto.
7884         (mono_reflection_sighelper_get_signature_local): Ditto.
7885         (mono_reflection_sighelper_get_signature_field): Ditto.
7886
7887         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7888         is a System.MonoType object or similar.
7889         (monotype_cast): New helper function to cast a MonoObject to a 
7890         MonoReflectionType object.
7891
7892         * object-internals.h: Change MonoReflectionType* members in structures to
7893         MonoObject* members to force the usage of the monotype_cast () function.
7894
7895         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7896         structures/arrays. This causes us to assert instead of crashing when 
7897         instances of user defined subclasses of System.Type are encountered.
7898
7899 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7900
7901         * cil-coff.h:
7902         * icall-def.h:
7903         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7904         win32 resource loaded from a PE file.
7905
7906         * image.c: fix mono_image_lookup_resource.
7907
7908 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7909
7910         * icall-def.h:
7911         * threads-types.h:
7912         * threads.c: added internal call for WaitHandle.SignalAndWait.
7913
7914 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7915
7916         * cominterop.c : Adding cominterop_type_from_handle and 
7917           registering it as an icall.  Replacing all references
7918           to type_from_handle.
7919
7920         Code is contributed under MIT/X11 license.
7921
7922 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7923
7924         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7925
7926         * appdomain.c: Call the tracer init function.
7927
7928         * domain-internals.h: Enable the tracer for the domain locks.
7929
7930         * image.c: Enable the tracer for image locks.
7931
7932         * loader.c: Enable the trace for the loader lock.
7933
7934         * lock-tracer.h:
7935         * lock-tracer.c: Initial implementation of the lock trace utility.
7936         The tracer requires a compile time define to be enabled and a env var
7937         to be enabled at runtime.
7938
7939 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7940
7941         * domain.c (mono_domain_code_foreach): Improve documentation.
7942
7943 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7944
7945         * appdomain.c:
7946         * generic-sharing.c:
7947         * object.c:
7948         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7949         comes first.
7950
7951 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7952
7953         * domain.c: Add mono_domain_code_* functions that perform locking
7954         around the domain codeman.
7955
7956         * domain-internals.h: Export those functions.
7957
7958         * object.c: Use new functions instead of acquiring the domain lock.
7959
7960 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7961
7962         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7963         delegate. Fixes #477396.
7964
7965 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7966
7967         * reflection.c (create_custom_attr): Get rid of alloca.
7968
7969 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7970
7971         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7972           Adding exception handling for all CCW calls.
7973
7974         Code is contributed under MIT/X11 license.
7975
7976 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7977
7978         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7979
7980         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7981         native->managed marshalling code. Fixes #476247.
7982
7983 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7984
7985         * class.c (mono_class_get_vtable_entry): Move the addition of
7986         static rgctx invoke wrappers for vtable methods here, this simplifies
7987         a lot of code and causes fewer rgctx wrappers to be created.
7988
7989         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7990         name of the statistics to begin with an uppercase.
7991
7992 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7993
7994         * reflection.c: Revert previous change as it breaks the build.
7995         
7996 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7997
7998         * verify.c: Properly handle SZARRAY element type.
7999
8000         Fixes #474271.
8001
8002 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8003
8004         * reflection.c (mono_image_create_method_token): Correctly encode
8005         MethodDef MemberRefParent token.
8006
8007         Fixes #472845.
8008
8009 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
8010
8011         * image.c (mono_image_close): Delete the critical section before
8012         freeing the memory holding it.
8013
8014 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8015
8016         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
8017         Fixes #476257.
8018
8019 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8020
8021         * pedump.c (main): Call mono_marshal_init so pedump
8022         doesn't crash.
8023
8024 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8025
8026         * loader.c (method_from_memberref): Properly fix #474271 and
8027         don't break the runtime bad.
8028
8029 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8030
8031         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
8032         (mono_domain_alloc0): Ditto.
8033
8034 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8035
8036         * loader.c (method_from_memberref): Don't abort if the array
8037         method is not found. A regular loader failure is more informative
8038         and correct.
8039
8040         Fixes #474271.
8041
8042 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8043
8044         *loader.c: Guard MonoImage::method_cache/methodref_cache
8045         using the image lock instead of the loader lock.
8046
8047         * metadata.h: Add comments about which fields are protected by
8048         the image lock.
8049
8050 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8051
8052         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
8053
8054         * generic-sharing.c (mono_method_construct_object_context): Remove the
8055         wrapper_type == NONE assert, it is not needed.
8056
8057 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
8058
8059         * reflection.c (clear_cached_object): New helper function.
8060         (mono_method_clear_object): New function to clear the cached reflection
8061         objects for a dynamic method.
8062
8063         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
8064         Partly fixes # 463323.
8065         
8066 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8067
8068         * class.c:
8069         * loader.c:
8070         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
8071
8072 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8073
8074         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
8075         take the image lock instead of the loader lock.
8076
8077         * metadata-internals.h: Export new functions.
8078
8079 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8080
8081         * domain.c (app_config_parse): Remove another use of stat that is
8082         not necessary as g_file_get_contents already does the presence
8083         check. 
8084
8085 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8086
8087         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
8088
8089         * marshal.c: Move the bstr handling code to cominterop.c.
8090
8091         * marshal.c: Remove some COM interop code missed previously.
8092
8093 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8094
8095         More Paolo patches from the Wii port:
8096         
8097         * security.c: Remove ves_icall_System_Environment_get_UserName
8098         from here.
8099
8100         * icall.c: And put ves_icall_System_Environment_get_UserName
8101         here. 
8102
8103         * appdomain.c (mono_set_private_bin_path_from_config): Remove
8104         redundant call to stat that was only used to test for the file
8105         existence.   Patch from Paolo.
8106
8107         * gc.c (run_finalize): If COM is disabled, do not link in
8108         mono_marshal_free_ccw.
8109
8110         * generic-sharing.c: Use alloca.h here as well.
8111
8112 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
8113
8114         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
8115
8116 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8117
8118         * cominterop.c cominterop.h: New files.
8119
8120         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
8121         function/typedefs which are needed by cominterop.c global.
8122
8123 2009-02-12  Mark Probst  <mark.probst@gmail.com>
8124
8125         * generic-sharing.c: Don't take the loader lock to guard image
8126         mempool allocs.
8127
8128 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8129
8130         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
8131         called without the loader lock which is required to guard MonoImage:tokens.
8132
8133 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8134
8135         * class.c:
8136         * metadata.c:
8137         * method-builder.c:
8138         * marshal.c:
8139         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
8140
8141 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8142
8143         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8144         Rework the code to use regular mono_image_alloc/0.
8145
8146         * loader.c: Rework the code to use regular mono_image_alloc/0.
8147
8148         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8149
8150 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
8151
8152         * object-internals.h : Fixing a typo in the 
8153           MonoReflectionComVisibleAttribute struct.
8154
8155         * marshal.c (cominterop_com_visible): Check the implemented 
8156           interfaces for ComImport.
8157
8158         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
8159           assume that bools should be treated as VARIANTBOOLs.
8160
8161         * marshal.c (emit_marshal_boolean): Adding cases for 
8162           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
8163
8164         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
8165           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
8166
8167         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
8168           should be treated as VARIANTBOOLs.    
8169
8170         Code is contributed under MIT/X11 license.
8171
8172 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8173
8174         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
8175         allocation with the image lock.
8176
8177 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8178
8179         This patch is the last of a series to remove explicit reference of MonoImage::mempool
8180         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
8181
8182         * object.c: Add mono_string_to_utf8_image.
8183
8184         * object-internals.h: Export mono_string_to_utf8_image.
8185
8186         * reflection.c: Rework all explicit references to the the image mempool to go thought
8187         the mono_image_alloc set of functions.
8188
8189 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8190
8191         This patch is the third of a series to remove explicit reference of MonoImage::mempool
8192         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
8193         and generics-sharing.c.
8194
8195         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
8196         as first argument. Note that this function remains broken as it doesn't perform locking around the
8197         mempool allocation.
8198
8199         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
8200
8201         * image.c: Add g_slist_append_image.
8202
8203         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
8204         the supplied image for allocation. Move code into mono_metadata_field_info_full.
8205
8206         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
8207         Fix all related code to do the same.
8208
8209         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
8210
8211         * metadata-internals.h: Fix the signatures.
8212
8213 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8214
8215         This patch is the second of a series to remove explicit reference of MonoImage::mempool
8216         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
8217         and similar to work using MonoImage.
8218
8219         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
8220         MonoMemPool.
8221
8222         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
8223
8224         * class.c (mono_metadata_signature_deep_dup): Same.
8225
8226         * class.c (inflate_generic_type): Same.
8227
8228         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
8229
8230         * metadata.c (mono_metadata_signature_dup_full): Same.
8231
8232         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
8233         mono_metadata_signature_dup_full.
8234
8235         * metadata.c (mono_metadata_type_dup): Same.
8236
8237         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
8238
8239         * reflection.c: Same.
8240
8241         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
8242
8243         * metadata-internals.h: Fix the signatures.
8244
8245         * class-internals.h: Same.
8246
8247 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8248
8249         This patch is the first of a series to remove explicit reference of MonoImage::mempool
8250         and use mono_image_alloc set of functions instead. 
8251
8252         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
8253         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
8254         of a MonoMemPool.
8255
8256         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
8257
8258         * class.c (g_list_prepend_mempool): Removed.
8259
8260         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
8261
8262         * image.c: Add g_list_prepend_image.
8263
8264         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
8265
8266         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
8267
8268
8269 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8270
8271         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
8272         mono_image_unlock.
8273
8274         * image.c (mono_image_init): Init the lock field.
8275  
8276         * image.c (mono_image_init): Cleanup the lock field.
8277
8278         * image.c: Add mono_image_(un)lock functions.
8279
8280 2009-02-11  Mark Probst  <mark.probst@gmail.com>
8281
8282         * class.c, class-internals.h: mono_method_get_context_general()
8283         combines the functionality of mono_method_get_context() and
8284         mini_method_get_context().
8285
8286         * generic-sharing.c, domain-internals.h:
8287         mono_method_construct_object_context() and
8288         mono_domain_lookup_shared_generic() moved from mini.
8289
8290         * icall.c (ves_icall_InternalInvoke): Handle the case where the
8291         method doesn't have the correct instantiation because it's shared
8292         generic code.  Fixes #473999.
8293
8294 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
8295
8296         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
8297
8298         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
8299         
8300 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8301
8302         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
8303
8304         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
8305
8306         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
8307         and recheck the cache for dups after it.
8308
8309         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
8310
8311         Fixes one of the deadlocks found in #473150.
8312
8313 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
8314
8315         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
8316           For Win32, add additional break conditions for accept.
8317
8318         Code is contributed under MIT/X11 license.
8319
8320 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
8321
8322         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
8323         lazily initialize the native wrapper cache.
8324         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
8325         cache, since they are different from the normal wrappers.
8326
8327         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
8328
8329         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
8330         AOT compiled native wrappers.
8331
8332 2009-02-09  Geoff Norton  <gnorton@novell.com>
8333
8334         * appdomain.h:
8335         * security-core-clr.c: Allow enabling core-clr from the embedding
8336         API.
8337
8338 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8339
8340         * socket-io.c: when requesting all the local ips, if there are no
8341         interfaces up and running, MS returns 127.0.0.1.
8342
8343 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8344
8345         * mono-perfcounters-def.h: processor time is an inverse time.
8346         Fixes bug #468625.
8347
8348 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8349
8350         * socket-io.c: an empty host name returns the list of local IPs.
8351         Fixes bug #386637 part 1/2.
8352
8353 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
8354
8355         * verify.c (mono_class_interface_implements_interface): Call
8356         mono_class_setup_interfaces ().
8357         (merge_stacks): Ditto.
8358
8359 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8360
8361         * class.c (mono_class_setup_interfaces): New function to lazily initalize
8362         klass->interfaces.
8363         (mono_generic_class_get_class): Don't initalize klass->interfaces.
8364         (mono_generic_class_get_class): Ditto.
8365
8366 2009-02-06  U-QUACK\miguel  <miguel@quack>
8367
8368         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
8369         they live in security.c
8370
8371         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
8372         another bit from Paolo's code.
8373
8374 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8375
8376         * object.c (build_imt_slots): Add a small optimization to avoid inflating
8377         methods which will be discarded by add_imt_builder_entry ().
8378
8379         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
8380         need to be boxed.
8381
8382         * loader.c: Add a statistics for the size of the memberref signature cache.
8383         
8384         * loader.c (find_cached_memberref_sig): New helper function.
8385         (cache_memberref_sig): Ditto.
8386
8387         * loader.c: Cache the result of parsing memberref signatures, since otherwise
8388         they will be parsed again for every generic instantiation, leading to unbounded
8389         memory growth.
8390
8391 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8392
8393         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8394         parameters of generic methods.
8395
8396         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8397         after the original method is copied to the inflated method.
8398         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8399
8400         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8401         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8402
8403         * class.c metadata.c: Update after the changes above.
8404
8405 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8406
8407         * metadata-verify.c: Simplified error handling and added
8408         section table validation.
8409
8410 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8411
8412         * class-internals.h (MonoClassExt): New structure containing rarely used
8413         fields of MonoClass.
8414         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8415         through a new 'ext' field.
8416
8417         * class.c (mono_class_alloc_ext): New helper function to allocate 
8418         class->ext.
8419
8420         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8421
8422 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8423
8424         * object.c (mono_object_get_virtual_method): Properly inflate
8425         generic methods.  Fixes #472692.
8426
8427 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8428
8429         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8430         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8431         for the parent type, the created type must be ready to be used on a generic
8432         instantiation.
8433         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8434         we won't have duplicated entries in generic_inst_cache.
8435
8436         Fixes #469553.
8437
8438 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8439
8440         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8441         replace with plain BSD per the comments on the bug MONO77637.
8442
8443 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8444
8445         * class.c (mono_class_get_generic_class): New accessor function.
8446         (mono_class_get_generic_container): Ditto.
8447
8448         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8449         fields, similar to the ones in MonoMethod.
8450
8451         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8452         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8453
8454         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8455         
8456         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8457         the same information as element_class->byval_arg.
8458
8459         * class.c reflection.c: Remove references to class->byval_arg.
8460
8461         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8462         klass->enum_basetype directly.
8463
8464         * verify.c metadata.c object.c icall.c reflection.c: Use 
8465         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8466         directly.
8467
8468 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8469
8470         * icall-def.h: Remove internal calls for sockets when
8471         DISABLE_SOCKET is defined, file system writing features when the
8472         OS only support reading and not writing data and Policy support if
8473         the Policy is disabled.
8474         
8475         * image.c (do_mono_image_open): Apply Paolo's patches for using
8476         mono_file_map_ APIs here.
8477
8478         * assembly.c: Add support for platforms to avoid prefix
8479         auto-detection. 
8480
8481 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8482
8483         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8484         warning.
8485
8486         * class.c (mono_class_inflate_generic_class): New helper function.
8487
8488         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8489         statistics for inflated methods/classes.
8490
8491         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8492
8493         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8494         the call is made from Delegate.CreateDelegate () for the invoke method of
8495         a delegate.
8496
8497         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8498
8499         * metadata.c (mono_metadata_signature_size): New helper function.
8500
8501         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8502         generic instances.
8503
8504         * metadata.c (inflated_method_in_image): Avoid calling 
8505         mono_method_signature () if the method does not already have a signature.
8506
8507 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8508
8509         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8510         valuetype is compatible with target type, check by inheritance as a
8511         VT is not really compatible with System.ValueType, for example.
8512
8513         * verify.c (do_invoke_method): Improve error message.
8514
8515         * verify.c (do_box_value): If boxing a nullable, use the type argument
8516         on stack instead.
8517
8518         * verify.c (do_newobj): Improve error message.  
8519
8520         Fixes #469549.
8521
8522 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8523
8524         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8525
8526 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8527
8528         * generic-sharing.c: Don't hold domain lock when calling
8529         instantiate_other_info().  Fixes #471958.
8530
8531         * domain-internals.h, loader.c: Describe locking policy of domain
8532         lock vs loader lock.
8533
8534 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8535
8536         * verify.c (mono_delegate_signature_equal): Make it possible to check
8537         first-arg-bound delegates to static method.
8538
8539         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8540         static methods with the first arg bound.
8541
8542         Fixes #469529.
8543
8544 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8545
8546         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8547         errors.
8548
8549         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8550         under strict mode. Any type, when boxed can be seen as a reference type.
8551
8552         Fixes #469528.
8553
8554 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8555
8556         * object.h: The lower bound of an array is a signed integer value.
8557         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8558         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8559
8560         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8561         calculate the upper bound.
8562         
8563         Fixes #471252.
8564
8565 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8566
8567         From Paolo's work, refactored, cleared up:
8568         
8569         * threadpool.c, icall.c: ifdef code that requires a working socket
8570         stack.
8571
8572         * metadata.c (mono_metadata_field_info): Do not attempt to return
8573         a value from a function declared as void.
8574
8575         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8576         from the console stack.
8577
8578         * assembly.c: use strrchr instead of rindex.
8579
8580         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8581         alloca.h on systems that have it.
8582
8583         * environment.c: Avoid code that uses stuff from
8584         HAVE_SYS_UTSNAME_H
8585         
8586         * appdomain.c: Include sys/time.h.
8587
8588         * console-io.c: include sys/ioctl.h if it is available.
8589
8590 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8591
8592         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8593
8594         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8595         the method builder.
8596
8597         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8598         after it was created and cached, as the later is not thread safe.
8599         
8600 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8601
8602         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8603         called while the debugging module is not initialized. Fixes #471669.
8604
8605 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8606
8607         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8608
8609         Fixes #471255.
8610
8611 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8612
8613         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8614         loader lock is not taken while the templates lock is held.  Fixes
8615         #471089.
8616
8617 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8618
8619         * metadata.c (type_in_image): Added a check to fix a monodis
8620         crash.
8621
8622 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8623
8624         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8625         nullable arguments.
8626
8627         * object.c (mono_runtime_invoke_array): Ditto.
8628         
8629         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8630         freeing wrappers of dynamic methods.
8631
8632         * loader.c (mono_free_method): Call it. Fixes #463323.
8633         
8634         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8635         methods taking vtype/byref arguments, to fix yet another bug caused by
8636         the sharing of runtime invoke wrappers. Partly fixes #471259.
8637
8638 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8639
8640         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8641         <first file in file table>:1 when the IL offset does not have an associated
8642         line number.
8643
8644 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8645
8646         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8647         variable info for a method.
8648
8649         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8650         
8651 2009-01-30  Jb Evain  <jbevain@novell.com>
8652
8653         * pedump.c: reuse code from monodis to make sure pedump honors
8654         MONO_PATH, which is needed to verify net_2_1 assemblies.
8655
8656 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8657
8658         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8659         there is no line number info.
8660
8661 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8662
8663         Avoid some MonoType allocations
8664         * reflection.c (mono_reflection_initialize_generic_parameter):
8665         Reuse MonoType from param->pklass rather than allocating one.
8666         (mono_dynamic_image_free): Update to changes.
8667
8668 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8669
8670         Rearrange some code to improve consistency
8671         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8672         (mono_reflection_initialize_generic_parameter): ... here.
8673
8674 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8675
8676         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8677         with type constraints as an experiment.
8678
8679         * boehm-gc.c (on_gc_notification): Update mono_stats.
8680
8681 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8682
8683         Avoid some allocations
8684         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8685         pointer to tail array to avoid extra allocation.
8686         * metadata.c (free_generic_inst): Update to changes.
8687         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8688         on-stack struct.
8689
8690 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8691
8692         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8693         return TRUE if the two type objects are the same.
8694
8695 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8696
8697         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8698         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8699         klass->min_align, since klass->min_align contains the managed alignment,
8700         while the native alignment can be different, like for longs on x86.
8701         Fixes #469135.
8702
8703         * class-internals.h (MonoMarshalType): Add a min_align field.
8704
8705 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8706
8707         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8708         the 1.0 format.
8709
8710 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8711
8712         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8713         some comments about the usage of the used_regs field.
8714
8715         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8716         Fixes #469217.
8717
8718 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8719
8720         * appdomain.c: return NULL instead of throwing FileNotFoundException
8721         when LoadAssembly() fails.
8722
8723 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8724
8725         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8726         image if the owner is NULL.  Fixes the AOT failures.
8727
8728 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8729
8730         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8731         MonoGenericParam structure using memset so the image field is initialized
8732         as well.
8733
8734 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8735
8736         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8737         a plain store.
8738
8739 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8740
8741         * class.c (mono_class_setup_vtable_general): In the generic instance
8742         optimization, set method->slot for abstract virtual methods. Fixes part of
8743         #467834.
8744
8745 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8746
8747         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8748         which signals that the unloading has started but all appdomain services must
8749         remain operational.
8750
8751         * appdomain.c (mono_domain_unload): The initial state for unloading now
8752         is unloading_start and we switch to unloading after the managed call to
8753         AppDomain::DomainUnload has finished.
8754
8755         The new unloading state has to be created because managed code in the
8756         DomainUnload event can depend on things like the threadpool still working.
8757         The domain must remain fully functional while the event executes.
8758
8759         This shown as an issue due to Process::WaitForExit, which waits for
8760         async reads of stdout and stderr to complete. Since those are processed
8761         in the threadpool the code deadlocks because the DomainUnload callback 
8762         waits for the async read finished event, which should have been set by a
8763         threadpool job but has been discarded due to the domain been in unload
8764         state.
8765
8766 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8767
8768         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8769         image must match.
8770
8771 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8772
8773         * reflection.c (resolve_object): For fields, inflate the class and
8774         then get the field in the inflated class.
8775
8776 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8777
8778         * object-internals.h (struct _MonoException): Added a comment
8779         explaining the new use of trace_ips.
8780
8781 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8782
8783         * generic-sharing.c (inflate_other_data): Inflate array methods
8784         correctly.
8785
8786         * loader.c, class-internals.h: Rename search_in_array_class() to
8787         mono_method_search_in_array_class() and make it non-static.
8788
8789 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8790
8791         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8792         Hopefully fixes #458168.
8793
8794 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8795
8796         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8797         as it is performed elsewhere.
8798
8799         Code is contributed under MIT/X11 license
8800
8801 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8802
8803         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8804         requests queued.
8805         * object.c (mono_raise_exception): Increment the exceptions total
8806         counter when an exception is thrown.
8807         * class-internals.h: Add a location for storing the total number of
8808         asp.net requests served.
8809         * mono-perfcounters.c: Implement update support for asp.net counters
8810         from the class libraries. Implement read support for asp.net counters
8811         and exceptions total counter.
8812
8813 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8814
8815         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8816         accessing klass->methods. Fixes #467385.
8817
8818 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8819
8820         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8821         for byval arguments without an [Out] attribute. Fixes #467212.
8822
8823         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8824         Fix compilation under android.
8825         
8826         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8827         processed, scan them directly after they are copied, to achieve better locality
8828         and cache usage.
8829
8830         * socket-io.c: Applied patch from Koushik Dutta
8831         (koush@koushikdutta.com). Disable IPV6 when running under android.
8832
8833 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8834
8835         * icall.c (ves_icall_InternalExecute): Add write barriers.
8836
8837         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8838         the GC code.
8839
8840         * sgen-gc.c: Implement write barriers in IL code.
8841
8842 2009-01-17  Geoff Norton  <gnorton@novell.com>
8843
8844         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8845
8846 2009-01-17  Geoff Norton  <gnorton@novell.com>
8847
8848         * image.c: When unloading the image->references table, there can be gaps
8849         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8850         when unloading an appdomain.
8851
8852 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8853
8854         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8855         speed up ptr-in-nursery checks.
8856
8857         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8858         threads_lock () to prevent deadlocks.
8859
8860         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8861         does not need to be scanned during minor collections, since writes to it
8862         must use write barriers.
8863
8864 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8865
8866         * metadata-verify.c: Add pe nt header verification.
8867         
8868 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8869
8870         * gc.c: Fix a few warnings when using SGEN.
8871
8872 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8873
8874         * metadata-verify.c: Add pe optional header verification.
8875
8876 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8877
8878         * sgen-gc.c: Add support for user defined marker functions, used by
8879         MonoGHashTable to avoid registering a GC root for every hash node.
8880
8881 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8882
8883         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8884         non-pinned roots into separate hashes to avoid having to traverse them
8885         in functions which are only interested in one kind.
8886
8887 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8888
8889         * metadata-verify.c: Add pe header machine field verification.
8890         
8891 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8892
8893         * metadata-verify.c: Add pe header size verification.
8894
8895 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8896
8897         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8898         using the GC, they don't contain references.
8899
8900         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8901
8902 2009-01-13  Geoff Norton  <gnorton@novell.com>
8903
8904         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8905         AppDomains created on the native side can be cleaned up on the native side.
8906
8907 2009-01-13  Geoff Norton  <gnorton@novell.com>
8908
8909         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8910         as well as the managed api.
8911
8912 2009-01-13  Geoff Norton  <gnorton@novell.com>
8913
8914         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8915         with a MonoAppDomain initialized against it.
8916
8917 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8920         
8921         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8922
8923         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8924         into the wrapper caches. Fixes #465700.
8925
8926         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8927         method builder.
8928         (mono_mb_create_method): Set the clauses from the method builder.
8929
8930 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8931
8932         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8933         Patch from Makoto Kishimoto.
8934
8935 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8936
8937         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8938         encoding them as ROOT_DESC_COMPLEX.
8939         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8940
8941 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8942
8943         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8944         no longer point to the nursery.
8945
8946         * sgen-gc.c: Add a few comments/FIXMEs.
8947         
8948         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8949
8950         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8951         initialization of the various _method variables thread safe. Fixes
8952         #465377.
8953
8954 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8955
8956         * domain.c, domain-internals.h: Remove the shared_generics_hash
8957         and its lookup functions.
8958
8959 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8960
8961         * socket-io.c:  Fixing the MSVC build. 
8962
8963         Code is contributed under MIT/X11 license.
8964
8965 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8966
8967         * metadata-verify.c: Add pe header watermark verification.
8968
8969 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8970
8971         * metadata-verify.c: Add lfanew verification.
8972
8973 2009-01-12  Jb Evain  <jbevain@novell.com>
8974
8975         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8976         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8977
8978 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8979
8980         * socket-io.c: Fix the build.
8981
8982         * environment.c: Fix an #ifdef.
8983
8984 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8985
8986         * threadpool.c (async_invoke_thread): Handle the wait function returning
8987         WAIT_IO_COMPLETION as well.
8988         (async_invoke_io_thread): Ditto.
8989
8990 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8991
8992         * threads.c: Fixing the Windows build.
8993
8994         Code is contributed under MIT/X11 license.
8995
8996 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8997  
8998         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8999         interrupt a wait.
9000         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
9001         the thread to wait again.
9002
9003 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9004
9005         * metadata-verify.c: Initial skeleton of the metadata verifier.
9006
9007         * pedump.c: Add support for the metadata verifier.
9008
9009         * verify-internal.h: Export the whole assembly metadata verifier function.
9010
9011 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9012
9013         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
9014
9015 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9016
9017         * Makefile.am: Upgrade dtrace-prelink.sh location.
9018
9019 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9020
9021         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
9022         well. Otherwise the shutdown deadlock that happens on unix will can happen
9023         as well.
9024         If the main thread code finishes too fast it's possible that the finalizer
9025         thread won't have executed yet, won't record itself as the finalizer thread
9026         and the shutdown sequence will wait on it forever.
9027
9028 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9029
9030         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
9031         with MSVC.
9032
9033 2009-01-08  Miguel de Icaza  <miguel@novell.com>
9034
9035         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
9036         Robert Jordan for pointing this out.
9037
9038 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
9039
9040         * icall.c
9041         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
9042         ves_icall_System_IO_DriveInfo_GetDriveType.
9043
9044 2009-01-07  Miguel de Icaza  <miguel@novell.com>
9045
9046         * icall.c: Wrap calls to mono_strtod in CriticalSection
9047         invocations when using eglib, to work around #464316.
9048
9049 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9050
9051         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
9052         return value of GetCurrentDirectory to never access unitialized memory.
9053
9054 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9055
9056         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
9057         return value of GetCurrentDirectory and expand the buffer if needed.
9058
9059         Fixes #459094.
9060
9061 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
9062
9063         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
9064           Adding a call to mono_init_com_types.
9065
9066         Code is contributed under MIT/X11 license.
9067
9068 2009-01-07  Geoff Norton  <gnorton@novell.com>
9069
9070         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
9071         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
9072         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
9073         be the value of the ip buffer.
9074
9075 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9076
9077         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
9078         interfaces_packed here.
9079
9080         Fixes part of #463294.
9081
9082 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9083
9084         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
9085
9086         Fixes part of #463294.
9087
9088 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9089
9090         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
9091         is a boxed complex as well.
9092
9093         Fixes part of #463294.
9094
9095 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9096
9097         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
9098         control if a methodspec should be created for the generic method definition from external assemblies.
9099         Caching of methodspec is done using the handleref hash table.
9100
9101         Fixes #462592.
9102
9103 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
9104
9105         * loader.c (find_method): When searching the interfaces of a class
9106         check the transitive closure of implemented interfaces.
9107
9108         Fixes #463303.
9109
9110 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9111
9112         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
9113         
9114 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9115
9116         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
9117         interfaces calculation to fill_valuetype_array_derived_types.
9118
9119         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
9120         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
9121         for example.
9122
9123         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
9124         interfaces for valuetypes if needed.    
9125
9126         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
9127         for their basetype as well. Types are array expanded if rank is > 0.
9128
9129         Fixes #400716.
9130
9131 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
9132
9133         * socket-io.h : Changing the signature of
9134           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
9135           the blocking state.
9136
9137         * icall-def.h :  Changing the signature of
9138           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
9139
9140         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
9141           For Windows only.  Avoid blocking when calling accept by
9142           querying for a connection via select.  The loop also queries
9143           the thread state every 1000 micro seconds for the thread
9144           stop state.  This will avoid the process hanging on shutdown
9145           when using a TcpChannel that is never connected to.
9146
9147         Code is contributed under MIT/X11 license.
9148
9149 2008-12-30  Marek Safar  <marek.safar@gmail.com>
9150
9151         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
9152
9153 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9154
9155         * class.c (get_implicit_generic_array_interfaces): Extract common
9156         code to a helper function making it a lot easier on the eyes.
9157
9158 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9159
9160         * class.c (get_implicit_generic_array_interfaces): If the internal
9161         enumerator is an interface inflate System.Object instead of itself.
9162
9163         Fixes #461261.
9164
9165 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
9166
9167         * object.c (mono_runtime_invoke_array): Don't assert with
9168         byref nullable types.
9169
9170         * marshal.c (mono_marshal_get_runtime_invoke): To handle
9171         byref nullables we unbox the object and store it on the
9172         stack. 
9173         We can't use the boxed object since it is the T of Nullable<T>
9174         and the boxed representation of a nullable it's underlying type
9175         or null.
9176         We could cheat and create a boxed nullable and use the same
9177         machinery of other byref VTs but this feels like a hack and
9178         using the stack has the bonus of reducing heap pressure.
9179
9180         Fixes #461941.
9181
9182 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
9183
9184         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
9185         return value.
9186
9187         Fixes #461867.
9188
9189 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
9190
9191         * icall-def.h : Adding an internal call definition for 
9192           System.Environment.internalBroadcastSettingChange.
9193
9194         * icall.c : Adding a Windows only implementation to broadcast a 
9195           WM_SETTINGCHANGE when an environment variable has changed.
9196
9197         Code is contributed under MIT/X11 license.
9198
9199 2008-12-19  Mark Probst  <mark.probst@gmail.com>
9200
9201         * class.c, class-internals.h: Made
9202         mono_class_has_parent_and_ignore_generics() non-static.
9203
9204 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
9205
9206         * image.c: deal with the mmap failing when loading an image.
9207
9208 2008-12-17  Geoff Norton  <gnorton@novell.com>
9209
9210         * threadpool.c: Ensure that the io_queue_lock is initialized
9211         in all circumstances, as we always attempt to cleanup against it.
9212
9213 2008-12-17  Miguel de Icaza  <miguel@novell.com>
9214
9215         * icall.c (ves_icall_System_Environment_get_Platform): For
9216         compatibility reasons for existing client code we will keep
9217         returning 4 for a while.   
9218
9219         For how long will depend on the documentation being updated, and
9220         for us to give client code a chance to be updated.
9221
9222         This reverts the original decison on #433108 since we did not
9223         catch roughly 33 instances of the broken code in our own source
9224         code base, we did not catch failures on the buildbots, and QA did
9225         not bring this as a problem.
9226
9227         Only today I found some customer's code breaking due to our own
9228         class libraries not being fully updated and tracked it down to
9229         this change.  I am reverting it because if we could not even get
9230         our story straight in our own code base, how can we hope that our
9231         end user code be fixed?
9232
9233         As of this morning, our Wiki page that documents how to detect
9234         Unix had not been fixed.    
9235
9236 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
9237
9238         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
9239
9240         * class.c (mono_class_get_fields): Handle loading errors.
9241
9242 2008-12-12 Mark Mason <mmason@upwardaccess.com>
9243
9244         * 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.
9245         
9246 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
9247
9248         * mono-perfcounters.c: avoid warning.
9249
9250 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9251
9252         * reflection.c (ensure_runtime_vtable): Work on generic instances and
9253         make sure all interfaces have MonoClass::interface_id set.
9254
9255         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
9256         method table is property set.
9257
9258 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9259
9260         * class.c: New function mono_class_setup_interface_id that setup
9261         MonoClass::interface_id if needed.
9262
9263         * class-internals.h: Export new function.
9264
9265 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9266
9267         * class.c: Add code to sanity check the vtable after setup_vtable_general
9268         has done it's work.
9269
9270 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
9271
9272         * icall.c: make Assembly.GetExecutingAssembly work properly when
9273         reflection is used to invoke the method.
9274         Bug #321781 fixed.
9275
9276 2008-12-11  Mark Probst  <mark.probst@gmail.com>
9277
9278         * metadata/generic-sharing.c: Look for constraints in all type
9279         arguments, not just the first one.
9280
9281 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9282
9283         * appdomain.c: return the correct CodeBase for an Assembly instance
9284         that was loaded from the shadow-copy directories.
9285         Bug #458190 fixed.
9286
9287 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
9288
9289         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
9290
9291         * sgen-gc.c (check_object): New debugging helper function.
9292
9293         * object.c: Fix calls to mono_value_copy_array ().
9294
9295 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9296
9297         * class.c (mono_class_setup_fields): If working on an inflated class
9298         first check if the generic definition did init with success.
9299
9300         Fixes #445361.
9301
9302 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9303
9304         pedump.c (main): Fix a warning.
9305
9306 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
9307
9308         * object-internals.h : Adding a definition for 
9309           MonoReflectionComVisibleAttribute.
9310
9311         * marshal.c (cominterop_com_visible) :  Method added to check the 
9312           ComVisible attribute of a class.
9313
9314         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
9315           cominterop_raise_hr_exception added to consolidate common code 
9316           to raise hr exceptions.
9317
9318         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
9319           if a managed class should support IDispatch.
9320
9321         * marshal.c 
9322           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
9323           Added additional checks for managed object when getting 
9324           an IDispatch interface.
9325
9326         Code is contributed under MIT/X11 license.
9327
9328 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9329
9330         pedump.c (main): Handle mono_get_method () returning NULL. 
9331
9332 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9333
9334         * marshal.h: Fix a warning.
9335
9336 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
9337
9338         * marshal.c : Adding cominterop_release_all_rcws to release all
9339           runtime callable wrappers held by the runtime.
9340
9341         * marshal.h : Adding declaration for cominterop_release_all_rcws.
9342           
9343         Code is contributed under MIT/X11 license.
9344
9345 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9346
9347         * metadata.c (mono_image_alloc_lock): New helper function.
9348         (mono_image_alloc0_lock): Ditto.
9349
9350         * metadata.c: Use the alloc_lock () helper functions for allocating
9351         memory from the image mempool.
9352
9353 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
9354
9355         * class.c (mono_class_from_generic_parameter): Document it's
9356         locking behavior. Fix double checked locking here, we stored in
9357         param->pklass a partially initialized MonoClass and no membar was used.
9358
9359 2008-12-05  Marek Habersack  <mhabersack@novell.com>
9360
9361         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
9362         (3) functions are present in the C library use them to do the
9363         job. If they are absent, make sure that the sum of int_part and
9364         dec_part is rounded before returning. This is necessary due to the
9365         division of dec_part by the power of 10 before the final addition
9366         is performed - if the result is not rounded in some cases it will
9367         yield invalid results.
9368
9369 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
9370
9371         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
9372         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
9373         instruction instead of a pointer constant.
9374
9375 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
9376
9377         * loader.c (mono_method_get_header): Do most of the work outside the
9378         loader lock, to avoid assembly load hook deadlocks.
9379
9380         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
9381         (mono_metadata_parse_type_full): Ditto.
9382
9383 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
9384
9385         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
9386         Make the stack depth fixed. Ensure proper argument passing to the backtrace
9387         funtions. Finally, use a lock to produce well ordered output.
9388
9389         The lock looks silly, as all calls to the corlib mempool should be guarded
9390         with the loader lock, but for some reason this fact doesn't help. 
9391
9392         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9393
9394 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9395
9396         * socket-io.c: 64 bit big-endian fixes.
9397
9398 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9399
9400         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9401         targets that require strict compatibility between the types.
9402
9403         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9404         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9405         Kill the strict argument and create a new one valuetype_must_be_boxed.
9406
9407         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9408         state that all valuetypes must be boxed.
9409
9410         Fixes #448560.
9411
9412 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9413
9414         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9415         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9416
9417         Contributed under MIT/X11 license.
9418
9419 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9420
9421         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9422         the inflate_generic_type machinery should handle it.
9423
9424         This avoids a crash when the field's flags is zero and it's type is
9425         a primitive.
9426         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9427         is zero and will return one of the cached built-in primitive types. Since
9428         those types live in read-only memory, the code that copies it crashes.  
9429
9430 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9431
9432         * object.c: Don't put function descriptors into generalized IMT
9433         thunks.
9434
9435 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9436
9437         * class.c: Enable generic code sharing on PPC64.
9438
9439 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9440
9441         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9442         from mini/mini.c.
9443
9444         * generic-sharing.c: Allocate the method template slists from the
9445         image mempool so it doesn't leak.
9446
9447 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9448
9449         * class.c (generic_array_methods): Release the linked list.
9450
9451 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9452
9453         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9454         invocation to g_utf16_to_utf8().
9455
9456 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9457
9458         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9459         arguments on big endian archs.
9460
9461 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9462
9463         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9464         the type name (test added in corlib).
9465
9466 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9467
9468         * pedump.c: initialize perf. counters. Fixes a segv.
9469
9470 2008-11-25  Martin Baulig  <martin@ximian.com>
9471
9472         * mono-debug-debugger.c
9473         (mono_debugger_runtime_invoke): Return the exception object if an
9474         exception was thrown.  Visual Studio displays the exception object
9475         in the locals window.
9476
9477 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9478
9479         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9480         ftnptr.
9481
9482 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9483
9484         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9485         MONO_TYPE_U are sizeof (gpointer), too.
9486
9487 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9488
9489         * marshal.c (mono_type_native_stack_size): Fixed size and
9490         alignment for reference types.
9491
9492 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9493
9494         * class.c (mono_class_generic_sharing_enabled): Disable generic
9495         code sharing for PPC64.
9496
9497 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9498
9499         * icall.c (mono_method_get_equivalent_method): Make sure
9500         method->klass->methods is inited before looping over it.
9501
9502 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9503
9504         * object.c: when calling ExecuteAssembly in a newly created domain,
9505         the configuration file and application base are already set up.
9506         Bug #446353 take 2 fixed.
9507
9508 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9509
9510         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9511         Fixes #444715. Fix a warning.
9512
9513 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9514
9515         * appdomain.c: write the full path of the assembly to the .ini file
9516         created when "shadow-copying"
9517         Bug #446353 fixed.
9518
9519 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9520
9521         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9522         if signature==FALSE.
9523
9524 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9525
9526         * marshal.h : Fix the cygwin build.
9527            marshal.c:12442: undefined reference to `_IID_IMarshal'
9528           
9529         Code is contributed under MIT/X11 license.
9530
9531 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9532
9533         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9534           free threaded marshaler when QueryInterface is called on a COM callable
9535           wrapper requesting the IMarshal interface.
9536           
9537         Code is contributed under MIT/X11 license.
9538
9539 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9540
9541         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9542
9543         * reflection.c (mono_type_get_object): Special case the very common
9544         void type.
9545
9546         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9547         hold typeof(void).
9548
9549 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9550
9551         * process.h : Adding method declaration for
9552           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9553           
9554         * process.c : Adding implementation for
9555           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9556           
9557         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9558           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9559
9560         Code is contributed under MIT/X11 license.
9561
9562 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9563
9564         * appdomain.c (unload_thread_main): Clean up threadpool by
9565         calling mono_thread_pool_remove_domain_jobs.
9566
9567         * domain-internals.h (struct _MonoDomain): Add new fields to
9568         help coordinate the cleanup of the threadpool.
9569
9570         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9571         that cleans up the threadpool of all jobs associated with an appdomain.
9572         It does that by cleaning up the queues and making sure all active
9573         threads are accounted.
9574
9575         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9576         unloaded or in the process of. Take this is such way that there is
9577         no race condition between another thread starting the unload and the
9578         current thread acknowledging it.
9579
9580         * threadpool.c (async_invoke_thread): Same.
9581
9582         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9583         firing the new thread.
9584
9585         * threadpool.c (start_tpthread): Same.
9586
9587         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9588
9589         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9590
9591 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9592
9593         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9594         Add support for DuplicateHandle.
9595         
9596         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9597         Add support for DuplicateHandle.
9598         
9599         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9600         Add support for DuplicateHandle.
9601
9602         Code is contributed under MIT/X11 license.
9603
9604 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9605
9606         * class-internals.h: Make min_align into a whole byte.
9607
9608         * class.c: Set min_align for SIMD types to 16.
9609
9610 2008-11-05  Geoff Norton  <gnorton@novell.com>
9611
9612         * attach.c: Default the attacher to enabled for all cases including
9613         embedded.
9614
9615 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9616
9617         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9618         change r117650.
9619
9620 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9621
9622         * monitor.c, monitor.h: New function for querying offsets of
9623         members of MonoThreadsSync.
9624
9625 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9626
9627         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9628         to speed up this function and to avoid the boundless memory growth caused by
9629         the signature_dup () calls.
9630
9631 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9632
9633         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9634         wrapper.
9635
9636         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9637         by 1 bit.
9638
9639         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9640
9641 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9642
9643         * appdomain.c:
9644         * domain-internals.h: made mono_set_private_bin_path_from_config()
9645         "internal".
9646         * object.c: call the above function after setting the configuration
9647         file path for the root domain.
9648         Fixes bug #314478.
9649
9650 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9651
9652         * assembly.c: when the assembly is loaded from an absolute path, end
9653         basedir with a directory separator.
9654         Bug #440781 fixed.
9655
9656 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9657
9658         * monitor.c (mono_monitor_get_fast_enter_method): If
9659         CompareExchange is not available, don't create the fastpath
9660         instead of asserting.  (The method is missing in the 1.1 profile.)
9661
9662 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9663
9664         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9665
9666         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9667         Monitor.Exit IL fastpaths.
9668
9669 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9670
9671         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9672
9673 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9674
9675         * class.c (mono_class_create_from_typedef): Added Vector2l.
9676
9677 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9678
9679         * class.c (mono_class_create_from_typedef): Added Vector2d.
9680
9681 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9682
9683         * appdomain.c: translate \ into / for cache_path.
9684         * domain-internals.h: new mono_is_shadow_copy_enabled().
9685         * icall.c: (fill_reflection_assembly_name) do the same path
9686         manipulations that get_code_base does.
9687         (get_code_base) use mono_is_shadow_copy_enabled.
9688
9689 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9690
9691         * appdomain.c: shadow-copied assemblies go to CachePath +
9692         ApplicationName when both are set. DynamicBase has nothing to do with
9693         shadow copies.
9694         Bug #406877 fixed.
9695
9696 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9697
9698         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9699         STANDALONESIG table.
9700
9701         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9702         standalone signatures.
9703
9704         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9705         comparison code: instead of comparing the signatures using a custom
9706         equals function, transform them to a common signature and compare that. This
9707         works better with AOT.
9708
9709 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9710
9711         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9712
9713         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9714         call for generic instances.
9715         (mono_class_setup_properties): Call setup_properties () before accessing
9716         gklass->properties.
9717
9718         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9719         over the virtual methods of a class using metadata if possible, avoiding the
9720         creation of MonoMethod's for non-virtual methods.
9721         
9722         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9723         get_virtual_methods () to iterate over the virtual methods of classes.
9724
9725 2008-10-25  Martin Baulig  <martin@ximian.com>
9726
9727         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9728
9729 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9730
9731         * class.c (mono_class_create_from_typedef): Added Vector4i.
9732
9733 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9734
9735         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9736         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9737         special-casing applies to eliminate the call completely.
9738
9739 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9740
9741         * class.c (mono_class_create_from_typedef): Added Vector8s.
9742
9743 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9744
9745         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9746
9747 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9748
9749         * icall.c: get rid of annoying warning.
9750
9751 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9752
9753         * threadpool.c: in 1.x, if you change the background status of the
9754         threadpool thread, it's not reset.
9755         Remove unnecessary calls to SetState.
9756
9757 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9758
9759         * threadpool.c: asynchronously create a set of idle threads upon first
9760         use of the threadpool. SetMinThreads will now start the appropriate
9761         number of idle threads if they are not already running. The default is
9762         1 threadpool thread per CPU. Increased the maximum number of threads
9763         per CPU to 10.
9764
9765 2008-10-22  Martin Baulig  <martin@ximian.com>
9766
9767         Revert r116521 from Zoltan, it breaks the debugger:
9768
9769         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9770         over the virtual methods of a class using metadata if possible, avoiding the
9771         creation of MonoMethod's for non-virtual methods.
9772         
9773         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9774         get_virtual_methods () to iterate over the virtual methods of classes.
9775
9776 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9777
9778         * threads.c: when creating a threadpool thread, set its state to
9779         'background'.
9780         * threadpool.c: reset the background state of a threadpool thread
9781         after finishing each work item
9782         Bug #437888 fixed.
9783
9784 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9785
9786         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9787         
9788         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9789         generic instances which works by inflating the methods in the container
9790         class's vtable.
9791
9792         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9793         variant which doesn't make a copy if no inflation was done.
9794         (mono_class_setup_fields): Use it.
9795
9796         * metadata.c (mono_metadata_get_shared_type): New helper function to
9797         return a shared instance of a given MonoType.
9798
9799         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9800         a copy of most non-generic types.
9801
9802 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9803
9804         * threadpool.c: remove one more GetSystemInfo () call.
9805
9806 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9807
9808         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9809         use the code in mono-proclib.h to get processor information.
9810
9811 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9812
9813         * appdomain.c: fixed the logic that determines whether assemblies in a
9814         directory are "shadow-copied" or not. Bug #433483 fixed.
9815
9816 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9817
9818         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9819         warning.
9820
9821 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9822
9823         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9824         returning a vtype.
9825
9826         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9827         reflection.c: Use mono_field_get_name () for accessing a field's name.
9828
9829         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9830         class.c
9831
9832         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9833         field.
9834
9835         * loader.c (find_method_in_class): Reenable the metadata optimization by
9836         not using it for generic instances.
9837
9838         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9839         data/def_type fields from MonoClassField into a separate structure.
9840         (struct MonoClassField): Remove data/def_type fields.
9841         (struct _MonoClass): Add a 'field_def_values' array to store the default
9842         values/RVA for fields.
9843
9844         * class.c reflection.c: Update after the changes.
9845         
9846         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9847         for accessing field->data.
9848
9849         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9850
9851         * loader.c (find_method_in_class): Revert the last change for now as
9852         it breaks Mono.C5 unit tests.
9853
9854         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9855         'field_generic_types' and 'field_objects' which contain the information
9856         previously stored in MonoInflatedField.
9857         (MonoInflatedField): Delete.
9858         (struct _MonoClassField): Delete 'generic_info' field.
9859
9860         * reflection.c: Store the information which was previously in 
9861         field->generic_info in MonoDynamicGenericClass instead.
9862
9863         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9864         MonoClassField changes.
9865
9866 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9867
9868         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9869         store the value inside the data array of the MonoMethodWrapper.
9870         This saves memory, is faster and fixes the lifetime issues (methods
9871         were never removed from the hash previously). May also fix bug#436996.
9872
9873 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9874
9875         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9876         generic instances, compute the type from the generic definition instead of
9877         looking in field->generic_info.
9878
9879         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9880         for inflated fields, the only user was get_fieldref_token () which no
9881         longer needs it.
9882
9883         * class.c (mono_class_init): Revert the last change as it seems to cause
9884         crashes.
9885
9886         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9887         bytes on 64 bit platforms.
9888
9889         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9890         
9891         * object.c (mono_class_create_runtime_vtable): Don't initalize
9892         field->data/field->def_type here, it is done lazily by 
9893         mono_class_get_field_default_value ().
9894
9895         * icall.c (ves_icall_get_enum_info): Call 
9896         mono_class_get_field_default_value () instead of directly accessing
9897         field->data and field->def_type.
9898
9899         * object.c (get_default_field_value): Ditto.
9900
9901         * class.c (mono_field_get_data): Ditto.
9902         
9903         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9904         call for generic instances.
9905
9906         * loader.c (find_method_in_class): If klass != from_class, then inflate
9907         the method with the context of from_class, since the caller assumes this.
9908
9909 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9910
9911         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9912         for accessing method->slot.
9913
9914 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9915
9916         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9917
9918 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9919
9920         * class.c (mono_method_get_vtable_index): Use
9921         mono_method_get_vtable_slot () for accessing method->slot.
9922
9923         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9924         accessing klass->methods.
9925
9926         * class.c (mono_method_get_vtable_slot): New helper function.
9927         (mono_class_get_vtable_entry): Ditto.
9928         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9929         accessing method->slot.
9930
9931         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9932         method to get_inflated_method ().
9933
9934         * class.c (mono_class_get_inflated_method): New helper method to obtain
9935         a method of an inflated class without calling setup_methods ().
9936         (mono_class_get_cctor): Use get_inflated_method.
9937
9938         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9939         
9940         * marshal.c image.c: Lazily create all the marshal caches.
9941
9942         * image.c (mono_image_init): Move initialization of runtime_invoke
9943         caches to marshal.c.
9944
9945         * marshal.c (get_cache): New helper function to lazily initialize a 
9946         wrapper cache.
9947         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9948
9949         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9950
9951 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9952
9953         * loader.c: fixed check for interface type.
9954
9955 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9956
9957         * appdomain.c: check for NULL setup before it's referenced.
9958
9959 p
9960 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9961
9962         * class.c: remove the unused old vtable setup code.
9963
9964 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9965
9966         * class.c: don't depend on interface order in
9967         setup_interface_offsets (bug #435777).
9968         * reflection.c: sort the InterfaceImpl table (patch from
9969         Jb Evain  <jbevain@novell.com>).
9970
9971 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9972
9973         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9974         the low level assemblies lock.
9975
9976 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9977
9978         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9979         object.c, reflection.c, socket-io.c, threads.c: introduced
9980         mono_framework_version () to return the major framewrok version,
9981         changed the code that was using more complex patterns to use it.
9982         Return the correct value for PlatformID for OSX.
9983
9984 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9985
9986         * icall-def.h, process.h, process.c: added an icall to get info about
9987         processes using mono-proclib.
9988
9989 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9990
9991         * mono-perfcounters.c: use the mono-proclib functions to
9992         access process information.
9993
9994 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9995
9996         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9997         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9998         reflection.c: remove rawbuffer usage: mmap support is more sanely
9999         provided by utils/mono-mmap.
10000
10001 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
10002
10003         * gc.c: use posix semaphores when possible so that
10004         mono_gc_finalize_notify() is signal safe.
10005
10006 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
10007
10008         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
10009         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
10010         be #ifdef-ed out, the linker will remove the rest.
10011
10012         * marshal.c: Implement DISABLE_COM.
10013
10014         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
10015
10016 2008-10-11  Miguel de Icaza  <miguel@novell.com>
10017
10018         * locales.c (string_invariant_compare_char): Optimization: do not
10019         call g_unichar_type unless we actually need the information.
10020
10021 2008-10-10  Mark Probst  <mark.probst@gmail.com>
10022
10023         * object.c, class-internals.h: Also create remoting trampolines
10024         for generic methods.  Pass the domain to the remoting trampoline
10025         creation function, too.
10026
10027 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
10028
10029         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
10030
10031 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10032
10033         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
10034         Vector4ui.
10035
10036 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
10037
10038         * assembly.c:
10039         * locales.c: remove the use of g_strdown. Fixes bug #322313.
10040
10041 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10042
10043         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
10044         for the least possible amount of time (extending the fix in r113458).
10045
10046 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10047
10048         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
10049
10050 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10051
10052         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
10053         as possible simd intrinsic types.
10054         Optimized the test to check for the common prefix first.
10055
10056 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
10057
10058         * class.c: back out part of a broken optimization committed on
10059         May 23th (bug #433908).
10060
10061 2008-10-09  Mark Probst  <mark.probst@gmail.com>
10062
10063         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
10064         Win32.  Should fix #432388 for most cases until we have the new
10065         profiler on Win32.
10066
10067 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
10068
10069         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
10070         instead of using inst->id so the hash is stable for AOT.
10071
10072 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
10073
10074         * appdomain.c:
10075         * icall.c: create a .ini file for shadow-copied assemblies that
10076         contains the location of the original assembly. Use this to return the
10077         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
10078         Also fix the number of '/' for windows when returning the CodeBase.
10079         Fixes bug #430920.
10080
10081 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10082
10083         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
10084
10085         Code is contributed under MIT/X11 license.
10086
10087 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10088
10089         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
10090           if if the class vtable needs initialized.
10091
10092         Code is contributed under MIT/X11 license.
10093
10094 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10095
10096         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
10097           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
10098           STRING->BSTR, and CLASS->INTERFACE.
10099
10100         Code is contributed under MIT/X11 license.
10101
10102 2008-10-07  Marek Habersack  <mhabersack@novell.com>
10103
10104         * sysmath.h: changed the declaration of the
10105         ves_icall_System_Math_Round2 icall by adding an extra
10106         away_from_zero parameter.
10107
10108         * sysmath.c (ves_icall_System_Math_Round2): added support for
10109         away from zero rounding. The icall now takes an extra boolean
10110         parameter to signal that away from zero operation is requested.
10111
10112 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
10113
10114         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
10115         the delegate klass so it can work with full-aot.
10116         (mono_marshal_get_delegate_end_invoke): Ditto.
10117         (mono_marshal_get_delegate_invoke): Ditto.
10118
10119 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
10120
10121         * gc.c, attach.h, attach.c: remove a bad pattern:
10122         add_finalizer_callback () is not implemented correctly, it can't
10123         without adding more overhead to the finalizer loop and it's not
10124         even needed, since we know exactly what we need to call, so there is
10125         no need to do so through an expensive function pointer.
10126
10127 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
10128
10129         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
10130         for the no-gc case.
10131         * attach.c (mono_attach_init): Remove the #ifdef.
10132
10133 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
10134
10135         * attach.c (mono_attach_init): Don't use
10136         mono_gc_add_finalizer_thread_callback when compiling without GC.
10137         Fixes #432306.
10138         
10139         Code is contributed under MIT/X11 license.
10140
10141 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10142
10143         * class.c (mono_class_create_from_typedef): Remove the 
10144         #ifndef DISABLE_SIMD stuff.
10145
10146 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10147
10148         * class-internals.h (MonoClass): Added simd_type bit field.
10149
10150         * class.c (mono_class_create_from_typedef): Check if type is a simd
10151         intrinsic.
10152
10153 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10154
10155         * object.c (mono_method_add_generic_virtual_invocation): Only add
10156         instantiations to the thunk whose count is at least as large as
10157         the threshold.
10158
10159 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
10160
10161         * icall.c: changed the Type of the exception thrown when trying to
10162         invoke a constructor on an abstract class. Part of the fix for bug
10163         #324185.
10164
10165 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10166
10167         * class.c, class-internals.h (mono_method_get_vtable_index): New
10168         function which returns the index into the vtable and properly
10169         handles inflated virtual generic methods.
10170
10171 2008-10-01  Mark Probst  <mark.probst@gmail.com>
10172
10173         * object.c, domain.c, object-internals.h, domain-internals.h:
10174         Generalize IMT thunk machinery to also handle thunks for virtual
10175         generic method invokes.  When a virtual generic method is invoked
10176         more than a number of times we insert it into the thunk so that it
10177         can be called without lookup in unmanaged code.
10178
10179         * generic-sharing.c, class-internals.h: Fetching a
10180         MonoGenericInst* for a method from an (M)RGCTX.
10181
10182 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
10183
10184         * marshal.c (emit_marshal_string): Applied a variant of a patch by
10185         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
10186         marshalling. Fixes #431304.
10187
10188 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
10189
10190         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10191           handle when ref is specified without In or Out.
10192
10193         Code is contributed under MIT/X11 license.
10194
10195 2008-09-30  Mark Probst  <mark.probst@gmail.com>
10196
10197         * loader.c (mono_get_method_constrained): Don't expand method with
10198         the class's context, because it's already a method of that class.
10199
10200 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
10201
10202         * attach.c : should be correct build fix.
10203
10204 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
10205
10206         * attach.c: Fix the previous change.
10207
10208 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
10209
10210         * attach.c : quick w32 build fix.
10211
10212 2008-09-27  Miguel de Icaza  <miguel@novell.com>
10213
10214         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
10215         crashes MonoDevelop: #430455.
10216
10217 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
10218
10219         * domain-internals.h (struct _MonoDomain): Move most fields used only by
10220         the JIT do MonoJitDomainInfo in ../mini/mini.h.
10221
10222         * domain.c: Remove initialization/cleanup of the removed fields.
10223
10224 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10225
10226         * class.c (mono_class_generic_sharing_enabled): Enable generic
10227         code sharing for PPC.
10228
10229 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
10230
10231         * attach.c : Fixing the Windows builds.
10232
10233         Code is contributed under MIT/X11 license.
10234
10235 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10236
10237         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
10238         the default generic sharing mode to 'all'.
10239
10240 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10241
10242         * generic-sharing.c, class-internals.h: New function for checking
10243         whether a method needs a static RGCTX invoke wrapper.  A few
10244         funtions moved from mini/generic-sharing.c.
10245
10246         * icall.c: New function used.
10247
10248 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10249
10250         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10251         Static RGCTX invoke wrapping applies to value type methods, too.
10252
10253         * class.c (mono_class_setup_vtable_general): In generic-shared
10254         value types, wrap methods with a static RGCTX invoke wrapper.
10255
10256 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10257
10258         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
10259         osx build.
10260
10261 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10262
10263         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
10264         register a callback which is called when the finalizer thread is woken
10265         up.
10266         (finalizer_thread): Call the callback if it exists.
10267
10268         * attach.h attach.c: New files, implementing the attach mechanism.
10269
10270         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
10271         
10272         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
10273         by the previous change.
10274
10275 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
10276
10277         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
10278         loader.c, marshal.c, metadata-internals.h, metadata.c,
10279         method-builder.c, object.c, reflection.c: introduced specific functions
10280         to allocate from the domain and image mempools and cleaned up most of
10281         the code to use them (still missing a few in reflection.c).
10282         Keep the loader bytes counter updated.
10283
10284 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
10285
10286         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
10287         loader-related counters.
10288
10289 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
10290
10291         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
10292         added more MS-compatible counters.
10293
10294 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10295
10296         * class.c (mono_class_setup_fields): Call setup_fields before accessing
10297         class->blittable. Fixes #428217.
10298
10299 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
10300
10301         * reflection.c (mono_image_get_field_on_inst_token): Call 
10302         field_encode_signature () since that handles custom modifiers too.
10303         Fixes #424663.
10304
10305 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
10306
10307         * reflection.c (add_custom_modifiers): New helper function to merge custom
10308         modifiers stored in objects to a MonoType.
10309         (fieldref_encode_signature): Encode custom modifiers.
10310         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
10311         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
10312
10313 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
10314
10315         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
10316         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
10317         64-bit IL only images because imports are not resolved for IL only images.
10318         Special thanks to Bill Holmes for finding this bug and testing the patch.
10319         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
10320
10321         Contributed under MIT/X11 license.
10322
10323 2008-09-19  Miguel de Icaza  <miguel@novell.com>
10324
10325         * mono-config.c (dllmap_start): Add support for the bits keyword
10326         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
10327
10328 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10329
10330         * reflection.c (inflate_mono_method): When the class the method is
10331         to be inflated for is itself not inflated, just return the method.
10332
10333 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
10334
10335         * mono-perfcounters.c: use more user friendly process instance names.
10336
10337 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
10338
10339         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10340           handle "[in] ref" and "[in][out] ref" cases.
10341
10342         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
10343           to mono_mb_create_method.  This was causing problems calling native to
10344           managed passing Variants by value.
10345
10346         Code is contributed under MIT/X11 license.
10347
10348 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
10349
10350         * class.c (can_access_internals): Call mono_assembly_load_friends ()
10351         before accessing the friend_assembly_names field.
10352
10353         * assembly.c (mono_assembly_load_friends): Make this callable multiple
10354         times.
10355         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
10356         called lazily when it is needed.
10357
10358         * metadata-internals.h (struct _MonoAssembly): Add 
10359         'friend_assembly_names_inited' flag.
10360
10361 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
10362
10363         * mono-perfcounters-def.h: fix the types of a few counters.
10364         * mono-perfcounters.c: implemented the instance names getter
10365         and a few bugfixes.
10366
10367 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
10368
10369         * culture-info-table.h : regenerated.
10370
10371 2008-09-17  Robert Jordan  <robertj@gmx.net>
10372
10373         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
10374         context bound objects. Fixes #415577.
10375
10376         Code is contributed under MIT/X11 license.
10377
10378 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
10379
10380         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
10381         implementation (bug #423582).
10382
10383 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
10384
10385         * object.c (mono_object_get_virtual_method): Handle the case method->slot
10386         is not set. Fixes #426309.
10387
10388 2008-09-16  Jb Evain  <jbevain@novell.com>
10389
10390         * class.c (mono_class_from_name): fix the exported type look up
10391         when the type is defined in a referenced assembly.
10392
10393 2008-09-16  Jb Evain  <jbevain@novell.com>
10394
10395         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10396         increment the next index counter on each iteration to make that work
10397         for more than one type forwarder. Unmanaged part to fix #422929.
10398
10399 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10400
10401         * object-internals.h: enum ComInterfaceType in
10402         MonoInterfaceTypeAttribute is guint32, not guint16.
10403
10404 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10405
10406         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10407         writing code.
10408
10409 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10410
10411         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10412         not gboolean.
10413
10414 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10415
10416         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10417         Endianness fixes for MonoSymbolFileOffsetTable.
10418
10419 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10420
10421         * process.c (complete_path) : Removing quotes from the 
10422           input path.  The glib file routines do not handle file paths
10423           that have quotes around them.
10424
10425         Code is contributed under MIT/X11 license.
10426
10427 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10428
10429         * socket-io.h : Adding a comment to provide locations where 
10430           changes to MonoSocketAsyncResult need to be synced.
10431
10432         Code is contributed under MIT/X11 license.
10433
10434 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10435
10436         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10437         parameters as well. Fixes #425001.
10438
10439 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10440
10441         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10442         windows build.
10443
10444 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10445
10446         * console-io.c: Add support for tracking the window size if it
10447         changes.
10448
10449         The setup is very simple: the TtySetup function will now return a
10450         pointer to a location in memory that tracks the current console
10451         size.  The managed code checks its current value every time its
10452         queried against the last value set, and updates accordingly.
10453
10454         With this setup we can work with multiple consoles, and we do not
10455         require to poke into managed code from a signal handler.
10456
10457         Additionally, the environment for COLUMNS and LINES is now handled
10458         in unmanaged code.
10459
10460         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10461
10462 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10463
10464         * marshal.c (mono_type_native_stack_size): Treat
10465         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10466
10467 2008-09-04  Jb Evain  <jbevain@novell.com>
10468
10469         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10470         to nullables.
10471
10472 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10473
10474         * verify.c (verify_type_compatibility_full): Revert change
10475         to allow converting a native int to unmanaged pointer be verifiable
10476         under non-strict mode.
10477         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10478
10479         * verify.c: Added some TODOs.
10480
10481 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10482
10483         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10484           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10485           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10486
10487         Code is contributed under MIT/X11 license.
10488
10489 2008-09-02  Jb Evain  <jbevain@novell.com>
10490
10491         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10492
10493 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10494
10495         reflection.c (typebuilder_setup_fields): Handle classes with
10496         explicit size.
10497
10498 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10499
10500         class.c (mono_class_setup_events): Add memory barrier due to
10501         double checked locking.
10502         
10503         class.c (mono_class_setup_properties): Same.
10504
10505 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10506
10507         * class.c (mono_class_is_assignable_from): Fix the build.
10508         
10509         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10510         before accessing klass->interface_bitmap. Fixes #421744.
10511
10512 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10513
10514         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10515         the runtime into no-exec mode, useful when running the AOT compiler.
10516
10517         * appdomain.c gc.c object.c: Avoid executing managed code when running
10518         in no-exec mode.
10519         
10520         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10521
10522         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10523         special case when the mono_assembly_loaded () returns NULL because the 
10524         search hook is not installed.
10525
10526 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10527
10528         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10529         crashes in bstr marshalling on linux.
10530
10531 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10532
10533         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10534         with more than one parameter.
10535
10536 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10537
10538         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10539         start/stop flow control as well when turning off ICANON (allows
10540         C-s and C-q to be read by Console.ReadKey).
10541
10542 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10543
10544         * class.c (mono_class_init): Move the initialization of nested classes
10545         into mono_class_get_nested_types (). Fixes #418433.
10546
10547         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10548         flag.
10549
10550         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10551         iterating tough the nested classes of a class.
10552
10553 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10554
10555         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10556         on arm.
10557
10558 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10559
10560         * console-io.c (sigcont_handler): Support signal chaining for
10561         SIGCONT.
10562
10563         (console_set_signal_handlers): Use best practices with sigaction,
10564         clear the structure before using it. 
10565
10566 2008-08-22  Robert Jordan  <robertj@gmx.net>
10567
10568         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10569         Fix the Windows build.
10570
10571 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10572
10573         * class.c (mono_class_generic_sharing_enabled): Make the default
10574         sharing mode 'corlib'.
10575
10576 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10577
10578         * console-io.c (console_set_signal_handlers): Fix a warning.
10579
10580         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10581         method normally, the JIT will take care of avoiding recursion.
10582
10583 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10584
10585         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10586
10587         Code is contributed under MIT/X11 license.
10588
10589 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10590
10591         * console-io.c (sigcont_handler): We need to restore the entire
10592         termios state, not only the original settings, as things like echo
10593         can be controlled after this (Booish exposes this issue with its
10594         own ReadLine implementation).
10595
10596         Additionally, we need to set the terminal back into keypad_xmit
10597         mode.
10598         
10599         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10600         string as a paramter as well.   Otherwise we get different
10601         keyboard sequences.
10602
10603 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10604
10605         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10606         delegates with byref out parameter passing. Fixes #351520.
10607
10608         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10609         a generic context.
10610         (mono_type_get_desc): Add the type arguments for GENERICINST.
10611         (mono_method_full_name): Stringify the class name using mono_type_full_name
10612         so it picks up generic arguments.
10613
10614 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10615
10616         * console-io.c: Removed debug output.
10617
10618 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10619
10620         reflection.c (mono_reflection_create_runtime_class): Alloc
10621         the nested classes linked list using the dynamic image mempool.
10622         Fixes leak in corlib compilation.
10623
10624 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10625
10626         * console-io.c: Fix incredibly annoying behavior on the console
10627         after resuming execution after control-z.   This affected every
10628         console application.
10629
10630 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10631
10632         * mempool-internals.h: Header for mono private mempool functions. The first
10633         two function are for allocating glib linked lists using pools.
10634
10635         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10636
10637         * Makefile.am: Added mempool-internals.h.
10638
10639 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10640
10641         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10642         (mono_domain_free): Ditto.
10643
10644         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10645         be used by the JIT to store its domain-specific information, instead of putting
10646         it directly into MonoDomain.
10647
10648         * domain.c (mono_install_create_domain_hook): New helper function to install
10649         a hook which initializes domain->runtime_info.
10650
10651         * domain.c (mono_install_free_domain_hook): Ditto.
10652         
10653 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10654
10655         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10656         asserting if the ares parameter is null.
10657
10658         * mono-perfcounters.c: Fix warnings.
10659
10660         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10661         is not needed, don't check for interruptions either.
10662         (mono_marshal_get_delegate_end_invoke): Ditto.
10663
10664 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10665
10666         * mono-perfcounters.c (predef_readonly_counter): added support for
10667         reading the ASP.NET Requests Queued counter from another process.
10668
10669 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10670
10671         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10672         MonoImage to simplify the AOT code.
10673
10674 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10675
10676         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10677         marshalling. Fixes #416078.
10678
10679 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10680         
10681         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10682         it is set, looking up the icall address is deferred to the JIT, since 
10683         in embedded scenarios, the icall might not be registered in the runtime
10684         doing the AOT compilation. Backported from the 2.0 branch.
10685
10686 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10687
10688         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10689         Fixes #415621.
10690
10691 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10692
10693         * Makefile.am: added support for cross-compilation.
10694
10695 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10696
10697         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10698
10699 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10700
10701         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10702
10703 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10704
10705         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10706         mono-perfcounters.c: performance counters implementation.
10707
10708 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10709
10710         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10711         to gpointer, letting the AOT code decide what to store in it.
10712
10713 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10714
10715         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10716           mono_class_setup_methods if the methods are not initialized.
10717
10718         Code is contributed under MIT/X11 license.
10719
10720 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10721
10722         * verify.c: Remove some debug code I commited by accident.
10723
10724         * verify.c (mono_method_is_valid_in_context): Change the return value
10725         to make possible to distinguish between invalid and unverifiable.
10726
10727         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10728         methods.
10729
10730 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10731
10732         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10733         constraints. Fixes regression in gtest-253.
10734
10735 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10736
10737         * verify.c (mono_verifier_verify_class): Don't allow generic types
10738         with explicit layout.
10739
10740         * verify.c (mono_method_verify): Check locals and argument types.
10741
10742 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10743
10744         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10745         wait if the thread is in StopRequested state.
10746
10747         * class.c (mono_class_from_name): Refactor the module searching code into
10748         a separate function so it can be reused in the AOT case too.
10749
10750 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10751
10752         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10753         Check both the type and it's generic type definition for loader errors.
10754         
10755         * verify.c (mono_method_is_valid_in_context): Don't generate another
10756         error when a type errors occur, this leads to the wrong exception been
10757         thrown.
10758
10759 2008-07-28  Dick Porter  <dick@ximian.com>
10760
10761         * icall-def.h
10762         * process.c
10763         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10764         New internal calls to duplicate and close a process handle.
10765
10766 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10767
10768         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10769
10770 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10771
10772         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10773
10774 2008-07-27  Robert Jordan  <robertj@gmx.net>
10775
10776         * class.c (mono_class_init): Don't compute class.has_finalize for
10777         valuetypes. Fixes #412477.
10778
10779 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10780
10781         * verify.c: Implement constraint equivalence checking.
10782         This is required when a generic parameter is used as
10783         argument to a constrained one.
10784
10785         Fixes #410637.
10786
10787 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10788
10789         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10790
10791         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10792
10793         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10794         synch with managed object layout.
10795
10796 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10797
10798         * verify.c (do_branch_op): Handle valuetypes and generic
10799         arguments properly.
10800
10801         * verify.c (do_cmp_op): Same.
10802
10803         Fixes #410383.
10804
10805 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10806
10807         * generic-sharing.c: Fix memory leaks.
10808
10809         * class.c, class-internals.h: Make
10810         mono_class_inflate_generic_type_with_mempool() non-static.
10811
10812 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10813
10814         * pedump.c (dump_verify_info): Dump full class name.
10815
10816 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10817
10818         * generic-sharing.c: Removed some old code that didn't do anything.
10819
10820 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10821         * profiler.c: Added runtime_initialized_event,
10822         mono_profiler_install_runtime_initialized and
10823         mono_profiler_runtime_initialized. This new hook tells the profiler
10824         when the runtime is sufficiently initialized to be able to call
10825         mono_thread_attach on the root appdomain.
10826         * profiler.h, profiler-private.h: Likewise.
10827
10828 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10829
10830         * verify.c (do_cast): Do boxing for generic arguments as well.
10831
10832         * class.c (is_nesting_type): Drop generic instantiations before
10833         checking for nesting.
10834
10835         * class.c (can_access_instantiation): Allow access to generic
10836         arguments.
10837
10838 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10839
10840         * verify.c (verify_class_for_overlapping_reference_fields):
10841         On some cases, the field size might be zero, guard against that.
10842         Fix the explicit layout check to work as expected.
10843
10844 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10845
10846         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10847         mono_thread_resume () during shutdown, since the thread we want to abort
10848         might be suspended.
10849
10850 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10851
10852         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10853         warning.
10854
10855         * debug-mono-symfile.c: Fix a warning.
10856
10857         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10858
10859         * object.c (mono_class_vtable): Check if exception_type is set, and return
10860         NULL as defined by the function comments.
10861
10862 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10863
10864         * mempool.c: Use malloc for every single mempool allocation if the
10865         configure option is set.  This makes it easier to track mempool
10866         allocations with tools like Valgrind.
10867
10868 2008-07-22  Jb Evain  <jbevain@novell.com>
10869
10870         * reflection.c (create_dynamic_mono_image): emit the same
10871         metadata version that SL2 does when creating a SL2 image.
10872
10873 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10874
10875         * icall-def.h:
10876         * icall.c: New icall System.Enum:get_hashcode. This function
10877         avoids the overhead of boxing the enum to the underlying type.
10878
10879 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10880
10881         * reflection.c (mono_method_get_object): Don't let static RGCTX
10882         invoke wrappers get into MonoReflectionMethods.
10883
10884 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10885
10886         * object-internals.h:
10887         * object.c: New mono_runtime_class_init_full function
10888         that makes throwing the exception optinal.
10889
10890         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10891         for the case where the exception object is supplied.
10892
10893 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10894
10895         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10896         old ld versions.
10897
10898         Contributed under MIT/X11 license.
10899
10900 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10901
10902         * string-icalls.c (ves_icall_System_String_InternalSplit):
10903         Optimize array allocation by caching the MonoClass of the
10904         array type.
10905
10906         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10907
10908         * reflection.c (mono_param_get_objects): Same.
10909
10910 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10911
10912         * icall-def.h:
10913         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10914         It inflates the given type using the class context.
10915
10916 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10917
10918         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10919         the vtable if it already exists.
10920
10921         * object-internals.h: Add mono_class_try_get_vtable as part of the
10922         internal API.
10923
10924         * reflection.c (mono_type_get_object): Use the MonoObject from the
10925         vtable when possible. Reduces locking contention on reflection heavy
10926         code.
10927
10928 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10929
10930         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10931         g_bit_nth_msf () since that macro is not implemented in eglib.
10932
10933 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10934
10935         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10936         on platforms which do not support it.
10937
10938 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10939
10940         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10941
10942 2008-07-11  Martin Baulig  <martin@ximian.com>
10943
10944         * mono-debug-debugger.h
10945         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10946
10947         * mono-debug-debugger.c
10948         (_mono_debugger_interruption_request): New global volatile variable.
10949         (mono_debugger_check_interruption): New public function.
10950
10951         * threads.c
10952         (mono_thread_current_check_pending_interrupt): Call
10953         mono_debugger_check_interruption().
10954         (mono_thread_interruption_checkpoint_request): Likewise.
10955
10956 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10957
10958         * verify.c: Add more type checks for loaded types. Verify the result
10959         handle from ldtoken.
10960
10961 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10962
10963         * loader.c (field_from_memberref): Don't crash if the field
10964         wasn't found.
10965
10966 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10967
10968         * verify.c: Verify if type and method instantiations
10969         don't have invalid VAR or MVAR arguments.
10970
10971 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10972
10973         * verify.c: Fix double free of function pointer list.
10974
10975 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10976
10977         * object.c (mono_string_to_utf8): Comment the new code as it
10978         breaks under eglib.
10979
10980 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10981
10982         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10983
10984 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10985
10986         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10987           is not throw too many times.
10988
10989         Code is contributed under MIT/X11 license.
10990
10991 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10992
10993         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10994         debugging is turned off.
10995
10996 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10997
10998         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10999
11000 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11001
11002         * class-internals.h, class.c: Added new generic sharing option:
11003         Share only stuff in System.Collections.Generic, which is now the
11004         default.
11005
11006 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11007
11008         * generic-sharing.c, class-internals.h: New function for getting a
11009         generic method in a generic class given the corresponding method
11010         for a different instantiation of the class.  Partly refactored
11011         from mini-trampolines.c.
11012
11013         * class.c: Make sure generic methods have a class_inst if they are
11014         part of a generic class.
11015
11016         * metadata.c (mono_type_stack_size_internal): Handle type
11017         variables.
11018
11019 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11020
11021         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
11022         Signifies whether information on the this/vtable/mrgctx variable
11023         is available.
11024
11025 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11026
11027         * object.c, object-internals.h, icall.c: New function
11028         mono_delegate_ctor_with_method(), which does the same as
11029         mono_delegate_ctor(), but takes an explicit method argument
11030         instead of taking the method from the jit info.
11031
11032         * marshal.c: When creating a delegate with an inflated method take
11033         the "this" argument as the target class for the castclass.
11034
11035 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11036
11037         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
11038         mono_jit_info_table_find() to perform very badly in some cases.
11039
11040 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
11041
11042         * icall.c (type_from_typename): Handle 'string'.
11043
11044         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
11045         wrappers into the wrapper_hash, since the key is not a MonoMethod.
11046
11047 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11048
11049         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
11050
11051         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
11052         number of available managed allocator types.
11053
11054         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
11055         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
11056
11057 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11058
11059         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
11060         which is a low level lock protecting just the 'jit_code_hash' hash table.
11061
11062         * domain.c: Initialize+cleanup jit_code_hash_lock.
11063         
11064 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11065
11066         * coree.c (mono_load_coree): Set coree_module_handle global variable only
11067         after initialization.
11068
11069         * coree.h: Make MonoFixupExe internal.
11070
11071         Contributed under MIT/X11 license.
11072
11073 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11074
11075         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
11076         because that is platform independent. Check NumberOfRvaAndSizes in PE32
11077         as well.
11078         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
11079         image being loaded is a CLI image and _CorValidateImage gets called.
11080
11081         * coree.h: Add MonoLoadImage.
11082
11083         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
11084         instead of LoadLibrary.
11085
11086         Contributed under MIT/X11 license.
11087
11088 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
11089
11090         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
11091         for any primitive type.
11092
11093 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11094
11095         * object.c (mono_array_new_specific): Optimize this and the other allocation
11096         functions a bit.
11097         
11098         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
11099         domains too if mono_dont_free_domains is set.
11100
11101         * domain-internals.h (mono_dont_free_domains): New internal option controlling
11102         whenever to free appdomain data after it has been unloaded.
11103
11104         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
11105         
11106 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
11107
11108         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
11109         (mono_method_get_equivalent_method): Fix a warning.
11110
11111         * object.c (mono_message_init): Avoid looking up array types for each call.
11112
11113 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11114
11115         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
11116         call.
11117
11118         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
11119         even more.
11120
11121         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
11122         each iteration.
11123
11124         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
11125         fields of an enum.
11126
11127 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
11128
11129         * object.c (mono_value_box): Fix boxing of nullables.
11130
11131 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
11132
11133         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
11134         mono_module_handle that is defined by the linker; no initialization required.
11135         * coree.h: Remove mono_module_handle, add __ImageBase, update
11136         mono_image_open_from_module_handle.
11137         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
11138         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
11139         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
11140         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
11141         to 4 GB away from image base address. IA64 version is not tested but was very
11142         easy to implement and should work if we ever need it.
11143         * domain.c (mono_init_internal): Avoid system error message boxes.
11144         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
11145         with has_entry_point. Handle do_mono_image_load fauilre correctly.
11146         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
11147         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
11148         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
11149
11150         Contributed under MIT/X11 license.
11151
11152 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11153
11154         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
11155         as part of the private mono API.
11156         
11157         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
11158         Do proper argument checking for methods that belong to generic classes.
11159         Do proper type resolution for GMFH/2.
11160         Fixes #377324.
11161         
11162 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11163
11164         * verify.c (do_switch): Fix a memory corruption bug with
11165         the jump index is out of bound.
11166
11167 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11168
11169         * verify.c: Disable debug code.
11170
11171 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11172
11173         * reflection.c (mono_image_get_methodbuilder_token): Use
11174         mono_image_get_methodspec_token_for_generic_method_definition
11175         instead of mono_image_get_memberref_token. We cache more memberef
11176         entries now.
11177
11178 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11179
11180         * verify.c: Inflate exception clause types.
11181         Fixes #402606.
11182         
11183 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11184
11185         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
11186         name.
11187
11188         * reflection.c (mono_image_get_ctorbuilder_token): Same.
11189
11190         * reflection.c (mono_image_create_method_token): Same.
11191
11192 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11193
11194         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
11195         It does the same as mono_image_get_methodref_token but works on
11196         MethodBuilder.
11197
11198         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
11199         and always generate a methodspec. This follows the old behavior and fixes
11200         the regressions in System.Core. 
11201
11202 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11203
11204         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
11205         don't event mono_class_get () succeeds. Fixes #402182.
11206
11207 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11208
11209         * metadata-internals.h: Added MonoDynamicImage::methodspec
11210         hashtable to store methodspec tokens created for MethodBuilders.
11211
11212         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
11213         MethodBuilders as open instantiations if a methodspec was requested.
11214
11215         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
11216
11217         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
11218
11219         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
11220
11221         Fixes bug #349190.
11222
11223 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11224
11225         * loader.c (method_from_methodspec): Avoid crashing if the
11226         method lookup fails.
11227
11228 2008-06-20  Dick Porter  <dick@ximian.com>
11229
11230         * socket-io.c (get_socket_assembly): Cope with Moonlight network
11231         classes being in a different assembly.  Fixes bug 399184.
11232
11233 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
11234
11235         * loader.c (mono_loader_init): Make this callable multiple times.
11236         (mono_dllmap_insert): Call mono_loader_init () so this works even before
11237         the runtime is initialized. Fixes #401755.
11238
11239 2008-06-19  Dick Porter  <dick@ximian.com>
11240
11241         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
11242         Fixes bug 349688.
11243
11244 2008-06-19  Dick Porter  <dick@ximian.com>
11245
11246         * socket-io.c:
11247         * icall-def.h: Implement Socket generic Send() and Receive()
11248         methods.  Fixes bug 395168.
11249
11250 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
11251
11252         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
11253
11254         Contributed under MIT/X11 license.
11255
11256 2008-06-18  Martin Baulig  <martin@ximian.com>
11257
11258         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
11259         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
11260         set to 80.0.  The debugger <-> runtime interface is now frozen as
11261         well.   
11262
11263         * mono-debug.c
11264         (mono_debug_debugger_version): Bump to 4.
11265
11266 2008-06-18  Martin Baulig  <martin@ximian.com>
11267
11268         * debug-mono-symfile.c
11269         (load_symfile): Don't check the minor version.
11270
11271         * debug-mono-symfile.h: Bump the version number to 50.0.
11272
11273 2008-06-18  Martin Baulig  <martin@ximian.com>
11274
11275         * debug-mono-symfile.c
11276         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
11277         minimum required version.
11278
11279 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11280
11281         * reflection.c (mono_custom_attrs_from_property): Fix support for
11282         retriveving cattrs of dynamic inflated generic types.
11283
11284         * reflection.c (mono_custom_attrs_from_event): Same.
11285
11286         * reflection.c (mono_custom_attrs_from_field): Same;
11287
11288         * reflection.c (typebuilder_setup_events): Same cattrs of events.
11289
11290         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
11291         Moved to metadata.c.
11292
11293         * metadata.c: New functions to retrive the equivalent field, event
11294         of property from the generic type definition.
11295
11296         * metadata-internals.h: Added new functions from metadata.c.
11297
11298 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11299
11300         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
11301         to cached in a mempool is used.
11302
11303         * metadata.c (free_generic_class): In some situations field generic_info type
11304         is not properly dup'ed and leads to double free'ing.
11305
11306         Fixes #400643.
11307
11308 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11309
11310         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
11311         this arguments (will be needed later for generic methods).
11312         Collect stats.
11313
11314 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11315
11316         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
11317         Create a static RGCTX invoke wrapper for methods which require it.
11318
11319 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11320
11321         * object.c, class-internals.h: New function for checking whether
11322         an individual field is special static.
11323
11324 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11325
11326         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
11327         linear search since the table is sorted.
11328
11329         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
11330         Fixes #324180.
11331
11332 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11333
11334         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
11335         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
11336
11337         * gc.c (mono_domain_finalize): Allow an infinite timeout.
11338
11339         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
11340         
11341         * threads.c (mono_thread_request_interruption): Get rid of locking, use
11342         InterlockedCompareExchange to query and modify 
11343         thread->interruption_requested.
11344
11345         * object-internals.h (struct _MonoThread): Change interruption_requested
11346         to a gint32 so it can be modified by atomic operations. Add 
11347         'critical_region_level' from the managed side, change small_id to a guint32,
11348         add new set of 'unused' fields.
11349
11350         * appdomain.c: Bump corlib version.
11351
11352 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11353
11354         * class.c (mono_class_from_name): Search modules as well. Fixes
11355         #322332.
11356
11357 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11358
11359         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
11360         templates.  Templates are generalized with an additional type_argc
11361         argument.  RGCTX templates have type_argc==0, MRGCTX templates
11362         have type_argc>0.
11363
11364         * domain-internals.h, domain.c: New hash table for looking up
11365         MRGCTXs.
11366
11367         * metadata.c, metadata-internals.h: Rename hash and equal
11368         functions for MonoGenericInst's and make them public.
11369
11370         * class-internals.h: New data structures for the MRGCTX.  Macros
11371         for distinguishing slots in the RGCTX and the MRGCTX.
11372
11373 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11374
11375         * object.c (mono_method_get_imt_slot): Put the same methods of
11376         different instantiations of the same generic interface in the same
11377         IMT slots, to make generic sharing simpler.
11378
11379 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11380
11381         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
11382
11383         * metadata.c (mono_metadata_field_info_with_mempool): Added.
11384         This function works just like mono_metadata_field_info, but
11385         accept a mempool as argument to be used allocating memory.
11386
11387         * marshal.c (mono_marshal_load_type_info): Use new function
11388         to load marshal data into image mempool.
11389
11390 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11391
11392         * class.c (mono_class_inflate_generic_type_with_mempool):
11393         This function allows to inflate a generic type using
11394         a mempool.
11395
11396         * class.c (inflate_generic_type): Take a mempool as argument
11397         and use it to do type dup'ing.
11398
11399         * class.c (mono_class_setup_fields): Field type for generic
11400         generic classes are allocated from the image mempool.
11401
11402         * metadata.c (free_generic_class): Inflated field type is
11403         now allocated in the image mempool.
11404
11405 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11406
11407         * threads.c (thread_cleanup): Free MonoThread::name.
11408
11409 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11410
11411         * appdomain.c (ensure_directory_exists): avoid unnecessary
11412         mkdir(2) calls when the shadow directory already exists.
11413         (mono_make_shadow_copy): copy also satellite assemblies from the
11414         private bin directories.
11415
11416 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11417
11418         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11419         
11420         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11421         a page boundary. Fixes #396219.
11422
11423 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11424
11425         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11426         due to double-checked locking.
11427
11428 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11429
11430         * assembly.c (build_assembly_name): Release memory on failure.
11431
11432         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11433
11434 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11435
11436         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11437         memory on failure.
11438
11439 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11440
11441         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11442         memory on failure.
11443
11444 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11445
11446         * loader.c (field_from_memberref): Check if field signature type is equal
11447         to the non-inflated type of the field. Fixes #398980.
11448
11449 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11450
11451         * assembly.c (mono_assembly_load_from_full): Call 
11452         mono_assembly_load_friends () outside the assemblies lock, since it can
11453         acquire the loader lock. Fixes #323696.
11454
11455         * reflection.c (resolve_object): Inflate the inst with the context for
11456         FieldOnTypeBuilderInst. Fixes #399010.
11457
11458 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11459
11460         * reflection.c (mono_image_get_field_on_inst_token): Don't
11461         inflate the field to encode it's signature. If it's a
11462         VAR or MVAR it should stay that way in the signature.
11463         Fixes #399047.
11464
11465 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11466
11467         * reflection.c (resolve_object): Release memory of inflated types.
11468
11469 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11470
11471         * loader.c (mono_method_get_signature_full): Remove assert about
11472         loading a methodspec to a generic method. We have such methods, such as
11473         System.Threading.Interlocked::CompareExchange<T>.
11474         This assert was removed since it crashes the verifier when it checks
11475         methods calling CompareExchange<T>.
11476
11477 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11478
11479         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11480         of Type array and not MonoType.
11481
11482 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11483
11484         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11485         <lupus@ximian.com>
11486
11487 2008-06-10  Martin Baulig  <martin@ximian.com>
11488
11489         * debug-mono-symfile.h
11490         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11491         changes to the file format, but we were generating incorrect
11492         source file indices in the line number table due to a bug, which
11493         made backtraces report an incorrect source file.
11494
11495 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11496
11497         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11498         mini/debug-mini.c to here.
11499
11500         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11501
11502         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11503         use it to release structs returned by mono_debug_find_method.
11504
11505 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11506
11507         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11508         since it needs to set method->slot for all interface methods.
11509
11510 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11511
11512         * class-internals.h: Forgot to add.
11513
11514 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11515
11516         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11517
11518         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11519         Lookup the custom attributes from property_hash.
11520
11521         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11522         in property_hash. Allocate all data using the image mempool.
11523
11524         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11525         for dynamic_custom_attrs to checks if the image is dynamic.
11526
11527 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11528
11529         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11530         assemblies array.
11531         
11532         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11533         runtime functions while holding the domain assemblies lock.
11534
11535 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11536
11537         * verify.c: Reapplied the last bit of the reverted changes.
11538
11539 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11540
11541         * verify.c: Reapplied more of the reverted changes.
11542
11543 2008-06-09  Martin Baulig  <martin@ximian.com>
11544
11545         * debug-mono-symfile.c (load_symfile): Check the major version
11546         first; if it's wrong, don't print the minor version in the error message.
11547
11548 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11549
11550         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11551         lock instead of the domain lock to avoid deadlocks, since the thread might
11552         already hold the loader lock.
11553
11554         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11555         (mono_thread_attach): Ditto.
11556
11557         * monitor.c: Use a TLS variable for holding the current thread id instead
11558         of calling pthread_self ().
11559         (mono_monitor_init_tls): New internal function to initialize the TLS
11560         variable.
11561         (mono_monitor_try_enter_internal): Put the owner == id check after the
11562         owner == 0 check.
11563
11564         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11565         missed optimizations when using gcc-4.3.
11566
11567 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11568
11569         * reflection.c (mono_dynamic_image_free): Free the memory
11570         used by MonoGenericParam in MonoDynamicImage::gen_param.
11571
11572         * reflection.c (mono_reflection_setup_generic_class): Allocate
11573         container from mempool.
11574
11575         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11576         container from mempool.
11577
11578 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11579
11580         * threads.c (mono_set_pending_exception): New internal function to set the
11581         pending exception of the current thread.
11582         (mono_thread_get_and_clear_pending_exception): Check for 
11583         thread->pending_exception as well.
11584
11585         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11586
11587         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11588         it can trigger a collection.
11589
11590 2008-06-06  Martin Baulig  <martin@ximian.com>
11591
11592         Merged the `debugger-kahalo' branch.
11593
11594         * mono-debug.h
11595         (MONO_DEBUGGER_VERSION): Bumped to 72.
11596
11597         * debug-mono-symfile.h
11598         (MonoSymbolFileMethodIndexEntry): Removed.
11599         (MonoSymbolFileMethodEntry): New public typedef.
11600         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11601         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11602         `data_offset'.
11603         (MonoSymbolFileMethodEntry): Removed.
11604         (MonoSymbolFileLexicalBlockEntry): Removed.
11605         (MonoSymbolFileLineNumberEntry): Removed.
11606         (MonoDebugLexicalBlockEntry): Removed.
11607         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11608         removed `num_il_offsets' and `il_offsets'.
11609         (MonoSymbolFile): Replace `version' with `major_version' and
11610         `minor_version'.
11611         (MONO_SYMBOL_FILE_VERSION): Replace with
11612         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11613         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11614
11615         * debug-mono-symfile.c
11616         (mono_debug_symfile_lookup_location): Add support for the new line
11617         number table format.
11618
11619 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11620
11621         * metadata.c (free_generic_class): Release the inflated
11622         MonoClass of dynamic generic classes if it's not a generic
11623         type definition.
11624
11625 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11626
11627         * verify.c: Reapplied more of the reverted changes.
11628
11629 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11630
11631         * reflection.c (lookup_custom_attr): Clean the cached flag or
11632         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11633         for SRE types.
11634
11635 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11636
11637         * verify.c: Reapplied a small part of the reverted changes.
11638
11639 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11640
11641         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11642
11643         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11644         previously in managed code.
11645         (mono_monitor_exit): Ditto.
11646         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11647
11648         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11649         the managed definition.
11650
11651 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11652
11653         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11654
11655 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11656
11657         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11658         
11659         * monitor.c: Add some micro optimizations.
11660
11661         * icall.c (type_from_typename): Handle 'bool'.
11662
11663 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11664
11665         * verify.c: Implement constructor verification per P III 1.8.1.4.
11666         Fixes #396716.
11667
11668 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11669
11670         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11671         holding the assemblies lock here too.
11672
11673 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11674
11675         * verify.c: Kill stack_top function.
11676
11677 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11678
11679         * verify.c: Kill stack_get function.
11680
11681 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11682
11683         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11684
11685 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11686
11687         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11688         more reliable.
11689
11690         * verify.c (mono_method_verify): Inflate params and locals to avoid
11691         mismatch when checking for compatibility.
11692
11693 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11694
11695         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11696         Length prefix should be size in bytes. Fix bug #339530.
11697         
11698         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11699         Length prefix should be size in bytes. Fix bug #339530.
11700
11701         Code is contributed under MIT/X11 license.
11702
11703 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11704
11705         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11706
11707         Contributed under MIT/X11 license.
11708
11709 2008-06-05  Martin Baulig  <martin@ximian.com>
11710
11711         * mono-debug-debugger.c
11712         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11713
11714 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11715
11716         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11717         while holding the assemblies lock to prevent deadlocks. Handle the case
11718         where the search hook returns NULL but the assembly was still loaded.
11719         Fixes #323696.
11720
11721         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11722         modify domain state.
11723
11724 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11725
11726         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11727         * Makefile.am (pedump_LDADD): Post-process object files and
11728         add dtrace-generated object file, if necessary.
11729
11730         Code is contributed under MIT/X11 license.
11731
11732 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11733
11734         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11735
11736 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11737
11738         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11739
11740 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11741
11742         * threads.c: Try to free everything from the delayed free table
11743         when shutting down threads, and set the variable to NULL after the
11744         table is freed so that calling
11745         mono_thread_hazardous_try_free_all() when shutting down the root
11746         domain doesn't crash.
11747
11748 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11749
11750         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11751         the caller if resulting type was inflated.
11752
11753         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11754         was inflated.
11755
11756         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11757
11758
11759 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11760
11761         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11762         class library tests.
11763
11764         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11765         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11766         #396989.
11767
11768 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11769
11770         * domain.c, domain-internals.h: The JIT infos are now freed by the
11771         JIT info table code.  They are freed immediately if there only a
11772         single JIT info table in circulation.  If there is more, the free
11773         is delayed via a queue.
11774
11775         * threads.c, threads-types.h: New hazard pointer function for
11776         freeing all freeable delayed items in one sitting.
11777
11778 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11779
11780         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11781
11782         * reflection.c (typebuilder_setup_properties): Same.
11783
11784         * reflection.c (typebuilder_setup_events): Same.
11785
11786 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11787
11788         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11789         and use it for allocating memory.
11790
11791         * reflection.c (mono_marshal_spec_from_builder): Same.
11792
11793         * reflection.c: Change code to use new signatures.
11794
11795         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11796
11797 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11798
11799         * decimal.c (rescale128): Put back one line which was accidently commented
11800         out.
11801         
11802         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11803         to cause crashes.
11804
11805 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11806
11807         * reflection.c (mono_reflection_generic_class_initialize): Name must
11808         be always malloc'ed so we can free it later on. Do this for field, property
11809         and event.
11810
11811         * metadata.c (free_generic_class): Free field, property and event names.
11812
11813 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11814
11815         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11816         instead of g_memdup.
11817
11818         * reflection.c (typebuilder_setup_fields): Same.
11819
11820 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11821
11822         * decimal.c (rescale128): Optimize this function a bit more.
11823
11824 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11825
11826         * metadata.c (free_generic_class): Release some memory from
11827         SRE generic classes.
11828
11829 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11830
11831         * reflection.c (mono_image_get_generic_field_token): No reference
11832         to name is kept, free it.
11833
11834         * reflection.c (mono_reflection_generic_class_initialize): Free
11835         more memory of the inflated field.
11836
11837 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11838
11839         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11840         code.
11841
11842 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11843
11844         * reflection.c (mono_dynamic_image_free): Release memory used by
11845         MonoDynamicImage::array_methods elements.
11846
11847         * reflection.c (assembly_add_win32_resources): Release memory after
11848         encoding.
11849
11850 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11851
11852         * decimal.c (log2_32): Use an optimized version for this function too.
11853         
11854         * decimal.c (log2_64): Fix this on 32 bit machines.
11855
11856 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11857
11858         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11859
11860         * class.c (mono_metadata_signature_deep_dup): Same.
11861
11862         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11863         a mempool.
11864
11865         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11866
11867         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11868
11869         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11870
11871         * class-internals.h: Update signatures to take a MonoMemPool.
11872
11873 2008-06-02  Dick Porter  <dick@ximian.com>
11874
11875         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11876         * icall-def.h: Add
11877         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11878         FormatMessage API to get the error text.  Fixes bug 321827.
11879
11880 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11881
11882         * decimal.c: Add some micro optimizations to make decimal operations faster.
11883
11884 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11885
11886         * reflection.c (method_encode_clauses): Take a mempool
11887         as parameter and use it to allocate the clause array.
11888
11889         * reflection.c (mono_image_get_field_on_inst_token): Free
11890         the inflated type after encoding it.
11891
11892         * reflection.c (mono_dynamic_image_free): Free each element
11893         of MonoDynamicImage::gen_params.
11894
11895         * reflection.c (reflection_methodbuilder_to_mono_method):
11896         Allocate the generic param array from the mempool.
11897         Allocate signature params from the mempool.
11898
11899         * reflection.c (mono_reflection_generic_class_initialize):
11900         Free inflated fields after been used.
11901
11902 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11903
11904         * icall.c: Reapply the memory leak fixes as they no
11905         longer make mono crash.
11906
11907 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11908
11909         * reflection.c (mono_type_get_object): Don't store the suplied
11910         MonoType with type_hash. A caller which pass a type that
11911         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11912         might end with a pointer to freed memory.
11913         The solution is to use byval_arg or this_arg from the associated
11914         MonoClass of the supplied type.
11915
11916 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11917
11918         * icall.c: Revert the rest of the last change as it breaks the build too.
11919
11920 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11921
11922         * icall.c: Revert a leak fix as it's breaking the build.
11923
11924 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11925
11926         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11927
11928 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11929
11930         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11931
11932 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11933
11934         * icall.c: Fix some memory leaks.
11935
11936 2008-05-29  Dick Porter  <dick@ximian.com>
11937
11938         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11939         async socket operations from the pending list when a socket
11940         closes.  Leaving it until the threadpool services the event
11941         exposes a race condition when a socket descriptor is reused.
11942         Fixes bug 377589.
11943
11944 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11945
11946         * object.c: Fix negative index check for array alocation.
11947
11948 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11949
11950         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11951         This check is performed by the verifier for IL created delegates
11952         and by Delegate::CreateDelegate for programatically created ones.
11953         Fixes #372406.
11954
11955 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11956
11957         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11958         Fix code to use mono_array_size_t instead of int.
11959
11960         Based on patch by Luis F. Ortiz.
11961         Contributed under X11 license.
11962         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11963
11964 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11965
11966         * icall.c: Added ves_icall_System_Array_GetLongLength and
11967         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11968         arrays.
11969
11970         * icall.h: Export both new functions.
11971
11972         Based on patch by Luis F. Ortiz.
11973         Contributed under X11 license.
11974         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11975
11976 2008-05-28  Martin Baulig  <martin@ximian.com>
11977
11978         The debugger now requires exactly r103463.
11979
11980         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11981         This version is not supported by the debugger, wait for 72.
11982
11983 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11984
11985         * object.h: Changed array related functions to use
11986         mono_array_size_t instead of guint32. Forgot to commit this file.
11987
11988         Patch by Luis F. Ortiz.
11989         Contributed under X11 license.
11990         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11991
11992
11993 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11994
11995         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11996         don't define it. Use the number literal instead.
11997
11998 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11999
12000         * icall.c: Changed array related functions to use
12001         mono_array_size_t instead of guint32.
12002
12003         * icall.c (ves_icall_System_Array_GetLength): Check for length
12004         overflow under MONO_BIG_ARRAYS.
12005
12006         Based on patch by Luis F. Ortiz.
12007         Contributed under X11 license.
12008         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12009
12010 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12011
12012         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
12013
12014         Based on patch by Luis F. Ortiz.
12015         Contributed under X11 license.
12016         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12017
12018 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12019
12020         * object.c, object.h: Changed array related functions to use
12021         mono_array_size_t instead of guint32.
12022
12023         Patch by Luis F. Ortiz.
12024         Contributed under X11 license.
12025         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12026
12027 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12028
12029         * object.h: Introduced mono_array_size_t typedef. This must be used
12030         in all places an array length is expected. This is 64bits wide if
12031         MONO_BIG_ARRAYS is enabled.
12032
12033         Patch by Luis F. Ortiz.
12034         Contributed under X11 license.
12035         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12036
12037 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12038
12039         * security-manager.c class.c: Set the class exception info by calling
12040         mono_class_set_failure ().
12041
12042         * class.c (mono_class_get_exception_data): New accessor function.
12043         (mono_class_set_failure): Store exception_data in the property hash.
12044
12045         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
12046         the struct as a property.
12047
12048         * loader.c (mono_get_method_full): Store the lookup result for method
12049         tokens in method_cache, the others in methodref_cache to decrease the memory
12050         usage of hash tables.
12051
12052         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
12053         (mono_image_init): method_cache is lazy inited now.
12054
12055         * metadata-internals.h (struct _MonoImage): Change method_cache to
12056         a MonoValueHashTable, add a separate methodref_cache.
12057
12058 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
12059
12060         * number-formatter.h: Fix tables to avoid arithemtic overflow in
12061           Double.ToString as exposed by Bug #383531.
12062
12063 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12064
12065         * number-formatter.h: Make some tables static.
12066
12067         * class.c (mono_method_set_generic_container): New accessor function.
12068         (mono_method_get_generic_container): Ditto.
12069
12070         * class-internals.h (struct _MonoMethod): Remove rarely used 
12071         'generic_container' field, store it in the property hash instead. Add 
12072         'is_generic' boolean field instead.
12073
12074         * image.c (mono_image_init): Initialize property_hash.
12075         (mono_image_close): Destroy property_hash.
12076
12077         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
12078         hold rarely used fields of runtime structures belonging to this image.
12079
12080         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
12081         to get/set method->generic_container.
12082
12083         * loader.c (mono_get_method_from_token): Avoid loading the method header for
12084         generic methods.
12085
12086 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
12087
12088         * class.c (mono_class_inflate_generic_method_full): Don't increase
12089         mono_stats.inflated_method_count for methods found in the cache.
12090
12091         * threads.c (mono_thread_request_interruption): Add a comment about 
12092         QueueUserAPC ().
12093
12094 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12095
12096         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
12097         interface_offsets_packed table.
12098         
12099         * class.c (mono_class_init): Remove some dead code.
12100
12101         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
12102         mono_class_setup_vtable () when CAS is active to detect security problems.
12103
12104 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
12105
12106         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
12107
12108         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
12109         parameters as it's irrelevant for delegate checking.
12110
12111 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12112
12113         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
12114
12115         * class.c (mono_class_init): Control the creation of a generic vtable using
12116         a global which is true by default, but set to false by the runtime startup code.
12117         
12118         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
12119         Disabled for now since it breaks the embedding API.
12120         Move the setup of class->methods for arrays to mono_class_setup_methods ().
12121         (mono_class_setup_methods): Add a memory barrier.
12122
12123         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
12124         when mono_class_init () doesn't compute the generic vtable.
12125         
12126 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12127         * profiler.c: Added mono_profiler_install_statistical_call_chain,
12128         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
12129         to support call chains (backtrace) in the stat profiler.
12130         * profiler.c, profiler-private.h: Likewise.
12131
12132 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12133
12134         * generic-sharing.c: Init generic class when a method of it is
12135         requested via a runtime generic context.
12136
12137 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12138
12139         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
12140
12141         * reflection.c (mono_type_get_object): Add a FIXME.
12142
12143         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
12144
12145         * class.c (mono_class_get_method_by_index): New helper function, returning an
12146         entry in the class->methods array.
12147
12148 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12149
12150         * class.c (mono_class_init): Only do the array optimization for szarrays. 
12151         Avoid creating a generic vtable for generic instances as well.
12152         (mono_class_get_method_from_name_flags): Don't search in the metadata for
12153         generic instances.
12154
12155 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
12156
12157         * loader.c (mono_get_method_constrained): Inflate the signature
12158         with class context. Fix #325283.
12159
12160 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12161
12162         * object.c (mono_class_create_runtime_vtable): Add a comment.
12163
12164         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
12165         where needed.
12166         (setup_interface_offsets): Handle the case when this is called twice for arrays.
12167         (mono_class_setup_vtable_general): Add an assert.
12168         (mono_class_init): Avoid creating a generic vtable for arrays.
12169
12170         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
12171         here, let mono_class_init () do that.
12172
12173         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
12174         interfaces in mscorlib.
12175
12176         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
12177         interfaces. Add some comments.
12178         (mono_class_init): Call mono_class_setup_methods () here since it is no
12179         longer called by mono_class_setup_vtable ().
12180
12181         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
12182         not set in class->vtable.
12183         (mono_class_create_runtime_vtable): Reenable the disabled code.
12184
12185         * object.c (mono_class_create_runtime_vtable): Disable the last change for
12186         now as it causes some test failures.
12187
12188         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
12189         if using the vtable trampoline. Also remove some strange code which put the
12190         generic methods themselves into the vtable slots. Remove the AOT init_vtable
12191         stuff as it is no longer needed.
12192
12193 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
12194
12195         * pedump.c: Give make --verify all option check code as well.
12196         Using --verify code won't check for metadata now.
12197
12198 2008-05-19  Martin Baulig  <martin@ximian.com>
12199
12200         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
12201
12202         * mono-debug.c
12203         (_mono_debug_using_mono_debugger): New global variable; it's set
12204         directly by the debugger, so mono_debug_using_mono_debugger() also
12205         works after attaching.
12206
12207 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
12208
12209         * object.c (mono_class_create_runtime_vtable): Use memory barriers
12210         as we do double checked locking on MonoClass::runtime_info and
12211         MonoClassRuntimeInfo::domain_vtables.
12212
12213 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
12214
12215         * debug-helpers.c (print_field_value): Fix a warning.
12216
12217 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
12218
12219         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
12220         set in the AOT case.
12221
12222 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12223
12224         * class.c (mono_class_setup_vtable_general): Use memory barriers
12225         as we do double checked locking on MonoClass::vtable.
12226
12227 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12228
12229         * reflection.c (resolve_object): Inflate only if the generic context
12230         is not null. Fixes #389886.
12231
12232 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
12233
12234         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
12235         instead of g_free.
12236
12237         Code is contributed under MIT/X11 license.
12238
12239 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12240
12241         * class.c: Revert unrelated change.
12242
12243 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12244
12245         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
12246         a generic instantiation, use mono_class_from_mono_type instead of playing
12247         with MonoType directly.
12248
12249 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12250
12251         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
12252         checks must ignore generic instantiations, so mono_class_has_parent is not
12253         suitable. Fixes #390128.
12254
12255 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
12256
12257         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
12258         it to avoid registering tokens during metadata generation. Fixes #390023.
12259
12260 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12261
12262         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
12263         consistent.
12264
12265         Contributed under MIT/X11 license.
12266
12267 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12268
12269         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
12270         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
12271         to fixup the EXE image.
12272         (mono_cleanup): Use mono_close_exe_image.
12273         (mono_close_exe_image): New function.
12274         * image.c: Include "marshal.h".
12275         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
12276         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
12277         counting when the image is loaded outside of mono_image_open_full. Set status
12278         based on GetLastError.
12279         * coree.c: Include required headers. Add init_from_coree.
12280         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
12281         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
12282         (_CorExeMain): Set init_from_coree.
12283         (CorExitProcess): Only call ExitProcess for now.
12284         (CorBindToRuntimeEx): New stub implementation.
12285         (CorBindToRuntime): New function.
12286         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
12287         (MonoFixupExe): ILONLY executables require no fixups.
12288         (mono_set_act_ctx): New function to set activation context.
12289         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
12290         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
12291         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
12292         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
12293         as MONO_INTERNAL.
12294         * domain-internals.h: Add mono_close_exe_image.
12295
12296         Contributed under MIT/X11 license.
12297
12298 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
12299
12300         * metadata.c (mono_metadata_compute_size): Correctly calculate field
12301         size for generic param and event tables. Fixes #388977.
12302
12303 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
12304
12305         * loader.c (mono_method_signature): Use memory barriers because of the double
12306         checked locking pattern.
12307
12308         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
12309         aborting or aborted as well. Fixes #376391.
12310         
12311         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
12312         existing runtime state in the Suspend handler during shutdown.
12313
12314 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
12315
12316         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
12317
12318         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
12319         which are starting up or shutting down.
12320
12321         * threads.c (mono_threads_set_shutting_down): Don't return a value since
12322         this function never returns if the runtime is already shutting down.
12323
12324         * icall.c (ves_icall_System_Environment_Exit): Update after 
12325         mono_threads_set_shutting_down () signature change.
12326         
12327 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
12328
12329         * class.c: Added can_access_instantiation to verify if the instantiation
12330         is visible. Fix access check for nested types as they returned TRUE
12331         before doing type and generic instantiation visibility checks.
12332
12333 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12334
12335         * reflection.c (mono_reflection_create_generic_class): The created type
12336         must have a different container from its TypeBuilder. Otherwise they
12337         will end sharing generic arguments, which is wrong.
12338
12339         Due to the sharing, making a generic instance of the created type using
12340         the TypeBuider generic arguments resulted in the generic type definition
12341         been returned, which is wrong as well.
12342
12343         As a bonus the code was leaking the type_params array. This memory should
12344         be allocated from the image mempool.
12345
12346         This fixes bug #354047.
12347
12348 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12349
12350         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
12351         to here         as they are now used in assembly.c new code.
12352         Added a skipverification flag to MonoAssembly.
12353         New internal function mono_assembly_has_skip_verification.
12354
12355         * assembly.c: New function mono_assembly_has_skip_verification. It checks
12356         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
12357         part of #387274.
12358
12359 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12360
12361         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
12362         needed. Fixes #387034.
12363
12364         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
12365
12366 2008-05-06  Miguel de Icaza  <miguel@novell.com>
12367
12368         * assembly.c (mono_assembly_load_reference): Prevent crash while
12369         disassembling Silverlight 2.0 executables while we still do not
12370         have GACed libraries.
12371
12372 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12373
12374         * reflection.c: Special case generic type definitions as well. Fixes #383444.
12375
12376 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
12377
12378         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
12379         of the dynamic case. Fixes #387404.
12380
12381 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12382
12383         *verify.c (mono_verifier_is_class_full_trust): If under
12384         verify_all and the verifier mode was not set, only
12385         gac and corlib types are fulltrust. This makes --verify-all
12386         usable to detect unverifiable code, which is the expected
12387         use case.
12388
12389 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12390
12391         * verify.h: Ops, commited the header with debug
12392         enabled.
12393
12394 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12395
12396         * verify.c (merge_stack): Use the new value on unverifiable
12397         stack merges.
12398
12399         * verify.c (verify_type_compatibility_full): Comparison
12400         of nullable types can't use mono_class_is_assignable_from.
12401
12402         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12403         that makes all verification errors be reported.
12404
12405         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12406         mono_method_verify.
12407
12408 2008-05-05  Robert Jordan  <robertj@gmx.net>
12409
12410         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12411         support for value types. See #386415.
12412
12413         * object.c: comments.
12414
12415         Code is contributed under MIT/X11 license.
12416
12417 2008-05-05  Martin Baulig  <martin@ximian.com>
12418
12419         * debug-mono-symfile.h
12420         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12421         for old pre-terrania symbol files.
12422
12423 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12424
12425         * mono-config.c: Add ppc64 architecture.
12426
12427         Code is contributed under MIT/X11 license.
12428
12429 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12430
12431         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12432           PPC64 uses function descriptors as well.
12433
12434         Code is contributed under MIT/X11 license.
12435
12436 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12437
12438         * object.c (compute_class_bitmap): Ignore literal static fields.
12439
12440         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12441         var has an invalid format.
12442         (describe_ptr): Add some sanity checks for the vtable.
12443         (add_nursery_frag): Clear unused nursery fragments.
12444         (major_collection): Clear all remaining nursery fragments.
12445
12446 2008-05-03  Robert Jordan  <robertj@gmx.net>
12447
12448         * image.c, metadata-internals.h: add thunk_invoke_cache.
12449
12450         * marshal.c, marshal.h: implement
12451         mono_marshal_get_thunk_invoke_wrapper ().
12452
12453         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12454
12455         Code is contributed under MIT/X11 license.
12456
12457 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12458
12459         * verify.c (do_leave): Empty the stack.
12460
12461 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12462
12463         * class.c (mono_class_is_assignable_from): Variance
12464         doesn't work between reference and value types. For example,
12465         given type C<T+>, C<int32> is not assignable to C<object>.
12466         Break the argument checking loop on first error. 
12467
12468 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12469
12470         * icall.c : base64_to_byte_array() needs some more strict
12471           check for sequence of '=' characters. Patch by Santa
12472           Marta (http://deee.g.hatena.ne.jp/santamarta).
12473
12474           Contributed under MIT/X11 license.
12475           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12476
12477 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12478
12479         * domain.c: Disable LoadLibrary support to fix Win32 build.
12480
12481         Code is contributed under MIT/X11 license.
12482
12483 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12484
12485         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12486         to help with cache behaviour.
12487
12488 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12489
12490         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12491         method. 
12492
12493 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12494
12495         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12496
12497 2008-05-01  Dick Porter  <dick@ximian.com>
12498
12499         * process.c (process_get_fileversion): Only pass 16 bits of
12500         language ID to VerLanguageName.  Fixes bug 381204.
12501
12502 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12503
12504         * verify.c (mono_method_verify): Fix the comparison
12505         operator for code bounds check.
12506
12507 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12508
12509         * verify.c (mono_method_verify): Check the bounds of
12510         all access of the code array.
12511
12512 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12513
12514         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12515
12516 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12517
12518         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12519         not valid.
12520
12521 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12522
12523         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12524         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12525         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12526         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12527         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12528         mono_runtime_load.
12529         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12530         runtime initialization from metadata.
12531         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12532         (mono_set_rootdir): Use mono_get_module_file_name.
12533         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12534         handles.
12535         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12536         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12537         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12538         MonoCLIImageInfo. Add support for module handles.
12539         (load_cli_header): Update mono_cli_rva_image_map signature.
12540         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12541         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12542         (mono_image_rva_map): Add support for module handles.
12543         (mono_image_ensure_section_idx): Add support for module handles.
12544         (mono_image_close): Add support for module handles.
12545         (do_load_header): Add support for module handles.
12546         (mono_image_open_from_module_handle): New function for internal use.
12547         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12548         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12549         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12550         handles.
12551         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12552         * image.h: Add mono_image_fixup_vtable.
12553         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12554         support.
12555         * coree.h: New file.
12556         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12557         unsupported native code.
12558         (mono_marshal_set_callconv_from_modopt): New function splitted from
12559         mono_marshal_get_managed_wrapper.
12560         (mono_marshal_get_managed_wrapper): Use
12561         mono_marshal_set_callconv_from_modopt.
12562         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12563         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12564         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12565         that results in a deadlock when the runtime is loaded in _CorDllMain.
12566         * Makefile.am: Add coree.c and coree.h.
12567
12568         Contributed under MIT/X11 license.
12569
12570 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12571
12572         * generic-sharing.c: Search for type arguments in array element
12573         types as well.
12574
12575 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12576
12577         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12578
12579         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12580
12581         * object.c: Don't setup the RGCTX when the vtable is created,
12582         because we're setting it up lazily now.
12583
12584 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12585
12586         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12587         64 bit support.
12588
12589 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12590
12591         * verify.c (verify_class_for_overlapping_reference_fields): 
12592         If class is under fulltrust allow reference types to overllap
12593         if they have the same RVA.
12594
12595 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12596
12597         * pedump.c: Added new flag valid-only, that makes the verifier
12598         behaves just like --security=validil. It won't fail type load
12599         due to unverifiable restrictions.
12600
12601 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12602
12603         * class-internals.h (struct MonoMethod): Added a verification_success
12604         field to cache verifier executions. Reduced MonoMethod:slot size by
12605         one bit.
12606
12607 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12608
12609         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12610         instead of a 'vt' argument to save an indirection and to allow these to be used
12611         for valuetypes.
12612         (scan_vtype): New helper function to scan an area using a gc descriptor.
12613         (mono_gc_wbarrier_value_copy): Implement this.
12614         (handle_remset): Add support for REMSET_VTYPE.
12615         (find_in_remset_loc): Ditto.
12616         (mono_gc_base_init): Allow some debugging options to be controlled through the
12617         use of the MONO_GC_DEBUG env variable.
12618         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12619         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12620
12621 2008-04-23  Martin Baulig  <martin@ximian.com>
12622
12623         * domain.c (mono_domain_create): Move the call to
12624         mono_debug_domain_create() down, after allocating the domain id.
12625
12626 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12627
12628         verify.c (verify_class_for_overlapping_reference_fields): Skip
12629         static fields while verifying for overlapping fields as they
12630         don't matter at all.
12631
12632 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12633
12634         * domain-internals.h: added a declaration of
12635         mono_make_shadow_copy.
12636
12637         * assembly.c (mono_assembly_open_full): shadow copying of
12638         assemblies moved to here, so that all the assemblies within the
12639         application domain's private binary directories can be
12640         processed. Fixes bug #380546
12641
12642         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12643         mono_make_shadow_copy and made non-static. The decision whether
12644         to shadow-copy an assembly is made based on its location - it's
12645         copied if it's in one of the private application domain binary
12646         directories and its different to the target file in the shadow
12647         directory. Fixes bug #380546
12648
12649 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12650
12651         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12652
12653         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12654         types.
12655
12656         * reflection.c (mono_image_create_token): Handle 
12657         Method/ConstructorOnTypeBuilderInst.
12658         (resolve_object): Ditto.
12659         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12660         so it can be called from resolve_object. Also handle the case when the inflated
12661         class already has its methods setup.
12662
12663 2008-04-21  Martin Baulig  <martin@ximian.com>
12664
12665         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12666
12667 2008-04-20  Geoff Norton  <gnorton@novell.com>
12668
12669         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12670         pointer dereference.
12671
12672 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12673
12674         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12675         portability API to look up the assembly file. Fixes behavior in
12676         situations when the application has a bin/ directory, but the
12677         assembly search patch refers to Bin/ (and thus the requested file
12678         name is Bin/SomeLibrary.dll). Fixes bug #379888
12679
12680 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12681
12682         verify.c (mono_type_is_generic_argument): Extracted this check
12683         from a dozen places to here.
12684
12685         verify.c: Fixed all issues related to boxing generic arguments
12686         and their constraints.
12687
12688 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12689
12690         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12691
12692 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12693
12694         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12695         isn't finished yet. Fixes #363447.
12696
12697 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12698
12699         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12700         Fixes #346419.
12701
12702 2008-04-13  Jb Evain  <jbevain@novell.com>
12703
12704         * domain.c: update the 2.1 profile versions.
12705         Merged from the Moonlight 2 branch.
12706
12707 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12708
12709         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12710         mscorlibs for the non-refonly case as well.
12711
12712         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12713         in mono_assembly_load_from_full (). Fixes #378924.
12714
12715 2008-04-11  Geoff Norton  <gnorton@novell.com>
12716
12717         * icall.c: The global extern environ doesn't exist on Mac.  We
12718         need to call NSGetEnviron instead.
12719
12720 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12721
12722         verify.c: Add generic method constraint verification.
12723
12724 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12725
12726         class.c (mono_class_inflate_generic_method_full): Add a long
12727         explanation to the is_mb_open hack. Remove the FIXME.
12728
12729 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12730
12731         * verify.c (mono_method_verify): Mark all unknown opcodes
12732         as invalid. Mark jmp as unverifiable.
12733
12734 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12735
12736         * verify.c: Add code to do type constraint verification on class instances.
12737
12738         * verify.c (mono_verifier_verify_class): Use the type constraint 
12739         verification code.
12740
12741 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12742
12743         * class.c (mono_class_get_field_default_value): Don't pass cindex
12744         as hint to mono_metadata_get_constant_index. The local is not initialized
12745         and should contain garbage most of the time. This could only work
12746         with a lot of luck.
12747
12748 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12749
12750         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12751
12752 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12753
12754         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12755
12756         * class.c (mono_class_from_generic_parameter): Save the token of the
12757         generic param in MonoClass::sizes.generic_param_token.
12758
12759         * reflection.c (mono_custom_attrs_from_class): If the class type is
12760         VAR or MVAR retrieve the attributes of the generic param.
12761
12762 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12763
12764         * class.c (mono_class_init): Do class verification if the verifier
12765         is enabled.
12766
12767 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12768
12769         * verify-internal.h: Added mono_verifier_verify_class.
12770
12771         * verify.c: Added mono_verifier_verify_class. It checks for
12772         classes with explicit layout that have overlapping reference fields.
12773
12774         * pedump.c: Init the verifier state prior to verification. Fixed
12775         command line arguments.
12776
12777 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12778
12779         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12780
12781 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12782
12783         * verify-internals.h: Fix a warning.
12784
12785 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12786
12787         * verify-internals.h: New header with the verifier configuration
12788         extracted from mini.c.
12789
12790         * verify.c: Implemented the new functions exported by verify-internals.h.
12791
12792 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12793
12794         * verify.c: Add proper verification of ckfinite.
12795
12796 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12797
12798         * verify.c (do_conversion): Improved error message to something
12799         more meanfull.
12800
12801         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12802         with primitive types.
12803
12804 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12805
12806         * verify.c: Added tail prefix checking. Marked icall
12807         as unverifible.
12808
12809 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12810
12811         * verify.c: Fix the detection of branches to the middle
12812         of an instruction.
12813
12814 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12815
12816         * verify.c: Implemented verification of volatile. and
12817         unaligned. prefix. Check if a type is valid after retrieving it.
12818
12819 2008-04-01  Dick Porter  <dick@ximian.com>
12820
12821         * process.c (process_get_fileversion): If there's no string block,
12822         set the file language to en_US.  Fixes the other new part of bug
12823         374600.
12824
12825 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12826
12827         * class.c: New functions mono_method_can_access_field_full and
12828         mono_method_can_access_method_full. They perform type visibility
12829         and type site check.
12830
12831         * class-internal.h: Added exported functions.
12832
12833         * verify.c: Use new functions to implement proper visibility checks.
12834
12835 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12836
12837         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12838
12839 2008-03-28  Dick Porter  <dick@ximian.com>
12840
12841         * process.c (process_get_fileversion): Use the first language ID
12842         we see, rather than insisting on an invariant language.  Fixes bug
12843         374600.
12844
12845 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12846
12847         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12848         the streams to fix reading of invalid memory later.
12849
12850         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12851         to ease debugging.
12852
12853 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12854
12855         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12856         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12857
12858 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12859         * threads.h: Added MonoThreadManageCallback type and
12860         mono_thread_set_manage_callback prototype
12861         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12862         (used to store the mono_thread_manage callback).
12863         * threads.c: Added mono_thread_set_manage_callback, and handle
12864         "MonoThread->manage_callback" in build_wait_tids.
12865
12866 2008-03-26  Dick Porter  <dick@ximian.com>
12867
12868         * process.c (process_get_fileversion): Set FileVersionInfo strings
12869         to Empty when the resource doesn't have the particular info.
12870         Fixes bug 355717.
12871
12872 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12873
12874         * verify.c (mono_method_verify): Proper prefix validation.
12875
12876 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12877
12878         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12879         itself in a separate argument instead of throwing them. Fixes #373448.
12880
12881         * appdomain.c: Bump corlib version.
12882
12883 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12884
12885         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12886
12887 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12888
12889         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12890         version macros.
12891
12892 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12893
12894         * generic-sharing.c, class-internals.h: Code for putting
12895         reflection types into the runtime generic context.
12896
12897 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12898
12899         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12900         Fixes #340662. 
12901
12902
12903 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12904
12905         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12906
12907         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12908
12909         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12910
12911         * verify.c (do_cast): Let the result value keep the boxed status.
12912
12913         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12914
12915 2008-03-17  Jb Evain  <jbevain@novell.com>
12916
12917         * reflection.c: when running on a 2.0 runtime, emit
12918         unconditionally the #~ header version as 2.0, and the
12919         CLI header version as 2.5, for symmetry's sake with csc.
12920
12921 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12922
12923         * class.c: Remove the unused cache_interface_offsets stuff.
12924
12925         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12926         profiler.c: Fix warnings.
12927
12928 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12929
12930         * generic-sharing.c, class-internals.h: Support for putting
12931         methods into the runtime generic context.
12932
12933 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12934
12935         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12936         classes which are generic instances of not-yet finished typebuilders. Fixes
12937         #351172.
12938
12939         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12940
12941 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12942
12943         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12944
12945         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12946         field, replace it with a hash table in MonoDynamicImage.
12947
12948         * reflection.c (inflate_mono_method): Access the generic definition object from
12949         image->generic_def_objects instead of imethod->reflection_info.
12950
12951         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12952
12953         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12954         
12955         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12956         function in reflection.c so it is easier to keep in sync with the dynamic image
12957         creation code.
12958
12959         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12960         mono_image_close ().
12961
12962 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12963
12964         * class.c (mono_class_generic_sharing_enabled): Disable generic
12965         sharing for all architectures except AMD64 and x86 to fix build.
12966
12967 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12968
12969         * verify.c: Use the generic definition MonoGenericContext when available.
12970         Remove code for checking generics instance compatibility in favor of
12971         mono_class_is_assignable_from.
12972
12973 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12974
12975         * marshal.c, marshal.h, metadata-internals.h, image.c,
12976         wrapper-types.h: New wrapper for invoking a shared static method
12977         without having to pass the runtime generic context argument.
12978
12979 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12980
12981         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12982
12983 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12984
12985         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12986         
12987         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12988         create a token from a FieldOnTypeBuilderInst.
12989         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12990         (resolve_object): Ditto.
12991
12992         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12993         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12994
12995 2008-03-14  Martin Baulig  <martin@ximian.com>
12996
12997         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12998
12999         * debug-mono-symfile.h
13000         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
13001         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
13002
13003 2008-03-10  Martin Baulig  <martin@ximian.com>
13004
13005         * debug-mono-symfile.h
13006         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
13007         `lexical_block_table_offset'.
13008         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
13009         `lexical_blocks'.
13010         (MonoSymbolFile): Added `version'.
13011
13012         * mono-debug.h
13013         (MonoDebugLexicalBlockEntry): Removed.
13014         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
13015         `lexical_blocks'.
13016
13017         * mono-debug.c (mono_debug_add_method): Don't compute lexical
13018         blocks here; the debugger now does this internally.
13019
13020 2008-02-27  Martin Baulig  <martin@ximian.com>
13021
13022         * object.c (mono_runtime_exec_main): Call
13023         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
13024         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
13025
13026 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13027
13028         * verify.c (verify_type_compatibility_full): Allow native int to be converted
13029         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
13030
13031 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13032
13033         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
13034         ldftn with a virtual method.
13035
13036 2008-03-13  Geoff Norton  <gnorton@novell.com>
13037
13038         * decimal.c:  Only include memory.h if the platform has it.
13039
13040 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
13041
13042         * assembly.c, class.c, metadata-internals.h: make sure public key
13043         tokesns are compared in a case-insensitive way. Also, all
13044         the lookups in the GAC use a lowercase public key token
13045         (gaacutil already does the lowercasing on install). Fixes
13046         bug #369541.
13047
13048 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
13049
13050         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
13051         and return value.
13052
13053 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
13054
13055         * image.c: when someone loads a mscorlib from a file, return the
13056         currently loaded mscorlib (fixes bug #369253).
13057
13058 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13059
13060         * class.c: handle types with no parents by forcing them to have
13061         System.Object as a parent and marking them as broken (this currently
13062         allows the first part of bug #369173 to work as well, likely because
13063         we don't check for typeload exceptions everywhere yet).
13064
13065 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
13066
13067         * class.c: more complete check that types belong to corlib
13068         (fixes second part of bug #369173).
13069
13070 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
13071
13072         * generic-sharing.c:  Including glib.h for the MSVC builds to define
13073           "inline" to "__inline" before including mono-membar.h.
13074           
13075         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
13076           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
13077           MSVC builds.
13078
13079         Contributed under MIT/X11 license.
13080
13081 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13082
13083         * verify.c (do_invoke_method): Remove return type validation.
13084
13085         * verify.c (do_ret): Do return type validation at return site instead of
13086         call site.
13087
13088 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13089
13090         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
13091
13092         * verify.c: Some todos cleaned and improved a few error messages.
13093
13094 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
13095
13096         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
13097
13098 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13099
13100         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
13101         system types correctly.
13102
13103         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
13104         function.
13105
13106 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13107
13108         * assembly.c (build_assembly_name): Fix a warning.
13109
13110 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
13111
13112         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
13113         the called function takes an object type argument. Fixes storing or
13114         valuetypes across remoting as well as reducing memory usage.
13115         * image.c, metadata-internals.h: remove now unused ldfld_remote and
13116         stfld_remote wrapper caches.
13117
13118 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13119
13120         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
13121         is not found.
13122
13123         * reflection.c (mono_image_register_token): New helper function to save
13124         a token->object mapping.        
13125
13126         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
13127         managed code.
13128
13129         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
13130         one dimension arrays. Fixes #367670.
13131         (mono_reflection_get_type_internal): Ditto.
13132
13133 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
13134
13135         * marshal.c: mono_load_remote_field_new() always returns object.
13136         so use the proper signature (fixes bug #366445).
13137
13138 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13139         
13140         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
13141         add an 'inline_failure' flag instead.
13142
13143 2008-03-04  Mark Probst  <mark.probst@gmail.com>
13144
13145         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
13146         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
13147         contains the location of "this", used for exception handling.
13148
13149 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13150
13151         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
13152         their size on all platforms for perf reasons.
13153
13154 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13155
13156         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
13157         object-internal.h
13158
13159         * object-internal.h: Same.
13160
13161 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13162
13163         * reflection.h: Fix the build I just broke.
13164
13165 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13166
13167         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
13168         Test if a token is valid, this remove explicit usage of 
13169         MonoDynamicImage::tokens from the verifier code.
13170
13171         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
13172
13173         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
13174         instead of direct access to MonoDynamicImage::tokens.
13175
13176 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13177
13178         * verify.c (token_bounds_check): Fix the build I just broke.
13179
13180 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13181
13182         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
13183
13184         * verify.c (verifier_load_method): Fixed the errors message.
13185
13186         * verify.c (mono_method_verify): Fixed a debug message.
13187
13188 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
13189
13190         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
13191         mono-perfcounters.h, class-internals.h: support for predefined
13192         writable counters, query of categories and counters, bugfixes.
13193
13194 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13195
13196         * verify.c (do_refanytype): Verify the refanytype opcode.
13197
13198         * verify.c (mono_method_verify): Use do_refanytype.
13199
13200 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13201
13202         * verify.c (do_mkrefany): Verify the mkrefany opcode.
13203
13204         * verify.c (mono_method_verify): Use do_mkrefany.
13205
13206 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
13207
13208         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
13209         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
13210         implementation.
13211
13212 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13213
13214         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
13215         the type load exception.
13216
13217 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
13218
13219         * verify.c: Added a few FIXME for method signatures
13220
13221         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
13222         of mono_method_get_signature and get vararg call working. Removed unused
13223         checks for return value.
13224
13225         * verify.c (do_refanyval): Verify the refanyval opcode.
13226
13227         * verify.c (mono_method_verify): Implemented verification of arglist and
13228         use do_refanyval.
13229
13230 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13231
13232         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
13233         vtypes to marshal.c.
13234
13235         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
13236         it works for AOT as well.
13237
13238 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13239
13240         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
13241         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
13242         the system time is adjusted.
13243
13244 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
13245
13246         * icall.c, icall-def.h: use the new time functions (fixes the
13247         non-monotonic behaviour of TickCount).
13248
13249 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
13250
13251         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
13252         it breaks the build.
13253         
13254         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
13255         cattr is not finished yet.
13256
13257 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13258
13259         * verify.c: Proper token validation for field, method and type.
13260
13261 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13262
13263         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
13264
13265         * loader.c (method_from_memberref): Generate type load error instead of method missing
13266         if the type is not found.
13267
13268 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
13269
13270         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
13271         some of the conversions caused the generation of a marshal directive exception.
13272
13273 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13274
13275         verify.c: Report which exception should be thrown by the JIT.
13276         Added a lot of FIXME notes.
13277
13278 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13279
13280         * generic-sharing.c: Runtime generic context slots are not
13281         instantiated on init anymore.  Instead, provide function to do the
13282         instantiating on demand.
13283
13284         * class-internals.h: Added vtable to runtime generic context.
13285         Macros for encoding direct and indirect slot offsets in one
13286         guint32.
13287
13288 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13289
13290         * object.c, generic-sharing.c: Moved some generic sharing code
13291         from object.c to generic-sharing.c.
13292
13293         * generic-sharing.c: Added support for extensible runtime generic
13294         context.
13295
13296         * metadata-internals.h: Two new hash tables in MonoImage for
13297         extensible runtime generic context support.
13298
13299         * domain.c: Unregister generic vtables upon domain unloading.
13300
13301         * image.c: Destroy new hash tables upon image unloading.
13302
13303         * metadata.c: Unregister generic subclasses upon image unloading.
13304
13305         * class-internals.h: New data structure for runtime generic
13306         context template.  New fields in the runtime generic context for
13307         extensible part.
13308
13309         * Makefile.am: Added generic-sharing.c.
13310
13311 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13312
13313         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
13314         there is a pending loader exception, raise it.
13315
13316         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13317         same.
13318
13319         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
13320         same.
13321
13322         Fixes #363450.
13323
13324 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13325
13326         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
13327
13328         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
13329         
13330         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
13331         ref-only requests for compatibility with MS.
13332
13333 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13334
13335         * reflection.c (mono_custom_attrs_from_method): Don't silently
13336         return an empty list for generic method instances.
13337         (mono_custom_attrs_from_param): Likewise.
13338
13339 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
13340             Raja R Harinath  <harinath@hurrynot.org>
13341
13342         Fix #354757
13343         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
13344         * class.c (mono_class_inflate_generic_method_full): Initialize it
13345         when a fully-open method is instantiated.
13346         * metadata.c (inflated_method_equal, inflated_method_hash): Update
13347         to new field.
13348         * reflection.c (inflate_mono_method): Don't create a temporary context.
13349
13350 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13351
13352         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13353         Compute correct value, to prepare for imethod->reflection_info going away.
13354
13355 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13356
13357         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
13358
13359 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13360
13361         * verify.c: Implement skip visibility flag.
13362
13363 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13364
13365         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
13366         which contains an extra field to tell the kind of exception that should be thrown.
13367
13368         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
13369
13370 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
13371
13372         * loader.c (mono_method_get_param_names): Initialize 'klass' after
13373         'method' is updated.
13374
13375 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
13376
13377         * class.c (mono_class_layout_fields): Set class->min_align for classes using
13378         explicit layout as well. Fixes #360375.
13379
13380 2008-02-11  Geoff Norton  <gnorton@novell.com>
13381
13382         * loader.c: Guard and dereference against inflated generic methods
13383
13384 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
13385
13386         * class.c: Include Retargetable spec in assembly name.
13387         * assembly.c: Always include PublicKeyToken spec in assembly name
13388         (with value "null" if assembly is not signed), and include
13389         Retargetable spec.
13390         * icall-def.h: Added icall for Assembly.get_fullname.
13391         * icall.c: Added icall returning the fullname of an assembly.
13392
13393 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13394
13395         * class.c (mono_class_setup_vtable_general): Add a missing call to
13396         mono_class_setup_methods () which is needed in the AOT case.
13397
13398 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13399
13400         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13401         stack type of the given MonoType.
13402
13403         * verify.c (verify_type_compatibility_full): Handle the void type.
13404
13405         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13406         way stack merging works.
13407
13408         * verify.c (store_local): Improved verification message.
13409
13410         * verify.c (do_branch_op): If the merging is invalid, the method
13411         is unverifiable and not invalid. Improved error message.
13412
13413         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13414         a reference type diferent than System.Object. Improved error
13415         message.
13416
13417 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13418
13419         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13420
13421         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13422         type of an enum even if the argument is byref.
13423
13424         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13425         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13426
13427         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13428
13429         *verify.c (verify_type_compatibility_full): Make enum types
13430         compatible with their base types.
13431
13432         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13433         types are compatible for the special case of a boxed valuetype and
13434         System.Object.
13435
13436         * verify.c (verify_stack_type_compatibility): The function
13437         is_compatible_boxed_valuetype was extracted from here.
13438
13439         * verify.c (push_arg): Only set ctx->has_this_store if the method
13440         is not static.
13441
13442         * verify.c (do_ldelem): Fixed a typo in an error message and added
13443         strict check for mixing int32 and native int as the array type
13444         and ldelem type.
13445
13446         * verify.c (merge_stacks): Consider boxed valuetypes in the
13447         compatibility checks.
13448
13449 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13450         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13451
13452 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13453         *class.c: use_new_interface_vtable_code: renamed the env var to have
13454         a "MONO_" prefix, and fix the logic to enable it by default.
13455
13456 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13457         *class.c:
13458         mono_class_setup_vtable_general: rewrote the way in which interface
13459         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13460         makes the code more maintainable.
13461         For now the old code is still there, and can be activated setting
13462         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13463
13464 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13465
13466         * verify.c: guarded some debug functions around and #ifdef.
13467
13468         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13469
13470 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13471
13472         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13473         changes for now since they seem to break too many things.
13474
13475 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13476
13477         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13478         mono_marshal_find_nonzero_bit_offset): Added macro and function
13479         for finding the byte- and bit-offset of a bitfield within a
13480         struct.
13481
13482 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13483
13484         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13485         (mono_marshal_get_struct_to_ptr): Ditto.
13486
13487         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13488         cctor_signature.
13489
13490 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13491
13492         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13493         between methods for non-corlib types.
13494
13495 2008-02-02  Geoff Norton  <gnorton@novell.com>
13496
13497         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13498         generic parameters as well. (Fixes #342536)
13499
13500 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13501
13502         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13503
13504         * verify.c (do_invoke_method): Fix for calling with byref structs.
13505
13506         * verify.c (do_cast): push a boxed value type based on the type token and not
13507         the type of stack.
13508
13509 2008-01-31  William Holmes  <billholmes54@gmail.com>
13510
13511         * process.c (process_module_string_read): Check the size returned form 
13512           VerQueryValue to avoid out of memory exception. 
13513
13514 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13515
13516         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13517         Handle properly modules which are not in the moduleref table. Fixes
13518         #356938.
13519
13520 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13521
13522         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13523         the dynamic case which is now in managed code.
13524         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13525
13526         * marshal.c (mono_string_to_bstr): Fix a warning.
13527         (init_com_provider_ms): Ditto.
13528
13529         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13530
13531         * exception.c (mono_get_exception_out_of_memory): New helper function.
13532
13533 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13534
13535         * marshal.c: Add support for BSTR marshalling
13536         using other COM systems.
13537
13538         Code is contributed under MIT/X11 license.
13539
13540 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13541
13542         * object.c (mono_runtime_invoke_array): reverted previous
13543         commit as it breaks the build.
13544
13545 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13546
13547         * object.c (mono_runtime_invoke_array): Verify arguments for
13548         invalid types. Fixes #348522.
13549
13550 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13551
13552         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13553         non-final virtual calls using call. 
13554
13555         * verify.c (do_invoke): fixed some TODOs.
13556
13557         * verify.c (push_arg): set has_this_store for "ldarga 0".
13558
13559 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13560
13561         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13562         which belong to an inflated class. Fixes #356531.
13563
13564 2008-01-26  Robert Jordan  <robertj@gmx.net>
13565
13566         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13567         which resort to FindFirstFile when a certain error condition
13568         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13569         Code is contributed under MIT/X11 license.
13570
13571 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13572
13573         * marshal.c (emit_marshal_string): Fix out string marshalling
13574         to use specified encoding. Fixes #323900.
13575
13576         Code is contributed under MIT/X11 license.
13577
13578 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13579
13580         * class.c (mono_class_inflate_generic_method_full): Don't modify
13581         iresult->context after cache check.
13582
13583 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13584
13585         * class.c (mono_class_inflate_generic_method_full): Change the
13586         struct assignments to memcpy for better visibility and add some comments.
13587
13588 2008-01-23  Dick Porter  <dick@ximian.com>
13589
13590         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13591         procedure, and make it work on windows.
13592
13593 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13594
13595         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13596         a MonoReflectionTypeBuilder since it is always of that type.
13597
13598         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13599
13600         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13601
13602         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13603         
13604         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13605
13606         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13607
13608         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13609         instantiations from the type cache.
13610
13611 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13612
13613         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13614
13615         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13616
13617 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13618
13619         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13620
13621         * verify.c (mono_method_verify): removed old TODO
13622
13623 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13624
13625         * verify.c (do_newobj): add visibility check.
13626
13627 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13628
13629         * verify.c (do_load_function_ptr): add visibility check.
13630
13631 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13632         *class.c:
13633         mono_generic_class_get_class: hook profiler events.
13634         mono_field_get_offset: added to support heap-shot in the new profiler.
13635         *class.h: exported mono_field_get_offset.
13636         * reflection.c:
13637         mono_reflection_setup_internal_class: hook profiler events.
13638
13639 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13640
13641         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13642         argument here too and use it to avoid checking for pending exceptions if 
13643         possible.
13644
13645 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13646
13647         * assembly.c (build_assembly_name): add arg for passing the assembly
13648         flags. Do not consider a PublicKey with value "null" valid.
13649         (mono_assembly_name_parse_full): added boolean argument that will be
13650         set if the assembly name contains a PublicKeyToken spec. Added support
13651         for the Retargetable spec for which only Yes or No are allowed as valid
13652         value. Consider assembly name invalid if Retargetable spec is set, but
13653         either version, culture or public key (token) are not specified.
13654         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13655         with implementation in assembly.c.
13656         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13657         from MonoAssemblyName.
13658         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13659         introduced argument for mono_assembly_name_parse_full to know if the
13660         assembly name has a PublicKeyToken spec, and if it has instruct
13661         fill_reflection_assembly_name to use default value for keyToken (if
13662         PublicKeyToken is null).
13663
13664 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13665
13666         * verify.c (mono_method_verify): fixed ovf ops with
13667         float values. They are unverifiable now.
13668
13669 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13670
13671         * class.c (set_failure_from_loader_error): add BadImageException to the
13672         list of exceptions that can cause a type to fail to load.
13673
13674         * class.c (mono_class_get_exception_for_failure): same.
13675
13676 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13677
13678         * verify.c (in_any_exception_block): added, check if offset
13679         is part of any exception handling clause.
13680
13681         * verify.c (get_stack_type): added VAR and MVAR types.
13682
13683         * verify.c (do_stobj): better error messages.
13684
13685         * verify.c (do_cpobj): added, check cpobj.
13686
13687         * verify.c (do_initobj): added, check initobj.
13688
13689         * verify.c (do_sizeof): added, check sizeof.
13690
13691         * verify.c (do_localloc): added, check localloc.
13692
13693         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13694
13695 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13696
13697         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13698         save_lmf/restore_lmf opcodes.
13699
13700         * threads.c (mono_threads_install_notify_pending_exc): New function to
13701         install a callback notifying the JIT there is a pending exception on a thread.
13702         (mono_thread_request_interruption): Call the new callback.
13703         (mono_thread_get_and_clear_pending_exception): New function to return the
13704         exception pending on a thread.
13705
13706         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13707         to turn off checking for pending exceptions.
13708         (mono_marshal_get_native_wrapper): Ditto.
13709
13710 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13711
13712         * threads-types.h: Get rid of the unnecessary extern declarations.
13713
13714 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13715
13716         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13717         return field from parent class if not private.
13718         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13719         returns fields from parent class if they are not private.
13720         (method_nonpublic): added function to determine if a given method
13721         should be considered non-public. Returns false for private methods
13722         on parent class, and internal methods from parent on the 1.0 profile.
13723         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13724         use method_nonpublic function to determine whether method should be
13725         returned.
13726         (property_accessor_public): use newly introduced method_nonpublic
13727         function to determine whether accessor is non-public. 
13728         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13729         event from parent class if not private. Only return static event if
13730         Static flag is set, and only return static event from parent class if
13731         FlattenHierarchy flag is set.
13732         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13733         include non-private events from parent class.
13734
13735 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13736
13737         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13738         warning.
13739
13740 2008-01-16  Wade Berrier <wberrier@novell.com>
13741
13742         * security.c: Add assembly.h header to appease some warnings
13743
13744 2008-01-16  Dick Porter  <dick@ximian.com>
13745
13746         * process.c (process_module_string_read): Remove trailing null
13747         when saving string.
13748
13749 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13750
13751         * class-internals.h: A new data structure describing the layout of
13752         a runtime generic context (MonoRuntimeGenericContextTemplate).
13753
13754         * metadata-internals.h: Added a hash table to MonoDomain that maps
13755         from open generic classes to their runtime generic context
13756         templates.
13757
13758         * object.c: Building of the runtime generic context, including
13759         proper handling of generic type arguments of superclasses.
13760         Building of the runtime generic context according to the template.
13761
13762 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13763
13764         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13765         Fixes #350856.
13766
13767         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13768         mono_portability_find_file (). Fixes #325466.
13769         (mono_image_get_public_key): Fix a warning.
13770
13771 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13772
13773         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13774         Fixes #353550.
13775         (mono_class_from_name_case): Ditto.
13776
13777 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13778
13779         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13780           common storage for the tables used in the System/NumberFormatter class.
13781
13782 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13783
13784         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13785
13786 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13787
13788         * verify.c (get_boxable_mono_type): check if the token is valid.
13789
13790         * verify.c (set_stack_value): changed to add an error if an
13791         invalid type is set on stack. Changed all callers due to signature change.
13792
13793         * verify.c (do_stobj): implement stobj validation.
13794
13795 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13796
13797         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13798         set container->is_method, it was set earlier.
13799
13800         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13801         generic methods.
13802
13803         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13804         is_method of the generic container to TRUE for methods.
13805
13806 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13807
13808         * metadata.c (type_in_image): Handle type parameters properly.
13809
13810         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13811         memory ownership of this structure.
13812
13813 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13814
13815         * verify.c (get_boxable_mono_type): make typedref types been just
13816         unverifiable. check for void type.
13817
13818         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13819
13820         * verify.c (do_load_function_ptr): accept method spec tokens.
13821
13822 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13823
13824         * marshal.c (mono_class_native_size): Always set *align even if this is called
13825         recursively.
13826
13827 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13828
13829         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13830         out-of-date.
13831
13832 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13833
13834         * verify.c: removed some old unused tables. A huge bunch of small fixes
13835         to things found while testing the verifier with mono basic.
13836
13837         * verify.c (dump_stack_value): dump null literal flag to.
13838
13839         * verify.c (verify_type_compatibility_full): fix comparison
13840         for types that have a generic super type.
13841
13842         * verify.c (verify_stack_type_compatibility): fix compatibility
13843         between null literals and reference types. fix compatibility between
13844         boxed valuetypes and object. fix corner case test for enums.
13845
13846         * verify.c (do_cmp_op): proper verification of cgt.un in case
13847         of reference types.
13848
13849         * verify.c (do_invoke_method): fix error message.
13850
13851         * verify.c (do_store_indirect
13852
13853         * verify.c (check_is_valid_type_for_field_ops): proper verification
13854         of managed pointers to valuetypes and boxed valuetypes. proper verification
13855         of null literals.
13856
13857         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13858         allow token to be a reference type.
13859
13860         * verify.c (do_cast): proper handling of boxes valuetypes.
13861
13862         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13863         in object[].
13864
13865         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13866         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13867         fixed the decoding of unbox_any
13868
13869 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13870
13871         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13872
13873 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13874
13875         * verify.c (do_newobj): do delegate verification.
13876
13877         * verify.c (verify_delegate_compatibility): perform delegate
13878         verification.
13879
13880         * verify.c (verify_ldftn_delegate): perform tests related to
13881         ldftn delegates.
13882
13883         * verify.c (mono_delegate_signature_equal): perform the
13884         slightly diferent signature comparison required by delegates.
13885
13886         * metadata.c (mono_metadata_type_equal_full): added and exported
13887         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13888         allows signature only comparison.
13889
13890         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13891         as MONO_INTERNAL.
13892
13893 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13894
13895         * verify.c: added a bunch of stack_slot_* functions to
13896         make access to stack slot type easier. This is required to
13897         allow optional flags, like null literal, boxed value and
13898         this pointer.
13899         All access paths to IlStackDesc::stype have been changed 
13900         to use these new funcions.
13901         Removed a bunch of unused functions and cleared all warnings.
13902         This patch introduces the usage of the this pointer and 
13903         boxed value flags.
13904
13905 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13906
13907         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13908
13909 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13910
13911         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13912         match managed version.
13913
13914         * appdomain.c: Bump corlib version.
13915         
13916         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13917         argument.
13918
13919 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13920
13921         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13922         Set public key token to zero-length byte array if assembly is not
13923         strongnamed.
13924
13925 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13926
13927         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13928         writing a vtype array elem.
13929
13930 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13931
13932         * assembly.c (build_assembly_name): return FALSE if length of token is
13933         not 16 (if not "null").
13934         (mono_assembly_name_parse_full): return FALSE if value of version,
13935         culture, token or key is 0.
13936         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13937         specify whether public key and public key token must be set to default
13938         value (zero-length byte array) if not available. Set versioncompat to
13939         SameMachine. If public key is available or the default is set, then
13940         set PublicKey flag.
13941         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13942         is available, use empty byte array as default value. On the 2.0
13943         profile, use default value for public key token if not set.
13944         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13945         profile, use default value for public key if not set. On the 2.0
13946         profile, use default value for public key token if not set.
13947         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13948         default values for public key and public key token.
13949
13950 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13951
13952         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13953         field to keep it in synch with the managed object.
13954
13955         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13956         delegates. Fixes #351520.
13957
13958         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13959         contains defined memory.
13960         
13961         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13962
13963         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13964         
13965         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13966         of the GC data structures.
13967
13968         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13969
13970         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13971         
13972         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13973         barrier.
13974         (mono_array_clone_in_domain): Ditto.
13975         (mono_array_clone_in_domain): Ditto.
13976
13977         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13978         (cache_culture): Use a write barrier.
13979
13980         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13981         (ves_icall_get_property_info): Ditto.
13982
13983         * object.h (MONO_STRUCT_SETREF): New macro.
13984
13985         * class-internals.h (MonoStats): Add some GC statistics.
13986
13987         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13988
13989 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13990
13991         * exception.c (mono_exception_from_name_two_strings):
13992         Break from loop after method is found.
13993
13994 2008-01-04  Dick Porter  <dick@ximian.com>
13995
13996         * process.c (process_module_string_read): Rename variable to
13997         reflect correct usage, after fixing bug 345972.
13998
13999 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
14000
14001         * verify.c (mono_type_create_fnptr_from_mono_method): 
14002         created a MonoType function pointer instance to be used during
14003         verification. The verifier releases this memory at end.
14004
14005         * verify.c (mono_method_is_constructor): extracted repeated
14006         checks for constructor into a single class.
14007
14008         * verify.c (do_push_field): use new extracted method
14009         for constructor check.
14010
14011         * verify.c (do_newobj): same.
14012
14013         * verify.c (do_ldftn): renamed to do_load_function_ptr
14014         and make it verify ldvirtftn too.
14015
14016         * verify.c (mono_method_verify: proper verification
14017         of ldvirtftn. release created MonoMethod instances.
14018
14019 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14020
14021         * verify.c (token_bounds_check): added.
14022
14023         * verify.c (do_ldftn): added.
14024
14025         * verify.c (mono_method_verify): proper verificartion of ldftn.
14026
14027 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14028
14029         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
14030         than the table row count. It's the resposibility of the caller to
14031         make the bounds check and raise the correct error.
14032
14033         * metadata.c (mono_metadata_decode_row_col): Same.
14034
14035         * loader.c (mono_get_method_from_token): perform bounds check
14036         on token for methoddef table.
14037
14038 2007-12-29  Miguel de Icaza  <miguel@novell.com>
14039
14040         * icall.c
14041         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
14042         assert into a negative result, the managed code already coped with
14043         that.
14044
14045         Some folks on Windows reported this error. 
14046
14047 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
14048
14049         * appdomain.c: Bump corlib version.
14050         * icall.c:
14051         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
14052         CultureInfo.CreateCulture to create CultureInfo for name.
14053         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
14054         create CultureInfo for name. Fixes bug #347174.
14055
14056 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14057
14058         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
14059         flags.
14060
14061         * verify.c (is_valid_branch_instruction): allow branching to the
14062         first instruction of the protected block.
14063
14064         * verify.c (is_valid_cmp_branch_instruction): same.
14065
14066         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
14067         avoid double initialization.
14068
14069         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
14070         detect which cases the eval stack should just be copied.
14071
14072         * verify.c (mono_method_verify): check if the eval stack
14073         is empty when entering a protected block.
14074
14075 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14076
14077         * verify.c: added is_clause_in_range, is_clause_inside_range,
14078         is_clause_nested and verify_clause_relationship. They perform
14079         the verifications stated in P1 12.4.2.7.
14080
14081         * verify.c (mono_method_verify): remove some unused variables,
14082         add the new exception clause checks, add instruction border
14083         checks for protected block start/end, improved some error 
14084         messages and fixed a bug in the way invalid instruction access
14085         is detected.
14086
14087 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
14088
14089         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
14090         from GC 7.0 if available.
14091
14092         * object.c: Remove an unused define.
14093         
14094         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
14095
14096         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
14097
14098         * null-gc.c (mono_gc_make_descr_for_array): Implement.
14099
14100         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
14101
14102         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
14103         to take the same arguments as the other make_descr functions.
14104
14105         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
14106
14107         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
14108         directly.
14109
14110         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
14111         mini.c.
14112
14113         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
14114         call to boehm-gc.c.
14115
14116         * boehm-gc.c (mono_gc_register_root): Fix a warning.
14117
14118         * null-gc.c (mono_gc_register_root): Fix a warning.
14119
14120         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
14121
14122         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
14123         (mono_gc_base_init): Call GC_init ().
14124
14125         * null-gc.c: Define mono_gc_register_root () as a no-op.
14126
14127         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
14128
14129 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
14130
14131         * verify.c: add prototype for merge_stacks at top
14132
14133         * verify.c (do_switch): added.
14134
14135         * verify.c (merge_stacks): on some cases the stack merging
14136         was not happening properly. Unequal stack sizes at merge
14137         points should be invalid.
14138
14139         * verify.c (mono_method_verify): added more debug info on stack state.
14140         verify switch properly.
14141
14142 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
14143
14144         * method-builder.h: New file, moved the mono_mb_ declarations here from 
14145         marshal.h.
14146
14147         * boehm-gc.c marshal.c: Include method-builder.h.
14148
14149         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
14150
14151         * marshal.c: Remove some code which is now in method-builder.c.
14152
14153 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
14154
14155         * method-builder.c: New file, extraction of the method builder functionality 
14156         from marshal.c.
14157
14158         * marshal.c: Move the mb functions into method-builder.c.
14159
14160         * marshal.h marshal.c: Export some mono_mb_... functions.
14161
14162         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
14163
14164         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
14165         the caller.
14166
14167         * class.c (mono_class_get_full): Check the token type in the dynamic case.
14168
14169         * loader.c (mono_field_from_token): Ditto.      
14170
14171         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
14172         type as well.
14173         
14174         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
14175         Fixes #342565.
14176
14177         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
14178         a helper function for setting it.
14179
14180         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
14181
14182         
14183         * assembly.c: Significally simplify code now that referenced assemblies are 
14184         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
14185
14186         * threads.h: Don't include  the internal threads-types.h header file. Fixes
14187         #349952.
14188
14189 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
14190
14191         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
14192         instructions that were target of branches or are at protected block boundaries.
14193
14194         * verify.c (in_same_block): handle filter clauses.
14195
14196         * verify.c (is_valid_branch_instruction): added. checks the target of
14197         instructions br or brtrue/false.
14198
14199         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
14200         binary branch instructions such as beq and bge.
14201
14202         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
14203         and made it pin the instruction as been part of the exception block.
14204
14205         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
14206         of in_same_block.
14207
14208         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
14209         of in_same_block.
14210
14211         * verify.c (do_ret): ret from a protected block is unverifiable and
14212         not invalid.
14213
14214         * verify.c (do_static_branch): verify br and br.s instructions.
14215
14216         * verify.c (merge_stacks): add extra param to support detection
14217         of branches in the middle of instructions.
14218         
14219         * verify.c (mono_method_verify): verify branches and exception blocks
14220         that target the middle of instructions. Proper verification of br and br.s.
14221
14222 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
14223
14224         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
14225         skip_visibility field.
14226         (reflection_methodbuilder_from_dynamic_method): Ditto.
14227
14228         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
14229         registrations. Fixes #348193.
14230
14231         * threads.h: Move the internal mono_thread_get_pending_exception () to
14232         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
14233
14234 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
14235
14236         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
14237         icall registration. Fixes #348193.
14238
14239         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
14240         for corlib classes into object. Fixes #349621.
14241
14242 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
14243
14244         * icall.c (property_accessor_nonpublic): new function to determine
14245         whether an accessor allows a property to be considered non-public.
14246         Returns false for private accessor(s) from parent class, and internal
14247         accessor(s) from parent on 2.0 profile (and higher).
14248         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
14249         to determine whether property should be included if NonPublic flag
14250         is set. Fixes bug #349078.
14251
14252 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
14253
14254         * verify.c (init_stack_with_value): added.
14255
14256         * verify.c (mono_method_verify): extracted common
14257         code for exception initialization into init_stack_with_value.
14258
14259         * verify.c (mono_method_verify): initialize the exception
14260         for handler clauses as well.
14261
14262         * verify.c (mono_method_verify): fix the exception clause
14263         ordering rules, it should use handler end offset and not
14264         start offset.
14265
14266 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
14267
14268         * rawbuffer.c: remove useless warning.
14269
14270 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
14271
14272         * threads.h, threads-types.h: move functions to the correct header
14273         (fixes bug#349952).
14274
14275 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14276
14277         * verify.c (mono_method_verify): proper verification
14278         of exception handling clauses ranges and fallthru in
14279         and out of protected blocks.
14280
14281 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14282
14283         * verify.c (mono_method_verify): fixed compilation issue.
14284
14285 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14286
14287         * verify.c (mono_method_verify): a printf slipped in, changed
14288         to use verifier debug macro.
14289
14290 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
14291
14292         * verify.c (is_correct_leave): check for filter clauses.
14293
14294         * verify.c (do_filter): added.
14295
14296         * verify.c (mono_method_verify): property verification of leave.
14297
14298
14299 2007-12-18  Mark Probst  <mark.probst@gmail.com>
14300
14301         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
14302         Win32 build, until we figure out how to do the proper thing on
14303         Win32.
14304
14305 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
14306
14307         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
14308         by the previous patch.
14309         
14310         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
14311         the assembly resolve handler for refonly assemblies.
14312
14313 2007-12-17  Mark Probst  <mark.probst@gmail.com>
14314
14315         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
14316         Make sure only one thread is allowed to commence shutdown, and
14317         don't allow new threads to be started once shutdown is in
14318         progress.
14319
14320 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
14321
14322         * verify.c (is_correct_endfilter): added.
14323
14324         * verify.c (is_unverifiable_endfilter): added.
14325
14326         * verify.c (do_endfilter): added.
14327
14328         * verify.c (mono_method_verify): property verification of endfilter
14329         and fixed a corner case or endfinally.
14330
14331 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
14332
14333         * verify.h: new flags to support fail fast of unverifiable code and
14334         do non-strict verification. Non-strict verification is required to
14335         have MS runtime compatibility. There are a huge amount of unverifiable
14336         code that it accepts as verifiable. The strict mode verifies the code
14337         as the specs says.
14338         Non-strict mode will be required in cases where code needs to be
14339         accepted as verifiable but fails under strict mode.
14340
14341         * pedump.c: added support to fail fast and non-strict verification.
14342
14343         * verify.c: added support for both fail fast and non-strict verification.
14344
14345 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
14346
14347         * verify.c (is_correct_endfinally): added.
14348
14349         * verify.c (mono_method_verify): property verification of endfinally.
14350
14351 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14352
14353         * verify.c (in_any_block): check for filter clauses.
14354
14355         * verify.c (is_correct_rethrow): added.
14356
14357         * verify.c (mono_method_verify): property verification of rethrow.
14358
14359         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
14360
14361 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14362
14363         * verify.c (do_throw): added.
14364
14365         * verify.c (mono_method_verify): property verification of throw
14366
14367 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
14368
14369         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
14370         assemblies. Fixes #346425.
14371
14372 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
14373
14374         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
14375         FieldBuilders.
14376
14377         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
14378
14379         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
14380         prevent asserts when this is called with a token which might not be valid.
14381
14382         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
14383         lookup_dynamic_token_class with valid_token == FALSE.
14384
14385         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
14386
14387         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
14388
14389         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14390         
14391 2007-12-10  Mark Probst  <mark.probst@gmail.com>
14392
14393         * gc.c: Don't delay threadpool thread finalization unless Mono is
14394         shutting down.
14395
14396 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14397
14398         * threads.c: turn an assert into a non-fatal warning.
14399
14400 2007-12-09  Robert Jordan  <robertj@gmx.net>
14401
14402         * icall.c (GetVirtualMethod): Add missing argument validation.
14403
14404 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14405
14406         * verify.c (do_cast): added.
14407
14408         * verify.c (mono_method_verify): property verification of castclass and isinst.
14409
14410
14411 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14412
14413         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14414
14415         * verify.c (do_stelem): added.
14416
14417         * verify.c (mono_method_verify): property verification of stelem.X.
14418
14419 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14420
14421         * class.c, class-internals.h: Introduce an environment variable
14422         (MONO_GENERIC_SHARING) through which the extent of generic code
14423         sharing can be controlled (share all classes, share only corlib
14424         classes, or share nothing).
14425
14426         * object.c: Only create runtime generic context for classes for
14427         which sharing is enabled.
14428
14429 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14430
14431         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14432
14433         * verify.c (mono_method_verify): property verification of ldelem.any.
14434
14435 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14436
14437         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14438         added ldelem.X opcodes.
14439
14440         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14441
14442         * verify.c: proper verification of ldelem.X 
14443
14444 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14445
14446         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14447
14448 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14449
14450         * verify.c (mono_method_verify): null literal requires special handling,
14451         the value pushed on stack need to be flagged as so.
14452
14453         * verify.c (do_ldelema): Verify ldelema properly.
14454
14455 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14456
14457         * verify.c: Verify ldlen properly.
14458
14459 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14460
14461         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14462         to the target object's type. Fixes #346160.
14463
14464 2007-12-05  Dick Porter  <dick@ximian.com>
14465
14466         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14467         Solaris needs the same workaround as BSD-derived systems.  Fixes
14468         bug 323524, patch by Burkhard Linke
14469         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14470
14471 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14472
14473         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14474         handle to use when error dialog is shown; otherwise, update mask
14475         to show no error dialog when an error occurs.
14476
14477 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14478
14479         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14480
14481         * class.c (mono_class_get_field_default_value): New helper function to initialize
14482         field->def_type and field->data.
14483
14484 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14485
14486         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14487         the general one.
14488
14489         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14490
14491         * marshal.c: Avoid depending on delegate->method_info being set.
14492
14493         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14494         
14495         * object.c (mono_delegate_ctor): Set delegate->method.
14496
14497         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14498
14499         * appdomain.c: Bump corlib version.
14500
14501 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14502
14503         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14504         equality check if we're comparing canonicalized MonoGenericInsts.
14505
14506 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14507
14508         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14509         accessing class->methods.
14510
14511 2007-11-22  Dick Porter  <dick@ximian.com>
14512
14513         * threads.c: Ensure that the synch_cs is set before trying to use
14514         it.
14515
14516 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14517
14518         * profiler.c: r89126 broke the statistial profiler, unbreak.
14519
14520 2007-11-22  Martin Baulig  <martin@ximian.com>
14521
14522         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14523
14524         * mono-debug.c
14525         (mono_debug_debugger_version): Bump to 3.
14526         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14527         -> mono_debugger_class_initialized().
14528
14529         * mono-debug-debugger.c
14530         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14531
14532         * class.c
14533         (mono_debugger_start_class_init_func): Removed.
14534         (mono_debugger_class_loaded_methods_func): Added.
14535         (mono_class_setup_methods): Call it here.
14536
14537 2007-11-22  Martin Baulig  <martin@ximian.com>
14538
14539         * mono-debug.c
14540         (mono_debug_add_delegate_trampoline): New public method.
14541         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14542
14543         * mono-debug.h
14544         (MonoSymbolTable): Added `global_data_table'.
14545         (MonoDebuggerTypeKind): Removed.
14546
14547 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14548
14549         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14550         these methods.
14551
14552         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14553         
14554 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14555
14556         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14557
14558 2007-11-20  Martin Baulig  <martin@ximian.com>
14559
14560         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14561
14562         * mono-debug-debugger.c
14563         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14564         (mono_debugger_remove_breakpoint): Likewise.
14565         (mono_debugger_check_breakpoints): Likewise.
14566         (mono_debugger_register_class_init_callback): New public method.
14567         (mono_debugger_remove_class_init_callback): Likewise.
14568         (mono_debugger_add_type): Likewise.
14569
14570         * mono-debug-debugger.h
14571         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14572
14573 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14574
14575         * class.c: more interface implementations needed for the
14576         array enumerator (fixes bug #341112).
14577
14578 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14579
14580         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14581         fix ParamName of ArgumentNullExceptions.
14582
14583 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14584
14585         * reflection.c (mono_reflection_encode_sighelper): Generate the
14586         modopts and modreqs.   I have a useless test that crashes monodis,
14587         but that shows the code working.
14588
14589 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14590
14591         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14592         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14593
14594 2007-11-15  Dick Porter  <dick@ximian.com>
14595
14596         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14597         When joining a thread, it's the thread that's calling Join that
14598         gets WaitSleepJoin state not the target.  Fixes the standalone
14599         test case in bug 334740, and hopefully the whole bug too.
14600
14601 2007-11-15  Dick Porter  <dick@ximian.com>
14602
14603         * process.c: Read file version info from the files pointed at by
14604         process modules, not the current process.  Fixes bug 315969.
14605
14606         Use windows typedef names in some places to fix warnings on the
14607         windows build.
14608
14609 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14610
14611         * image.c, metadata-internals.h: Added a generic_class_cache hash
14612         to MonoImage for looking up generic classes when sharing generics.
14613
14614 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14615
14616         * sgen-gc.c: warning cleanups.
14617
14618 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14619
14620         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14621         inherited properties.
14622
14623 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14624
14625         * object.c, class-internals.h: Added more information to the
14626         runtime generic context.
14627
14628 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14629
14630         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14631         instead of just the target method. Generalize the abstract method handling to
14632         handle any non-static method.
14633
14634         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14635         mono_marshal_get_delegate_invoke () signature change.
14636
14637 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14638
14639         * class.c, class-internals.h: Made
14640         mono_type_get_basic_type_from_generic () public.  Fixed member
14641         access check for shared generics.
14642
14643         * loader.c: Don't insert field into field cache if it's part of a
14644         non-inflated generic class.
14645
14646         * domain.c, domain-internals.h: The generic sharing context is now
14647         part of the jit info data structure.  Added two accessor
14648         functions.
14649
14650 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14651
14652         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14653         the array Get/Set/Address methods, since the JIT inlines them.
14654
14655         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14656
14657         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14658         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14659
14660         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14661         mono_marshal_get_delegate_invoke signature change.
14662
14663         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14664         an additional argument. Add support for invoking abstract methods.
14665
14666         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14667
14668         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14669
14670 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14671
14672         * class.c: Do field layout for open generic classes as well.
14673
14674 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14675
14676         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14677         other objects, because the threadpool is still around.  Put them
14678         in a list instead and after finalizing all other objects in the
14679         root domain shut down the thread pool and then finalize the
14680         threads.  Fixes bug #337383.
14681
14682         * threads.c, thread-types.h: New mono_thread_create_internal()
14683         function for marking a thread with the threadpool flag before it
14684         started.  Set synch_cs to NULL after freeing it.
14685
14686         * threadpool.c: Mark threadpool threads before they start.
14687
14688 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14689
14690         * reflection.h, reflection.c: don't export random functions
14691         and lazy load dbnull and missing objects.
14692
14693 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14694
14695         * class.c: Initialize COM types if COM interfaces
14696         are present (not just COM classes).
14697         
14698         Code is contributed under MIT/X11 license.
14699
14700 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14701         * reflection.c:
14702         create_dynamic_mono_image: hook module profiler events (dynamic case).
14703         mono_image_basic_init: hook assembly profiler events (dynamic case).
14704
14705 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14706         * profiler.c:
14707         simple_appdomain_unload: completely terminate the profiler
14708         instead of only processing the statistical samples.
14709         simple_shutdown: make sure this is really called exactly once,
14710         even in multithreaded applications, and always listen to
14711         appdomain events.
14712         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14713         here, the "[un]load" functions will do it.
14714         Fixes bugs #333791 and #325261.
14715
14716 2007-11-07  Geoff Norton  <gnorton@novell.com>
14717
14718         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14719         rather than depend on __APPLE__.
14720
14721 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14722
14723         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14724
14725 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14726
14727         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14728         UTF16 MonoString. Fix the crash from bug #335488
14729
14730 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14731
14732         * marshal.c: Correct (for non-Win32 OS) length != size in 
14733         mono_string_from_bstr. Fix #339530.
14734
14735 2007-11-06  Geoff Norton  <gnorton@novell.com>
14736
14737         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14738         to succeed
14739
14740 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14741
14742         * process.c: Added run-time GetProcessId API detection for Windows.
14743
14744 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14745
14746         * reflection.c  (mono_param_get_objects): If a parameter has the
14747         attribute [System.Runtime.InteropServices.Optional] we should
14748         set the DefaultValue of the ParameterInfo to be
14749         System.Reflection.Missing instead of DBNull.
14750
14751         See bug #339013.
14752
14753         (mono_get_reflection_missing_object): New method,
14754         returns the System.Reflection.Missing.Value singleton instance.
14755
14756 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14757
14758         * culture-info-table.h : regenerated.
14759
14760 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14761
14762         * icall.c: Use GetEnvironmentStrings on windows
14763         so we are using the same environment block as 
14764         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14765         #333740.
14766         
14767         Code is contributed under MIT/X11 license.
14768
14769 2007-10-31  Martin Baulig  <martin@ximian.com>
14770
14771         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14772
14773         * mono-debug-debugger.h
14774         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14775
14776 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14777
14778         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14779         classes.
14780
14781 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14782
14783         * culture-info-table.h : regenerated.
14784
14785 2007-10-30  Robert Jordan  <robertj@gmx.net>
14786
14787         * icall-def.h, icall.c:
14788         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14789
14790         Code is contributed under MIT/X11 license.
14791
14792 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14793
14794         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14795         inflated class instead of inflating them again.
14796         
14797         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14798         dynamic case.
14799
14800         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14801         Call setup_supertypes () after klass->parent is set.
14802         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14803
14804         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14805         for inflated instances of not yet created dynamic generic classes.
14806         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14807         times from inflated_method.
14808         (methodbuilder_to_mono_method): Ditto.
14809
14810 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14811
14812         * gc.c: code cleanup and removed old untested option of not creating the
14813         finalizer thread.
14814
14815 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14816
14817         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14818         creating a jump trampoline for dynamic methods.
14819
14820 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14821
14822         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14823         generic TypeBuilders when called from another method of the same type (bug #335131).
14824
14825
14826 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14827
14828         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14829         doesn't seem to work perfectly.
14830         
14831         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14832         called multiple times.
14833         (methodbuilder_to_mono_method): Ditto.
14834         (resolve_object): Inflate FieldBuilder's.
14835
14836 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14837
14838         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14839         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14840         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14841
14842 2007-10-26  Dick Porter  <dick@ximian.com>
14843
14844         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14845         Thread initialisation changes
14846
14847 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14848
14849         * verify.c: fix compatibility check between arrays and System.Array
14850
14851 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14852
14853         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14854         too. Fixes #336999.
14855
14856 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14857
14858         * object.c (mono_value_box): Use typed allocation here.
14859
14860 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14861
14862         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14863         trampoline instead of compiling the method right away.
14864
14865         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14866
14867 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14868
14869         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14870         related fields for dynamic classes. Fixes #334493.
14871
14872 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14873
14874         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14875         
14876         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14877
14878         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14879         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14880
14881         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14882
14883         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14884         if needed.
14885         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14886
14887 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14888
14889         * marshal.c: Use correct key when removing item
14890         from ccw_hash.
14891         
14892         Code is contributed under MIT/X11 license.
14893
14894 2007-10-17  William Holmes  <billholmes54@gmail.com>
14895
14896         *marshal.c: Adding a case to marshal booleans to U1
14897
14898         Code is contributed under MIT/X11 license.
14899
14900 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14901
14902         * class.c (mono_class_from_name): Search the modules compromising dynamic
14903         assemblies. Fixes #331601.
14904
14905 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14906
14907         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14908         exception if the type name contains an assembly component. Fixes #334203.
14909
14910         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14911         modules inside dynamic assemblies. Fixes #334200.
14912         
14913         * reflection.c: Set image->public_key and image->public_key_length;
14914
14915         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14916         fields.
14917
14918         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14919         
14920 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14921
14922         * metadata.c: Implemented correct comparing of generic classes.
14923         An inflated generic class can be equal to a non-inflated one if it
14924         is inflated with generic type variables as type arguments.  Fixes
14925         bug #333798.
14926
14927 2007-10-15  Dick Porter  <dick@ximian.com>
14928
14929         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14930         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14931         81646.
14932
14933         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14934         instead of a monitor lock.  This means that monitor_try_enter and
14935         co can set the thread state safely.
14936         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14937         thread_interrupt_requested, so interrupt actually works.
14938
14939         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14940         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14941         state accessor function
14942
14943 2007-10-15  Martin Baulig  <martin@ximian.com>
14944
14945         * mono-debug.h
14946         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14947         the debugger with the current runtime.
14948
14949 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14950
14951         * object.c, object-internals.h: added the ability to set a single
14952         trampoline for all the slots in a vtable.
14953
14954 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14955
14956         * marshal.c: deal with a possible race condition during multicast
14957         delegate invocation.
14958
14959 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14960
14961         * class.c: ensure value type methods don't have the synchronized
14962         flag set.
14963
14964 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14965
14966         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14967         breaks the build.
14968
14969 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14970
14971         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14972         to take an options parameter so that empty entries can be removed during
14973         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14974
14975 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14976
14977         * marshal.c: make sure we don't store the signature from a dynamic
14978         method into the runtime invoke cache (bug #327189).
14979
14980 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14981
14982         * marshal.c: make sure the wrapper methods are properly initialized.
14983
14984 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14985
14986         * metadata.c, metadata-internals.h: Generalized
14987         mono_type_stack_size() to mono_type_stack_size_internal() which
14988         takes an additional argument specifying whether it allows open
14989         types.
14990
14991 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14992
14993         * verify.c (do_invoke_method): handle typedbyref params
14994         correctly and check for unverifiable return values.
14995
14996         * verify.c (do_newobj): fix a warning.
14997
14998 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14999
15000         * verify.c: don't tread typedbyref as allways unverifable,
15001         so uses, like (ld/st)loc.0 are valid. verify for the cases
15002         that it matters, like boxing related operations.
15003
15004 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
15005
15006         * verify.c: add verification of the newobj opcode. verification
15007         of delegate instantation still missing due ldftn and virldftn not
15008         pushing the function type on stack
15009
15010 2007-10-08  Mark Probst  <mark.probst@gmail.com>
15011
15012         * class-internals.h: Runtime generic context data structure
15013         definition.
15014
15015         * object.c: Initialization of runtime generic context at runtime
15016         vtable creation time.
15017
15018 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
15019         * class.c (mono_class_create_from_typedef,
15020         mono_class_from_generic_parameter, mono_ptr_class_get,
15021         mono_fnptr_class_get, mono_bounded_array_class_get)
15022         * domain.c (mono_domain_create, mono_domain_free)
15023         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
15024         * image.c (do_mono_image_load, mono_image_close):
15025         Hooked up load-unload profiler events.
15026
15027 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15028
15029         * domain.c: track statistics about the actual amount of native code
15030         allocated.
15031
15032 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15033
15034         * class.c: the valuetype enumerators don't have the additional
15035         supertypes interfaces.
15036
15037 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15038
15039         * class.c: need more interfaces setup for the IEnumerator<T>
15040         object created for arrays (tests/ienumerator-interfaces.2.cs).
15041
15042 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
15043
15044         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
15045
15046 2007-10-05  Alp Toker  <alp@atoker.com>
15047
15048         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15049         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15050         #315863.
15051
15052 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15053
15054         * verify.c (verify_type_compatibility_full): verification of
15055         compatibility improved, validates correctly non-strict checks between
15056         native int and I4 types different than (unsigned)int32.
15057
15058         * verify.c (do_store_indirect): added, do all verification of
15059         ldind.X opcodes. 
15060
15061         * verify.c (get_load_indirect_mono_type): renamed to
15062         get_indirect_op_mono_type, as it now returns the MonoType for 
15063         ldind.X and stind.X opcodes.
15064
15065 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15066
15067         * reflection.c: Fix the encoding of generic type definition for
15068         TypeBuilders.
15069
15070         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
15071         mono_image_typedef_or_ref but allows to specify if typespec lookups should
15072         be made. Typespec check is done prior to typeref cache lookup.
15073
15074         * reflection.c (mono_image_typedef_or_ref): now just delegate to
15075         mono_image_typedef_or_ref_full.
15076
15077         * reflection.c (encode_generic_class): encode the generic class
15078         directly instead of calling encode_type.
15079
15080         * reflection.c (encode_type): encode the generic type definition
15081         MonoClass as a generic instantiation.
15082
15083         * reflection.c (create_typespec): cache typespec tokens in
15084         the assembly->typespec cache. Don't create typespec for a generic
15085         instance MonoClass. Create typespec for the generic type defintion.
15086
15087         * reflection.c (create_generic_typespec): encode the generic
15088         class directly instead of calling encode_type.
15089
15090         * reflection.c (mono_image_create_token): encode the generic
15091         type definition not using a typespec for MonoType instances.
15092
15093
15094 2007-10-04  Raja R Harinath  <rharinath@novell.com>
15095
15096         Fix #328812
15097         * class.c (mono_image_init_name_cache): Don't return nested
15098         'protected internal' classes.
15099         (mono_class_from_name_case): Likewise.
15100
15101 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15102
15103         * icall-def.h, icall.c : get_bundled_machine_config() is now the
15104           common function used by both DefaultConfig in System.dll and
15105           InternalConfigurationHost in System.Configuration.dll.
15106
15107 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15108
15109         * class.c: automatically add to vectors only a few essential explicit
15110         generic interfaces. The rest of the interfaces that arrays should
15111         provide are currently implicitly added (but still not lazily, see the
15112         design in the discussion of bug#325495 for the details of what is
15113         needed for that). Additionally, implicit interfaces are assigned the
15114         same vtable slot as the explicit interfaces (as they are compatible):
15115         this enables huge memory savings since we don't need to instantiate
15116         as many memthods and as large vtables anymore. Also, Since
15117         GetEnumerator<T> returns an instance of a type that is required to
15118         support a similarly large set of interfaces as arrays, we add
15119         implicit interfaces and interface offset sharing support to those
15120         types, too. This change adds all the required interfaces so that
15121         the anonarray.cs test case in the bug report works (we don't add
15122         all the interfaces to arrays of arrays 3-level deep and more because
15123         of the memory requirements explained in the bug and since they are much
15124         less common: the lazy-loading support will enabled them to work, too).
15125
15126 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15127
15128         * verify.c (merge_stacks): major clean up, all type compatibility
15129         checks are done by verify_type_compatibility. This fix my earlier lack
15130         of understanding of the CLR type system and merge_stacks no longer looks
15131         scary.
15132
15133         * verify.c: fixed some bad spelling.
15134
15135 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15136
15137         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
15138         a given stack slock.
15139         
15140         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
15141         verify_type_compatibility_full. This removed a near indentical function and fixed
15142         handling of Int32 and IntPtr across all opcodes.
15143
15144 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15145
15146         * class.c: only vectors have the additional generic interfaces.
15147
15148 2007-10-01  Jonathan Chambers <joncham@gmail.com>
15149
15150         * mono-config.c: Use g_strcasecmp instead of
15151         strcasecmp like everywhere else to fix
15152         compilation with MSVC.
15153         
15154         Code is contributed under MIT/X11 license.
15155
15156 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15157
15158         * object.c, object-internals.h: refactored the IMT code to enable
15159         building a single slot at a time and lazily creating the IMT trampolines
15160         and thunks.
15161
15162 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
15163
15164         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
15165
15166         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
15167         Fixes #328501.
15168         
15169 2007-09-29  Raja R Harinath  <harinath@gmail.com>
15170
15171         * loader.c (method_from_methodspec): Rearrange to avoid
15172         un-necessary exposition.  Don't assert out if the method's
15173         declaring type is a generic type definition.
15174
15175 2007-09-28  Martin Baulig  <martin@ximian.com>
15176
15177         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
15178
15179 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15180
15181         * class-internals.h: optimize field layout of MonoClass to
15182         requires less cachelines at runtime and save a few bytes on 64 bit
15183         systems.
15184
15185 2007-09-28  Jb Evain  <jbevain@novell.com>
15186
15187         * reflection.c: when encoding type names in custom attributes,
15188         if the type is a closed generic type, its generic arguments
15189         have to be serialized as AssemblyQualifiedName, so that when
15190         they are deserialized, it's possible to re-create them properly.
15191         Fixes #329450.
15192
15193
15194 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15195
15196         * object.c, class-internals.h: added delegate-creation counter.
15197
15198 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15199
15200         * class.c: cleanup of the code that synthetizes interfaces for
15201         arrays in 2.0: saves quit a bit of corlib mempool memory.
15202         Code to fix bug #325495 ifdeffed out for now until the issues
15203         with memory usage and O(n^2) behaviour are fixed.
15204
15205 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15206
15207         * marshal.c: when possible, do not duplicate the name of the methods
15208         in the method builder and in the generated MonoMethod.
15209
15210 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15211         * verify.c: added support for type checking ldind_* opcodes.
15212
15213 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15214
15215         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
15216         which is used to distinguish the fully open instantiation of a TypeBuilder
15217         with the rest. This temporary hack is required to restore the property that
15218         the fully open instantiation is the same type of the generic type definition.
15219
15220         * class-internals.h (mono_generic_class_is_generic_type_definition):
15221         new function as part of the internal API.
15222
15223         * class.c (inflate_generic_type): return NULL when the generic inst is
15224         fully open. The fully open generic type is now the same as the generic type
15225         definition for non TypeBuilder types.
15226
15227         * class.c (mono_generic_class_get_class): removed assert since it is
15228         no longer valid, gklass->cached_class can point to the generic type definition.
15229
15230         * class.c (mono_generic_class_is_generic_type_definition): new.
15231
15232         * metadata.c (mono_generic_class_hash): added is_tb_open field
15233         to the hash calculation.
15234
15235         * metadata.c (free_generic_class): if the generic class is associated
15236         with the generic type definition, its field will come from the mempool and
15237         must not be freed.
15238
15239         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
15240         new, this function identifies the corner case of a TypeBuilder fully open
15241         instantiation.
15242
15243         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
15244         for lookup. Set gclass->cached_class to be the container class in case of
15245         the fully open instantiation of non TypeBuilder types.
15246
15247         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
15248         to compare generic classes.
15249
15250         * reflection.c (method_encode_methodspec): remove assert that
15251         no longer is valid.
15252
15253         * reflection.c (mono_reflection_generic_class_initialize): add
15254         an aditional assert to ensure the proper type is used.
15255
15256 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
15257
15258         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
15259         to enjoy it.
15260
15261 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15262
15263         * verify.c (push_arg): Fixed support for ldarga
15264         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
15265         MonoType used as first arg in case of instance calls.
15266
15267 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15268
15269         * verify.c: Support for verifying VAR and MVAR types, 
15270
15271 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
15272
15273         * icall.c (ves_icall_get_property_info): Set the reflected type of the
15274         accessors correctly.
15275
15276 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15277
15278         * threads.c: support OSX and other systems in
15279         mono_thread_get_stack_bounds (bug #328026).
15280
15281 2007-09-25  Martin Baulig  <martin@ximian.com>
15282
15283         * mono-debug.h
15284         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
15285
15286 2007-09-24  Martin Baulig  <martin@ximian.com>
15287
15288         * mono-debug.h
15289         (MonoDebugClassEntry): Moved the definition of this struct into
15290         mono-debug.c to make it private.
15291
15292         * mono-debug.c
15293         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
15294         type table per symbol file, we don't need to store the symfile id
15295         any longer.
15296
15297 2007-09-24  Martin Baulig  <martin@ximian.com>
15298
15299         Create one type table per symbol file, since a `MonoClass *' gets
15300         invalid when its image is unloaded.
15301
15302         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
15303         (MonoDebugHandle): Added `type_table'.
15304
15305 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15306
15307         * mempool.c, mempool.h: added mono_mempool_new_size () API
15308         to be able to specify a smaller initial size for the pool.
15309         Adjusted the code to slowly increase pool size before using
15310         the previous default size.
15311         * image.c: use a small initial size for image mempools.
15312
15313 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
15314
15315         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
15316         Fixes ##320990.
15317
15318         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
15319         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
15320
15321 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
15322
15323         * metadata.c (mono_type_create_from_typespec): Remove an invalid
15324         free. Fixes #327438.
15325
15326 2007-09-21  Raja R Harinath  <harinath@gmail.com>
15327
15328         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
15329         generic instantiations, etc.
15330         <MONO_TYPE_ARRAY>: Likewise.
15331
15332 2007-09-21  Martin Baulig  <martin@ximian.com>
15333
15334         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
15335         these structs were never defined.
15336         (MonoDebugHandle): Removed the `_priv' field, it was never used.
15337
15338 2007-09-21  Martin Baulig  <martin@ximian.com>
15339
15340         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
15341
15342 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
15343
15344         * image.c: removed the guid hash tables: we can get the same info
15345         without the additional memory usage hit (partially fixes also bug #327052).
15346
15347 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15348
15349         * profiler.h, profiler-private.h, profiler.c: add a new profiler
15350         event to handle unloading methods. After the event is called, the
15351         corresponding MonoMethod* must be considered invalid.
15352         * loader.c (mono_free_method): call the new mono_profiler_method_free
15353         event.
15354
15355 2007-09-20  Mark Probst  <mark.probst@gmail.com>
15356
15357         * domain-internals.h: New flag in MonoJitInfo which marks shared
15358         generic methods.  New hash table (shared_generics_hash) in
15359         MonoDomain to keep track of shared generic methods.  Prototypes
15360         for functions to register and lookup shared generic methods.
15361
15362         * domain.c: Support for registering and looking up shared generic
15363         methods via a hash table (shared_generics_hash) in MonoDomain.
15364
15365         * class-internals.h: New exception to signal failure of shared
15366         compilation of a generic method.  New counters for generics
15367         sharing in MonoStats.
15368
15369 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15370
15371         * image.c, metadata-internals.h: don't keep a file descriptor open
15372         for loaded assemblies (bug#325988).
15373
15374 2007-09-19  Raja R Harinath  <rharinath@novell.com>
15375
15376         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
15377         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
15378         use the corresponding datatypes.
15379         (type_in_image): Update to changes.
15380         (CleanForImageUserData): Simplify.
15381         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
15382         Avoid quadratic behaviour in handling the "stolen" list by
15383         separating the filter predicate out, and by prepending the stolen
15384         items rather than appending them.
15385         (steal_ginst_in_image): Likewise.
15386         (mono_metadata_clean_for_image): Update to changes.
15387
15388 2007-09-19  Martin Baulig  <martin@ximian.com>
15389
15390         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
15391
15392 2007-09-19  Martin Baulig  <martin@ximian.com>
15393
15394         * mono-debug.c (mono_debug_cleanup): Don't call
15395         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15396
15397 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15398
15399         Fix crash on 'make run-test' in mcs/errors
15400         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15401         Avoid more potential allocations in mono_class_from_mono_type.
15402         (ginst_in_image): Update to changes.
15403         (gclass_in_image): Rearrange slightly.
15404
15405 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15406
15407         * class.c (mono_class_init): Move the code that sets up class->methods to 
15408         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15409
15410         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15411         canonical instance of an inflated generic signature.
15412         (mono_type_create_from_typespec): Remove an invalid free.
15413
15414         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15415
15416 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15417
15418         * domain-internals.h: added a declaration of the
15419         mono_assembly_load_full_nosearch internal function.
15420
15421         * assembly.c (mono_assembly_load_with_partial_name): use
15422         mono_try_assembly_resolve return value properly.
15423         (mono_assembly_load_full_nosearch): copied the function body from
15424         mono_assembly_load_full, without the code to invoke assembly
15425         search hooks.
15426         (mono_assembly_load_full): calls the above new function and if the
15427         assembly is not resolved, invokes the search hooks.
15428
15429         * appdomain.c (mono_runtime_init): restore the global postload
15430         assembly search handlers.
15431
15432 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15433
15434         * class.c (mono_class_init): Make sure class->methods and class->properties
15435         are never NULL in the generics case.
15436
15437         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15438
15439 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15440
15441         * metadata.c (free_generic_class): Disable some code to fix the build.
15442
15443         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15444
15445         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15446         from the image mempool.
15447
15448         * metadata.c (free_generic_class): Free more data from the inflated class.
15449
15450         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15451
15452         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15453         mempool.
15454         (mono_type_create_from_typespec): Ditto.
15455
15456         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15457         MonoImage to the caller.
15458         (mono_init_internal): Save the opened image in a global variable.
15459         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15460
15461         * reflection.c (resolve_object): Fix a leak.
15462
15463         * metadata.c: Fix the freeing of data in the generics caches.
15464         
15465         * metadata.c (free_generic_inst): Comment this out to fix the build.
15466         (free_generic_class): Ditto.
15467
15468         * metadata.c: Free cached generic methods, instantinations and classes when
15469         they are removed from the caches.
15470         (mono_metadata_free_type): Free the type itself.
15471
15472         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15473         places.
15474
15475 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15476
15477         * boehm-gc.c: restrict managed allocs to __thread supporting
15478         architectures.
15479
15480 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15481
15482         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15483         (mono_generic_class_get_class): Fix a leak.
15484
15485         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15486         mono_metadata_free_type ().
15487         (mono_metadata_inflate_generic_inst): Fix a leak.
15488
15489 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15490
15491         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15492
15493         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15494         mempool.
15495
15496         * mono-debug.c (mono_debug_close_image): Fix call to 
15497         g_hash_table_remove ().
15498
15499 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15500
15501         * icall-def.h: redirect all the string ctor to the managed
15502         CreateString () methods.
15503         * string-icalls.c, string-icalls.h: removed dead code for string
15504         ctors and icalls.
15505
15506 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15507
15508         * mono-debug.c: Fix memory leaks.
15509
15510 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15511
15512         * threads-types.h: Implement mono_hazard_pointer_set and 
15513         mono_hazard_pointer_clear macros using do/while(0) to fix
15514         compilation with MSVC.
15515         
15516         Code is contributed under MIT/X11 license.
15517
15518 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15519
15520         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15521         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15522
15523 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15524
15525         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15526         icalls.
15527
15528 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15529
15530         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15531         managed-code allocated as well.
15532
15533 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15534
15535         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15536
15537 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15538
15539         * boehm-gc.c: fixed the build after the AOT changes.
15540
15541 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15542
15543         * wrapper-types.h: Add an ALLOC wrapper type.
15544
15545         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15546         reference managed allocator methods.
15547
15548 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15549
15550         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15551         of Type array and not MonoType, a fix suggested by Hari.
15552         
15553 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15554
15555         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15556         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15557         
15558         Code is contributed under MIT/X11 license.
15559
15560 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15561
15562         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15563
15564 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15565
15566         * image.c (do_mono_image_open): if assembly file fails to open and
15567         MONO_IOMAP is in effect, try to find the path in a
15568         case-insensitive way.
15569
15570         * appdomain.c (mono_runtime_init): do not install postload hooks -
15571         tests show that MS.NET doesn't use anything of that sort to
15572         trigger the AppDomain.AssemblyResolve event.
15573         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15574         made non-static.
15575         (mono_runtime_init): init portability helpers here.
15576
15577         * assembly.c (mono_assembly_load_with_partial_name): if other   
15578         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15579         to resolve the assembly.
15580
15581         * domain-internals.h: added mono_try_assembly_resolve and marked
15582         it as internal.
15583
15584 2007-09-11  Jb Evain  <jbevain@novell.com>
15585
15586         * object-internals.h (MonoReflectionDynamicMethod): add
15587         a `MonoReflectionType *owner` field. The owner is used
15588         * reflection.c:
15589         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15590         method as the class declaring the dynamic method.
15591         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15592         dynamic method to the declaring type of the methodbuilder.
15593
15594 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15595
15596         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15597         rules for calling methods via reflection.
15598
15599 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15600
15601         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15602         Inflate MonoType's.
15603
15604 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15605
15606         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15607         provide a managed method that does fast allocations without needing
15608         a managed->unmanaged transition. Boehm GC implementation currently
15609         enabled for ptrfree objects on sane architectures.
15610
15611 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15612
15613         * marshal.c, marshal.h: exported a couple of useful functions and
15614         added mono_mb_get_label () to easily handle backward branches.
15615
15616 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15617
15618         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15619
15620 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15621
15622         * loader.c (find_method): Fixed the regression introduced while
15623         fixing bug #81466.
15624
15625 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15626
15627         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15628         well.
15629         
15630         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15631         icall.c reflection.c: Pass a MonoGenericContext argument to 
15632         mono_lookup_dynamic_token ().
15633
15634         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15635         #82744.
15636         
15637 2007-09-09  Robert Jordan  <robertj@gmx.net>
15638
15639         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15640         for generic methods.
15641
15642         * object.c (mono_object_get_virtual_method): Handle generic methods.
15643         Fixes bug #78882.
15644
15645         Code is contributed under MIT/X11 license.
15646
15647 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15648
15649         * image.c: fix locking in mono_image_load_file_for_image ().
15650
15651 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15652
15653         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15654         used only as a cache: added an icall to fill it.
15655
15656 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15657
15658         * reflection.h: exposed mono_reflection_free_type_info
15659         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15660         since mono_reflection_bind_generic_parameters makes a copy of it.
15661         * reflection.c (free_type_info): subinfos should be freed.
15662         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15663         made non static.
15664         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15665         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15666         this fixes #82695 and #81726.
15667    
15668
15669 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15670
15671         * process.h, process.c:  added support for user profile/info in
15672           ProcessStartInfo. For now only Windows works.
15673
15674 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15675
15676         * metadata.c: consider the generic arguments when comparing
15677         signatures (bug #82614).
15678
15679 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15680
15681         * cil-coff.h, image.c: updated assembly loader to cope with the
15682         PE32+ 64 bit file format.
15683
15684 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15685
15686         * assembly.c, class.c, domain.c, loader.c: remove useless
15687         inclusion of cil-coff.h.
15688
15689 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15690
15691         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15692         if interface is marked with CoClassAttribute. 
15693    
15694         Code is contributed under MIT/X11 license.
15695
15696 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15697
15698         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15699         if it's seen twice in major collections.
15700
15701 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15702
15703         * sgen-gc.c: big objects are not copied to the gray area, but they
15704         need to be considered for scanning, too, if they are brought alive
15705         by an object ready for finalizations or a survived one.
15706
15707 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15708
15709         * sgen-gc.c: properly account the number of disappearing links when
15710         they are nullified.
15711
15712 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15713
15714         * sgen-gc.c: share the code to scan the registered roots between the
15715         different types of collections.
15716
15717 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15718
15719         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15720
15721 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15722
15723         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15724         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15725
15726 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15727
15728         * security-manager.c (mono_security_manager_get_methods):
15729         LinkDemandSecurityException now has 2 arguments instead of 3.
15730
15731 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15732
15733         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15734         platforms which need it.
15735
15736 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15737
15738         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15739         dtor.
15740
15741 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15742
15743         * threads.c: free the thread static data on thread exit.
15744
15745 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15746
15747         * class.c: walk the hierarchy to find the generic definition for
15748         a class (fixes runtime part of bug #82498).
15749
15750 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15751
15752         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15753         ...
15754
15755         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15756
15757 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15758
15759         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15760
15761 2007-08-24  Robert Jordan  <robertj@gmx.net>
15762
15763         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15764
15765 2007-08-24  Jb Evain  <jbevain@novell.com>
15766
15767         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15768         for byref types.
15769
15770 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15771
15772         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15773         #82286.
15774
15775 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15776
15777         * assembly.c: Fix a warning.
15778         
15779 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15780
15781         * appdomain.c: parse the <runtime> section looking for the probing
15782         element with the 'privatePath' attribute, which sets additional
15783         directories in which the runtime should look for assemblies.
15784
15785 2007-08-23  Robert Jordan  <robertj@gmx.net>
15786
15787         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15788         Fixes #82499.
15789
15790 2007-08-23  Martin Baulig  <martin@ximian.com>
15791
15792         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15793         _mono_debug_init_corlib() and remove it from the header file.
15794
15795 2007-08-23  Martin Baulig  <martin@ximian.com>
15796
15797         * mono-debug-debugger.c
15798         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15799         don't notify the debugger about it.
15800
15801         * mono-debug-debugger.h
15802         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15803
15804 2007-08-23  Robert Jordan  <robertj@gmx.net>
15805
15806         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15807         Code is contributed under MIT/X11 license.
15808
15809 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15810
15811         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15812
15813 2007-08-22  Martin Baulig  <martin@ximian.com>
15814
15815         * mono-debug.c: Store debugging info on a per-domain basis and
15816         free it on domain unload.  Add support for unloading symbol files.
15817
15818         * mono-debug.h
15819         (MonoDebugList): New typedef.
15820         (MonoSymbolTable):
15821         - add `data_tables and `type_table'.
15822         - replace 'symbol_files' and `num_symbol_files' with a
15823           `MonoDebugList *'.
15824         (mono_debug_data_table): Removed.
15825         (mono_debug_list_add): New public function.
15826         (mono_debug_list_remove): New public function.
15827         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15828         (mono_debug_init_2_memory): Renamed into
15829         mono_debug_open_image_from_memory().
15830         (mono_debug_close_image): New public function.
15831         (mono_debug_domain_create): Likewise.
15832         (mono_debug_domain_unload): Likewise.
15833         (MONO_DEBUGGER_VERSION): Bump to 60.
15834
15835         * mono-debug-debugger.h
15836         (MonoDebuggerEvent):
15837         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15838         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15839         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15840         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15841           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15842         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15843           meaning.
15844         (mono_debugger_add_symbol_file): Removed.
15845         (mono_debugger_add_type): Removed.
15846         (mono_debugger_lookup_type): Removed.
15847         (mono_debugger_lookup_assembly): Removed.
15848
15849         * domain.c
15850         (mono_domain_create): Call mono_debug_domain_create().
15851         (mono_init_internal): Call mono_debug_init_corlib().
15852
15853         * assembly.c
15854         (mono_assembly_close): Call mono_debug_close_image().
15855
15856 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15857
15858         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15859         mmap call.
15860
15861 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15862
15863         * sgen-gc.c: ensure section->pin_queue_end is initialized
15864         correctly when non pinning objects in the section have been found.
15865
15866 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15867
15868         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15869         containing a list of directories separated by ':'. MSDN docs say
15870         the directories should be separated with ';'. Part of a bugfix for
15871         bug #81446
15872
15873 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15874
15875         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15876         it should MonoType and not MonoClass.
15877
15878 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15879
15880         * culture-info-table.h : regenerated.
15881
15882 2007-08-20  William Holmes  <billholmes54@gmail.com>
15883
15884         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15885          to call ReplaceFile Kernel32 on windows or in io-layer.
15886         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15887         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15888          as an internal call.
15889
15890         Code is contributed under MIT/X11 license.
15891
15892 2007-08-20  Jb Evain  <jbevain@novell.com>
15893
15894         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15895         and MONO_EXCEPTION_FIELD_ACCESS.
15896
15897         * debug-helpers.[c|h]: new mono_field_full_name function.
15898
15899 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15900
15901         * class.c: Removed class_security_level() and moved it to
15902         security-core-clr.c.
15903
15904         * security-core-clr.c, security-core-clr.h: class_security_level()
15905         is now public and renamed to mono_security_core_clr_class_level().
15906         It also looks for security attributes in the classes a class is
15907         nested in.
15908
15909 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15910
15911         * security-core-clr.c, security-core-clr.h: CoreCLR security
15912         utility functions.
15913
15914         * Makefile.am: Added security-core-clr.[ch].
15915
15916         * security-manager.c, security-manager.h: Functions and enum for
15917         setting and getting the security mode.
15918
15919         * class.c: CoreCLR security checks.
15920
15921 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15922
15923         * icall-def.h, process.c, process.h: implemented icall to get
15924         user/system processor times.
15925
15926 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15927
15928         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15929         reader-lock-free jit_info_table.
15930
15931 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15932
15933         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15934
15935         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15936
15937         * object-internals.h (MonoException): Add missing _data member.
15938
15939 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15940
15941         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15942         checking that only methods with matching qname or fqname are picked
15943         from implemented interfaces.
15944
15945 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15946
15947         * verify.c (do_newarr):added, do type verification of
15948         newarr ops, push the right value on the eval stack.
15949         * verify.c (mono_method_verify): use do_newarr
15950
15951
15952 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15953
15954         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15955         factored the common code into get_boxable_mono_type, which
15956         is now using mono_type_get_full, this fixed byref related tests.
15957
15958 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15959
15960         * class.c: added mono_type_get_full, this function has the same
15961         behavior of mono_class_get_full but the returned MonoType has
15962         all metadata of the associated token in case of a typespec token.
15963         * class.c: added mono_type_retrieve_from_typespec, used by 
15964         mono_type_get_full to retrieve the token type.
15965         * class.c (mono_class_create_from_typespec): changed to use
15966         mono_type_retrieve_from_typespec.
15967         * class.c (mono_ldtoken): changed to use mono_type_get_full
15968         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15969         * class-internals.h: exported mono_type_get_full for internal use.
15970
15971 2007-08-16  Jb Evain  <jbevain@novell.com>
15972
15973         * domain.c (supported_runtimes): add entry for
15974         the 'moonlight' runtime version.
15975
15976 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15977
15978         * verify.c (mono_method_verify): small typo sliped in.  
15979
15980 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15981
15982         * verify.c (do_unbox_value): added, do type verification of
15983         unboxing ops
15984         * verify.c (mono_method_verify): use do_unbox_value
15985
15986
15987 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15988
15989         * verify.c (dump_stack_value): fixed typo, was printing string
15990         instead of object on stack.
15991         * verify.c (do_box_value): moved the byref check up as it leads
15992         to invalid code and should be done earlier.
15993         * verify.c: improved error messages for and ldobj
15994
15995 2007-08-15  William Holmes  <billholmes54@gmail.com>
15996
15997         * marshal.c (emit_marshal_custom): Omit the call to 
15998           marshal_native_to_managed when calling native to managed 
15999           and the argument is specified as an out argument.
16000
16001         Code is contributed under MIT/X11 license.
16002
16003 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16004
16005         * verify.c: fixed the type checks for generics, function pointers and vectors.
16006         Added type verification for ldobj and ldtoken. The verifier
16007         would segfault if header or signature of a method contained references
16008         to non-existant types.
16009
16010 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16011
16012         * marshal.c (cominterop_get_ccw): Patch from
16013         Bill Holmes to no walk up interface hierarchy. 
16014         All parent methods should be present in the interface for COM.
16015    
16016         Code is contributed under MIT/X11 license.
16017
16018 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16019
16020         * marshal.c (emit_marshal_com_interface): Patch from
16021         Bill Holmes to handle COM Interfaces as return values
16022         for native->managed calls.
16023    
16024         Code is contributed under MIT/X11 license.
16025
16026 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
16027
16028         * marshal.c (cominterop_get_idispatch_for_object): Implement
16029         for runtime callable wrappers.
16030    
16031         Code is contributed under MIT/X11 license.
16032
16033 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
16034
16035         * pedump.c (main): changed from mono_init to mono_init_from_assembly
16036         so 2.0 types are accessible
16037
16038
16039 2007-08-13  Miguel de Icaza  <miguel@novell.com>
16040
16041         * domain.c (mono_init_internal): Call mono_assembly_load_friends
16042         once we load mscorlib.   Due to the order in which we initialize,
16043         the mono_assembly_load_full routine that loads mscorlib did not
16044         load friends.   We now load it once we load the
16045         mono_defaults.internals_visible_class class. 
16046
16047         * assembly.c: Expose the mono_load_friend_assemblies method.
16048
16049 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
16050
16051         * verify.c: improved the handling of boxing, better
16052         type checking for unary ops and conversion. Fix bug
16053         regarding managed pointer compatibility checking
16054
16055 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
16056
16057         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
16058
16059         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
16060
16061 2007-08-09  Raja R Harinath  <rharinath@novell.com>
16062
16063         * reflection.c (dup_type): Remove.
16064         * class.c (dup_type): Remove.
16065         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
16066         instead of the dodgy 'dup_type'.
16067         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
16068         handle the case where 'dup_type' needed the second argument.
16069
16070 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
16071
16072         * domain.c: Fix a warning.
16073
16074 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
16075
16076         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
16077         checking that methods with the same fqname are not overridden
16078         with a method from an ancestor.
16079
16080 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
16081
16082         * threads.c (free_thread_static_data_helper): Avoid a crash if
16083         thread->static_data is not yet set.
16084
16085 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
16086
16087         * marshal.c: Use correct image when emitting
16088         native wrapper for COM calls.
16089    
16090         Code is contributed under MIT/X11 license.
16091
16092 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
16093
16094         * icall-def.h, security.c, security.h :
16095           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
16096
16097 2007-08-07  Martin Baulig  <martin@ximian.com>
16098
16099         * mono-debug-debugger.h
16100         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
16101
16102         * domain.c (mono_domain_free): Call
16103         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
16104
16105 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
16106
16107         * verify.c (check_underflow, check_overflow): error message now returns IL offset
16108         * verify.c (in_same_block): code should test if either offset is inside the clauses
16109         * verify.c (mono_method_verify): push the exception into the eval stack of exception
16110         and filter blocks
16111
16112 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16113
16114         * image.c (mono_image_close): Fix a leak.
16115
16116         * object.c (mono_runtime_invoke_array): Avoid using alloca.
16117
16118         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
16119
16120 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
16121
16122         * domain.c, threads.c, threads-types.h: fix memory retention issue
16123         with thread static variables not being cleared on domain unload.
16124         Reuse thread static slots after domain unload.
16125
16126 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16127
16128         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
16129         nullable type.
16130
16131         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
16132         now done in mono_runtime_invoke_array.
16133
16134         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
16135         receiver is a nullable type.
16136
16137         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
16138         generic parameter.
16139
16140 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
16141
16142         * marshal.c: Implement COM Objects as return type for 
16143         managed->unmanaged calls. Added Release calls for COM Object
16144         out/return values in managed->unmanaged calls.
16145
16146         Code is contributed under MIT/X11 license.
16147
16148 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
16149
16150         * threads.h, threads-type.h: move the hazard pointer declarations
16151         to the private header.
16152
16153 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
16154
16155         * file-io.c, appdomain.c: memory leak fixes.
16156
16157 2007-08-02  Dick Porter  <dick@ximian.com>
16158
16159         * socket-io.c
16160         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
16161         SO_REUSEADDR setting into io-layer/sockets.c.
16162
16163 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
16164
16165         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
16166         from Object when called on a generic parameter. Fixes #82211.
16167
16168 2007-08-01  Dick Porter  <dick@ximian.com>
16169
16170         * file-io.c (convert_share): Test FileShare values bit-by-bit.
16171         Fixes bug 79250 yet again.
16172
16173 2007-07-30  Martin Baulig  <martin@ximian.com>
16174
16175         Merged the `debugger-dublin' branch.
16176
16177         * mono-debug.h
16178         (MonoDebugDataTable): New typedef.
16179         (MonoDebugMethodAddressList): New typedef.
16180         (MonoDebugWrapperData): Removed.
16181         (MonoDebugSymbolTable): Removed `current_data_table',
16182         `current_data_table_size', `current_data_table_offset'.
16183         (MonoDebugDataItemType): Moved into mono-debug.c.
16184         (MonoDebugMethodJitInfo): Remove `address'.
16185         (mono_debug_data_table): New global variable.
16186         (mono_debug_lookup_method_addresses): New public function.
16187         (mono_debug_find_method): Take a `MonoMethod *', not a
16188         `MonoDebugMethodInfo *'.
16189
16190         * mono-debug.c: Drop support for the old symbol tables.
16191
16192 2007-06-28  Martin Baulig  <martin@ximian.com>
16193
16194         * mono-debug.c (mono_debug_debugger_version): New public variable.
16195
16196 2007-07-31  William Holmes  <billholmes54@gmail.com>
16197
16198         * metadata.c Changed mono_type_create_from_typespec to not insert
16199           the type into the hash map until after
16200           do_mono_metadata_parse_type has completed.
16201         Fixes Bug #82194
16202         Code is contributed under MIT/X11 license.
16203
16204 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
16205
16206         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
16207         generic parameter. Fixes #82211.
16208
16209 2007-07-27  Jb Evain  <jbevain@novell.com>
16210
16211         * pedump.c (dump_metadata, dump_metadata_header): dump
16212         versions contained in the metadata header.
16213
16214 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
16215
16216         * threads.c: register small_id_table with the GC.
16217
16218 2007-07-27  Mark Probst  <mark.probst@gmail.com>
16219
16220         * threads.c, threads.h, class-internals.h, object-internals.h:
16221         Hazard pointers, to be used by lock-free parallel algorithms.
16222
16223 2007-07-26  Dick Porter  <dick@ximian.com>
16224
16225         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
16226         routine on non-windows platforms, as I've not managed to think of
16227         a non-kludgy way of doing this.  Finishes off bug 78739.
16228
16229 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
16230
16231         * object.c: properly setup interface_bitmap in proxy vtables.
16232
16233 2007-07-25  Marek Habersack  <mhabersack@novell.com>
16234
16235         * appdomain.c (get_shadow_assembly_location): do not use TickCount
16236         to create unique shadow copy target directories, use the domain's
16237         serial number instead. Each domain gets a unique target directory
16238         that way.
16239
16240         * domain.c (mono_domain_create): added code to increment domain
16241         shadow copy serial number and cache the value in the current
16242         domain structure.
16243
16244         * domain-internals.h (struct _MonoDomain): added a new field -
16245         shadow_serial to hold the serial number used in generation of
16246         shadow-copy directories. This is to make sure that the directory
16247         name is unique for each and every domain created. We avoid a race
16248         condition with overriding assemblies already in use by other app
16249         domains.
16250
16251 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
16252
16253         * class.c (mono_bounded_array_class_get): fixed memory leak when 
16254         binding generic parameters.
16255
16256 2007-07-24  Raja R Harinath  <rharinath@novell.com>
16257
16258         * metadata.c (do_mono_metadata_parse_generic_class): Use
16259         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
16260         error.
16261
16262 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
16263
16264         * loader.c, class-internals.h, reflection.c: removed the per-method
16265         generics hashtable: we use the global one through the call of
16266         mono_class_inflate_generic_method ().
16267
16268 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16269
16270         * class.c, metadata.c, class-internals.h: introduce yet another
16271         generics global cache for inflated methods (fixes 98% of the perf
16272         issue in bug #81806).
16273
16274 2007-07-23  Raja R Harinath  <rharinath@novell.com>
16275
16276         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
16277         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
16278         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
16279         return a MonoGenericInst containing (a copy) of those types.
16280         (mono_metadata_inflate_generic_inst): Update to changes.
16281         (mono_metadata_parse_generic_inst): Likewise.
16282         (mono_get_shared_generic_inst): Likewise.
16283         * reflection.c (mono_class_bind_generic_parameters): Likewise.
16284         (mono_reflection_bind_generic_method_parameters): Likewise.
16285         * metadata-internals.h: Likewise.
16286         * icall.c (free_generic_context): Kill.
16287         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
16288
16289         * reflection.c (reflection_methodbuilder_to_mono_method): Use
16290         mono_metadata_type_dup.
16291         * marshal.c (mono_mb_create_method): Likewise.
16292
16293         * metadata.c (mono_metadata_type_dup): Rename from
16294         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
16295         MonoImage.  Handle a few more cases, esp. when no mempool is given.
16296         * marshal.c, metadata-internals.h: Update to changes.
16297
16298 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
16299
16300         * class.c: fixed a small leak for array classes and removed warning.
16301
16302 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
16303
16304         * loader.c (mono_method_get_param_token): Make this work on generic methods.
16305         Return 0x8000000 for return parameters. Fixes #82161.
16306
16307 2007-07-21  Marek Habersack  <grendello@gmail.com>
16308
16309         * appdomain.c (get_shadow_assembly_location): append the current
16310         ticks value to the path. Avoids overwriting the same assemblies by
16311         several threads at the same time.
16312
16313 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16314         and Raja R Harinath  <rharinath@novell.com>
16315
16316         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16317         Simplify slightly.
16318         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
16319         property for testing if a method is a generic method definition.
16320
16321 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16322
16323         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
16324
16325 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16326
16327         * verify.c: used function from private branch, reverted to the one in class.h 
16328
16329 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16330
16331         * verify.c: a typo slipped in and the code wont compile
16332
16333 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16334
16335         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
16336         disabled box instruction as it is doing the wrong thing
16337         improved stack dump messages, now it is easier to debug type related issues
16338
16339
16340 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
16341
16342         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
16343
16344 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16345
16346         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
16347         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
16348         grouped with class and valuetype. This change will simply 
16349         the code as it should be handled just like unmanaged pointers.
16350
16351 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16352
16353         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
16354
16355 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16356
16357         * verify.c: several stack merge issues fixed, reference comparisons now
16358         check the type size. strict type check now works correctly.
16359         added more uses of IS_MANAGED_POINTER macro.
16360         fixed issues pointed by running the test suite against .net.
16361         
16362
16363 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16364
16365         * class.c, loader.c, class-internals.h: Removed the
16366         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
16367         defines.
16368
16369         * icall.c: Better error checking in some internal reflection
16370         methods.
16371
16372 2007-07-18  William Holmes  <billholmes54@gmail.com>
16373
16374         * filewatcher.c : removed unused variable 'filename' in 
16375           ves_icall_System_IO_FSW_SupportsFSW
16376
16377 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
16378
16379         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
16380         obsolete, removed.
16381
16382 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
16383
16384         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
16385         
16386         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
16387
16388 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
16389
16390         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
16391         Implement generics support.
16392         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16393
16394         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16395         type_args and method_args arguments.
16396         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16397         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16398         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16399
16400 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16401
16402         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16403           It adds a rootimage parameter to mono_reflection_get_type_internal,
16404           adds new function mono_reflection_get_type_with_rootimage and use
16405           the rootimage to resolve the types instead of the current image
16406
16407 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16408
16409         * culture-info-table.h: Forgot to update after r78304.
16410
16411 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16412
16413         * class.c (mono_class_is_open_constructed_type)
16414         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16415
16416 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16417
16418         * class.c (mono_bounded_array_class_get):  method fails if used with
16419         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16420         avoiding calculating the size for such array as it cannot be instantiated.
16421         Fix bug #82015
16422
16423 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16424
16425         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16426         field.
16427         * metadata.c, reflection.c: Update to changes.
16428
16429 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16430
16431         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16432         mono_class_is_valid_enum, they are used to valide a enum when loading.
16433         * reflection.c: used new functions to throw TypeLoadException when and
16434         invalid enum is build with TypeBuilder. Fixes #82018
16435   
16436 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16437
16438         * object.c: forgot commit of mono_class_setup_methods () to access
16439         iface->methods.
16440         * object-internals.h: added a few more handy fields to
16441         MonoIMTCheckItem.
16442
16443 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16444
16445         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16446         iface->methods.
16447
16448 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16449
16450         * class-internals.h, object-internals.h, object.c: IMT-based
16451         interface invocation core from Massimiliano Mantione
16452         (massi@ximian.com) with a reworked arch-specific interface,
16453         bsearch implementation and a few bugfixes and memory savings by me.
16454
16455 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16456
16457         * class.c (mono_class_create_from_typedef): mono would segfault if 
16458         an enum did not have a __value field. It now throws a TypeLoadException
16459         for such cases. Fix bug #82022
16460
16461 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16462
16463         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16464
16465 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16466
16467         * class.c (mono_class_init): If a class is already inited but has
16468         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16469
16470 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16471
16472         * class.c: Properly handle the case of an unimplemented interface
16473         method.  Fixes: 81673.
16474
16475 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16476
16477         * class-internals.h, object.c: cleanup patch from massi: use
16478         MonoVTable->interface_bitmap since the vtable interfaces offset array
16479         is going away.
16480
16481 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16482
16483         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16484         GetMDStreamVersion icall instead.
16485
16486 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16487
16488         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16489         not use mono_dl_build_path() with a full library name: makes
16490         fallbacks to libgaim and libfam work.
16491
16492 2007-07-06  William Holmes  <billholmes54@gmail.com>
16493
16494         * assembly.c: Added a continue statement in probe_for_partial_name when
16495          parse_assembly_directory_name fails.  Fixes : 82002
16496
16497 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16498
16499         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16500         and added a verification  for TYPEDBYREF.
16501         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16502         make native int interchangeable with int32 and some small cleanup and formating.
16503         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16504         handle byref of byref.
16505         * verify.c (push_local): handle byref of byref.
16506         * verify.c (do_binop): invalid mix of values is unverifiable
16507         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16508         added visibility checks
16509         * verify.c (field related method): added visibility checks
16510         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16511
16512 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16513
16514         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16515         string.
16516
16517 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16518
16519         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16520
16521         * marshal.c (emit_marshal_string): When returning a string from managed code,
16522         allways make a copy even for unicode strings. Fixes #81990.
16523
16524 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16525
16526         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16527         of byref generic inst types (bug #81997).
16528
16529 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16530
16531         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16532         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16533
16534 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16535
16536         * marshal.c (emit_marshal_string): Add support for unicode strings in
16537         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16538
16539 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16540
16541         * verify.c: field load/store are now verified, missing only access checks now
16542
16543 2007-06-28  Martin Baulig  <martin@ximian.com>
16544
16545         * mono-debug.c (mono_debug_debugger_version): New public variable.
16546
16547 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16548
16549         * locales.c: When constructing DateTimeFormat or NumberFormat for
16550         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16551         MonoCultureInfo contructed from the current locale is always
16552         read-only and has UseUserOverride set to true. All MonoCultureInfo
16553         instances returned for GetCultures have both IsReadOnly and
16554         UseUserOverride set to true. Fixes part of bug #81930.
16555
16556 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16557
16558        * icall-def.h: Update System.__ComObject icalls
16559        * marshal.c: Avoid managed transition (and object creation)
16560        when looking up COM interface in RCW.
16561        * marshal.h: Ditto.
16562        
16563        Code is contributed under MIT/X11 license.
16564
16565 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16566
16567         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16568         to avoid crashes during assembly unloading.
16569
16570 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16571
16572         Fix MethodInfo.IsGenericMethodDefinition
16573         * reflection.c (mono_reflection_bind_generic_method_parameters):
16574         Rearrange code to ensure we always uses a generic method definition.
16575         * class.c (mono_class_inflate_generic_method_full): Set
16576         'generic_container' field only for generic method definitions.
16577         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16578         Use presense of 'generic_container' field as indication of being a
16579         generic method definition.
16580
16581 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16582
16583         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16584
16585         * object-internals.h: Reflect changes in the layout of the managed Delegate
16586         class.
16587         
16588         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16589         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16590         runtime memory used by the dynamic method. Fixes #77146.
16591
16592 2007-06-21  Dick Porter  <dick@ximian.com>
16593
16594         * file-io.h: 
16595         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16596         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16597         81767.
16598
16599 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16600
16601         * reflection.c (method_encode_methodspec): Add a tripwire.
16602         * class.c (inflate_generic_type): The fully open generic type is
16603         not the same as the generic type definition.
16604
16605 2007-06-21  Martin Baulig  <martin@ximian.com>
16606
16607         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16608
16609         * mono-debug-debugger.h
16610         (MonoDebuggerBreakpointInfo): Removed.
16611         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16612         (mono_debugger_remove_breakpoint): Likewise.
16613         (mono_debugger_breakpoint_callback): Likewise.
16614         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16615
16616 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16617
16618         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16619         generic type is not the same as the generic type definition.
16620         * class.c (mono_generic_class_get_class): Likewise.
16621
16622 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16623
16624         * icall.c: The second argument to 
16625         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16626         is a MonoType not a MonoClass.
16627
16628 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16629
16630         * verify.c: support for function pointers in the verifier
16631
16632 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16633
16634         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16635
16636 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16637
16638         * assembly.c: removed Mono.Data.SqliteClient from the list of
16639         forward-compatible assemblies as it breaks the ABI (bug #81899).
16640
16641 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16642
16643         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16644         lookup/update with the loader lock.
16645         * reflection.c (mono_class_bind_generic_parameters): No need to
16646         protect mono_metadata_lookup_* with the loader lock.
16647         * class.c (inflate_generic_type): Likewise.
16648         
16649         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16650         on a generic instantiated type.
16651
16652 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16653
16654         *verify.c: produce meanfull error messages on verification error
16655         *verify.c: fixed some cases of verification errors reported as validation errors
16656         *pedump.c: fixed the error name array, now it shows validation errors properly
16657         *verify.h: fixed the contant that should be used for verification errors
16658
16659 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16660
16661         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16662         for bug #77596, 81858 and 80743 (generics data structures on domain
16663         unload).
16664
16665 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16666
16667         Avoid allocating 'MonoGenericContext' on the heap.
16668         * class-internals (_MonoMethodInflated::context): Make field
16669         inline, not a pointer.
16670         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16671         stack.  Use the context embedded within the inflated method as the
16672         hash key, rather than 'new_context'.
16673         * class.c (inflate_generic_context): Simplify.  Return a struct
16674         rather than allocating on the heap.
16675         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16676         doesn't salt away a copy of the context -- simplifying the
16677         lifetime rules of a 'MonoGenericContext *'.
16678         (mono_method_get_context): Return pointer to embedded context.
16679         (setup_generic_array_ifaces): Allocate temporary context on stack.
16680         * reflection.c (inflate_mono_method): Likewise.
16681         (mono_reflection_bind_generic_method_parameters): Likewise.
16682         Use the context embedded within the inflated method as the hash key.
16683
16684         Avoid a source of allocation of 'MonoGenericContext'.
16685         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16686         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16687         * class.c: Update to changes.
16688         (mono_generic_class_get_context): Simplify drastically.  Now just
16689         returns a pointer to the field.
16690         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16691         argument as a const pointer.
16692         (mono_metadata_generic_context_equal): Likewise.
16693         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16694         Update to changes.
16695
16696 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16697
16698         * verify.c improved the handling of brtrue/brfalse, factored out common code
16699
16700 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16701
16702         Kill MonoGenericMethod.
16703         * class-internals.h (MonoGenericContext::method_inst): Rename from
16704         'gmethod' and convert to a MonoGenericInst.
16705         (MonoGenericMethod): Remove.
16706         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16707         * loader.c (method_from_methodspec): Update to changes.  Use a
16708         MonoGenericContext as the key to the hashtable.
16709         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16710         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16711         (mono_metadata_generic_context_hash): Likewise from
16712         'mono_metadata_generic_method_hash'.  Change hash function.
16713         (mono_metadata_load_generic_params): Update to changes.
16714         (mono_get_shared_generic_method): Remove.
16715         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16716         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16717         (inflate_generic_context): Likewise.
16718         (mono_class_inflate_generic_method_full): Likewise.
16719         (setup_generic_array_ifaces): Likewise.
16720         (mono_class_create_from_typespec): Likewise.
16721         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16722         (method_encode_methodspec): Update callsite.
16723         (reflection_methodbuilder_to_mono_method): Update to changes.
16724         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16725         MonoGenericContext as the key to the hashtable.
16726         (inflate_mono_method): Update to changes.
16727
16728         * class-internals.h (MonoGenericMethod::container): Remove.
16729         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16730
16731 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16732
16733         * profiler-private.h, profiler.c, profiler.h: added API to profile
16734         exception events.
16735
16736 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16737
16738         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16739
16740 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16741
16742         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16743         Fixed overflow and underflow not aborting the verification process.
16744
16745 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16746
16747         * class-internals.h (MonoStats): Added stats entries for dynamic
16748         code allocations.
16749
16750 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16751
16752         * loader.c (mono_free_method): Free header->locals and header->clauses.
16753
16754         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16755         dynamic case.
16756
16757         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16758
16759         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16760
16761 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16762
16763         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16764         the tables.
16765
16766 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16767
16768         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16769
16770 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16771
16772         MonoGenericMethod on a diet
16773         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16774         here ...
16775         (_MonoGenericMethod::reflection_info): ... from here.
16776         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16777         Update to changes.
16778         * reflection.c (inflate_mono_method): Likewise.
16779         (mono_reflection_bind_generic_method_parameters): Likewise.
16780
16781 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16782
16783         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16784         *verify.c: factored long ldarg forms to share code with short forms
16785
16786 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16787
16788         *verify.c: fixed code formating factored some duplicate code
16789         into a new function
16790
16791         *verify.h: fixed binary incompatibility introduced earlier
16792
16793         *pedump.c: fixed formating
16794
16795 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16796
16797         Fix assertion when disassembling Mono.C5.dll
16798         * loader.c (method_from_methodspec): Avoid inflating a method
16799         twice with the same context.  If the methodref is inflated, use
16800         the declaring method instead.
16801
16802         * class.c (mono_class_from_generic_parameter): Fix case similar to
16803         bug #81830 handled below, but for method containers.
16804
16805 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16806
16807         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16808         get_shared_generic_class.  Directly inflate the instance.
16809         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16810         (inflate_generic_class): Delete.
16811         (get_shared_generic_class): Delete.  Move setting of
16812         'cached_class' and 'cached_context' ...
16813         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16814
16815         * metadata.c (mono_metadata_lookup_generic_class): Change
16816         signature to take the components of a MonoGenericClass rather than
16817         an allocated MonoGenericClass.  Change semantics to be intern-like.
16818         * reflection.c (mono_class_bind_generic_parameters): Update to
16819         changes.  Make locking region tighter.
16820         * class.c (inflate_generic_class): Update to changes.
16821         (get_shared_generic_class): Likewise.
16822         * metadata-internals.h: Likewise.
16823
16824         * reflection.c (mono_class_bind_generic_parameters): Take and
16825         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16826         (mono_reflection_bind_generic_parameters): Use
16827         'mono_class_bind_generic_parameters' rather than duplicate the code.
16828         * class.c (mono_bounded_array_class_get): Update to changes.
16829         * object-internals.h: Likewise.
16830
16831         * reflection.c (mono_class_bind_generic_parameters): Only support
16832         parameterizing generic type definitions.  Remove support for other
16833         open types.
16834
16835 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16836
16837         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16838
16839         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16840         in the dynamic case.
16841
16842 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16843
16844         * threads.c: When cleaning up thread, reset the Background bit.
16845         Fixes bug #81720.
16846
16847 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16848
16849        * metadata.c: Move variable declarations to top of scope.
16850        * verify.c: Move variable declarations to top of scope.
16851
16852        Code is contributed under MIT/X11 license.
16853
16854 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16855
16856         * reflection.c (mono_class_bind_generic_parameters): Replace
16857         open-coded loop with mono_metadata_inflate_generic_inst.
16858
16859         * class.c (get_shared_generic_class): Don't call
16860         mono_get_shared_generic_inst.  Use the container's own
16861         'class_inst'.
16862
16863         * metadata.c (mono_metadata_load_generic_params): Move
16864         initialization of 'context' field here from ...
16865         * class.c (mono_class_create_from_typedef): ... here, and ...
16866         * loader.c (mono_get_method_from_token): ... here.
16867
16868         * class.c (get_shared_generic_class): Rename from
16869         mono_get_shared_generic_class and make static.
16870         (mono_get_shared_generic_inst): Move to metadata.c.
16871         * loader.c (mono_get_shared_generic_method): Likewise.
16872         * class-internals.h, metadata-internals.h: Update to changes.
16873
16874         Fix #81830
16875         * class.c (mono_class_from_generic_parameter): Don't assume a
16876         generic container owner exists.  Generic containers from monodis
16877         don't have any.
16878
16879 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16880
16881         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16882         * verify.h: new typedefs to returns the non-verifiable status
16883         * verify.c: initial implementation of generics, stack merging and object compatibility check
16884
16885 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16886
16887         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16888         a MonoInternalHashTable again (fixed bug in internal hash table
16889         code).
16890
16891 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16892
16893         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16894         MonoInternalHashTable again (fixed bug in internal hash table
16895         code).
16896
16897 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16898
16899         * class.c, image.c, class-internals.h, domain.c,
16900         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16901         changes.  Have to figure out what makes them break the SWF
16902         regression.
16903
16904 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16905
16906         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16907         a MonoInternalHashTable now.
16908
16909 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16910
16911         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16912         MonoInternalHashTable now.
16913
16914 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16915
16916         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16917         invoke_impl code.
16918
16919         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16920
16921         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16922         dependent trampoline.
16923
16924         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16925
16926         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16927
16928 2007-05-29  Robert Jordan  <robertj@gmx.net>
16929
16930         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16931
16932 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16933
16934         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16935
16936 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16937
16938        * marshal.c: Fix interface lookup loops for
16939        cominterop_get_com_slot_for_method and 
16940        cominterop_get_method_interface. Only need to lookup
16941        if type is a class, else use interface type method is on.
16942
16943        Code is contributed under MIT/X11 license.
16944
16945 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16946
16947         * reflection.c: HasSecurity can be present even if no specially 
16948         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16949         SecurityAttribute). Fix CAS regression tests on buildbot.
16950
16951 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16952
16953        * appdomain.c: Add configure checks for header files.
16954        * image.c: Add configure checks for header files.
16955        * file-io.c: Add configure checks for header files.
16956        * debug-mono-symfile.c: Add configure checks for header files.
16957        * threadpool.c: Add configure checks for header files.
16958        * console-io.c: Add configure checks for header files.
16959        * profiler.c: Add configure checks for header files.
16960        * rawbuffer.c: Add configure checks for header files.
16961        * icall.c: Add configure checks for header files.
16962        * rand.c: Add configure checks for header files.
16963        * socket-io.c: Add configure checks for header files.
16964
16965        Code is contributed under MIT/X11 license.
16966
16967 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16968
16969         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16970         assertion as it breaks the build.
16971         
16972         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16973
16974         * reflection.c (lookup_custom_attr): Make a copy here too.
16975
16976         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16977         dynamic images.
16978
16979         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16980         images.
16981
16982         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16983         info.
16984
16985 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16986
16987         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16988         (load_cattr_value): Ditto.
16989
16990 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16991
16992         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16993
16994 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16995
16996         * threads.c: In "start_wrapper", set apartment_state to MTA if
16997         apartment_state is Unknown and we're running on 2.0 profile or
16998         higher.
16999         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
17000         to main method, then set apartment_state to Unknown on 1.0 profile,
17001         and MTA on 2.0 profile.
17002
17003 2007-05-16  Jb Evain  <jb@nurv.fr>
17004
17005         * class-internals.h (MonoDefaults): Add an attribute_class and
17006           customattribute_data_class.
17007         * domain.c (mono_init_internal): Populate them.
17008         * reflection.c: Use them to remove duplicates. Make a vew
17009         MonoClass variables `static'.
17010
17011 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
17012
17013         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
17014         step in implementing IMT, so that all isinst checks now can go
17015         through the bitmap.
17016         This was needed because vtables for TransparentProxy need to look
17017         like the vtable of the "target" class, so they need to point to
17018         its interface bitmap directly.
17019
17020         * object.c: inside "mono_class_create_runtime_vtable" and
17021         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
17022
17023 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17024
17025         * object-internals.h
17026           culture-info.h : added territory field in MonoCulture and
17027           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
17028         * locales.c : fill territory field above too.
17029         * culture-info-table.h : regenerated.
17030
17031 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
17032
17033         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
17034         Fixes #81599.
17035
17036 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
17037
17038         * object.c: Always initialize apartment, even if 
17039         there is no custom attributes on entry point.
17040         
17041         Code is contributed under MIT/X11 license.
17042
17043 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
17044
17045         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
17046         * metadata.c: If no encoding is set, check for unicode
17047         on class.
17048         
17049         Code is contributed under MIT/X11 license.
17050
17051 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17052
17053         * threads.c: Handle if mono_thread_current returns NULL 
17054         
17055         Code is contributed under MIT/X11 license.
17056
17057 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17058
17059         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
17060         in start_wrapper. Added mono_thread_init_apartment_state and
17061         mono_thread_cleanup_apartment_state.
17062         * object.c: Initialize thread apartment state on main thread
17063         by checking for STAThreadAttribute on entry point.
17064         * object-internals.h: Add apartment_state field to MonoThread.
17065         * threads-types.h: Add unmanaged definition of 
17066         System.Threading.ApartmentState, MonoThreadApartmentState.
17067         
17068         Code is contributed under MIT/X11 license.
17069         
17070 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
17071
17072         * class.c: Fix windows build.
17073         * class-internals.h: Fix windows build.
17074         
17075         Code is contributed under MIT/X11 license.
17076
17077 2007-05-08  Robert Jordan  <robertj@gmx.net>
17078
17079         * process.c (CreateProcess_internal):
17080         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
17081         .CreateNoWindow was specified. Fixes #81496.
17082
17083 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17084
17085         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
17086         step in implementing IMT, replaced it with two compact arrays
17087         (interfaces_packed and interface_offsets_packed) and a bitmap that
17088         is used for isinst checks (interface_bitmap).
17089
17090         * class.c: (compare_interface_ids): compare function to pass to
17091         bsearch when looking for an interface with a given id.
17092         (mono_class_interface_offset): reimplemented using bsearch on
17093         interfaces_packed, getting the offset from interface_offsets_packed.
17094         (print_implemented_interfaces): utility debugging function.
17095         (setup_interface_offsets): reworked to initialize interfaces_packed,
17096         interface_offsets_packed and interface_bitmap.
17097
17098         * object.c: replaced all accesses to "MonoClass.interface_offsets"
17099         with uses of interfaces_packed and interface_offsets_packed.
17100
17101 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17102
17103         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
17104         mono_class_interface_offset prototype to wrap all accesses to
17105         "MonoClass.interface_offsets".
17106
17107         * class.c: Implemented mono_class_interface_offset, and wrapped all
17108         accesses to "MonoClass.interface_offsets".
17109
17110         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
17111         "MonoClass.interface_offsets".
17112
17113 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
17114
17115         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
17116         GetMethodFromHandle overloads (bug #78637).
17117
17118 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
17119
17120         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
17121         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
17122
17123 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
17124
17125         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
17126         #81498.
17127
17128         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
17129         gracefully.
17130         (mono_custom_attrs_from_index): Ditto.
17131
17132         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
17133         Fixes #81501.
17134
17135 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
17136
17137         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
17138         is now allocated from a mempool.
17139
17140 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
17141
17142         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
17143         caller holds threads_lock, leading to deadlocks. Fixes #81476.
17144
17145 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
17146
17147         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
17148         mono_loader_clear_error () too late. Fixes #81463.
17149
17150 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
17151
17152         * culture-info-table.h : regenerated.
17153
17154 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
17155
17156         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
17157         is missing.
17158
17159 2007-04-25  Dick Porter  <dick@ximian.com>
17160
17161         * Makefile.am: Put the mingw enforced-optimisation back into the
17162         PLATFORM_WIN32 section.
17163
17164 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
17165
17166         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
17167         patch.
17168
17169         * image.c (mono_image_load_module): New API function to load a module reference.
17170
17171         * image.c (load_modules): Load modules lazily. Fixes #80812.
17172
17173         * class.c (mono_class_from_typeref): Use mono_image_load_module.
17174         
17175         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
17176
17177         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
17178         to mono_image_load_module_dynamic.
17179
17180 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
17181
17182         * marshal.c: Fix calling convention for CCW on non-windows
17183         platforms. STDCALL on windows, CDECL everywhere else to work 
17184         with XPCOM and MainWin COM.
17185         
17186         Code is contributed under MIT/X11 license.
17187
17188 2007-04-23  Martin Baulig  <martin@ximian.com>
17189
17190         Fix #80969.
17191
17192         * loader.c
17193         (method_from_memberref): Added `gboolean *used_context' argument.
17194         (mono_get_method_from_token): Likewise.
17195         (mono_get_method_full): Don't insert the method in the cache when
17196         `used_context' is true.
17197
17198 2007-04-23  Raja R Harinath  <rharinath@novell.com>
17199
17200         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
17201
17202         * reflection.c (mono_reflection_bind_generic_parameters): Don't
17203         create new MonoTypes for returned types.
17204         * class.c (mono_generic_class_get_class): Export mono-internal.
17205         * class-internals.h: Update to changes.
17206
17207 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
17208
17209         * threadpool.c, threadpool.h, icall-def.h: patch from
17210         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
17211
17212 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
17213
17214         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
17215         
17216         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
17217
17218         * threads.c (mono_thread_get_stack_bounds): New helper function.
17219
17220         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
17221         Correctly compute stack bounds when attaching. Fixes #81394.
17222
17223 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
17224
17225         * reflection.c: fix handling of doubles in custom attributes
17226         for the arm-fpa format (bug #81368).
17227
17228 2007-04-18  Raja R Harinath  <rharinath@novell.com>
17229
17230         * reflection.c (assembly_add_win32_resources): Mildly relax an
17231         bounds check to let the end pointer point just past the end of the
17232         allocated buffer.  (may fix #81384)
17233
17234 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
17235
17236         * culture-info-table.h : regenerated.
17237
17238 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
17239
17240         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
17241         the thread is aborted early.
17242
17243 2007-04-05  Dick Porter  <dick@ximian.com>
17244
17245         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
17246         FindFirstFile()/FindNextFile() to find entries.  This lets the
17247         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
17248         81038.
17249
17250         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
17251         the parameters of
17252         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
17253
17254 2007-04-04  Martin Baulig  <martin@ximian.com>
17255
17256         * debug-helpers.c
17257         (mono_method_desc_full_match): Add support for nested classes.
17258
17259 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
17260
17261         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
17262
17263 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
17264
17265         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
17266         waiting for too many threads.
17267
17268 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
17269
17270         * environment.c: Fix return value check on uname so we can get the 
17271         executing version on Solaris operating systems.
17272
17273 2007-03-28  Jb Evain  <jbevain@gmail.com>
17274
17275         * class.c (mono_type_get_name_recurse): Complete the
17276         fix for the creation of assembly qualified names for
17277         pointer types. Fixes #81208.
17278
17279 2007-03-27  Dick Porter  <dick@ximian.com>
17280
17281         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
17282         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
17283         changed.
17284
17285         * threads.c
17286         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
17287         the value of ReleaseMutex().
17288
17289 2007-03-27  Dick Porter  <dick@ximian.com>
17290
17291         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
17292         in little-endian order, not network endian, so must be converted
17293         to host endian here.  Fixes bug 80593.
17294
17295 2007-03-22  Jb Evain  <jbevain@gmail.com>
17296
17297         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
17298         qualified names for pointer types. Fixes #81208.
17299
17300 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
17301
17302         * marshal.c: Add support for PreserveSigAttribute. 
17303         
17304         Code is contributed under MIT/X11 license.
17305
17306 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
17307
17308         * process.c: Fix endianness issues. Fixes #81126.
17309
17310         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
17311         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
17312
17313         * image.c (mono_image_lookup_resource): Make this work on big-endian
17314         machines.Change API contract so the caller needs to free the return value.
17315         
17316         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
17317         API change.
17318         
17319 2007-03-14  Martin Baulig  <martin@ximian.com>
17320
17321         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
17322         mono_type_get_desc() as well.
17323
17324 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
17325
17326         * icall.c:  Fix environ access in VS.  
17327         
17328 2007-03-13  Alp Toker  <alp@atoker.com>
17329
17330         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
17331         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
17332         #63841.
17333
17334 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
17335
17336         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
17337         circular references among dynamic methods. Fixes #81091.
17338
17339         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
17340
17341 2007-03-09  Martin Baulig  <martin@ximian.com>
17342
17343         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
17344
17345 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
17346
17347         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
17348         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
17349         
17350         Code is contributed under MIT/X11 license.
17351         
17352 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
17353
17354         * loader.c: Reapply patch for bug #79424.
17355
17356 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17357
17358         * metadata.c (mono_type_to_unmanaged): Only convert object to
17359         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
17360
17361 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
17362
17363         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
17364         (and incorrectly set) is_reference field from MonoGenericInst.
17365
17366 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17367
17368         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
17369         a little earlier.
17370
17371         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
17372
17373         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
17374
17375 2007-03-05  Miguel de Icaza  <miguel@novell.com>
17376
17377         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
17378         FileOptions.1 value to mean "temporary", map that to
17379         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
17380
17381         Fixes 80688
17382
17383 2007-03-03  Marek Habersack  <mhabersack@novell.com>
17384
17385         * appdomain.c: implement MS .Net style shadow copying. Copies of
17386         the assemblies are made in a subdirectory of the dynamic base
17387         directory, the assembly names are preserved.
17388         Copy .mdb and .config files along with the assemblies being shadowed.
17389
17390 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17391
17392         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
17393         (emit_marshal_handleref): Ditto.
17394
17395         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17396         on Visual C++. Fixes #80671.
17397
17398 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17399
17400         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17401         for clone operations.
17402
17403 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17404
17405         * marshal.c: Fix warnings.
17406
17407 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17408
17409         * loader.c: allow case-insensitive matching of the dll name
17410         in dllmap handling when prefixed with "i:".
17411
17412 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17413
17414         * threads.c: Fix #ifdef for dummy_apc function for VS.
17415
17416 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17417
17418         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17419
17420 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17421         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17422         giving precedence to the methods with a fully qualified name
17423         (InterfaceName.MethodName) when building the interface sections
17424         of the vtable.
17425
17426 2007-02-16  Dick Porter  <dick@ximian.com>
17427
17428         * threadpool.c (append_job): Fix fast-path array handling, so it's
17429         less likely the array will grow exponentially when the load is
17430         heavy.
17431
17432 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17433
17434         * metadata-internals.h, loader.c: fix dllmap lookup order
17435         for non-function maps, too, and prepare for fallback code.
17436
17437 2007-02-12  Robert Jordan  <robertj@gmx.net>
17438
17439         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17440         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17441         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17442         GlobalFree. Fixes a part of bug #77075.
17443
17444 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17445
17446         * loader.c: implemented typedef parent in field memberref.
17447
17448 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17449
17450         * marshal.c: Fix warnings and remember to call Release on
17451         IUnknown of RCW.
17452         
17453         Code is contributed under MIT/X11 license.
17454
17455 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17456
17457         * class-internals.h: Add MonoHandleRef definition, and
17458         handleref_class to mono_defaults. 
17459
17460         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17461         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17462
17463         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17464         (do nothing on this stage)
17465         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17466         (emit_marshal_handleref): New method, used for argument handling
17467         of HandleRefs. 
17468
17469 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17470
17471         * class.c (mono_class_setup_parent): Lazily init com types.
17472         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17473         init com types.
17474         * object.c (mono_remote_class_vtable): Lazily init com types.
17475         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17476         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17477         * domain-internals.h: Expose mono_init_com_types.
17478         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17479         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17480         Add support for COM Callable Wrapper marshalling.
17481         * marshal.h: Add icall definitions.
17482         * gc.c: Handle freeing of CCWs in finalizer code.
17483         
17484         Code is contributed under MIT/X11 license.
17485
17486 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17487
17488         * reflection.c: changed all the signature encoding code to use
17489         a variable-sized buffer.
17490
17491 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17492
17493         * marshal.c: locking fixes: never take the loader lock
17494         or other runtime locks when holding the marshal lock
17495         (fixes bug#80664).
17496
17497 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17498
17499         * marshal.c: make the delegate function pointer mapping
17500         work for the moving GC.
17501
17502 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17503
17504         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17505         for bug #80618.
17506
17507 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17508
17509         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17510         gmodule.
17511
17512 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17513
17514         * threadpool.c: made the code moving-GC safe.
17515
17516 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17517
17518         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17519         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17520         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17521         warning cleanup.
17522         * reflection.c: warning cleanup, some threading and moving GC fixes.
17523
17524 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17525
17526         * class.c, loader.c: create the needed Set/Get/Address array methods
17527         as well as the .ctors in mono_class_init (), fixes bug #80567.
17528
17529 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17530
17531         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17532         we doesn't decrease its alignment. Should fix the sparc build.
17533
17534 2007-01-24  Dick Porter  <dick@ximian.com>
17535
17536         * socket-io.c
17537         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17538         Create the returned object if we need to ignore an unsupported
17539         socket option.  Fixes a segfault reported by Atsushi.
17540
17541 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17542
17543         * class.c, object.c: restrict GC-tracked fields to
17544         UIntPtr fields used inside corlib, so we provide better
17545         type info to the GC and also allow broken packing as in
17546         bug #80580.
17547
17548 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17549
17550         * sgen-gc.c: removed duplicated function.
17551
17552 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17553
17554         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17555         value that means that the value is not supported, but that we
17556         should not return a failure, but instead report this as a
17557         successful operation.
17558
17559 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17560
17561         Fix tests/bug79956.2.il
17562         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17563         (mono_generic_class_get_class): If the generic definition in an
17564         enum, copy over other fields related to it.
17565
17566 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17567
17568         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17569         genericinst enums (bug #79215).
17570
17571 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17572         * class.c: Fix bug 80307.
17573
17574 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17575
17576         * image.c: if the file table is not present, try to load
17577         all the modules, since we don't have info about them
17578         having or not metadata (bug #80517).
17579         * assembly.c: allow mono_assembly_load_references () to
17580         work for netmodules.
17581
17582 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17583
17584         * image.c, metadata-internals.h, object.c: execute module
17585         cctors when running on the 2 runtime if present (bug #80487).
17586
17587 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17588
17589         * icall.c: optimized InitializeArray() on bigendian.
17590
17591 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17592
17593         * icall.c: fix for the broken ARM FPA double format.
17594
17595 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17596
17597         * icall.c: handle endian issues for r4 and r8 types, too, in
17598         the InitializeArray() icall.
17599
17600 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17601
17602         * loader.c (mono_loader_error_prepare_exception): Clear the error
17603         once we have extracted the information from it, do this before we
17604         call into the JIT's class loading mechanisms.
17605
17606         * object.c (mono_class_create_runtime_vtable): Do not clear the
17607         loader error before calling mono_class_get_exception_for_failure
17608         as the loader error is needed inside
17609         mono_class_get_exception_for_failure to throw the error (thinko).
17610
17611         Fixes #80521
17612         
17613 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17614
17615         * reflection.c: align fields rva data so it's faster to load at
17616         runtime.
17617
17618 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17619
17620         Prepare to simplify GenericMethod handling.
17621         * class-internals.h (mono_method_get_context): New accessor function.
17622         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17623         rather than directly accessing '->context' field.
17624
17625         * class-internals.h (_MonoGenericParam.method): Move ...
17626         (_MonoGenericContainer): ... here.  Add into union with klass field.
17627         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17628         Update to changes.
17629
17630 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17631
17632         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17633         the wrapper type enum and reduce relocations.
17634
17635 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17636
17637         * reflection.c (inflate_mono_method): Reuse method instantiation
17638         from the generic method, if available.
17639
17640 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17641
17642         * marshal.c (emit_marshal_variant): Fix conv_arg
17643         type in last commit, based on whether parameter is byref.
17644         
17645 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17646
17647         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17648         marshalling.
17649         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17650         MONO_TYPE_OBJECT back for VARIANT support.
17651
17652 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17653
17654         * marshal.c, marshal.h, icall-def.h: Implement 
17655         Marshal.ReAllocCoTaskMem.
17656
17657 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17658
17659         * marshal.c: memory retention fixes: use the proper
17660         image cache for runtime_invoke method lookups.
17661
17662 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17663
17664         * mempool.c: added code to help debug mempool allocations.
17665
17666 2007-01-11  Dick Porter  <dick@ximian.com>
17667
17668         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17669         support (experimenting with faking it with IP_MTU_DISCOVER for
17670         systems that don't have IP_DONTFRAGMENT.)
17671         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17672         icall.
17673
17674         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17675
17676         * socket-io.h: Add new fields to MonoSocketAsyncResult
17677         corresponding to the new ones in Socket.cs.
17678
17679 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17680
17681         Fix IronPython regression mentioned in #80249
17682         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17683         'cached_context' field, since it may have been initialized as a
17684         side-effect of metadata parsing.
17685
17686         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17687         (_MonoGenericClass.cached_class): Move here and rename from lone
17688         remaining field of ...
17689         (_MonoInflatedGenericClass): ... this.  Remove.
17690         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17691         to changes.
17692
17693         Fix mcs/tests/test-128.cs regression.
17694         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17695         2007-01-10 change below.
17696         [MONO_TYPE_OBJECT]: Recurse into array case.
17697
17698 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17699
17700         * class-internals.h (mono_get_inflated_generic_class): Remove.
17701         * class.c (mono_get_inflated_generic_class): Remove.
17702         (mono_generic_class_get_class): Rename from
17703         mono_class_create_generic.
17704         (mono_class_from_mono_type) [GENERICINST]: Use it.
17705         * reflection.c, metadata.c: Update to changes.  Use
17706         'mono_class_from_mono_type'.
17707
17708 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17709
17710         * reflection.c: use passed type when encoding an array element
17711         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17712
17713 2007-01-09  Robert Jordan  <robertj@gmx.net>
17714
17715         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17716         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17717         Fixes bug #80392.
17718
17719 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17720
17721         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17722
17723         * object.c (set_value): Avoid aliasing between type->data.klass
17724         and type->data.generic_class.
17725
17726         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17727
17728 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17729
17730         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17731         between type->data.klass and type->data.generic_class.
17732
17733 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17734
17735         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17736         value in out parameters.
17737
17738 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17739
17740         Simplify invariant for MonoGenericClass::klass field.
17741         * class.c (mono_class_create_generic): Verify 'klass' is null.
17742         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17743         initialize 'klass' field.
17744
17745 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17746
17747         Ongoing work to avoid redundant data and simplify invariants.
17748         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17749         'generic_class', and change type to a GenericInst.
17750         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17751         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17752
17753 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17754
17755         * class.c : skip io-layer under PLATFORM_WIN32.
17756
17757 2007-01-03  Tor Lillqvist  <tml@novell.com>
17758
17759         Fix #80305: In a bundled executable, look in the bundled exe
17760         assembly to determine the runtime version. Add the possibility to
17761         bundle also the machine.config file.
17762         
17763         * assembly.c (mono_assembly_open_from_bundle): Make
17764         non-static. Allow being called even if we have no bundled
17765         assemblies, and return NULL right away in that case.
17766
17767         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17768         here.
17769
17770         * domain.c (app_config_parse): Take an assembly exe file name as
17771         parameter instead of a config file name. Check for a bundled
17772         config file for that assembly by calling
17773         mono_config_string_for_assembly_file() (see below) before looking
17774         for one in the file system.
17775         (get_runtimes_from_exe): Corrsponding change to call of
17776         app_config_parse().
17777         (get_runtimes_from_exe): Check for bundled assembly exe file first
17778         by calling mono_assembly_open_from_bundle(). If no bundled
17779         assembly exe file is found, call mono_image_open() as before to
17780         look it up in the file system.
17781
17782         * mono-config.c: Add variable bundled_machinec_onfig.
17783         (mono_config_string_for_assembly_file): New function.
17784         (mono_config_for_assembly): Move code snippet that looks for a
17785         bundled assembly .config file into the above new function. Call
17786         it.
17787         (mono_register_machine_config, mono_get_machine_config): New
17788         functions to set and retrieve
17789
17790         * assembly.h: Declare mono_register_machine_config().
17791
17792         * mono-config.h: Declare mono_get_machine_config() and
17793         mono_config_string_for_assembly_file().
17794
17795         * icall.c: No declaration of environ necessary on Win32. It is
17796         declared (as a macro expanding to a function call) in stdlib.h.
17797         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17798         New internal mono function. Returns the value of
17799         mono_get_machine_config() as a Mono string.
17800
17801         * icall-def.h: Add get_bundled_machine_config().
17802
17803 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17804
17805         Remove redundant field
17806         * class-internals.h (_MonoGenericContext.container): Remove field.
17807         * loader.c (mono_method_get_signature_full): Don't parse a
17808         "container" for a signature parse when the signature is inflated
17809         immediately.
17810         (method_from_methodspec): Likewise, for a generic_inst.
17811         * class.c, metadata.c, reflection.c: Update to changes.
17812
17813 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17814
17815         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17816         'cached_context', and change semantics -- it starts off NULL, and
17817         is initialized on demand.
17818         * class.c (mono_generic_class_get_context): New accessor to
17819         replace 'context' field accesses.
17820         (mono_class_get_context): New helper.
17821         (*): Update to changes.
17822         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17823
17824 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17825
17826         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17827         before the memcpy.   Fixes Marshal2 regression.
17828
17829 2007-01-02  Jb Evain  <jbevain@gmail.com>
17830
17831         * blob.h: add a MONO_TYPE_ENUM definition
17832         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17833         fix the encoding of arrays of enums in custom attributes.
17834
17835         Fixes #79666.
17836
17837 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17838
17839         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17840         string is null terminated, but only cut the string short if it
17841         overflows the buffer.   
17842         
17843         (mono_string_to_byvalstr): Also fix this routine.   The code here
17844         was not properly terminating a string (it was only terminated
17845         because of the previous catch-all memset). 
17846
17847         I left the memset, because I do not know if applications expect
17848         the runtime to clear this region. 
17849
17850         Fixes #79944.
17851
17852         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17853         Clear the error before returning to unmanaged code to prevent the
17854         runtime from being confused later on (fixes  80420).
17855         (ves_icall_type_from_name): Always call mono_loader_clear_error
17856         after parsing a type that could have failed.
17857         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17858
17859         * loader.c (mono_loader_clear_error): Fix indentation.
17860
17861 2006-12-28  Martin Baulig  <martin@ximian.com>
17862
17863         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17864
17865 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17866
17867         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17868         getting a token for an EnumBuilder.
17869
17870 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17871
17872         * reflection.c: be more careful in case resource generation
17873         fails to create the data array.
17874
17875 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17876
17877         * sgen-gc.c: write barrier for clone and fix unregister handles.
17878
17879 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17880
17881         * reflection.c: some fixes needed in the generics code for the moving GC.
17882
17883 2006-12-22  Robert Jordan  <robertj@gmx.net>
17884
17885         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17886         account. Fixes bug #80299.
17887
17888 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17889
17890         Fix WaitHandle usage in delegates.
17891         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17892         * object.c (mono_wait_handle_new): Use the property set method to
17893         initialize the handle.
17894         (mono_wait_handle_get_handle): New.
17895         * threadpool.c (mono_async_invoke): Use it.
17896         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17897         Likewise.
17898         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17899
17900 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17901
17902         * marshal.c (emit_marshal): Call emit_marshal_variant and
17903         emit_marshal_com_interface when applicable.
17904         (emit_marshal_variant, emit_marshal_com_interface): Add
17905         methods for this case and remove if's from emit_marshal_object.
17906         
17907 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17908
17909         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17910
17911 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17912
17913         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17914         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17915         and GlobalFree on Windows. Remove FIXME.
17916
17917 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17918
17919         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17920         implementation for managed objects.
17921
17922 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17923
17924         * object.c: implemented code to be used for checking
17925         that no reference field overlaps with non-references.
17926
17927 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17928
17929         * threadpool.c: fix queue code to be compatible with the
17930         moving GC.
17931
17932 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17933
17934         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17935         in structures by throwing ArgumentNullException.
17936
17937         (emit_marshal_safehandle): Also when they are null parameters.
17938
17939         (emit_marshal_safehandle): Add support for ref
17940         SafeHandles parameters
17941
17942 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17943
17944         * profiler.c: updated to use the mono-dl API instead of
17945         gmodule.
17946
17947 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17948
17949         * profiler.c: updated to use the mono-dl dynamic loading
17950         API instead of gmodule.
17951
17952 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17953
17954         * profiler.c: use readlink, older versions of glib don't have
17955         g_file_read_link ().
17956
17957 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17958
17959         * profiler.c: try to detect the path to mono if libc fails to provide
17960         a useful name (bug #80286).
17961
17962 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17963
17964         Fix #80242
17965         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17966         instance, use the generic type definition instead.
17967         (ves_icall_Type_GetNestedTypes): Likewise.
17968         * class.c (mono_class_create_generic): Always set the
17969         nested_classes of a generic instance to NULL, even if the generic
17970         type definition has nested types.
17971
17972 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17973
17974         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17975         and fix on Linux.
17976         
17977 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17978
17979         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17980         my arguments were in the wrong order.   I also fixed the Windows
17981         version which seems to have had the same issue.
17982
17983         (mono_free_bstr): On Unix, this is g_free.
17984         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17985         conversions (for the tests in corlib to pass).
17986
17987 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17988
17989         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17990         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17991         exception if a ref SafeHandle in a struct has changed).
17992         
17993         (emit_struct_conv): Do not perform layout checks for classes
17994         derived from SafeHandle, as those are specially handled. 
17995
17996         (emit_object_to_ptr_conv): Add support for
17997         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17998
17999         (emit_marshal_safehandle): Implement conversion of return values
18000         of safehandles (MARSHAL_ACTION_CONV_RESULT).
18001         
18002         * threads.c: WaitHandle now is compiled with two different handles
18003         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
18004         for 2.0.
18005         
18006         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
18007         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
18008         these routines to cope with both kinds of fields.
18009
18010 2006-12-12  Miguel de Icaza  <miguel@novell.com>
18011
18012         * metadata.c (mono_type_to_unmanaged): Handle the case where
18013         type->data.klass is a SafeHandle, and in that case, return the
18014         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
18015         MONO_MARSHAL_CONV_SAFEHANDLE. 
18016
18017 2006-12-11  Miguel de Icaza  <miguel@novell.com>
18018
18019         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
18020         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
18021         calling emit_marshal_object.
18022
18023         (emit_marshal_safehandle): Implement marshalling of
18024         SafeHandle parameters (no ref support yet).
18025
18026         (MarshalAction): Document the defines as I implement
18027         them for SafeHandle.
18028
18029         (emit_marshal_object): indentation police.
18030
18031         * class-internals.h: Define MonoSafeHandle.
18032         Add safehandle_class to MonoDefaults type.
18033
18034         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
18035         list of classes to check for fields. 
18036
18037         * domain.c (mono_init_internal): Add SafeHandle to the list of
18038         mono_defaults loaded.
18039
18040 2006-12-15  Raja R Harinath  <rharinath@novell.com>
18041
18042         Fix #80253
18043         * reflection.c (mono_reflection_bind_generic_parameters): If the
18044         generic type definition is a type builder, ensure that it is fully
18045         initialized before instantiating it.  Kill some dead code.
18046
18047 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
18048
18049         * object.c: clear the loader_error () before loading
18050         more metadata stuff (bug #80258).
18051
18052 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
18053
18054         * icall.c, icall-defs.h: type modifiers icalls for
18055         parameters and properties.
18056
18057 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
18058
18059         * object.c, icall.c: fixed warnings.
18060
18061 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18062
18063         * marshal.c: fixed a couple of leaks and coding style in a few places.
18064
18065 2006-12-08  Dick Porter  <dick@ximian.com>
18066
18067         * process.c: Cope with NULL ProcessStartInfo arguments on windows
18068         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
18069         80173.
18070
18071 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18072
18073         * process.c: ProcessStartInfo may have only filename set and
18074         arguments can be NULL.
18075
18076 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18077
18078         * icall.c: fix leak found by Robert Jordan.
18079
18080 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18081
18082         * marshal.c, marshal.h: generate managed method to access an element
18083         of a multi-dimensional array.
18084
18085 2006-11-30  Paolo Molaro (lupus@ximian.com)
18086
18087         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
18088
18089 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18090
18091         * icall.c: back out GetFields () fix until the serialization code is
18092         fixed to not depend on the incorrect behaviour.
18093
18094 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
18095
18096         * profiler.c: provide defaults if none are set.
18097
18098 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
18099
18100         * Makefile.am, attrdefs.h: new public header file with
18101         constants for attributes for use by embedders.
18102
18103 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18104
18105         * icall.c: GetFields () fix for bug #80064.
18106
18107 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
18108
18109         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
18110         removed long unused icalls.
18111
18112 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
18113   
18114         * marshal.c: 
18115                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
18116                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
18117                 can be generated without a delegate class.
18118                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
18119         
18120         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18121
18122 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18123
18124         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
18125         #80069.
18126
18127 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18128
18129         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
18130         icall-def.h: added icalls needed by System.GC.
18131
18132 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
18133
18134         * loader.c: ensure the class in catch clauses is handled
18135         correctly for generics methods (fixes bug#79980).
18136
18137 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
18138
18139         * monitor.h, monitor.c: added mono_locks_dump () function
18140         to help debug deadlocks involving managed locks.
18141
18142 2006-11-13  Dick Porter  <dick@ximian.com>
18143
18144         * file-io.c (get_file_attributes): If the file is a symlink try
18145         and get the stat data for the target, but also add the
18146         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
18147         the specs for the windows symlink support, but will probably have
18148         to be reworked when I have test data from a vista machine.  Fixes
18149         bug 79887.
18150
18151 2006-11-13  Dick Porter  <dick@ximian.com>
18152
18153         * gc.c (mono_domain_finalize): 
18154         * marshal.c (mono_delegate_begin_invoke): 
18155         * threadpool.c (socket_io_init, mono_thread_pool_init)
18156         (mono_thread_pool_finish): 
18157         * monitor.c (mono_monitor_try_enter_internal): 
18158         * threads.c (mono_thread_resume, mono_thread_init)
18159         (mono_thread_suspend_all_other_threads)
18160         (mono_thread_execute_interruption): 
18161         * appdomain.c (mono_domain_unload): Check for NULL error returns
18162         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
18163         75733.
18164
18165 2006-11-11  Miguel de Icaza  <miguel@novell.com>
18166
18167         * process.c
18168         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
18169         Only close the handle if the value of the handle is not
18170         INVALID_HANDLE_VALUE.  This just makes the process a bit more
18171         robust.
18172
18173         Improvement for #75733, so that we do not run into this problem. 
18174
18175         
18176         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
18177         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
18178         internal variables.  Fixes #79462 
18179         
18180
18181 2006-11-09  Dick Porter  <dick@ximian.com>
18182
18183         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18184         Use poll() not select().  Fixes bug 79397.
18185
18186 2006-11-09  Raja R Harinath  <rharinath@novell.com>
18187
18188         Fix #79872
18189         * assembly.c (mono_assembly_load_from_full): Check that the given
18190         image has an assembly manifest.
18191
18192 2006-11-09  Ankit Jain  <jankit@novell.com>
18193
18194         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
18195         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
18196         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
18197
18198 2006-11-07  Dick Porter  <dick@ximian.com>
18199
18200         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18201         Put the old resolver behaviour back for pre-2.0 profiles.
18202
18203 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18204
18205         * threadpool.c: precise GC and locking fixes.
18206
18207 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
18208
18209         * class.c: don't load types that have an explicit unaligned
18210         managed reference. Provide better info in the TypeLoad exception.
18211         Part of the fix for bug #79744.
18212         * object.c: use the correct check for class type load issues.
18213
18214 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18215
18216         * class.c: enforce alignment of fields with managed references
18217         even when Pack=1 is forced by the user (bug #77788).
18218
18219 2006-11-03  Dick Porter  <dick@ximian.com>
18220
18221         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18222         If the address reverse lookup fails, return it as the hostname
18223         anyway.  Fixes bug 79721.
18224
18225 2006-11-03  Dick Porter  <dick@ximian.com>
18226
18227         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
18228         Fix build on Windows.
18229
18230 2006-11-02  Dick Porter  <dick@ximian.com>
18231
18232         * icall-def.h: 
18233         * object-internals.h: 
18234         * exception.c (mono_get_exception_thread_interrupted): 
18235         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
18236         Fixes bug 74525.
18237
18238         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
18239         Check for pending Thread.Interrupt.
18240
18241 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
18242         * loader.c: Fixed bug 79684.
18243
18244 2006-10-27  Dick Porter  <dick@ximian.com>
18245
18246         * file-io.c (get_file_attributes): Force symlinks to directories
18247         to be returned as a regular file.  Fixes bug 79733.
18248 2006-10-26  Dick Porter  <dick@ximian.com>
18249
18250         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
18251         CreateFile to open a directory then we need to set the
18252         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
18253
18254 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
18255
18256         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
18257         friends.
18258
18259 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18260
18261         * sgengc.c: small cleanup of timer code.
18262
18263 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18264
18265         * sgen-gc.c: fix some warnings and start adding support for
18266         complete object removal on domain unload.
18267
18268 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
18269
18270         * assembly.c: build_assembly_name should not consider a version
18271         number without build or revision number invalid. Fixes bug #79715.
18272
18273 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
18274
18275         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
18276         call kernel32 function OutputDebugString directly.
18277         
18278         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18279         
18280 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
18281
18282         * reflection.c: small cleanup, using a function to insert a MonoString
18283         in the string heap.
18284
18285 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
18286
18287         * reflection.c: moving GC fixes.
18288
18289 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
18290
18291         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
18292         all the objects with finalizers belonging to an unloading appdomain.
18293
18294 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
18295
18296         * sgen-gc.c: added ability to allocate even when the nursery is fully
18297         pinned and fixed a couple of bugs.
18298
18299 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18300
18301         * threads.h: Revert the last change for now.
18302
18303         * threads.h (mono_thread_get_pending_exception): Rename this to
18304         mono_thread_get_undeniable_exception ().
18305
18306 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
18307
18308         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
18309         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
18310         when fname does not refer to valid assembly. This result in a more
18311         meaningful error message.
18312         * exception.c: added mono_get_exception_bad_image_format2 which 
18313         constructs a BadImageFormatException using the ctor taking a custom
18314         message and the file name. Passing in a NULL msg results in a default
18315         message.
18316         * exception.h: define mono_get_exception_bad_image_format2 function.
18317         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
18318         when file name pointed to an invalid IL image. Use 
18319         mono_get_exception_file_not_found2 to construct FileNotFoundException,
18320         as this results in a more meaningful error message.
18321
18322 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18323
18324         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
18325         #79465.
18326
18327 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
18328
18329         * metadata.c (mono_type_size): Change the align parameter to guint32 for
18330         consistency with the other _size functions.
18331         (mono_type_stack_size): Ditto.
18332
18333         * class.c object.c icall.c: Fix warnings caused by the above change.
18334
18335         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
18336
18337         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
18338
18339         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
18340
18341 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18342
18343         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
18344         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
18345         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
18346         threadpool.h, threads-types.h: mark more internal functions.
18347
18348 2006-10-11  Dick Porter  <dick@ximian.com>
18349
18350         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18351         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
18352         reproduce the bug even before applying the fix.)
18353
18354 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
18355
18356         * reflection.c: allow retrieving attributes for arguments in generic
18357         methods (bug #79241).
18358
18359 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
18360
18361         * debug-mono-symfile.c: properly check fopen () result (found by
18362         coverity).
18363
18364 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
18365
18366         * reflection.c: make error message clearer and fixed two
18367         issuelets found by Coverity.
18368
18369 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
18370
18371         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
18372
18373 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18374
18375         * object-internals.h, gc-internal.h, profiler-private.h:
18376         mark internal functions.
18377
18378 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18379
18380         * reflection.c: put data in the text section.
18381         * icall.c: recognize more types in type_from_typename ().
18382         * process.c, marshal.c: added some GC FIXMEs.
18383
18384 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18385
18386         * loader.c: check for NULL before initializing.
18387
18388 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
18389
18390         * gc.c (finalizer_thread): Use a non-alertable wait here.
18391
18392         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
18393         until the correct solution is found.
18394
18395 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18396
18397         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18398         modules with no metadata. Fixes #79596.
18399
18400         * image.c (load_metadata_ptrs): Put back the error message when
18401         the #- heap is encountered since the support is not complete yet.
18402
18403 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18404
18405         * gc.c: do not allow the user to SuppressFinalize () a
18406         delegate because it would leak the trampoline if present.
18407
18408 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18409
18410         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18411         PropertyPtr table.
18412
18413 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18414
18415         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18416
18417         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18418
18419         * row-indexes.h: Add definitions for *Ptr tables.
18420
18421         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18422
18423         * metadata.c (mono_metadata_translate_token_index): New helper function to
18424         translate table indexes used in uncompressed metadata.
18425         (mono_metadata_decode_table_row): Ditto.
18426         (mono_metadata_decode_table_row_col): Ditto.
18427
18428         * metadata.c: Add table schema for *Ptr tables.
18429
18430         * class.c loader.c: Use the new helper function to access the affected metadata
18431         tables.
18432         
18433         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18434         #38532.
18435         
18436 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18437
18438         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18439         sequences which can be unbounded in size. Fixes #79583.
18440
18441 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18442
18443         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18444         static initialization.
18445
18446         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18447
18448         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18449
18450         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18451
18452         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18453         ctor fails, i.e. throw the same exception on subsequent accesses.
18454         
18455 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18456
18457         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18458         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18459         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18460         Handle marshalling of interfaces and VARIANTs contained in structs.
18461         
18462         Code is contributed under MIT/X11 license.
18463         
18464 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18465
18466         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18467         
18468         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18469         mempool.
18470
18471 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18472
18473         * console-io.c: ignore previous SIGINT handler.
18474
18475 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18476
18477         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18478         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18479         #79460, #79461, #79485.
18480
18481         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18482
18483         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18484         #79217.
18485
18486 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18487
18488         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18489         could be generated from it.
18490
18491 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18492
18493         * rand.c: fix read loop to correctly handle EINTR.
18494
18495 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18496
18497         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18498         internal calls are defined to keep methods closer to the declaring
18499         type and allow a significant reduction in runtime relocations and
18500         memory usage.
18501
18502 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18503
18504         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18505         exception message to have FileNotFoundException use the default
18506         assembly load error message. Fixes bug #79426.
18507         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18508
18509 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18510
18511         * threadpool.c: (start_thread_or_queue) use the root domain when
18512         creating the thread instead of the async object one.
18513
18514 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18515
18516         * class.c, object.c, class-internals.h, reflection.c:
18517         for arrays, store element_size inside MonoClass (speedup
18518         for array object creation).
18519
18520 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18521
18522         * icall.c: fixed CodeBase to use the file name and not the module
18523         name (bug #79365).
18524
18525 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18526
18527         * mono-debug.c, mono-debug.h: export find_method as
18528         mono_debug_find_method ().
18529
18530 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18531
18532         * debug-helpers.c, class-internals.h: added a few functions useful
18533         when debugging under gdb.
18534
18535 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18536
18537         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18538         characters that need special handling.
18539
18540 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18541
18542         * mono-config.c: make the os/cpu specification more flexible,
18543         allowing lists and negation.
18544
18545 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18546
18547         * marshal.c: COM Interop fixes. Handle case where method->klass.
18548         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18549         calling convention on non-windows platforms. This is for
18550         compatibility with XPCOM and MainWin COM.
18551         
18552         Code is contributed under MIT/X11 license.
18553         
18554
18555 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18556
18557         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18558         correctly. Fixes #79217.
18559
18560         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18561
18562 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18563
18564         * mono-config.c: allow both an os and cpu attribute for dllmap
18565         and dllentry elemnets to enable a single config file to be used
18566         for multiple architectures.
18567
18568 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18569
18570         * loader.c: MonoLoaderError was cleared too soon on load failure.
18571         Fixes bug #79424.
18572
18573 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18574
18575         * icall.c: use the defining class vtable when accessing a
18576         static field, not a pobblibly derived class.
18577
18578 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18579
18580         * icall.c string-icalls.c: Remove references to unicode.h.
18581
18582         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18583
18584         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18585
18586         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18587         indicating the image where custom marshaller types should be looked up.
18588         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18589         custom marshallers, instead of corlib. Fixes #79425.
18590
18591 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18592
18593         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18594
18595 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18596
18597         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18598         Implement Environment.ProcessorCount.
18599         
18600         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18601         Implement Environment.ProcessorCount.
18602         
18603         * icall.c: 
18604         Add Environment.ProcessorCount icall.
18605         
18606         Patch by Jason McFall.
18607
18608 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18609
18610         * assembly.c: don't append .exe/.dll when the filename already contains
18611         one of those extensions.
18612
18613 2006-09-12  Martin Baulig  <martin@ximian.com>
18614
18615         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18616         to array interfaces.
18617
18618 2006-09-11  Martin Baulig  <martin@ximian.com>
18619
18620         * reflection.c (mono_image_build_metadata): Create the
18621         MethodImpl's after emitting all types and methods, so we don't
18622         need another fixup pass for them.
18623
18624 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18625
18626         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18627         change.
18628
18629 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18630
18631         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18632         unload.
18633
18634 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18635
18636         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18637         args is not set. Fixes #78926.
18638
18639 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18640
18641         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18642
18643         * image.c (load_class_names): Move this to class.c, and rename it to 
18644         'mono_image_init_name_cache'.
18645         (load_modules): Fix a warning.
18646
18647         * class.c icall.c image.c: Initialize image->name_cache lazily.
18648
18649         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18650         on its name using information in the AOT file.
18651
18652         * class.c (mono_class_from_name): Use the new hook function.
18653
18654 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18655
18656         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18657         correctly.
18658
18659         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18660         Fixes #79289.
18661         
18662 2006-09-06  Martin Baulig  <martin@ximian.com>
18663
18664         * icall.c (mono_lookup_internal_call): Small fix.
18665
18666 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18667
18668         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18669         double g_free.
18670
18671 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18672
18673         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18674         when --debug is specified.
18675
18676 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18677
18678         * class.c (setup_generic_array_ifaces): Fix a warning.
18679
18680 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18681
18682         * Temporarily remove the patch to assemly.c that checks the
18683         assembly versions as it breaks our gacutil.
18684
18685 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18686
18687         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18688
18689         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18690         a net 1.0 runtime.
18691
18692         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18693         created using the default ctor. Fixes #79152.
18694         (mono_string_builder_to_utf16): Ditto.
18695
18696 2006-09-01  Martin Baulig  <martin@ximian.com>
18697
18698         Fix handling of the generic array interfaces.
18699
18700         * class-internals.h
18701         (MonoDefaults): Removed `generic_array_class' and added
18702         `generic_ilist' class.
18703
18704         * class.c
18705         (mono_bounded_array_class_get): Add the new generic array interfaces.
18706         (setup_generic_array_ifaces): New static method; create vtable
18707         entries for each method in the generic array interfaces.
18708
18709         * metadata.c
18710         (select_container): Allow "parent-less" generic methods.
18711
18712         * marshal.c
18713         (mono_marshal_get_generic_array_helper): New public method.
18714
18715         * icall.c
18716         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18717         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18718         moved the interncall into System.Array.
18719
18720 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18721
18722         A few more cases of avoiding work on types with ->byref set.
18723         Has the real fix for #79238
18724         * icall.c (is_generic_parameter): New helper.
18725         (ves_icall_Type_GetGenericParameterPosition): Use it.
18726         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18727         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18728         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18729         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18730         reference types.
18731         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18732         reference types.
18733         (ves_icall_Type_get_IsGenericInstance): Likewise.
18734         (ves_icall_Type_get_IsGenericType): Likewise.
18735
18736 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18737
18738         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18739         class if possible.
18740
18741         * mempool.h (mono_mempool_get_allocated): New helper function.
18742
18743         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18744         change.
18745
18746         * mempool.c: Fix warnings and the calculation of stats.
18747
18748         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18749
18750         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18751
18752         * loader.c (mono_get_method_from_token): Update method_count stat.
18753
18754         * class-internals.h (MonoStats): Add some stats.
18755
18756 2006-08-31 Robert Jordan  <robertj@gmx.net>
18757
18758         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18759         with managed variants.
18760         All code is contributed under the MIT/X11 license.
18761         
18762 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18763
18764         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18765         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18766
18767         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18768
18769         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18770         with cycles in classes.
18771
18772         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18773
18774         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18775         missing a [MarshalAs] directive. Fixes #79203.
18776
18777         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18778         klass->marshal_info. Fixes #79217.
18779
18780 2006-08-30  Martin Baulig  <martin@ximian.com>
18781
18782         Committing a patch from Joachim Ante <joe@otee.dk>:
18783         Add support for binary data symbol stores.
18784
18785         * debug-mono-symfile.c
18786         (mono_debug_open_mono_symbol_file): Renamed into
18787         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18788         arguments.
18789
18790         * mono-debug.c
18791         (mono_debug_open_image): Added `raw_contents' and `size' args.
18792         (mono_debug_init_2_memory): New public function.
18793
18794 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18795
18796         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18797
18798 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18799
18800         * appdomain.c: implement support for ShadowCopyFiles.
18801
18802 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18803
18804         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18805         when value is NULL (and should remove CID #51).
18806
18807 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18808
18809         * image.c: moved 2 functions to ../utils.
18810
18811 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18812
18813         * gc.c: cope with the target object of a GC handle being NULL
18814         (bug #78877).
18815
18816 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18817
18818         * class.c: recursively check parent's explicit implementations
18819         of interface methods (fixes bug #79125).
18820
18821 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18822
18823         * filewatcher.c: Avoid warnings when building, do not redefine
18824         constants that are defined.
18825
18826         Remove warnings.
18827
18828 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18829
18830         * image.c: don't fail when the link points to an absolute path.
18831
18832 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18833
18834         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18835         Fix CID #3.
18836
18837 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18838
18839         * image.c (full_path): A new method used to obtain the actual path
18840         of an assembly even in the presence of symbolic links.  
18841
18842         This is necessary for the case where we are running a binary that
18843         has been GACed, but we are using the "published" path name
18844         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18845         file in the GAC.
18846
18847         This was the source of the failure for the `xsp' command with the
18848         recent AppDomain changes, as far as the runtime was concerned,
18849         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18850         $prefix/mono/gac/blah/version/blah.exe.
18851
18852         (do_mono_image_open): use full path
18853
18854 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18855
18856         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18857
18858 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18859
18860         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18861         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18862
18863 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18864
18865         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18866         small structures. Fixes #78990.
18867
18868 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18869
18870         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18871
18872         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18873
18874 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18875
18876         * appdomain.c:
18877         * marshal.c: don't load all the assemblies from a domain into newly
18878         created ones. The new domains might have different rules and load
18879         assemblies from different locations. Fixes bug #76757.
18880
18881         Patch by Lluis. Conflicts resolved by Brian Crowell.
18882
18883 2006-08-16  Alp Toker  <alp@atoker.com>
18884
18885         * socket-io.c: First half of the fix for #79084.
18886         Set sa_size to the length of the content, not that of the struct.
18887         Don't add NULL suffix to the content, this should be done in
18888         managed code if needed.
18889
18890 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18891
18892         Fix part of #79012
18893         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18894         mono_metadata_parse_type returns NULL.
18895
18896 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18897
18898         * normalization-tables.h : new file for string normalization data.
18899         * locales.c, locales.h, icall.c :
18900           added load_normalization_resource() for string normalization,
18901           and icall as well.
18902         * Makefile.am : added normalization-tables.h to the sources.
18903
18904 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18905
18906         * marshal.c: Add more helper functions to reduce code duplication and use them
18907         everywhere.
18908
18909 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18910
18911         * marshal.c: Fix non-x86 stdcall warnings.
18912         
18913         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18914         them everywhere.
18915
18916 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18917
18918         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18919         type check on multi-dimensional arrays. Fixes #79000.
18920
18921 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18922
18923         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18924         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18925         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18926         * class-internals.h: add is_com_object to class structure.
18927         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18928         null checks to COM object marshalling. Fix .ctor call on RCW.
18929         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18930         
18931         All code is contributed under the MIT/X11 license.
18932
18933 2006-08-09  Dick Porter  <dick@ximian.com>
18934
18935         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18936         racing mono_monitor_allocator_lock() somewhere, so don't delete
18937         the critical section for now.  Found by running and exiting
18938         monodevelop.
18939
18940 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18941
18942         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18943         (ves_icall_System_ComObject_FindInterface): Ditto.
18944         (ves_icall_System_ComObject_CacheInterface): Ditto.
18945
18946         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18947         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18948
18949 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18950
18951         * threadpool.c: treat pipes from process asynchronous reads as sockets
18952         when reading from them, so we get select/poll or epoll to wait for
18953         data.
18954
18955 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18956
18957         * loader.c: Fix a typo (CID #233) in the null check.
18958
18959 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18960
18961         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18962         Hopefully fixes #78949.
18963         
18964         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18965         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18966         bytes. Fixes #78972.
18967
18968 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18969
18970         * filewatcher.c: we need to set errno here.
18971
18972 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18973
18974         * filewatcher.c: let Win32Exception get the error value.
18975
18976 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18977
18978         * filewatcher.c: translate errno into win32 errors for Win32Exception
18979         to know what happened.
18980
18981 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18982
18983         * threadpool.c: Fix more warnings.
18984
18985         * assembly.c (search_loaded): Fix warnings.
18986
18987         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18988         (mono_async_invoke): Ditto.
18989
18990 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18991
18992         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18993         entries for __ComObject type in addition to ComImport types.
18994         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18995         about hash table.
18996         
18997         All code is contributed under the MIT/X11 license.
18998
18999 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
19000
19001         * image.c: avoid tentative loading of modulerefs that contain
19002         no metadata (P/Invoke library names).
19003
19004 2006-07-28  Dick Porter  <dick@ximian.com>
19005
19006         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
19007         mono_loader_lock() somewhere, so don't delete the critical section
19008         for now.  Found by running and exiting monodevelop.
19009
19010 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19011
19012         * filewatcher.c: define the inotify syscalls when we're building on
19013         linux and have sys/syscall.h. The build system might not have support
19014         for inotify but the target system might have it.
19015
19016 2006-07-26  Miguel de Icaza  <miguel@novell.com>
19017
19018         * domain.c: Documentation updates.
19019
19020         * loader.c (mono_free_method): Do not release the method
19021         information if we are being profiled, as profilers will use this
19022         information at shut down to present some data to the user.
19023
19024         This is needed so that the profiler does not crash, as the
19025         profiler tends to keep MonoMethods around, and they might become
19026         invalid if we free these.
19027
19028         (mono_get_method_constrained): Return the original CIL stream
19029         method as well, so verification can be performed against it.
19030
19031 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19032
19033         * filewatcher.[ch]: support for inotify file system watcher.
19034         * icall.c: add new internal calls for the inotify file system watcher.
19035
19036 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19037
19038         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
19039         #78888.
19040
19041 2006-07-20  Dick Porter  <dick@ximian.com>
19042
19043         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
19044         warning.
19045
19046 2006-07-20  Dick Porter  <dick@ximian.com>
19047
19048         * threads.c (start_wrapper): Do the thread cleanup while we still
19049         hold a reference to its object.  Fixes bug 78123.
19050
19051 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
19052
19053         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
19054         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
19055           "managed-to-managed".
19056         * icall.c: Redirect string constructors that take sbyte* to
19057           ves_icall_System_String_ctor_RedirectToCreateString.
19058         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
19059           to CreateString () methods with matching signature.
19060         * reflection.c: Use original security informations for
19061           MONO_WRAPPER_MANAGED_TO_MANAGED.
19062         * security-manager.c: Use original security informations for
19063           MONO_WRAPPER_MANAGED_TO_MANAGED.
19064         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
19065           that is a placeholder and only its address should be used.
19066         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
19067           that is a placeholder and only its address should be used.
19068
19069 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
19070
19071         Begin implementing COM Interop.
19072         * appdomain.c: Increment corlib version.
19073         * class.c: Set ComImport classes' parent to __ComObject.
19074         * loader.c: Mark cominterop methods as such.
19075         * domain.c: Add __ComObject class to MonoDefaults structure.
19076         * image.c: Add 2 hashtables to the image for COM Interop related methods
19077         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
19078         using the mempool allocator
19079         
19080         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
19081         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
19082         declaration for mono_metadata_type_dup_mp.
19083         
19084         * debug-helpers.c: Added strings for two additional wrapper types
19085         * object.c: Create proxy objects for ComImport classes
19086         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
19087         and added __ComObject class to MonoDefaults structure.
19088         
19089         * object-internals.h: Finish MonoRealProxy definition, and add definition of
19090         MonoComInteropProxy and MonoComObject.
19091         
19092         * marshal.c: Added support for COM Interop
19093         (signature_cominterop): Converts managed signature to corresponding
19094         unmanaged COM signature.
19095         (cominterop_get_function_pointer): gets unmanaged function pointer via
19096         COM object vtable
19097         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
19098         (cominterop_get_method_interface): returns interface type that method is defined on
19099         (mono_mb_emit_cominterop_call): emits native call to function pointer
19100         gotten from vtable
19101         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
19102         that matches signature of unmanaged function.
19103         (cominterop_get_native_wrapper): wrapper around adjusted method call.
19104         (cominterop_get_invoke): forwards call from proxy to __ComObject
19105         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
19106         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
19107         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
19108         
19109         * marshal.h: Added Marshal icall declarations.
19110         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
19111         so we can access them in finalizer
19112         
19113 2006-07-14  Dick Porter  <dick@ximian.com>
19114
19115         * object.c (mono_type_initialization_cleanup): Fix a race
19116         condition by temporarily commenting out the critical section
19117         deletion.
19118
19119 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
19120
19121         * reflection.c (create_custom_attr): Fix some warnings.
19122         (create_custom_attr_data): Ditto.
19123         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
19124         types. Fixes #78855.
19125
19126 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
19127
19128         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
19129
19130         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
19131
19132 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
19133
19134         * reflection.c (resolve_object): Add support for DynamicMethod.
19135
19136         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
19137         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
19138
19139 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
19140
19141         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
19142         don't leak GPtrArray's pdata has we have no use (nor free) for it.
19143
19144 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
19145
19146         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
19147         Fixes #77888.
19148
19149 2006-06-30  Raja R Harinath  <rharinath@novell.com>
19150
19151         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
19152         slightly: remove a shadow local variable.
19153
19154 2006-06-29  Raja R Harinath  <rharinath@novell.com>
19155
19156         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
19157         definition that introduces the virtual function slot.
19158         Also fix Coverity #105.
19159
19160 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
19161
19162         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
19163         for dynamic assemblies. Fixes #78724.
19164
19165 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
19166
19167         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
19168         Fixes #78722.
19169
19170 2006-06-21  Martin Baulig  <martin@ximian.com>
19171
19172         * reflection.c
19173         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
19174         fixes #76484.
19175
19176 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
19177
19178         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
19179
19180 2006-06-20  Raja R Harinath  <rharinath@novell.com>
19181
19182         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
19183         nor TYPEREFs.
19184         * class.c (mono_class_create_from_typespec): Add 'context' argument.
19185         Inflate result if necessary.
19186         (mono_class_get_full): Remove old version.  Rename from
19187         'mono_class_get' and add 'context' argument.  Pass it to
19188         ..._create_from_typespec.
19189         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
19190         (mono_ldtoken): Revert change below.
19191
19192 2006-06-20  Martin Baulig  <martin@ximian.com>
19193
19194         * class.c (mono_ldtoken): Don't pass the generic context to
19195         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
19196
19197 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
19198
19199         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
19200         and later freeing it. Fixes #78638.
19201
19202 2006-06-15  Miguel de Icaza  <miguel@novell.com>
19203
19204         * icall.c (mono_class_get_throw): Revert over-zealous error
19205         throwing, the caller for mono_class_get_throw will cope with
19206         errors when classes are not properly initialized already.
19207
19208         The code still copes with loader exceptions though.
19209
19210         Fixes the regression in reftype1 and reftype3 from the CAS tests.
19211         
19212 2006-06-14  Miguel de Icaza  <miguel@novell.com>
19213
19214         Fixes the `make run1' version of RuntimeAbort (to be commited,
19215         source is in Bugzilla).
19216         
19217         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
19218         FALSE on class loading failure instead of returning true.
19219
19220         * class.c (mono_class_create_from_typedef): It is possible for
19221         mono_metadata_interfaces_from_typedef_full to fail if a class is
19222         not found, cope with this.
19223         
19224
19225 2006-06-14  Dick Porter  <dick@ximian.com>
19226
19227         * socket-io.c: 
19228         * process.c: Fix a bunch of signed/unsigned warnings from gcc
19229         4.1.1
19230
19231 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
19232
19233         * culture-info-table.h : oops, forgot to make it nsync with r61548.
19234
19235 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19236
19237         * icall.c: Another fix for building mono in Visual Studio.
19238
19239 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19240
19241         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
19242         
19243 2006-06-09  Martin Baulig  <martin@ximian.com>
19244
19245         * debug-mono-symfile.c: Put this back and really fix it this
19246         time. Sorry for all the trouble.
19247
19248 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
19249
19250         * icall.c (mono_class_get_throw): Fix a warning.
19251         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
19252         ReflectionTypeLoadException if needed. Fixes #78606.
19253
19254         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
19255         (mono_class_init): Ditto.
19256
19257         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
19258         ref_only exceptions.
19259         (mono_loader_clear_error): Make this work even if there is no error.
19260
19261 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
19262
19263         * object-internals.h marshal.c marshal.h icall.c: Implement method 
19264         Marshal.GetComSlotForMethodInfo using internal call.
19265
19266 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
19267
19268         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
19269         a function for signalling it.
19270
19271         * class.c (mono_class_from_typeref): Use the new kind of loader error when
19272         a referenced assembly is not found.
19273
19274         * loader.c (mono_loader_error_prepare_exception): Add support for 
19275         LOADER_ERROR_ASSEMBLY. Fix formatting.
19276
19277 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19278
19279         * domain.c appdomain.c class-internals.h marshal.c: Add support 
19280         for VARIANT marshalling on windows and increment corlib version
19281         since Variant struct was added.
19282
19283 2006-06-03  Miguel de Icaza  <miguel@novell.com>
19284
19285         * debug-mono-symfile.c: Revert Martin's previous patch which broke
19286         stack trace line information:
19287
19288         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
19289         (Martin) when looking up B which is between A and C, return A not C.
19290
19291         Bug is #78573.
19292
19293         Thanks to Alexander Olk for tracking this down.
19294
19295 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
19296
19297         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
19298         
19299         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
19300         avoid clobbering its value.
19301         (mono_string_to_lpstr): Fix a warning on windows.
19302
19303 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19304
19305         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
19306
19307         * reflection.c loader.c: Removed references to 'dummy' flag.
19308
19309         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
19310
19311         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
19312         it gets GC tracking.
19313
19314         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
19315         GC tracking.
19316         
19317         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
19318
19319         * marshal.c threadpool.c: Update callers of mono_async_result_new.
19320
19321         * appdomain.c: Bump corlib version.
19322
19323 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19324
19325         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19326         CEE_STIND_REF when working with object references.
19327
19328 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19329
19330         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
19331         Fixes #78539.
19332
19333 2006-05-30  Miguel de Icaza  <miguel@novell.com>
19334
19335         * loader.c (method_from_memberref): Fix argument value for
19336         mono_loader_set_error_method_load (I was passing the MonoClass
19337         instead of the class name char *).
19338
19339 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19340
19341         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19342         CEE_STIND_REF when working with object references.
19343
19344 2006-05-30  Martin Baulig  <martin@ximian.com>
19345
19346         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
19347         mono_method_full_name() change and replace the ':' with a '.'
19348         here.
19349
19350 2006-05-30  Martin Baulig  <martin@ximian.com>
19351
19352         * debug-mono-symfile.c
19353         (mono_debug_symfile_lookup_location): Fix the algorithm:
19354         when looking up B which is between A and C, return A not C.
19355
19356 2006-05-29  Martin Baulig  <martin@ximian.com>
19357
19358         * mono-debug.h
19359         (MonoDebugMethodInfo): Make the typedef public.
19360         (MonoDebugSourceLocation): New public struct.
19361
19362         * mono-debug.c
19363         (mono_debug_source_location_from_address): Removed.
19364         (mono_debug_source_location_from_il_offset): Removed.
19365         (mono_debug_il_offset_from_address): Removed.
19366         (mono_debug_address_from_il_offset): Removed.
19367         (mono_debug_lookup_method): New public function.
19368         (mono_debug_lookup_source_location): New public function; replaces
19369         the old mono_debug_source_location_from_*() functions; see the
19370         inline documentation.
19371         (mono_debug_free_source_location): New public function.
19372         (mono_debug_print_stack_frame): New public function; see the
19373         inline documentation.
19374
19375         * debug-mono-symfile.c
19376         (mono_debug_find_source_location): Renamed into
19377         mono_debug_symfile_lookup_location(); only take a
19378         `MonoDebugMethodInfo *' and an `offset' argument; added inline
19379         documentation.
19380         (mono_debug_find_method): Renamed into
19381         mono_debug_symfile_lookup_method().
19382
19383 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
19384
19385         * assembly.c (mono_assembly_open_full): Dont overwrite the status
19386         returned by mono_image_open_full ().
19387
19388         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
19389         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
19390         #78517.
19391
19392         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
19393         #78518.
19394
19395 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19396
19397         * class.c (mono_class_from_typeref): handle missing images
19398         earlier, deals with bug #78418.   Refactor code; 
19399
19400         Fix a warning introduced in my previous commit (some stale code
19401         from before I revisited my patch).
19402
19403         * class.c (mono_class_create_from_typedef): On failure, remove the
19404         class from the MonoImage->class_cache as the class is not
19405         initialized;   Fixes the leak pointed out by Paolo.
19406
19407 2006-05-25  Dick Porter  <dick@ximian.com>
19408
19409         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19410         DeleteCriticalSections until I figure out which one may still be
19411         sometimes locked when mono_thread_cleanup is called.
19412
19413 2006-05-24  Dick Porter  <dick@ximian.com>
19414
19415         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19416         of mono_thread_manage and back into its own function, so it can be
19417         called after the finalizer thread has finished.
19418
19419         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19420
19421 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19422
19423         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19424         Fixes #78495.
19425
19426         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19427         with non-blittable elements.
19428         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19429
19430 2006-05-24  Martin Baulig  <martin@ximian.com>
19431
19432         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19433         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19434
19435         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19436         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19437         `mono_debugger_event_handler' to NULL.
19438
19439 2006-05-24  Martin Baulig  <martin@ximian.com>
19440
19441         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19442
19443 2006-05-24  Martin Baulig  <martin@ximian.com>
19444
19445         * mono-debug-debugger.h
19446         (mono_debugger_create_notification_function): Added
19447         `MonoCodeManager *' argument.
19448
19449 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19450
19451         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19452
19453 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19454
19455         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19456         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19457         implementation.
19458
19459 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19460
19461         * icall.c: precise GC support: objects can't be stored in unmanaged
19462         memory anymore, even if they are kept alive by other references: since
19463         they can move the GC needs to be able to always find them.
19464
19465 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19466
19467         * object.c: precise GC support for static fields. Support
19468         for moving GCs: write barriers and pinned allocation for interned
19469         strings.
19470
19471 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19472
19473         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19474         structure.
19475
19476 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19477
19478         * class.c, gc.c: sgen and precise GC updates.
19479
19480 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19481
19482         * marshal.h, marshal.c: added write barrier wrapper and precise type
19483         fixes.
19484
19485 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19486
19487         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19488         support.
19489
19490 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19491
19492         * reflection.c: precise and sgen GC updates.
19493
19494 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19495
19496         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19497
19498 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19499
19500         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19501
19502 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19503
19504         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19505         MONO_TYPE_OBJECT. Fixes #78462.
19506
19507 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19508
19509         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19510         and blittable types.
19511
19512 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19513
19514         * class.c (mono_class_get_exception_for_failure): Implement parts
19515         of a TODO: if the loader error is set (instead of the class
19516         error), we return a Loader exception that can be properly thrown
19517         elsewhere.
19518
19519         This was exposed by some Winforms 2.0 code that I tried to run
19520         (Atsushi pointed me to it).
19521
19522 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19523
19524         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19525         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19526         
19527         * marshal.c (emit_marshal_vtype): Add limited support for 
19528         UnmanagedType.LPStruct. Fixes #78427.
19529
19530         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19531         Applied a patch from kangaroo to fix #77523.
19532
19533 2006-05-17  Martin Baulig  <martin@ximian.com>
19534
19535         * threads.c
19536         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19537         (debugger_thread_created): Removed.
19538         (debugger_thread_exited): Removed.
19539
19540 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19541
19542         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19543
19544         * object-internals.h (MonoReflectionResource): Sync with managed version.
19545
19546 2006-05-12  Wade Berrier <wberrier@novell.com>
19547
19548         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19549
19550 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19551
19552         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19553         functions try to allocate from the image mempool.
19554
19555 2006-05-12  Dick Porter  <dick@ximian.com>
19556
19557         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19558
19559 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19560
19561         * object.c: The FieldGetter and FieldSetter methods require the full
19562         name of the class, not only the name. Fixes bug #78277.
19563
19564 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19565
19566         * loader.c (method_from_memberref): Do not pass the NULL klass to
19567         mono_loader_set_error_() methods.  Pass the non-NULL value
19568         (class). 
19569
19570 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19571
19572         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19573         (mono_assembly_close): Null out assembly->image->references after freeing it.
19574
19575         * image.c (mono_image_close): Free image->references.
19576         
19577         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19578
19579 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19580
19581         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19582         before checking if it's NULL (g_assert).
19583
19584 2006-05-10  Martin Baulig  <martin@ximian.com>
19585
19586         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19587         I thought I already killed that two months ago, but now it somehow reappeared.
19588
19589 2006-05-10  Martin Baulig  <martin@ximian.com>
19590
19591         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19592
19593 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19594
19595         * reflection.c: Allocate memory for dynamically created methods in the image
19596         mempools.
19597
19598 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19599
19600         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19601         don't use the ad pointer before checking if it's NULL (g_assert).
19602
19603 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19604
19605         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19606         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19607
19608         * marshal.c: Allocate all signatures from mempools.
19609
19610         * marshal.c: Allocate some more signatures from mempools.
19611
19612 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19613
19614         * object.c (mono_load_remote_field): The code used to provide a
19615         temporary variable for returning results if the user did not
19616         provide a result pointer.  But our temporary variable was allocted
19617         on the satck.
19618
19619         Fix calling code to always pass a result area.   Coverity ID 103.
19620
19621 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19622
19623         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19624         value, not the old. Fixes #78312.
19625         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19626
19627         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19628         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19629         per-image cache.
19630
19631         * assembly.c (mono_assembly_close): Free image->references.
19632
19633         * assembly.c (mono_assembly_names_equal): Fix a warning.
19634         (mono_assemblies_cleanup): Cleanup more global data.
19635
19636         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19637
19638         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19639         ptr_cache and image->modules.
19640
19641         * image.c (mono_image_init): Allocate array_cache lazily.
19642         
19643 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19644
19645         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19646         behavior was changed recently and has bad side effects.
19647
19648 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19649
19650         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19651         
19652         * assembly.c (mono_assembly_close): Remove a debug printf.
19653
19654         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19655
19656         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19657         to also allow for temporary references between mono_image_open ()/close ().
19658
19659         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19660
19661 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19662
19663         * marshal.c: Fix support for dynamic methods.
19664
19665         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19666
19667         * marshal.c (mono_marshal_cleanup): New cleanup function.
19668
19669         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19670         image mempools.
19671
19672         * class.c (mono_class_init): Fix leaking class->nested_classes.
19673
19674         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19675
19676         * image.c (mono_image_init): Initialize the new cashes.
19677
19678         * image.c (mono_image_close): Destroy the new cashes.
19679
19680         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19681
19682         * mempool.c (mono_mempool_strdup): New helper function.
19683
19684         * class-internals.h: Add prototype for mono_loader_unlock ().
19685
19686         * domain.c (mono_jit_info_table_find): Fix a warning.
19687         (mono_debugger_check_runtime_version): Ditto.
19688
19689         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19690         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19691         functions to these modules.
19692
19693         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19694         metadata modules.
19695         
19696         * marshal.c (mono_free_bstr): Fix a warning.
19697
19698         * assembly.c (mono_assembly_open_full): Fix another small leak.
19699
19700         * object.c: Fix some unload leaks in the remoting code.
19701
19702         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19703         function.
19704
19705         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19706
19707         * reflection.c: Fix some unload leaks in dynamic assemblies.
19708
19709 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19710
19711         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19712         * marshal.h: Add BSTR support on Win32
19713         * icall.c: Add BSTR icalls
19714         * metadata.h: Add BSTR enums
19715
19716 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19717
19718         Work to catch the crash from #76795 and turn it into an
19719         exception.   As I stubbed out pieces of the VisualBasic support,
19720         I found a number of places where the code was failing and I added
19721         checks to those places. 
19722         
19723         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19724         function return a status code.  If we fail to parse the signature
19725         from mono_metadata_parse_generic_inst, return FALSE.
19726
19727         * loader.c (mono_get_method_from_token): If we fail to load the
19728         method (mono_class_get) return NULL.   
19729
19730         * (method_from_memberref): Return NULL if we are unable to parse
19731         the method signature
19732
19733         (mono_loader_error_prepare_exception): Since we now use the
19734         loader_error flag internally to stop processing, and obtaining
19735         exceptions that might be thrown will walk this code path the
19736         proper way of going from a MonoLoaderError into a
19737         MonoException was convoluted.   This new routine encapsulates the
19738         process of turning the error into an exception and *clearing* the
19739         error afterwards.
19740         
19741 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19742
19743         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19744         with missing assemblies), and to cope with:
19745
19746                 * Missing fieldref from a non-existing assembly.
19747                 * Missing methodref from a non-existing assembly.
19748
19749         The first batch of work to address *some* of the issues from 76661.
19750         
19751         * object.c (mono_class_create_runtime_vtable): If we fail to
19752         initialize the class raise the exception here. 
19753
19754         * metadata.c (mono_class_get_overrides_full): If any methods fail
19755         to load return the failure to the caller.
19756
19757         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19758         flagging assemblies that failed to load.   
19759
19760         Do not crash if we are unable to load the assembly.
19761
19762         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19763         assemblies. 
19764
19765         * loader.c (mono_loader_set_error_type_load): Change the
19766         convention to always pass unallocated strings, so we make our own
19767         copies (I know our own code had duplicated strings before, but
19768         this keeps the normal conventions).
19769         (method_from_memberref): Call mono_loader_set_error_method_load
19770         for all possible failures of loading the class. 
19771         Remove assert, turn into a loader error.
19772
19773         (mono_loader_error_to_exception): Move this routine from mini
19774         (mini_loader_error_to_exception) there was no need to have that in
19775         mini. 
19776
19777         * class.c (mono_class_from_typeref): If we were not able to load
19778         the assembly with mono_assembly_load_reference, call the
19779         mono_loader_set_error_type_load to register the problem.
19780
19781         (mono_class_setup_fields): If we fail to load the type from
19782         mono_metadata_parse_type_full, call mono_class_set_failure and
19783         break from the loop.
19784
19785         If class->exception_type is set, we do not layout the fields as
19786         that might crash the runtime, and instead return (from breaking
19787         from the previous loop).
19788
19789         (mono_class_setup_vtable): This now returns a boolean indicating
19790         whether the table was properly setup.   The decision is driven by
19791         mono_class_get_overrides_full which might run into non-existing
19792         methods. 
19793         
19794         (mono_class_init): Returns TRUE on success or FALSE if there was a
19795         problem in loading the type (incorrect assemblies, missing
19796         assemblies, methods, etc).
19797
19798         When we call mono_class_setup_fields we also check for a potential
19799         error inside this call (either a class exception or a general
19800         loader exception).
19801
19802         (mono_class_create_from_typedef): If the parent fails to load
19803         (calling mono_class_get_full) return NULL.
19804         
19805         ** Important **
19806
19807         calls to mono_metadata_parse_type_full should be checked
19808         everywhere and set the mono_class_set_failure
19809         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19810
19811         The current patch checks the places where my manually constructed
19812         tests show the errors are showing up, but we should do it
19813         everywhere. 
19814
19815         ** Important2 **
19816
19817         mono_class_init return values should be tested everywhere, like
19818         the previous case this is something that we should audit
19819         everywhere and not only on the cases exposed by the tests I
19820         created. 
19821
19822 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19823
19824         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19825         boolean parameter and instead pass the information on `options'
19826         parameter (FileOptions).
19827
19828         * icall.c: Register the new signature for MonoIO.Open.
19829
19830         * debug-helpers.c (dis_one): Trying to understand how coverity
19831         works.  Fix Run 5, item 78.
19832
19833 2006-04-26  Dick Porter  <dick@ximian.com>
19834
19835         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19836         dereference.
19837
19838 2006-04-25  Martin Baulig  <martin@ximian.com>
19839
19840         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19841
19842         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19843         debugger_thread_created().
19844         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19845         special way.
19846         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19847         (mono_debugger_finalize_threads): New function; undo the effects
19848         of mono_debugger_init_threads().
19849         (mono_debugger_create_all_threads): Removed.
19850
19851 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19852
19853         * image.c (mono_image_close): Tidy up trace messages.
19854
19855         * assembly.c (mono_assembly_close): Ditto.
19856
19857         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19858         no longer references an already freed assembly. Fixes #78168.
19859
19860 2006-04-21  Dick Porter  <dick@ximian.com>
19861
19862         * threads.c (mono_thread_detach): Fix reference counting when
19863         detaching threads.
19864
19865 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19866
19867         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19868         #78155.
19869
19870 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19871
19872         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19873         (mono_type_to_stind): Ditto.
19874
19875         * marshal.c: Use the new helper functions to simplify code.
19876
19877         * image.c (mono_image_close): Add some code for help debug assembly unloading
19878         problems.
19879
19880         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19881         image mempool.
19882
19883         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19884         assembly was already loaded in another appdomain. Fixes #78083.
19885
19886 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19887
19888         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19889         referenced assemblies.
19890         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19891
19892         * domain.c (mono_domain_free): Add a trace message.
19893
19894         * appdomain.c (add_assemblies_to_domain): Ditto.        
19895
19896         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19897         field.  
19898
19899 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19900
19901         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19902
19903 2006-04-12  Martin Baulig  <martin@ximian.com>
19904
19905         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19906         `USE_INCLUDED_LIBGC'.   
19907
19908 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19909
19910         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19911         the patch contains ../ and a small directory name later. Hopefully fixes
19912         #78035.
19913
19914 2006-04-10  Martin Baulig  <martin@ximian.com>
19915
19916         Clean up the debugger's thread-handling code.
19917
19918         The debugger's thread-handling code has been moved from
19919         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19920         over the `threads' hash, keep track of exiting threads and also
19921         use proper locking.
19922
19923         We can now debug XSP and XSP based applications with the debugger.
19924
19925         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19926
19927         * threads.h
19928         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19929         (mono_install_thread_callbacks): Likewise.      
19930
19931         * threads.c (mono_thread_callbacks): Removed.
19932         (debugger_thread_created, debugger_thread_exited): New static functions.
19933         (start_wrapper): Call debugger_thread_created().
19934         (thread_cleanup): Call debugger_thread_exited().
19935         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19936         (mono_debugger_init_threads): New public function.
19937         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19938         iterate directly over the `threads' hash and also use proper locking.
19939
19940         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19941
19942         * mono-debug-debugger.h
19943         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19944
19945 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19946
19947         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19948         argument type=array. Fixes #78057.
19949
19950 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19951
19952         * culture-info-table.h : regenerated. Fixed bug #69652.
19953
19954 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19955
19956         * loader.c metadata.c: Reapply a variant r59116.
19957         
19958         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19959
19960         * class.c (mono_class_setup_interface_offsets): New internal function.
19961
19962         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19963         interfaces too. Fixes #77398.
19964
19965         * reflection.c (encode_cattr_value): Add support for 
19966         parameter type=object, argument type=array.
19967         (load_cattr_value): Ditto. Fixes #77916.
19968
19969         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19970         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19971
19972         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19973         a byval char array and CharSet is Ansi.
19974
19975         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19976
19977 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19978
19979         * metadata.c: Add some locking comments.
19980         
19981         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19982         mempool.
19983         (mono_metadata_free_method_signature): Don't free the signature itself.
19984
19985         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19986
19987         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19988         reference the same MonoImage.
19989         (mono_assembly_load_from_full): Add an assert.
19990
19991 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19992
19993         * image.c (mono_image_close): Don't put the image we are about to free into the
19994         loaded_images_guid_hash.
19995
19996         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19997         to reduce code duplication.
19998
19999         * marshal.c: Register the native functions called by this module as icalls, to
20000         somewhat centralize the creation of MonoMethodSignature's.
20001
20002         * loader.c (mono_method_signature): Add a cache for method signatures.
20003
20004         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
20005         the parameter attributes of a method.
20006         (mono_metadata_parse_method_signature_full): Refactored the computation of
20007         parameter attributes into a separate function. Also avoid one allocation in
20008         most cases.
20009
20010         * assembly.c (mono_assembly_close): Ditto.
20011
20012         * image.c (mono_image_close): Log trace messages with INFO level.
20013
20014         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
20015
20016         * image.c reflection.c: Correct reference counting of image modules.
20017         
20018         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
20019         of this function from the image mempool.
20020         
20021         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
20022         to allow more cached types to be used.
20023
20024         * mono-debug.c (mono_debug_add_method): Appled patch from
20025         David S. Miller  <davem@sunset.davemloft.net>: Access 
20026         minfo->lexical_blocks[] entry elements using read32().
20027
20028 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
20029
20030         * loader.c (mono_free_method): No longer free the method header for non-dynamic
20031         methods as it is allocated from the mempool.
20032
20033         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
20034         image mempool.
20035
20036         * metadata-internals.h: Add comments describing the reference counting scheme
20037         used for MonoImage and MonoAssembly.
20038
20039         * image.c assembly.c reflection.c: Rework reference counting of images and 
20040         assemblies so they are freed when the runtime is shut down. Free some 
20041         additional memory structures when an image is unloaded.
20042         
20043 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
20044
20045         * class.c loader.c reflection.c: Allocate more data structures in
20046         the image mempool.
20047
20048 2006-03-31  Miguel de Icaza  <miguel@novell.com>
20049
20050         * icall.c
20051         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
20052         build on pre glib 2.4 systems.
20053
20054 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
20055
20056         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
20057
20058         * icall.c: Fix some warnings.
20059
20060 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
20061
20062         * culture-info-table.h : regenerated.
20063
20064 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
20065
20066         * threads.c, object-internals.h, verify.c: changed the culture caching
20067         code to use a normal MonoArray for storage so the GC can keep track of
20068         them easily. Fixed bits of the cache logic, too and simplified the
20069         code.
20070
20071 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
20072
20073         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
20074         thread for non-Boehm GCs.
20075
20076 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
20077
20078         * domain.c, object.c, domain-internals.h: reduce the amount of memory
20079         needed to keep track of the data for static fields.
20080
20081 2006-03-29  Raja R Harinath  <rharinath@novell.com>
20082
20083         Fix #75172
20084         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
20085         for interface classes.  Use 'num_methods' instead.
20086         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
20087         before using '->vtable_size' field.
20088
20089 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
20090
20091         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
20092         doesn't contain managed pointers, so use a normal hashtable.
20093
20094 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
20095
20096         * reflection.c, class-internals.h, domain.c: fixed handling of types
20097         used as values for objects in custom attributes (bug #77915):
20098
20099 2006-03-24  Martin Baulig  <martin@ximian.com>
20100
20101         * class.c (mono_class_setup_fields): Added support for generic
20102         instances; fixes #77580.
20103
20104 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20105
20106         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
20107
20108 2006-03-24  Dick Porter  <dick@ximian.com>
20109
20110         * file-io.c (get_file_attributes): More stat macro breakage.
20111         Fixes bug 77759.
20112
20113 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
20114
20115         * profiler.c: added the file=filename option in the default profiler
20116         to output the profile data to filename.
20117
20118 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20119
20120         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
20121         bug #77877.
20122
20123 2006-03-22  Martin Baulig  <martin@ximian.com>
20124
20125         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
20126         allocated `MonoClassField *' in `fb->handle'.
20127
20128 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
20129
20130         * class.c, image.c, metadata-internals.h: implemented new mechanism to
20131         allocate interface ID to save memory and allow better ID reuse on
20132         appdomain unload. setup_generic_vtable () removal from Martin.
20133
20134 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20135
20136         * object.h, appdomain.c, domain.c, exception.c, icall.c,
20137         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
20138         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
20139         write barriers for reference stores with managed objects accessed with
20140         C structures in the runtime and in embedding programs.
20141
20142 2006-03-20  Raja R Harinath  <rharinath@novell.com>
20143
20144         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
20145         'interface_id' and 'max_interface_id' fields of MonoClasses
20146         representing open generic types.
20147
20148 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
20149
20150         * object.h, object.c, icall.c: added functions to deal with
20151         storing valuetypes that contain references in managed objects.
20152         * reflection.c, string-icalls.c, threads.c, marshal.c: small
20153         fixes and comments around uses of mono_array_addr ().
20154
20155 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
20156
20157         * object.h, icall.c, monitor.c: object.GetHashCode ()
20158         implementation that supports the moving garbage collector.
20159
20160 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
20161
20162         * icall.c, threads-types.h, threads.c: implemented finalizer for
20163         LocalDataStoreSlot.
20164
20165 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
20166
20167         * metadata.c (mono_type_size): Add a fixme.
20168         (mono_type_stack_size): Ditto.
20169
20170         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
20171         'type_forwarders' field.
20172
20173         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
20174         attribute from net 2.0.
20175
20176         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
20177         from class.c.
20178
20179         * class.c (mono_class_setup_fields): Fix a warning.
20180         
20181         * class.c (mono_class_from_name): Add support for assemblyref entries
20182         in the EXPORTEDTYPE table.
20183
20184         * reflection.c: Add support for handling type forwarders under net 2.0.
20185
20186         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
20187         
20188 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
20189
20190         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
20191         overwriting entries in ModuleBuild->types, also clean up the code
20192         a little. Fixes #77774.
20193
20194 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
20195
20196         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
20197         load friend assembly info when present.
20198
20199 2006-03-14  Raja R Harinath  <rharinath@novell.com>
20200
20201         Fix crasher on gtest-158.cs.
20202         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
20203         the return value if the MonoClass we want is yet in an
20204         inconsistent state.
20205         * class.c (mono_class_create_from_typedef): Add an comment
20206         explaining an order dependency between mono_class_setup_parent and
20207         mono_class_setup_mono_type.
20208
20209 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
20210
20211         * class.c: documentation updates and events bug fix.
20212
20213 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
20214
20215         * class.c: some cleanup, locking fixes.
20216
20217 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
20218
20219         * class.c: fix the generics code to setup nested
20220         type info to the instantiated type (bug #77770).
20221
20222 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
20223
20224         * marshal.c: fixed a few type correctness issues.
20225
20226 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20227
20228         * loader.c: the Set/Get/Addrtess array methods should be public.
20229
20230 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
20231
20232         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
20233         
20234         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
20235         info->wrapper.
20236
20237 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
20238
20239         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
20240
20241         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
20242
20243         * mempool.c (mono_mempool_alloc): Speed this up a bit.
20244         (mono_mempool_alloc0): Ditto.
20245
20246 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20247
20248         * socket-io.c:
20249         (create_object_from_sockaddr): it was allocating 4 extra bytes
20250         for the AF_UNIX data. Fixes bug #77747.
20251
20252 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
20253
20254         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
20255
20256 2006-03-09  Dick Porter  <dick@ximian.com>
20257
20258         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
20259         Fixes bug 76966 again.
20260
20261 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
20262
20263         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
20264         names from r57532
20265         * appdomain.c: Bumped corlib version to 48 (due to r57532)
20266
20267 2006-03-07  Martin Baulig  <martin@ximian.com>
20268
20269         * object.c
20270         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
20271
20272 2006-03-07  Martin Baulig  <martin@ximian.com>
20273
20274         * class.c
20275         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
20276         regression introduced in r56970; see gtest-252.cs.
20277
20278         * loader.c (mono_get_method_constrained): Correctly handle generic
20279         methods; see gtest-253.cs.
20280
20281 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
20282
20283         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
20284
20285 2006-03-04  Martin Baulig  <martin@ximian.com>
20286
20287         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
20288         compute the parent type at runtime, just like we're already doing
20289         it for interfaces.
20290
20291         * reflection.c
20292         (mono_reflection_bind_generic_parameters): Don't compute the
20293         parent type anymore.
20294
20295         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
20296
20297 2006-03-04  Martin Baulig  <martin@ximian.com>
20298
20299         * mono-debug-debugger.h
20300         (mono_debugger_create_notification_function): Allocate memory at
20301         runtime and return a pointer to it.
20302
20303 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
20304
20305         * assembly.c: Fix windows build.
20306         
20307         * assembly.c: Fix build.
20308
20309         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
20310
20311         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
20312         
20313 2006-03-03  Dick Porter  <dick@ximian.com>
20314
20315         * process.c
20316         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20317         Check parameters before dereferencing them.  Fixes Aaron's part of
20318         bug 77393.
20319
20320 2006-03-03  Raja R Harinath  <rharinath@novell.com>
20321
20322         Fix performance regression.
20323         * loader.c (find_method_in_class): Add 'from_class' argument.
20324         Rename 'klass' argument to 'in_class'.  The signature is compared
20325         against the method in 'in_class', and the corresponding method is
20326         returned from 'from_class'.
20327         (find_method): Walk both 'in_class' and 'from_class' in parallel.
20328         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
20329         type definition and generic instantiation in parallel.
20330         (mono_get_method_constrained): Update to changes.
20331
20332 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
20333
20334         * threads.c: make sure the domain is correct, too when doing
20335         mono_thread_attach ().
20336
20337 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
20338
20339         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
20340         windows. Fixes #77683.
20341
20342 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
20343
20344         * object.h, *: introduced specific way to set elements of an array
20345         of references to be used as write barrier. Still need to audit the
20346         uses of mono_array_addr.
20347
20348 2006-03-01  Miguel de Icaza  <miguel@novell.com>
20349
20350         * object-internals.h: New field to cache the assmebly name, patch
20351         from Tambet Ingo (tambet@ximian.com)
20352
20353 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20354
20355         * decimal.h, class-internals.h, metadata-internals.h,
20356         file-io.h: mark a few function declarations as internal, to
20357         reduce the number of PLT entries.
20358
20359 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20360
20361         * file-io.c: fix typo in warning message.
20362
20363 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
20364
20365         * loader.c: on unix, lookup the "*A" version of a function
20366         if charset is auto as a second option before failing.
20367
20368 2006-02-28  Raja R Harinath  <rharinath@novell.com>
20369
20370         * class.h (mono_class_inflate_generic_method): Revert to two
20371         argument version.
20372         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
20373         (mono_class_inflate_generic_method_full): Add.
20374         * class.c (mono_class_inflate_generic_method_full): Rename from
20375         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
20376         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
20377         * loader.c, reflection.c: Update to changes.
20378
20379 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
20380
20381         * icall.c: const fixes and small improvements.
20382
20383 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20384
20385         * threadpool.c: for asynchronous connect(), enable the same workaround
20386         for BSD 6 as for the Mac. Fixes bug #77637.
20387
20388 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
20389
20390         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
20391         formatted classes. Fixes #77524.
20392
20393 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20394
20395         * class.c (inflate_generic_type): Add a couple more
20396         micro-optimizations.
20397         (inflate_generic_context): Don't use the 'gmethod' from
20398         'inflate_with'.
20399         (mono_class_inflate_generic_method): If the method has generic
20400         parameters, but the passed-in context doesn't have a 'gmethod',
20401         create one.  Use the possibly simplified generic instantiation
20402         from the declaring class instead of the one passed in.
20403
20404 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20405
20406         Make generic method signature and method header handling lazy.
20407         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20408         (inflate_generic_header): Likewise.
20409         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20410         parameter to avoid inflating types.
20411         (mono_get_inflated_method): Empty out.
20412         * class.h (mono_class_inflate_generic_method): Update to changes.
20413         * loader.c (mono_get_method_from_token): Don't parse signature for
20414         generic methods, nor methods of generic classes.
20415         (mono_method_signature): Rename from 'mono_method_signature'.
20416         Inflate signature on demand.
20417         (mono_method_get_header): Inflate method header on demand.
20418         * reflection.c: Update to changes.
20419
20420 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20421
20422         * metadata.c (mono_metadata_inflate_generic_inst): If the
20423         instantiation is closed, don't bother expanding it in the new
20424         context.
20425         * class.c (inflate_generic_class): If the generic instantiation
20426         doesn't change after inflation, return the argument itself.
20427         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20428         Add bounds checks.
20429         (inflate_generic_context): If neither the generic class nor the
20430         generic method instantiations change, return the original context.
20431         * reflection.c (mono_method_get_object): Do
20432         'mono_get_inflated_method' before accessing the ->klass field.
20433         (inflate_mono_method): Don't create a MonoGenericMethod unless
20434         necessary.
20435         (inflate_method): Don't pass a constructed type as the declaring
20436         type of a methodbuilder.
20437
20438 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20439
20440         * object.c: fix memory overwrite.
20441
20442 2006-02-22  Dick Porter  <dick@ximian.com>
20443
20444         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20445         it doesn't work any more.
20446         (mono_threads_request_thread_dump): Fix unused variable warnings.
20447
20448 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20449
20450         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20451         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20452         the public header file.
20453
20454 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20455
20456         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20457
20458 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20459
20460         * class-internals.h, object.c: reduce the size of MonoVTable
20461         and store the interface_offsets array at negative offsets.
20462
20463 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20464
20465         * metadata.c: tweak table descriptors data structures to reduce
20466         size and runtime relocations.
20467
20468 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20469
20470         * marshal.c: fix some types and opcodes to be type-safe
20471         in marshaling wrappers.
20472
20473 2006-02-21  Ankit Jain  <jankit@novell.com>
20474
20475         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20476
20477 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20478
20479         * metadata.c (get_constraints): Relax debugging checks for monodis.
20480
20481 2006-02-21  Ankit Jain  <jankit@novell.com>
20482
20483         * metadata.c (mono_metadata_load_generic_params): Move the code
20484         checking for ambiguous generic params from here to mono/dis/get.c
20485         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20486
20487 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20488
20489         Fix assertion triggered when compiling nemerle.
20490         * class.c (mono_get_shared_generic_inst): Rename from
20491         get_shared_inst and make non-static.
20492         * loader.c (mono_get_shared_generic_method): New.  Used to create
20493         the MonoGenericContext-equivalent of a MonoGenericContainer.
20494         (mono_get_method_from_token): Initialize the 'context' field of
20495         the created MonoGenericContainer.
20496         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20497         * metadata.c (get_constraints): Add sanity check.
20498         * class-internals.h: Add new internal methods.
20499
20500         * reflection.c (verify_safe_for_managed_space): New sanity check.
20501         Currently checks that owner-less generic parameters aren't allowed
20502         in managed space.
20503         (mono_type_get_object): Use it.
20504         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20505         that are now in mono_type_get_object.
20506         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20507
20508 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20509
20510         * metadata.c (mono_type_create_from_typespec): Rename from
20511         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20512         argument and caching of types in the generic container.
20513         (unwrap_arrays, find_generic_param): Remove.
20514         * metadata-internals.h: Update.
20515         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20516
20517 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20518
20519         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20520
20521         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20522         return values. Fixes #77581.
20523
20524         * class.c (mono_fnptr_class_get): Switch name and name_space.
20525
20526         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20527         classes and add support for [In, Out] attributes.
20528         (mono_marshal_free_asany): Ditto. Fixes #77524.
20529
20530 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20531
20532         * class.c (mono_class_from_generic_parameter): Make more robust to
20533         incomplete MonoGenericContainers from monodis.
20534
20535 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20536
20537         * class-internals.h: added some more exception types.
20538         * class.c, metadata.c: added a few checks to handle missing
20539         types.
20540
20541 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20542
20543         Use owner-less generic-params some more.
20544         * class.c (my_mono_class_from_generic_parameter): Remove.
20545         (mono_class_from_generic_parameter): Handle null image,
20546         param->name and param->owner.
20547         (mono_class_from_mono_type): Update.
20548         (mono_class_create_from_typespec): Remove 'container' parameter.
20549         If that parameter is non-null, the result is always inflated by
20550         'mono_class_get_full' anyway.
20551         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20552         parameter.
20553         (mono_class_get_full): Update.
20554
20555         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20556         instance is not open, don't bother inflating.
20557         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20558         parse metadata for inflated classes.
20559         (_mono_class_get): Change GenericContext* parameter to
20560         GenericContainer*.
20561         (mono_class_create_from_typespec): Likewise.  Simplify, and
20562         implement trivially.  All the cases are handled in
20563         mono_class_from_mono_type.  Don't inflate returned class.
20564         (mono_class_get_full): Delegate GENERICINST optimization to
20565         inflate_generic_type.
20566         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20567
20568 2006-02-16  Dick Porter  <dick@ximian.com>
20569
20570         * socket-io.c (create_object_from_sockaddr): Fix typo.
20571         (create_sockaddr_from_object): Check array lengths before
20572         potentially accessing items off the end.
20573         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20574         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20575         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20576         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20577         length checks to avoid wraparound overflows.
20578         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20579         contents of the array of sockets
20580         (hostent_to_IPHostEntry2)
20581         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20582         Check return value of inet_ntop ().
20583         (addrinfo_to_IPHostEntry): Fix typo
20584
20585 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20586
20587         Type metadata parsing doesn't use generic-instantiation information.
20588         * metadata.c (mono_metadata_parse_array_full): Change
20589         MonoGenericContext* parameter to MonoGenericContainer*.
20590         (mono_metadata_parse_type_full): Likewise.
20591         (mono_type_create_from_typespec_full): Likewise.
20592         (mono_metadata_parse_mh_full): Likewise.
20593         (mono_metadata_parse_generic_inst): Likewise.
20594         (do_mono_metadata_parse_generic_class): Likewise.
20595         (do_mono_metadata_parse_type): Likewise.
20596         * metadata-internals.h: Update to changes.
20597         * class.c (mono_class_find_enum_basetype): Likewise.
20598         (mono_class_setup_fields): Likewise.
20599         (mono_class_create_from_typespec): Likewise.
20600         * loader.c (method_from_methodspec): Likewise.
20601         (mono_get_method_from_token): Likewise.
20602         (mono_method_get_header): Likewise.
20603
20604 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20605
20606         * marshal.c: handle additional GENERICINST case (patch from
20607         Thong Nguyen <tum@veridicus.com>).
20608         Fix a few cases where LDIND_I/STIND_I was used for references.
20609
20610 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20611
20612         * reflection.c (mono_reflection_get_token): Remove unused variable.
20613
20614 2006-02-16  Martin Baulig  <martin@ximian.com>
20615
20616         * reflection.c (mono_reflection_get_token): Add support for fields
20617         in instantiated generic types.
20618
20619         * icall.c
20620         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20621
20622 2006-02-15  Martin Baulig  <martin@ximian.com>
20623
20624         * icall.c
20625         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20626         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20627         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20628         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20629
20630 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20631
20632         * class.c, metadata.c, metadata.h, object.c, icall.c,
20633         marshal.c: changed mono_type_get_underlying_type () to do
20634         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20635         Fixed handling of instantiated generic valuetypes (bug #75479).
20636
20637 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20638
20639         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20640         Delegate to mono_metadata_decode_value, and work on the returned value.
20641
20642         * icall.c (ves_icall_MonoType_GetGenericArguments):
20643         Add consistency check here too.
20644         
20645 2006-02-15  Ankit Jain  <jankit@novell.com>
20646
20647         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20648         char/short etc.
20649
20650 2006-02-15  Ankit Jain  <jankit@novell.com>
20651
20652         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20653         signed values, used only for representing lower bounds of arrays.
20654         (mono_metadata_parse_array_full): Use new
20655         mono_metadata_decode_signed_value to decode lower bounds.
20656
20657 2006-02-14  Martin Baulig  <martin@ximian.com>
20658
20659         * reflection.c
20660         (mono_reflection_get_token): Support "MonoGenericMethod" and
20661         "MonoGenericCMethod" and allow generic instances / methods.
20662
20663 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20664
20665         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20666         to obtain the terminal size using an ioctl.
20667
20668         * object.c (mono_nullable_init): Revert this as nullable reference
20669         types are not valid.
20670         (mono_nullable_box): Ditto.
20671
20672 2006-02-09  Dick Porter  <dick@ximian.com>
20673
20674         * threads.c (mono_thread_detach): Drop a reference to the thread
20675         we're detaching.
20676
20677 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20678
20679         * object.c (mono_nullable_init): Handle nullable reference types.
20680         (mono_nullable_box): Ditto. Fixes #77446.
20681
20682 2006-02-07  Martin Baulig  <martin@ximian.com>
20683
20684         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20685
20686 2006-02-07  Ankit Jain  <jankit@novell.com>
20687
20688         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20689         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20690         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20691         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20692         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20693         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20694
20695 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20696
20697         * class.c (mono_class_create_generic): Set type_token as well.
20698
20699         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20700         compatible with MS.
20701
20702 2006-02-02  Martin Baulig  <martin@ximian.com>
20703
20704         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20705         has never been used so far.
20706
20707 2006-02-02  Martin Baulig  <martin@ximian.com>
20708
20709         * mono-debug-debugger.h: Changed comment at the top of this file;
20710         the header is not installed, but it's safe to #include it from
20711         within the JIT.
20712
20713         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20714         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20715
20716 2006-02-02  Martin Baulig  <martin@ximian.com>
20717
20718         * mono-debug.h
20719         (MonoSymbolTable): Removed the `metadata_info' field.
20720
20721         * mono-debug.c
20722         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20723
20724         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20725         (mono_debugger_add_builtin_types): Removed.
20726         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20727         (mono_debugger_create_notification_function): We now operate on a
20728         pre-allocated area; take a `gpointer' and return `void'.
20729
20730         * mono-debug-debugger.c
20731         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20732         (mono_debugger_add_builtin_types): Removed.
20733
20734 2006-02-02  Martin Baulig  <martin@ximian.com>
20735
20736         * threads.c (mono_debugger_create_all_threads): New public method.
20737
20738 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20739
20740         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20741         breaks on several platforms.
20742
20743 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20744
20745         * assembly.c: the VS.NET build doesn't supply default values for
20746         MONO_ASSEMBLIES and MONO_CFG_DIR.
20747
20748 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20749
20750         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20751         helper function.
20752
20753         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20754
20755         * loader.c (method_from_memberref): Fix a warning.
20756
20757         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20758
20759         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20760         with explicit layout. Fixes #77433.
20761
20762 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20763
20764         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20765         max_interface_id is initialized before using it. Fixes #77398.
20766         (ves_icall_Type_GetInterfaces): Ditto.
20767
20768 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20769
20770         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20771         allocate memory for parameter attributes when parsing memberref
20772         signatures.
20773         * loader.c (mono_loader_set_error_method_load): Don't warn.
20774         (method_from_memberref): Ensure MissingMethodException gets thrown
20775         if method is not found.  Make warning more informative.
20776
20777 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20778
20779         Fix #77397
20780         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20781         return true if is byref.
20782         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20783         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20784         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20785
20786 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20787
20788         Fix tests/find-method.2.il
20789         * loader.c (find_method, find_method_in_class): Remove is_inflated
20790         argument.  Revert 2006-01-18 change.
20791         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20792         is generic, search for method in its generic definition.
20793         * class.c (mono_class_setup_vtable_general): Print generic
20794         arguments of generic types in debugging printf.
20795
20796 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20797
20798         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20799
20800         * threads.c (mono_threads_request_thread_dump): New helper function.
20801
20802 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20803
20804         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20805
20806 2006-01-25  Ankit Jain  <jankit@novell.com>
20807
20808         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20809         move definition to ..
20810         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20811         
20812 2006-01-25  Ankit Jain  <jankit@novell.com>
20813             Raja R Harinath  <rharinath@novell.com>
20814
20815         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20816         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20817         as necessary.
20818
20819 2006-01-25  Martin Baulig  <martin@ximian.com>
20820
20821         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20822         `MonoDebuggerThread' into debug-debugger.c.
20823
20824 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20825
20826         * profiler.c: fix printing of data.
20827
20828 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20829
20830         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20831           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20832
20833 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20834
20835         * object.c: fix deadlock related to string interning.
20836
20837 2006-01-23  Martin Baulig  <martin@ximian.com>
20838
20839         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20840
20841         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20842
20843 2006-01-23  Martin Baulig  <martin@ximian.com>
20844
20845         * mono-debug.h: Moved the prototypes of some functions which are
20846         used by the JIT here from mono-debug-debugger.h.
20847
20848 2006-01-21  Martin Baulig  <martin@ximian.com>
20849
20850         * Makefile.am: Don't install mono-debug-debugger.h.
20851
20852 2006-01-21  Martin Baulig  <martin@ximian.com>
20853
20854         * mono-debug-debugger.h: Enforce the private status of this header
20855         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20856         Moved some stuff from mono-debugger-jit-wrapper.h here.
20857
20858 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20859
20860         * class.c (mono_class_from_typeref): Add a sanity test to help
20861         catch lack of assembly load/search hooks.
20862
20863 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20864
20865         * marshal.c (emit_struct_conv): Relax the fields with same offset
20866         check even more. Fixes #77230.
20867
20868 2006-01-18  Martin Baulig  <martin@ximian.com>
20869
20870         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20871         argument; if false, we compare the uninstantiated signatures.
20872         (method_from_memberref): Compare the uninstantiated signatures;
20873         fixes #76417.
20874
20875 2006-01-18  Robert Jordan  <robertj@gmx.net>
20876
20877         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20878         Clear the weak link. Fixes bug #77170.
20879
20880         * gc.c (mono_gchandle_free):
20881         Reflect *-gc.c changes (tiny optimization).
20882
20883 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20884
20885         * metadata.c (mono_metadata_signature_dup): Applied patch from
20886         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20887         Fixes #77288.
20888
20889 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20890
20891         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20892         marshalling from native to managed code. Fixes #77230.
20893
20894 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20895
20896         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20897         connect. Fixes bug #77020.
20898
20899 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20900
20901         * class.c: fixed id assignement for nested interfaces (bug #77275).
20902         Added also better info for --print-vtable debugging.
20903
20904 2006-01-12  Martin Baulig  <martin@ximian.com>
20905
20906         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20907         interfaces on-the-fly; fixes #76625.
20908
20909         * class-internals.h
20910         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20911         don't need that anymore.
20912
20913 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20914
20915         * socket-io.c
20916         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20917         To avoid initing the nested_classes when not needed I turned the
20918         PeerCredData as a toplevel internal class, as it has to be shared
20919         anyways. 
20920
20921         Fixes the CASA issue.
20922
20923 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20924
20925         * domain.c: Accessors for MonoJitInfo
20926
20927         * profiler-private.h: Add jitinfo to the end jit hook
20928
20929         * profiler.[ch]: Define new hooks, called after jitting which give
20930         the MonoJitInfo that was compiled
20931
20932 2006-01-10  Martin Baulig  <martin@ximian.com>
20933
20934         * class.c (mono_class_setup_events): Add support for generic
20935         classes; fixes #76440.
20936
20937 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20938
20939         Fix #77160.
20940         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20941         on passed-in method.
20942
20943 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20944
20945         * object.c (mono_runtime_invoke_array): Add Nullable support.
20946
20947         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20948
20949 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20950
20951         * file-io.c: Don't consider sockets as directory and avoid an endless
20952         loop. Fix bug #76966.
20953
20954 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20955
20956         * object.c (mono_nullable_init): New helper function.
20957         (mono_nullable_box): Ditto.
20958
20959         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20960
20961         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20962
20963         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20964         
20965 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20966
20967         * class.c (mono_class_is_assignable_from): Make T assignable to 
20968         Nullable<T>.
20969
20970 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20971
20972         * appdomain.c: Bump corlib version to 46.
20973         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20974         serialization purpose) and changed ves_icall_System_Reflection_
20975         Assembly_get_code_base signature to accept a boolean (to escape, or 
20976         not, the assembly code base).
20977
20978 2005-12-23  Dick Porter  <dick@ximian.com>
20979
20980         * icall.c: 
20981         * threads-types.h: 
20982         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20983         CreateEvent icall now returns "created" boolean parameter.
20984
20985 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20986
20987         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20988         #76967.
20989
20990         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20991         when attr_klass is an interface. Fixes #77045.
20992
20993 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20994
20995         * marshal.c (emit_struct_conv): Fix previous patch.
20996         
20997         * marshal.c (emit_struct_conv): Add a check for fields with the same
20998         offset.
20999
21000 2005-12-20  Raja R Harinath  <rharinath@novell.com>
21001
21002         Fix regression in Mono.C5.
21003         * class.c (mono_class_create_generic): If 'klass' is an interface
21004         set up the interface offsets.
21005         (mono_class_is_assignable_from): Don't throw away generic arguments.
21006
21007 2005-12-19  Raja R Harinath  <rharinath@novell.com>
21008
21009         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
21010         type parameters.
21011
21012 2005-12-15  Raja R Harinath  <rharinath@novell.com>
21013
21014         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
21015         dead store.
21016         (do_mono_metadata_parse_generic_class): Don't pass the current
21017         generic context when parsing the type being instantiated: it
21018         cannot use it, anyway.
21019
21020         * loader.c (method_from_memberref): Don't inflate a signature if
21021         it doesn't contain any type parameters.
21022
21023 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
21024
21025         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
21026
21027 2005-12-14  Martin Baulig  <martin@ximian.com>
21028
21029         * class.c
21030         (mono_type_get_name_recurse): Don't return null for type
21031         parameters and open generic classes.
21032         (mono_class_setup_methods): Don't exclude generic instances.
21033         (mono_get_unique_iid): Use different IDs for different
21034         instantiations of the same generic type.
21035         (mono_class_setup_vtable): Only use setup_generic_vtable() for
21036         open generic instances; create a normal vtable for closed generic
21037         instances.
21038         (mono_class_setup_vtable_general): We're now also called for
21039         closed generic instances.
21040
21041         * reflection.c
21042         (mono_reflection_bind_generic_parameters): Correctly use
21043         mono_metadata_lookup_generic_inst() everywhere.
21044
21045 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
21046
21047         * object.c (mono_class_create_runtime_vtable): Call 
21048         mono_class_setup_vtable ().
21049
21050         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
21051         function.
21052         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
21053         #76959.
21054
21055         * loader.c (mono_loader_set_error_type_load): Print the type load
21056         warnings to the console so they are more visible to the user.
21057         (mono_loader_set_error_method_load): Ditto.
21058
21059         * reflection.c (ensure_runtime_vtable): Revert the last change as it
21060         is still broken.
21061         
21062         * reflection.c (ensure_runtime_vtable): Fix build.
21063
21064         * reflection.c (ensure_runtime_vtable): Disable an optimization which
21065         doesn't work in all cases.
21066
21067 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
21068
21069         * object.c (mono_array_new_full): Treat a single dimensional array
21070         with 0 lower bounds as an szarray. Fixes #76973.
21071
21072         * reflection.c (custom_attr_visible): Really fix this.
21073
21074 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
21075
21076         * reflection.c (custom_attr_visible): Allow nested public attributes
21077         as well.
21078
21079         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
21080         interface check.
21081
21082 2005-12-12  Raja R Harinath  <harinath@gmail.com>
21083
21084         * class.c (set_generic_param_owner): Delete.
21085         (mono_class_create_from_typedef): Don't set ->owner field of
21086         generic parameters to "param containers" of enclosing classes.
21087         * reflection.c (mono_reflection_initialize_generic_parameter):
21088         Likewise.
21089
21090 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
21091
21092         * reflection.c (custom_attr_visible): Fix build.
21093
21094 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
21095
21096         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
21097         private attributes.
21098         
21099         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
21100         handling of null parameter defaults.
21101
21102 2005-12-09  Raja R Harinath  <rharinath@novell.com>
21103
21104         * class.c (mono_class_from_generic_parameter): Don't set
21105         klass->generic_container.
21106         (my_mono_class_from_generic_parameter): Likewise.
21107
21108 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
21109
21110         * reflection.c (load_public_key): Fix a warning.
21111         (method_encode_code): Fix unaligned accesses.
21112
21113 2005-12-07  Martin Baulig  <martin@ximian.com>
21114
21115         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
21116
21117         * reflection.c
21118         (write_generic_param_entry): Encode our custom attrs.
21119
21120         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
21121
21122 2005-12-07  Martin Baulig  <martin@ximian.com>
21123
21124         * reflection.c (encode_new_constraint): Removed; we don't use the
21125         `NewConstraintAttribute' anymore.
21126
21127 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
21128
21129         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
21130         not fire a TypeResolve event when Assembly.GetType () is called.
21131
21132 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
21133
21134         Beginning of support for nullable types in the runtime. Parts of
21135         this patch are from Martin.
21136
21137         * appdomain.c (MONO_CORLIB_VERSION): Bump
21138
21139         * domain.c (mono_init_internal): get the nullable type
21140
21141         * class.c (mono_class_is_nullable): New method
21142         (mono_class_get_nullable_param): New mehod
21143         (mono_class_create_generic): In types T? set cast_class to T
21144
21145         * class-internals.h (MonoDefaults): new nullable default class
21146         (mono_class_get_nullable_param, mono_class_get_nullable_param):
21147         new methods.
21148
21149 2005-12-05  Raja R Harinath  <rharinath@novell.com>
21150
21151         * metadata.c (select_container): New.  Refactor code to select the
21152         appropriate GenericContainer given the type of generic parameter
21153         we are looking for.
21154         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
21155         not a MonoGenericContext.  Use select_container.  Update parameters.
21156         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
21157         and MONO_TYPE_MVAR.
21158         (unwrap_arrays): Remove duplicate tests.
21159         (find_generic_param): Rename from 'has_same_context'.  Now walks a
21160         generic instantiated class to find any arguments that are generic
21161         parameters.
21162         (mono_type_create_from_typespec_full): Use find_generic_param to
21163         avoid evicting some generic instantiations from the typespec
21164         cache.
21165
21166 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
21167
21168         * reflection.c: fixed writing of doubles on ARM FPA.
21169
21170 2005-12-02  Robert Jordan  <robertj@gmx.net>
21171
21172         * icall.c: Fixed EventInfo.ReflectedType (#76829).
21173
21174 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21175
21176         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
21177         least on SUSE 10 they are not the same (on debian, they are just the
21178         same thing).
21179
21180 2005-12-01  Raja R Harinath  <rharinath@novell.com>
21181
21182         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
21183         DeclaringType for VARs and MVARs.
21184         * class.c (set_generic_param_owner): Fix initialization of owner
21185         fields.
21186
21187 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21188
21189         * icall.c: fixed Enum.ToObject() to correctly convert the values.
21190
21191 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21192
21193         * threadpool.c: workaround for a bug that shows up on the Mac:
21194         select()+connect() on a blocking socket is not like it should
21195         be, so we proceed to connect() in that case, wasting the I/O
21196         threadpool thread until connect succeedes. Fixes bug #75436.
21197
21198 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21199
21200         * threadpool.c: fix typo when setting file descriptor states.
21201
21202 2005-11-28  Raja R Harinath  <rharinath@novell.com>
21203
21204         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
21205         * metadata.c (mono_metadata_parse_method_signature_full): Don't
21206         create a temporary signature container.
21207         (mono_metadata_parse_generic_param): Update to changes.
21208         (mono_type_create_from_typespec_full): Update to changes.
21209         * loader.c (method_from_memberref): Don't use a
21210         MonoGenericContainer while parsing a memberref signature.
21211         (method_from_methodspec): Remove dead-store of the 'container'
21212         variable.  It's overwritten before use.
21213
21214         * metadata.c (mono_type_create_from_typespec_full): Make debugging
21215         checks tighter.
21216         (mono_metadata_parse_generic_param): Likewise.
21217         * loader.c (find_method_in_class): Does not need a
21218         MonoGenericContainer.  Use 'mono_method_signature' rather than
21219         'mono_method_signature_full'.
21220         (find_method, mono_get_method_constrained, method_from_memberref):
21221         Update to changes.
21222
21223         * metadata.c (mono_type_create_from_typespec_full): Ensure that
21224         owner-less generic-parameters are never evicted from the typespec
21225         cache.
21226
21227         * loader.c (method_from_memberref): Don't use the current context
21228         when parsing signatures.
21229         (method_from_methodspec, mono_get_method_from_token): Update to changes.
21230
21231         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
21232         side-effects in g_assert.
21233         * loader.c (mono_get_method_from_token): Resolve klass earlier so
21234         that we don't potentially lose information.
21235
21236 2005-11-26  Dick Porter  <dick@ximian.com>
21237
21238         * icall.c:
21239         * threads.c: icalls to implement basic (ie, not named)
21240         System.Threading.Semaphore.
21241
21242 2005-11-24  Dick Porter  <dick@ximian.com>
21243
21244         * process.c
21245         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
21246         Use GetProcessId() if it's available.
21247
21248 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
21249
21250         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
21251
21252 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21253             Ankit Jain  <jankit@novell.com>
21254
21255         * loader.c (mono_get_method_from_token): Initialize 'method' field
21256         of all generic parameters before parsing the signature.  Remove
21257         code that "fixed"-up MVAR references.
21258
21259 2005-11-23  Ankit Jain  <jankit@novell.com>
21260
21261         * metadata.c (mono_metadata_has_generic_params):
21262         (mono_metadata_load_generic_param_constraints):
21263         (mono_metadata_load_generic_params): Move duplicate code ...
21264         (mono_metadata_get_generic_param_row): ... here. Returns the
21265         first row-id in GenericParam table for a given owner (token).
21266         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
21267         prototype.
21268
21269 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21270             Ankit Jain  <jankit@novell.com>
21271
21272         * metadata.c (mono_metadata_class_equal): Pass signature_only when
21273         comparing VARs too.
21274         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
21275         type->data.generic_param only if the type is an MVAR.
21276         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
21277         leak owner-less VARs and MVARs into managed space.
21278
21279 2005-11-21  Martin Baulig  <martin@ximian.com>
21280
21281         * class-internals.h
21282         (MonoMethod): Moved the `generic_container' here from
21283         `MonoMethodNormal' since we now also need it for
21284         `MonoMethodPInvoke';
21285         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
21286         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
21287         an union containing both `MonoMethodNormal' and
21288         `MonoMethodPInvoke'.
21289
21290         * loader.c
21291         (mono_get_method_from_token): Allow implementing generic methods
21292         as interncalls.
21293
21294         * threads.c
21295         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
21296         icall.
21297
21298 2005-11-17  Dick Porter  <dick@ximian.com>
21299
21300         * icall.c: 
21301         * process.h: 
21302         * process.c: Split the Process Start_internal icall into
21303         ShellExecuteEx_internal and CreateProcess_internal, which are
21304         called depending on whether UseShellExecute is true.  Fixes bug
21305         76670.
21306
21307         * appdomain.c (MONO_CORLIB_VERSION): Incremented
21308
21309 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
21310
21311         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
21312         'msize' parameters, use the information in 'mspec' instead.
21313         (emit_object_to_ptr_conv): Ditto.
21314
21315         * marshal.c (emit_struct_conv): Handle explicit layout structs with
21316         fields out of order. Fixes #76733.
21317
21318 2005-11-17  Ankit Jain  <jankit@novell.com>
21319
21320         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
21321
21322 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
21323
21324         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
21325           bug #76575.
21326
21327 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21328
21329         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
21330         for types with non-auto layout. Fixes #76717.
21331
21332 2005-11-16  Ankit Jain  <jankit@novell.com>
21333
21334         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
21335         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
21336         if generic_context is null.
21337           (mono_metadata_generic_param_equal): param->owner can be null.
21338           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
21339         null.
21340
21341 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21342
21343         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
21344         the correct value.
21345
21346 2005-11-15  Martin Baulig  <martin@ximian.com>
21347
21348         * object.c (set_value): Use mono_class_from_mono_type() instead of
21349         the hack for generic instances; fixes #76136.
21350
21351 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
21352
21353         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
21354         fields.
21355
21356         * image.c (load_metadata_ptrs): Initialize the new fields.
21357
21358         * reflection.c (create_dynamic_mono_image): Ditto.
21359
21360         * reflection.c (build_compressed_metadata): Use the new fields.
21361
21362         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
21363         icall.
21364
21365         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
21366         icall.
21367         
21368 2005-11-15  Ankit Jain  <jankit@novell.com>
21369             Raja R Harinath  <harinath@gmail.com>
21370
21371         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
21372         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
21373         new per-generic_container cache if the cached MonoType's context matches
21374         the current context.
21375           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
21376         to the expected context.
21377           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
21378
21379 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21380
21381         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
21382         we changed the signature of an icall.
21383         * icall.c: Modify to mono_double_ParseImpl return true/false 
21384         depending on the success, instead of throwing the exception. This will
21385         help us in Double.TryParse methods.
21386         
21387 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
21388
21389         * marshal.c (emit_marshal_object): Throw an exception when
21390         marshalling 'object' instead of crashing. Fixes #76696.
21391
21392 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21393
21394         * class-internals.h: Add prototype for mono_type_get_full_name ().
21395
21396 2005-11-11  Dick Porter  <dick@ximian.com>
21397
21398         * threads.c (mono_thread_manage): Make sure the main thread has
21399         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21400
21401 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21402
21403         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21404         console about the missing type.
21405         (mono_loader_set_error_method_load): Ditto.
21406
21407 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21408
21409         * mono-config.c (mono_get_config_dir): Set the system defaults if
21410         none is specified.
21411
21412         * assembly.c (mono_set_dirs): New API entry point to set the
21413         assembly and the config directory in one call
21414
21415 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21416
21417         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21418         the ftnptr was created from a delegate in a domain other than the
21419         current domain. Fixes #75377.
21420
21421         * exception.h exception.c: Add mono_get_exception_not_supported ().
21422
21423 2005-11-08  Martin Baulig  <martin@ximian.com>
21424
21425         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21426
21427 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21428
21429         * security-manager.h: Added definitions to deal with strongname key 
21430         pairs bigger (and smaller) than 1024 bits.
21431         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21432         adjust wrt the public key length being used.
21433
21434 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21435
21436         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21437           Windows build (r51396-51397).
21438
21439 2005-11-03  Martin Baulig  <martin@ximian.com>
21440
21441         * class.c (mono_class_setup_vtable_general): Also add generic
21442         methods to the vtable; fixes #76581.
21443
21444 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21445
21446         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21447         sure that we lookup GetString method from the System.Text.Encoding
21448         class, not the derived class or we get an empty method.
21449
21450         Fixed class #76612.
21451
21452 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21453
21454         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21455         if it has been previously set (embedders). 
21456
21457         Make mono_set_rootdir available also on Unix.
21458
21459 005-10-24  Robert Jordan  <robertj@gmx.net>
21460
21461         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21462
21463 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21464
21465         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21466         only calls which are made to native code use this flag.
21467
21468         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21469
21470 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21471
21472         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21473         Add support for FieldBuilders.
21474
21475 2005-10-29  Martin Baulig  <martin@ximian.com>
21476
21477         * mono-debug.c
21478         (mono_debug_using_mono_debugger): New public method; returns
21479         whether we're running inside the debugger.
21480
21481 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21482
21483         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21484         for Method/Constructor/FieldBuilders.
21485
21486 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21487
21488         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21489         and fields as well.
21490
21491 2005-10-26  Martin Baulig  <martin@ximian.com>
21492
21493         * mono-debug-debugger.c
21494         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21495
21496 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21497
21498         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21499         integer to isspace.
21500
21501 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21502
21503         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21504         when passing valuetypes byref. Fixes #76502.
21505
21506 2005-10-19  Jackson Harper  <jackson@ximian.com>
21507
21508         * profiler.c: Don't put a . in front of types that are not in a
21509         namespace.
21510
21511 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21512
21513         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21514
21515 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21516
21517         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21518         #76436.
21519         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21520
21521 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21522
21523         * assembly.c metadata-internals.h icall.c: Define an additional
21524         parameter for mono_assembly_name_parse_full, so we can avoid creating
21525         S.R.AssemblyName.Version when no version info wasn't passed.
21526         
21527 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21528
21529         * class.c (mono_type_get_full_name): Reimplement method that was
21530         removed. 
21531
21532         * image.c: Some docs
21533
21534 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21535
21536         * profiler.c (output_newobj_profile): Fix printing of Total memory
21537         on x86.
21538
21539 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21540
21541         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21542
21543 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21544
21545         * threads.c: remove debug output.
21546
21547 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21548
21549         * threads.c (mono_thread_manage): Fix crashes if more than 64
21550         threads need to be aborted. Hopefully fixes #75899.
21551
21552         * assembly.c (mono_stringify_assembly_name): New helper function.
21553
21554         * class.c: Use mono_stringify_assembly_name instead of the similar
21555         static function.
21556
21557         * assembly.h assembly.c: Add support for calling a postload search 
21558         hook if an assembly cannot be loaded.
21559
21560         * appdomain.c: Register new search hooks which call the AssemblyResolve
21561         events in AppDomain. Fixes #75231
21562
21563 2005-10-07  Martin Baulig  <martin@ximian.com>
21564
21565         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21566         methods without debug info.
21567
21568 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21569
21570         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21571         wrappers.
21572
21573 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21574
21575         * file-io.c: now that we return symlinks, use lstat and, when the file
21576         is a symbolic link, stat, to get the file attributes. Also avoid the
21577         conversion to/from utf16/external.
21578
21579 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21580
21581         * class.c (mono_class_layout_fields): Compute klass->has_references
21582         correctly if an embedded valuetype is not yet initialized. Fixes
21583         #76331.
21584
21585 2005-10-04  Martin Baulig  <martin@ximian.com>
21586
21587         * metadata.c
21588         (mono_metadata_load_generic_param_constraints): New public
21589         function; splitted the constraints loading out from
21590         mono_metadata_load_generic_params().
21591
21592         * class.c (mono_class_create_from_typedef): Call
21593         mono_metadata_load_generic_param_constraints() after setting up
21594         the type and creating our parent; fixes #75329.
21595
21596 2005-10-04  Martin Baulig  <martin@ximian.com>
21597
21598         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21599         non-dynamic parent classes.
21600
21601 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21602
21603         * file-io.c : win32 build fix (ETXTBSY seems not found).
21604
21605 2005-10-04  Martin Baulig  <martin@ximian.com>
21606
21607         * reflection.c
21608         (mono_image_get_methodspec_token): Make the cache actually work;
21609         fixes #75974.
21610
21611 2005-10-04  Martin Baulig  <martin@ximian.com>
21612
21613         * class.c (mono_class_name_from_token): Removed the unneccessary
21614         `MonoGenericContext *' argument.
21615
21616 2005-10-04  Martin Baulig  <martin@ximian.com>
21617
21618         * loader.c
21619         (method_from_methodspec): Make the caching work again; fixes the
21620         performance regression from #76262.
21621
21622 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21623
21624         * file-io.c:
21625         * file-io.h:
21626         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21627         GetFileSystemEntries that performs the same work but without going
21628         into io-layer, locking, etc.
21629
21630 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21631
21632         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21633         ThreadState_Stopped as well. Fixes #76047.
21634
21635 2005-09-29  Martin Baulig  <martin@ximian.com>
21636
21637         * class.c
21638         (inflate_generic_context): If the new context has a `gmethod', set
21639         its `container' that that gmethod's `container'.
21640
21641         * metadata.c
21642         (mono_metadata_parse_generic_param): Simplify things;
21643         `generic_container = generic_context->container;' is just fine.
21644
21645         * loader.c (method_from_methodspec): Code cleanups.
21646
21647 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21648
21649         * decimal.c: fix warning (and let gcc generate correct
21650         code on ARM with optimizations).
21651
21652 2005-09-28  Martin Baulig  <martin@ximian.com>
21653
21654         * loader.c
21655         (method_from_memberref): Added `MonoGenericContext *class_context'
21656         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21657         (method_from_methodspec): If we're a memberref, use the enclosing
21658         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21659
21660 2005-09-28  Martin Baulig  <martin@ximian.com>
21661
21662         * object.c (mono_runtime_invoke_array): Added support for
21663         MONO_TYPE_GENERICINST; fixes #75917.
21664
21665 2005-09-27  Martin Baulig  <martin@ximian.com>
21666
21667         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21668         `k->byval_arg.type' to determine the actual type.
21669
21670         * loader.c (method_from_methodspec): Removed some hacks.
21671
21672 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21673
21674         * class-internals.h (mono_field_is_deleted): Do the test for
21675         rtspecialname before we check the actual name of the field. This
21676         prevents us from dereferencing a pointer into the string table,
21677         saving us from accessing a few pages
21678
21679         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21680         macros. This will allow a deadlock debugger to easily be plugged
21681         in.
21682
21683 2005-09-27  Martin Baulig  <martin@ximian.com>
21684
21685         * loader.c (method_from_methodspec): Create a "signature"
21686         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21687
21688 2005-09-27  Martin Baulig  <martin@ximian.com>
21689
21690         * class.c
21691         (inflate_generic_class): Correctly set the new context's
21692         container.
21693
21694         * loader.c
21695         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21696         instead of a `MonoGenericContext *'.
21697         (mono_method_signature_full): Take a `MonoGenericContainer *'
21698         instead of a `MonoGenericContext *'.
21699
21700         * metadata.c
21701         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21702         instead of a `MonoGenericContext *'.
21703         (mono_metadata_parse_method_signature_full): Likewise.
21704
21705 2005-09-26  Martin Baulig  <martin@ximian.com>
21706
21707         * class.c
21708         (mono_class_from_generic_parameter): Set `klass->generic_container'
21709         (mono_class_from_generic_parameter): Likewise.
21710         (mono_bounded_array_class_get): We inherit the generic container
21711         from the element class.
21712
21713         * loader.c
21714         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21715         argument rather than computing it here.
21716         (method_from_memberref): Correctly set the generic context before
21717         parsing the signature.  Fixes #75681.
21718
21719 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21720
21721         * object.c (mono_class_has_special_static_fields): Fix warnings.
21722
21723 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21724
21725         * assembly.c: Add parse_public_key function, to
21726         par the public keys. Also added mono_assembly_name_parse_full,
21727         to define it the parsed key should be freed or not.
21728         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21729         to parse a long format assembly name.
21730         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21731         private, since calling it to preserve the key requires
21732         freeing it manually.
21733         
21734 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21735
21736         * locales.c : removed HAVE_ICU part.
21737
21738 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21739
21740         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21741         field_is_special_static if the klass has no special static fields.
21742
21743         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21744         (MonoCachedClassInfo): Likewise.
21745
21746         * object.c (mono_class_has_special_static_fields): New helper function.
21747
21748 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21749
21750         * class.c (mono_class_create_from_typedef): Don't call 
21751         interfaces_from_typedef_full for enums.
21752         (mono_class_create_from_typedef): Compute the base types of enums directly
21753         without calling mono_class_setup_fields ().
21754         (mono_class_find_enum_basetype): New helper function.
21755
21756         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21757         one place inside the string heap.
21758         
21759 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21760
21761         * class.c: locking fixes, code cleanups, some docs added.
21762         Allocate some data structures in the image mempool.
21763
21764 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21765
21766         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21767         the example code.
21768         
21769 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21770
21771         * class-internals.h, class.c, reflection.c: reduce memory taken by
21772         MonoClass.
21773
21774 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21775
21776         * metadata.c, metadata.h, loader.h: documentation updates, code and
21777         API cleanups.
21778
21779 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21780
21781         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21782         the example code.
21783
21784         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21785         page faults caused by the runtime while reading metadata.
21786
21787 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21788
21789         * socket-io.c: the field names were changed 3 months ago and no one
21790         realized until bug #76077 got filed!
21791
21792 2005-09-20  Martin Baulig  <martin@ximian.com>
21793
21794         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21795
21796 2005-09-20  Martin Baulig  <martin@ximian.com>
21797
21798         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21799         write the rank into the class entry.
21800
21801 2005-09-20  Martin Baulig  <martin@ximian.com>
21802
21803         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21804
21805 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21806
21807         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21808
21809         * icall.c (custom_attrs_defined_internal): New icall.
21810
21811         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21812         function.
21813         (mono_custom_attrs_construct_by_type): New helper function.
21814
21815 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21816
21817         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21818         terminate the resulting string. Fixes #76123.
21819
21820 2005-09-16  Martin Baulig  <martin@ximian.com>
21821
21822         * mono-debug.c
21823         (mono_debug_add_method): Ignore inflated methods for the moment.
21824
21825 2005-09-14  Martin Baulig  <martin@ximian.com>
21826
21827         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21828
21829 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21830
21831         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21832         return a success/failure indication.
21833         (mono_metadata_interfaces_from_typedef_full): Ditto.
21834         (get_constraints): Ditto.
21835
21836 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21837
21838         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21839         
21840         * marshal.c (emit_marshal_array): Add support for returning string
21841         arrays from delegates. Fixes #76063.
21842
21843         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21844
21845 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21846
21847         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21848         icall.
21849
21850 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21851
21852         * reflection.c icall.c: Fix after mono_get_exception_type_load
21853         signature change.
21854
21855         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21856         (mono_assembly_load_reference): Use the new helper.
21857
21858         * class-internals.h (MonoLoaderError): New structure containing 
21859         information about type loading errors.
21860
21861         * class-internals.h loader.c: Add APIs to store per-thread loader
21862         error information.
21863
21864         * loader.c class.c: Set the loader error if needed.
21865
21866         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21867
21868 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21869
21870         * decimal.c: fixed to handle the broken ARM fp format.
21871
21872 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21873
21874         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21875         broken.
21876
21877 2005-09-06  Martin Baulig  <martin@ximian.com>
21878
21879         * domain.c (supported_runtimes): Added v2.0.50727.
21880
21881 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21882
21883         * culture-info.h: reduce the size of some structures.
21884
21885 2005-09-05  Martin Baulig  <martin@ximian.com>
21886
21887         Reflect latest API changes in the August CTP.
21888
21889         * icall.c
21890         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21891         ("MonoType.HasGenericArguments"): Removed.
21892         ("MonoMethod.BindGenericParameters"): Renamed to
21893         "MakeGenericMethod".
21894         ("MethodBuilder.BindGenericParameters"): Renamed to
21895         "MakeGenericMethod".    
21896
21897 2005-09-05  Martin Baulig  <martin@ximian.com>
21898
21899         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21900
21901 2005-09-05  Martin Baulig  <martin@ximian.com>
21902
21903         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21904
21905         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21906         generic_container is non-NULL.
21907
21908 2005-09-05  Martin Baulig  <martin@ximian.com>
21909
21910         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21911
21912         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21913
21914 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21915
21916         * reflection.c (encode_locals,
21917         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21918         for large generic types.
21919
21920 2005-09-05  Martin Baulig  <martin@ximian.com>
21921
21922         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21923
21924         * class.c (mono_dup_array_type): New public method.
21925         (mono_metadata_signature_deep_dup): New public method.
21926         (dup_type): Correctly duplicate array and function types.
21927
21928 2005-09-05  Martin Baulig  <martin@ximian.com>
21929
21930         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21931
21932         * reflection.c (get_default_param_value_blobs): Handle generic types
21933         and generic methods.
21934
21935 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21936
21937         * class.c: Fixed error reporting (method/class were inversed) for 
21938         inheritance demands.
21939         * security-manager.c|h: Added the AppDomain when calling the managed
21940         System.Security.SecurityManager.InheritanceDemand method.
21941
21942 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21943
21944         * reflection.c (encode_marshal_blob): 'marshaltype' and
21945         'marshaltyperef' are alternate sources for the custom marshaler
21946         name.
21947
21948 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21949
21950         * class.c: fix creation of array classes with rank == 1
21951         (patch by Ankit Jain <jankit@novell.com>).
21952
21953 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21954
21955         * object.c: fix check for creating the bound data for arrays vs
21956         szarrays.
21957
21958 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21959
21960         * object.c: configuration file name is now based on the executable name,
21961         not the image name. Fixes bug #75931.
21962
21963 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21964
21965         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21966         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21967
21968 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21969
21970         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21971
21972 2005-08-24  Ankit Jain  <jankit@novell.com>
21973             Raja R Harinath  <rharinath@novell.com>
21974
21975         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21976           called by it recursively.
21977           (mono_class_init): Remove special case in pending_init handling, since it's
21978           superseded by the fix to mono_class_from_typeref.
21979
21980 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21981
21982         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21983         BROKEN_THREAD_START stuff.
21984
21985 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21986
21987         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21988         trampoline.
21989
21990         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21991         
21992         * object.c (mono_delegate_ctor): Replace the original function address with
21993         a delegate trampoline.
21994
21995 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21996
21997         * icall.c: add boolean argument to base64_to_byte_array and 
21998         InternalFromBase64String to control whether a whitespace-only string
21999         is allowed (or should casue a FormatException to be thrown). We need
22000         this as the behavior has changed between MS.NET 1.x and 2.0, and we
22001         to match the MS behaviour in both profiles.
22002         * appdomain.c: Bump corlib version.
22003
22004 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22005
22006         This patch implements a big portion of publisher policy
22007         support, used to bind assembly versions and redirect
22008         one assembly from version A to version B.
22009
22010         * assembly.c:
22011         New GSList loaded_assembly_bindings, for storing the cached
22012         assembly bindings.
22013         (assembly_binding_maps_name): New static function for checking if a 
22014         assembly binding information maps an assembly name.
22015         (mono_assembly_binding_info_free): New function for freeing
22016         assembly binding information resources.
22017         (get_publisher_policy_info): New static function for retrieving 
22018         assembly binding information from a MonoImage.
22019         (compare_versions): New static function for comparing an assembly
22020         binding information data and the version of an assembly name.
22021         (check_policy_versions): New static function for checking if an
22022         assembly binding info mapping an assembly name is valid for it.
22023         (mono_assembly_load_publisher_policy): New static function for
22024         loading the 'policy.major.minor.MyAssembly' image for an assembly
22025         with an assembly name 'aname'.
22026         (mono_assembly_bind_version): New static function for updating
22027         assembly redirection.
22028         (mono_assembly_apply_binding): New static function for applying
22029         assembly binding.
22030         (search_binding_loaded): New static function for searching 
22031         loaded assembly binding infos in the cache domain.
22032         (mono_assembly_load_full): Don't apply assembly binding for
22033         reflection only assemblies.
22034
22035         * metadata-internals.h: Add MonoAssemblyBindingInfo,
22036         which contains information about assembly binding. Also
22037         declare signature for mono_config_parse_publisher_policy ()
22038         function, used to retrieve pub policy info.
22039         
22040         * mono-config.c:
22041         (publisher_policy_start): New static function used to parse publisher 
22042         policy config files.
22043         (publisher_policy_parser): New static MonoParseHandler containing 
22044         the functions used when parsing config files.
22045         (mono_config_parse_publisher_policy): New function for parsing
22046         publisher policy files.
22047         
22048 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
22049
22050         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
22051
22052         * marshal.c (mono_delegate_free_ftnptr): Ditto.
22053
22054         * object.c (mono_get_addr_from_ftnptr): New helper function.
22055
22056         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
22057
22058         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22059
22060 2005-08-19  Dick Porter  <dick@ximian.com>
22061
22062         * threads.c, threads.h, appdomain.c, appdomain.h,
22063         profiler-private.h, monitor.c, object.c, object-internals.h,
22064         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
22065         store the thread ID, so it can hold a 64 bit value if needed.
22066
22067 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
22068
22069         * reflection.c (mono_reflection_create_dynamic_method): Store the
22070         handle class into the method references as well so ldtoken works in
22071         dynamic methods.
22072
22073         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
22074         types.
22075
22076 2005-08-19  Ankit Jain <jankit@novell.com>
22077
22078         Fix #75847.
22079         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
22080           here rather than using the method signature of a arbitrary function
22081           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
22082           two arguments.
22083           Hack done with Harinath.
22084
22085 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22086
22087         * threadpool.c: disable printing stack traces when we get a exception
22088         in a threadpool thread. I need to do more testing to figure out which
22089         cases actually print this. Fixes bug #75828.
22090
22091 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22092
22093         * icall.c: there might be ignored whitespace after the last '='. This
22094         fixes length computation and bug #75840.
22095
22096 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
22097
22098         * assembly.c (mono_assembly_load_full): Consider .exe extension as
22099         well. Fixes #75809.
22100
22101         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
22102         #75784.
22103         
22104         * reflection.c (create_custom_attr_data): Ditto.
22105
22106 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
22107
22108         * locales.c, culture-info.h : removed RegionLCIDMap.
22109         * culture-info-tables.h : regenerated.
22110
22111 2005-08-16  Martin Baulig  <martin@ximian.com>
22112
22113         * class.c (mono_type_get_name_recurse): Small fix.
22114
22115 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
22116
22117         * locales.c : indentation fixie.
22118
22119 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
22120
22121         * object-internals.h,
22122           locales.h,
22123           locales.c,
22124           culture-info.h,
22125           icall.c : added RegionInfo table support.
22126         * culture-info-table.h : regenerated for region support.
22127
22128 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
22129
22130         * reflection.c (resolve_object): handle all kinds of MonoMethod
22131         including generic ones
22132
22133 2005-08-12  Ankit Jain <jankit@novell.com>
22134
22135         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
22136           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
22137
22138 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
22139
22140         * process.c: Don't close a thread handle when it's NULL. This is a
22141         workaround for bug #75733.
22142
22143 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
22144
22145         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
22146
22147 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
22148
22149         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
22150
22151 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22152
22153         * threadpool.c: if a work item in the thread pool has a callback that
22154         catches a exception, don't propagate it after invoking the callback.
22155         Fixes bug #75336.
22156
22157 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
22158
22159         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
22160
22161         * class-internals.h (MonoCachedClassInfo): Add some new fields.
22162
22163         * class.c (mono_class_init): Load field info lazily in the AOT case.    
22164
22165         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
22166
22167 2005-08-03  Ankit Jain  <jankit@novell.com>
22168
22169         Fix #75683.
22170         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
22171           PInvoke calling convention is 0.
22172
22173 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
22174
22175         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
22176         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
22177
22178 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
22179
22180         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
22181         to handle threads not started by the GC (patch by Michael Meeks
22182         <michael.meeks@novell.com>).
22183
22184 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
22185
22186         * reflection.c: Make buffer used in emitting types larger for some
22187         big generic types (patch by Michal Moskal).
22188
22189 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
22190
22191         * mono-debug.c: Fix some (not all) alignment problems.
22192
22193 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22194
22195         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
22196         Invoke mono_image_load_from_data_full passing the refonly
22197         parameter.
22198
22199         * assembly.c
22200         (mono_assembly_open_from_bundle): Add the refonly argument, 
22201         in order to pass it to other methods it calls to.
22202         (do_mono_assembly_open): Add the refonly argument, in order 
22203         to pass it to other methods it calls to.
22204         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
22205         the refonly parameter to it.
22206
22207         * image.c: Add loaded_images_refonly_hash and
22208         loaded_images_refonly_guid_hash to cache the reflection
22209         only loaded images.
22210         (mono_images_init): Initialize the hash tables used for
22211         caching the reflection only images.
22212         (load_modules): Invoke mono_image_open_full passing the refonly
22213         parameter to load the modules the correct way.
22214         (build_guid_table): Add the refonly argument, to re-build the 
22215         correct hash table.
22216         (do_mono_image_open): Added the refonly argument, in order to
22217         define it for the loaded image.
22218         (mono_image_loaded_full): New function, which receives an
22219         additional parameter to look for the image in the refonly or
22220         non-refonly section.
22221         (mono_image_loaded): Updated, using mono_image_loaded_full.
22222         (mono_image_loaded_by_guid_full): The same case that happens
22223         with mono_image_loaded_full.
22224         (mono_image_loaded_by_guid): Likewise.
22225         (register_image): Use the ref_only variable inside MonoImage
22226         to decide in which hash table store the current image.
22227         (mono_image_open_from_data_full): Rename
22228         mono_image_open_from_data to mono_image_open_from_data_full,
22229         adding the refonly argument, to define the ref_only variable 
22230         inside MonoImage.
22231         (mono_image_open_from_data): Return 
22232         mono_image_open_from_data_full.
22233         (mono_image_open_full): Rename mono_image_open to
22234         mono_image_open_full, receiving the new refonly argument,
22235         to pass it to inner methods.
22236         (mono_pe_file_open): Update this function, to open
22237         a MonoImage as a non-refonly image.
22238         (mono_image_close): Use the refonly variable inside
22239         MonoImage to remove the image from the correct caches.
22240
22241         * image.h: Add the signatures of mono_image_open_full,
22242         mono_image_open_from_data_full, mono_image_loaded_full,
22243         mono_image_loaded_by_guid_full.
22244
22245         * metadata-internals.h: Add the ref_only field to 
22246         MonoImage.
22247         
22248 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22249
22250         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
22251         Fix the last behavior, which used to load the assemblies and
22252         extract MonoReflectionAssemblyName information, instead of
22253         extract it from the metadata tables. Needed for Reflection
22254         Only assemblies.
22255         
22256 2005-07-29  Martin Baulig  <martin@ximian.com>
22257
22258         * mono-debug-debugger.c
22259         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
22260         not initialized.
22261
22262         * mono-debug.c
22263         (mono_debug_address_from_il_offset): Check whether we have
22264         debugging support before attempting to take the lock.
22265         (mono_debug_source_location_from_address): Likewise.
22266         (mono_debug_source_location_from_il_offset): Likewise.
22267         (mono_debug_il_offset_from_address): Likewise.
22268         (mono_debug_address_from_il_offset): Likewise.
22269
22270 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
22271
22272         * class.c (mono_class_from_name_case): Add support for dynamic images.
22273         Fixes #75650.
22274
22275         * object.c (mono_class_compute_gc_descriptor): Add a workaround
22276         for #75479.
22277
22278 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22279         
22280         * reflection.c (mono_method_get_object): Fix warning.
22281
22282 2005-07-28  Martin Baulig  <martin@ximian.com>
22283
22284         * mono-debug.c
22285         (mono_debug_add_wrapper): Also write the wrapper type.
22286
22287 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22288
22289         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
22290         
22291         * class.c (mono_class_init): Avoid reading nested classes if the AOT
22292         data indicates the class has none.
22293
22294 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
22295
22296         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
22297         loader lock with the debugger lock. Prevents deadlocks for beagle.
22298
22299         Beagle can now run on an smp box for a weekend without any
22300         issues. Woohoo!
22301
22302 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
22303
22304         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
22305         in a module. Fixes #75629.
22306
22307 2005-07-26  Martin Baulig  <martin@ximian.com>
22308
22309         * mono-debug.c (mono_debug_add_wrapper): New static method.
22310         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
22311         interncall or a wrapper.
22312
22313         * mono-debug.h (MonoDebugWrapperData): New public typedef.
22314         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
22315         (MONO_DEBUGGER_VERSION): Bump to 51.
22316
22317         * mono-debug-debugger.c
22318         (mono_debugger_add_type): Removed this empty function.
22319         (mono_debugger_add_method): Likewise.
22320
22321 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
22322
22323         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
22324         before accessing method->slot.
22325
22326 2005-07-21  Jb Evain  <jbevain@gmail.com>
22327
22328         * reflection.c (method_encode_clauses/class): Handle filters clauses.
22329         Fixes #75010.
22330
22331 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
22332
22333         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
22334         #75587.
22335
22336 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
22337
22338         * image.h image.c: Add mono_image_get_guid () API function.
22339
22340 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
22341
22342         There were issues when multiple threads tried to load
22343         assemblies. A deadlock was created between assemblies_mutex and
22344         mono_domain_assemblies_lock. This fixes the issue by making the
22345         assembly ref counting be lock free. See bug 75586.
22346         
22347         * image.c (mono_image_close): The add ref function here was using
22348         Interlocked operations while the unref was using a mutex and a
22349         --. I don't think this was ever a bug that would be exposed in a
22350         non-pendantic way (ie, by an embedder doing a ref on one thread
22351         and an unref on another), but for the sake of correctness, this is
22352         now Interlocked.
22353
22354         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
22355         (mono_assembly_load_reference): Call mono_assembly_addref rather
22356         than touching the refcount ourselves.
22357         (mono_assembly_close): Use InterlockedDecrement to unref the
22358         assembly. Don't acquire the lock unless it is actually needed.
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 2005-07-12  Martin Baulig  <martin@ximian.com>
22366
22367         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22368
22369         * metadata.c
22370         (mono_type_hash): Provide better hashing for generic instances.
22371         (mono_generic_inst_hash): Improve hashing.
22372         (mono_generic_class_hash): Likewise.
22373
22374         * reflection.c (mymono_metadata_type_hash): Improve hashing for
22375         generic instances.
22376
22377 2005-07-12  Martin Baulig  <martin@ximian.com>
22378
22379         * reflection.c (mono_reflection_create_runtime_class): Remove the
22380         hack for generic type definitions and non-`Run' assemblies.
22381         (mono_reflection_bind_generic_parameters): Also use
22382         `klass->wastypebuilder' to check for TypeBuilders.
22383
22384 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22385
22386         * class.c (mono_class_layout_fields): Fix calculation of has_references
22387         for generic types.
22388
22389         * class.c (inflate_generic_class): Fix a leak.
22390         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
22391         for generic types.
22392
22393 2005-07-11  Martin Baulig  <martin@ximian.com>
22394
22395         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22396         on error.
22397
22398 2005-07-11  Martin Baulig  <martin@ximian.com>
22399
22400         * loader.c (find_method): Also lookup in
22401         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22402
22403 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22404
22405         * appdomain.c (mono_domain_unload): Don't free the error message
22406         before passing it to mono_get_exception_...
22407
22408         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22409         
22410 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22411
22412         * threads.c: try to better guess an available RT signal (bug #75387).
22413
22414 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22415
22416         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22417         and CACHE_OBJECT.
22418
22419 2005-07-07  Martin Baulig  <martin@ximian.com>
22420
22421         * class.c (mono_type_get_name_full): Return NULL for
22422         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22423         fixes #75408.
22424
22425 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22426
22427         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22428         exit the appdomain as well being aborted.
22429
22430         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22431         change back to the root domain after calling managed code. This enables
22432         appdomains using threadpools to be unloaded.
22433
22434 2005-07-07  Martin Baulig  <martin@ximian.com>
22435
22436         * class-internals.h
22437         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22438         into `MonoDynamicGenericClass' since we only need it for dynamic
22439         types.
22440
22441         * reflection.c (mono_class_bind_generic_parameters): We don't need
22442         to compute the `parent' here.
22443
22444 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22445
22446         * culture-info-table.h : regenerated.
22447
22448 2005-07-06  Martin Baulig  <martin@ximian.com>
22449
22450         * icall.c
22451         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22452
22453         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22454
22455 2005-07-06  Martin Baulig  <martin@ximian.com>
22456
22457         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22458         we're doing a signature-only comparision; fixes #74945.
22459
22460 2005-07-06  Martin Baulig  <martin@ximian.com>
22461
22462         * class-internals.h (MonoGenericClass): Moved some things out into
22463         a new `MonoInflatedGenericClass' type.  
22464         (MonoInflatedGenericClass): New type; the `klass' of a
22465         `MonoGenericClass' is now computed lazyly in
22466         mono_get_inflated_generic_class().      
22467
22468         * class.c (mono_get_inflated_generic_class): New public function.
22469         (mono_class_inflate_generic_method): Removed the unused
22470         `MonoClass *' argument.
22471         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22472         all the methods.
22473         (mono_class_create_generic): Make this static and merge it with
22474         mono_class_create_generic_2(); we're now called automatically from
22475         mono_get_inflated_generic_class().
22476
22477         * loader.c (mono_method_signature): Call
22478         mono_get_inflated_method() here.
22479
22480 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22481
22482         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22483         type of fields with RVA.
22484
22485         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22486         for this pseudo class.
22487         (my_mono_class_from_generic_parameter): Likewise.
22488         (mono_class_init): Allow interfaces to have cctors.
22489
22490 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22491
22492         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22493         lazily for AOT methods.
22494
22495 2005-07-05  Martin Baulig  <martin@ximian.com>
22496
22497         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22498         returns FALSE for a successful match, not TRUE.
22499
22500 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22501
22502         * loader.c (mono_method_get_index): Optimize this a bit.
22503
22504 2005-07-04  Martin Baulig  <martin@ximian.com>
22505
22506         * class.c
22507         (class_compute_field_layout): Move the check for generic type
22508         definitions into mono_class_layout_fields().  Fixes #74684.
22509         (mono_class_from_generic_parameter): Correctly compute
22510         `klass->parent'; fixes #75457.
22511
22512         * reflection.c (register_assembly, register_module): Make sure
22513         `domain->rejobject_hash' is already created.
22514
22515 2005-07-02  Martin Baulig  <martin@ximian.com>
22516
22517         * class-internals.h
22518         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22519         `MonoDynamicGenericClass'.      
22520
22521 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22522
22523         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22524         returned by a field getter is null, since null is a valid value.
22525
22526 2005-07-01  Martin Baulig  <martin@ximian.com>
22527
22528         * reflection.c (mono_reflection_generic_class_initialize): Update
22529         the `dgclass->fields [i].parent' to the correct class.
22530         (mono_image_get_fieldref_token): Use the declaring type, not the
22531         reflected type.
22532
22533 2005-07-01  Martin Baulig  <martin@ximian.com>
22534
22535         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22536
22537 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22538
22539         * threads.c (thread_cleanup): assert that thread != NULL
22540         (wait_for_tids_or_state_change): We were using the wrong variable
22541         when accessing wait->threads. `i' was always out of the bounds of
22542         the array.
22543
22544 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22545
22546         * loader.c: map user32 and kernel32 to libMonoSupportW
22547
22548 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22549
22550         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22551
22552 2005-06-28  Martin Baulig  <martin@ximian.com>
22553
22554         * loader.c (method_from_methodspec): Fix #75334.
22555
22556 2005-06-28  Martin Baulig  <martin@ximian.com>
22557
22558         Fix #74953 - Arrays now implement the generic IList<T> interface
22559         on the 2.0 platform.
22560
22561         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22562
22563         * reflection.c (mono_class_bind_generic_parameters): New public
22564         function; similar to mono_reflection_bind_generic_parameters(),
22565         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22566
22567         * domain.c (mono_init_internal): Try to initialize.
22568         `mono_defaults.generic_array_class' here; this'll only succeed if
22569         we're using the 2.0 corlib.
22570
22571         * icall.c
22572         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22573         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22574         (mono_lookup_internal_call): Added support for nested classes.
22575
22576         * loader.c
22577         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22578         we're an interncall and have generic arguments.
22579
22580         * class.c
22581         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22582         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22583         instance of System.Array.InternalArray<T> for arrays, so they
22584         implement the generic IList<T> interface.
22585
22586 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22587
22588         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22589         (chastamar@yahoo.com). Fixes #75374.    
22590
22591 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22592
22593         * culture-info-table.h: regenerated.
22594
22595 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22596
22597         * icall.c: handle spaces correctly for base64 strings.
22598
22599 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22600
22601         * *.c: Kill some warnings.
22602
22603 2005-06-23  Duncan Mak  <duncan@novell.com>
22604
22605         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22606         that this builds on Solaris 10 (x86).
22607
22608 2005-06-23  Martin Baulig  <martin@ximian.com>
22609
22610         * class.c
22611         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22612         generic type definitions.
22613
22614 2005-06-23  Martin Baulig  <martin@ximian.com>
22615
22616         Fix #75331.
22617
22618         * metadata.c (mono_class_get_overrides): Renamed to
22619         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22620         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22621         pass it to mono_get_method_full().
22622
22623 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22624
22625         * reflection.c (mono_reflection_create_runtime_class): take the
22626         mono_domain_lock in this method. Prevents deadlocks
22627
22628 2005-06-22  Martin Baulig  <martin@ximian.com>
22629
22630         * loader.c (method_from_methodspec): Fix #75330.
22631
22632 2005-06-22  Martin Baulig  <martin@ximian.com>
22633
22634         * reflection.c (type_get_qualified_name): Use
22635         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22636         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22637         argument; use it if we don't have an assembly name.
22638
22639 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22640
22641         * object.c: In mono_message_init, set "copy out" flag for in
22642         parameters with the [Out] flag.
22643
22644 2005-06-21  Martin Baulig  <martin@ximian.com>
22645
22646         * class.c
22647         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22648         and MONO_TYPE_PTR.
22649
22650 2005-06-21  Martin Baulig  <martin@ximian.com>
22651
22652         * class.c (mono_class_init): Don't initialize `class->fields' for
22653         generic instances since they're initialized again in
22654         compute_field_layout(). 
22655         (compute_field_layout): Set the field's `generic_info' here; fix
22656         #75320. 
22657
22658 2005-06-21  Martin Baulig  <martin@ximian.com>
22659
22660         * class-internals.h
22661         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22662
22663         * metadata.c (mono_metadata_generic_method_equal): Also
22664         distinguish the `generic_class'; fixes #75334.
22665
22666 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22667
22668         * domain.c:
22669         * appdomain.c:
22670         * domain-internals.h:
22671         * reflection.c: 'domain_assemblies' field is now protected by its own
22672         lock. Don't call into managed code to run the AssemblyLoad event if we
22673         now there are no registered delegates for it.
22674
22675 2005-06-20  Martin Baulig  <martin@ximian.com>
22676
22677         * class.c (mono_class_is_assignable_from): Use a custom version of
22678         mono_class_has_parent() to make things work for generic instances;
22679         fix #75300.
22680
22681 2005-06-20  Martin Baulig  <martin@ximian.com>
22682
22683         * loader.c (method_from_methodspec): Apply a patch from
22684         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22685
22686 2005-06-20  Martin Baulig  <martin@ximian.com>
22687
22688         * class.c (mono_class_init): Reverted Zoltan's last change; it
22689         breaks generics.
22690
22691 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22692
22693         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22694
22695 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22696
22697         * socket-io.c: fix the index in the socket array for writable/error
22698         sockets. Fixes bug #75306.
22699
22700 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22701
22702         * class.c (mono_class_init): Allow interfaces to have static ctors.
22703
22704 2005-06-17  Martin Baulig  <martin@ximian.com>
22705
22706         * loader.c (method_from_methodspec): Use `context->container' when
22707         parsing the `gmethod->inst'.
22708
22709 2005-06-17  Martin Baulig  <martin@ximian.com>
22710
22711         * class.c (mono_type_get_name_recurse): Don't add the assembly
22712         name for type arguments.
22713
22714 2005-06-15  Martin Baulig  <martin@ximian.com>
22715
22716         * reflection.c (mono_image_get_inflated_method_token): Encode
22717         correct klass; fixes #75260.
22718
22719 2005-06-13 Michal Moskal <malekith@nemerle.org>
22720
22721         * icall.c: Make GetCorrespondingMethod/Constructor take
22722         MonoReflectionMethod method not MonoMethod. Removed
22723         MonoType.GetCorrespondingField, and make
22724         MonoGenericType.GetCorrespondingField take name not
22725         MonoClassField.
22726
22727 2005-06-13  Michal Moskal <malekith@nemerle.org>
22728
22729         * reflection.c (field_encode_signature, encode_locals):
22730          Make sizes of buffers for types larger (for big generic types).
22731          (create_generic_typespec,
22732          mono_reflection_sighelper_get_signature_local,
22733          mono_reflection_sighelper_get_signature_field):
22734          Add asserts for too small buffers.
22735
22736 2005-06-15  Martin Baulig  <martin@ximian.com>
22737
22738         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22739         if our parent is not a dynamic type.
22740
22741 2005-06-15  Martin Baulig  <martin@ximian.com>
22742
22743         * class-internals.h (MonoTypeNameFormat): New enum.
22744
22745         * class.c
22746         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22747         (mono_type_get_full_name): Removed.
22748         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22749         argument instead of the boolean's.
22750
22751         * icall.c (ves_icall_System_MonoType_getFullName):
22752         Added `gboolean assembly_qualified'.    
22753
22754         * reflection.h
22755         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22756
22757         * reflection.c (mono_reflection_parse_type): Parse the new type
22758         name format.
22759
22760 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22761
22762         * icall.c: no need to convert from utf16 to utf8 and then back again
22763         after the call to GetLogicalDrives.
22764
22765 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22766
22767         * icall.c: frombase64. Fix problems exposed by new tests.
22768
22769 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22770
22771         * icall.c: added internal calls for converting char [] and strings in
22772         base64 into byte [].
22773
22774 2005-06-10  Martin Baulig  <martin@ximian.com>
22775
22776         * class.c (mono_class_create_generic_2): Read the nested classes
22777         from the metadata rather than from `gklass->nested_classes' since
22778         `gklass' might not be initialized yet.
22779
22780 2005-06-09  Duncan Mak  <duncan@novell.com>
22781
22782         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22783         all public headers. Fixes #74919.
22784
22785 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22786
22787         * domain.c: The key for proxy_vtable_hash is now a pointer
22788         array. Added new GHashFunc and GCompareFunc functions for this.
22789
22790         * class.h: The list of interfaces in MonoRemoteClass is known in
22791         advance and can't grow (we create a new MonoRemoteClass if needed),
22792         so now the interface array can be allocated together with
22793         MonoRemoteClass.
22794         
22795         * object.c: Added a new method create_remote_class_key.
22796         Fixed mono_remote_class so it does not depend on
22797         mono_upgrade_remote_class.
22798         Removed extend_interface_array.
22799         Added new method clone_remote_class(), which makes a copy of a remote
22800         class and adds a new interface or class to it.
22801         mono_upgrade_remote_class() now creates a new remote class (or gets
22802         it from the cache) if an vtable upgrade is needed. In this way
22803         we make sure that other objects sharing the same remote class
22804         don't get the new vtable with unwanted interfaces.
22805         
22806         * object-internals.h:
22807         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22808         
22809         * marshal.c: Track changes in mono_upgrade_remote_class().
22810
22811 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22812         * icall.c: Add runtime methods for obtaining members of inflated
22813         class, which were created from supplied non-inflated members. It
22814         is used in internal Get{Method,Constructor,Field} methods in
22815         System.Type
22816
22817 2005-06-09  Martin Baulig  <martin@ximian.com>
22818
22819         * reflection.c
22820         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22821
22822 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22823         * reflection.c (mono_image_basic_init): Define
22824         Version in MonoDynamicAssembly. 
22825         
22826 2005-06-08  Martin Baulig  <martin@ximian.com>
22827
22828         Fix #75136.
22829
22830         * loader.c
22831         (mono_method_signature_full): New public method; takes a
22832         `MonoGenericContext *'.
22833         (find_method): Use mono_method_signature_full() and pass the
22834         klass'es context to it.
22835
22836         * class.c (mono_class_is_inflated_method): Use
22837         mono_method_signature_full() and pass the context to it.
22838
22839 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22840
22841         * object.c: add proper locking in mono_remote_class_vtable(),
22842         fixes possible memory corruption.
22843
22844 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22845
22846         * marshal.c (mono_remoting_marshal_init): set
22847         initialized after initialization.
22848
22849 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22850
22851         * locales.c : hush.
22852
22853 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22854
22855         * object.c (extend_interface_array): fix really silly
22856         memory corrupting / comparison bug.
22857
22858 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22859
22860         * reflection.c: Functions added to support the creation
22861         of CustomAttributeData, which includes Attribute data
22862         used by ReflectionOnly methods.
22863
22864         * reflection.h:  mono_reflection_get_custom_attrs_data and
22865          mono_custom_attrs_data_construct added (functions exposed).
22866
22867          * icall.c: Added mono_reflection_get_custom_attrs_data
22868          as icall.
22869         
22870 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22871
22872         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22873         lupus's request.
22874
22875 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22876
22877         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22878
22879         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22880         dynamic DllImportAttribute.
22881
22882         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22883         dynamic DllImportAttribute.
22884
22885         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22886         Fixes #75162.
22887
22888 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22889
22890         * threads.c: avoid segfault when an unstarted thread is aborted.
22891
22892 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22893
22894         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22895         Returns the name and version of the runtime for reporting.
22896
22897 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22898
22899         * appdomain.c: bump corlib version.
22900         * object-internals.h: new field in MonoReflectionAssembly.
22901
22902 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22903
22904         * object-internals.h: Carlos forgot to add this field.
22905
22906 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22907
22908         * icall.c: Added create_version to create instances
22909         of Version of MonoReflectionAssemblyName. This change helps
22910         the AssemblyName tests to keep running fine.
22911         
22912 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22913   
22914         * object.c (mono_method_return_message_restore): A somehow less
22915         intrusive fix for #75138.
22916
22917 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22918
22919         * object.c (mono_method_return_message_restore): Fix computation
22920         of expected number of out args.
22921
22922 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22923
22924         * reflection.c (mono_image_get_method_info): Fix the case when the
22925         charset is empty.
22926
22927 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22928
22929         * object.c: Added missing null check in
22930           mono_method_return_message_restore.
22931
22932 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22933
22934         * reflection.c (mono_image_get_method_info): Handle the case when
22935         dllentry is empty.
22936
22937 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22938
22939         * object.c: When creating the vtable for a proxy, take into account
22940         all inherited interfaces, not only the ones registered in
22941         iclass->interfaces. This fixs bug #74996.
22942         Also, in mono_method_return_message_restore, verify that the array
22943         of out args has the expected lengh.
22944
22945 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22946
22947         * socket-io.c: update the timeout in Poll when the call is interrupte.
22948
22949 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22950
22951         * socket-io.c: support abort/suspend in Select_internal after last
22952         change.
22953
22954 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22955
22956         * threadpool.c: remove warning.
22957
22958 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22959
22960         * icall.c:
22961         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22962         removing the 1024 limit from select(). Runtime part of the fix for
22963         bug #71203.
22964
22965 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22966
22967         * socket-io.c: when resolving the addresses for the same
22968         host returned by gethostname(), get the local IPs from the interface
22969         list. Loopback addresses are discarded if the are interfaces up with
22970         non-loopback ones. Fixes bug #63265.
22971
22972 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22973
22974         * appdomain.c, verify.c, object-internals.h, reflection.c:
22975         bumped corlib number to 36, and added new extra_flags field
22976         to ReflectionMethodBuilder and friends.  Fixes #75060.
22977
22978 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22979
22980         * gc.c: register a new weak link only if the object is non-null
22981         (fixes bug#75047).
22982
22983 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22984
22985         * culture-info.h : short time pattern too.
22986
22987 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22988
22989         * culture-info.h : expand long time pattern string length.
22990
22991 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22992
22993         * culture-info-table.h : update (more French date format; #72788).
22994
22995 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22996
22997         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22998         the method is static. Fixes #75029.
22999
23000 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
23001
23002         * reflection.c: Update the table_idx field of method builders after
23003         saving the module, since it can change. This is a workaround for
23004         bug #74914. 
23005
23006 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23007
23008         * culture-info-table.h : update (additional French date format).
23009
23010 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
23011
23012         * icall.c (ves_icall_type_Equals): Revert last change.
23013         
23014         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
23015
23016         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
23017
23018 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
23019
23020         * class-internals.h: Added executioncontext_class field to 
23021         MonoDefaults structure.
23022         * domain.c: Cache System.Threading.ExecutionContext class in 
23023         mono_defaults.
23024         * object.c: Capture the ExecutionContext for asynchroneous calls in
23025          mono_async_result_new.
23026         * object-internals.h: Added execution_context and original_context 
23027         fields to MonoAsyncResult. Added execution_context to MonoThread.
23028         * security-manager.c|.h: Added mono_get_context_capture_method to 
23029         return the capture method (if required by the security manager or by
23030         the framework version used).
23031         * threadpool.c: Apply capture (if present) ExecutionContext in 
23032         mono_async_invoke and revert to original context after it completes.
23033
23034 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
23035
23036         * culture-info-table.h : updated (real hacky solution for zh-CHT).
23037
23038 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
23039
23040         * culture-info-table.h : zh-CHT related workaround.
23041
23042 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23043
23044         * marshal.c (emit_marshal_custom): Add some error checking and call the
23045         methods in the ICustomMarshaler interface. Fixes #74875.
23046         
23047         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
23048         native->managed wrappers.
23049
23050 2005-05-12  Martin Baulig  <martin@ximian.com>
23051
23052         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
23053         here and use the loader lock.
23054
23055         * mono-debug.c: Properly lock when the debugger is not attached.
23056         (mono_debug_init): Release the initial lock if we're not running
23057         in the debugger.
23058
23059 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23060
23061         * marshal.c (emit_marshal_custom): Pass through NULL values without
23062         calling the custom marshalling routines.
23063
23064         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
23065         conversion in structures. Fixes #74882.
23066
23067 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
23068
23069         * culture-info-table.h : zh-* cultures were missing.
23070
23071 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
23072
23073         * threads.c: Added a new event background_change_event which is signaled
23074         when a thread changes its background mode.
23075         Moved here several checks previously done in managed code. The checks
23076         require the thread lock, and using the thread lock in managed code
23077         can result in deadlocks.
23078         Merged Start_internal and Thread_internal into a single method. Now 
23079         Thread_internal does all work of creating and starting a thread.
23080         Added icalls for setting and getting the state of the object. Moved from
23081         managed code to avoid locking there.
23082         Added wait_for_tids_or_state_change() which is called instad of
23083         wait_for_tids when waiting for non-backround threads to end. This method
23084         will return if one of the threads ends or the background_change_event
23085         is signaled.
23086         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
23087         the background mode. This method signals the background_change_event
23088         event.
23089         * icall.c:
23090         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
23091         removed Start_internal.
23092         
23093 2005-05-11  Martin Baulig  <martin@ximian.com>
23094
23095         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
23096         to order of some fields to get proper alignment on 64-bit machines.
23097
23098 2005-05-11  Martin Baulig  <martin@ximian.com>
23099
23100         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
23101         changes as they're broken and completely fuck up the debugger.
23102
23103         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
23104
23105 2005-05-10  Martin Baulig  <martin@ximian.com>
23106
23107         * reflection.c (mono_reflection_generic_class_initialize): Don't
23108         call mono_class_setup_parent() here.
23109
23110 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23111
23112         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
23113         send/receive timeout use an integer in milliseconds. We were using a
23114         struct timeval.
23115
23116 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23117
23118         * locales.c:
23119         (internal_get_cultures): reserve the first slot of the array for the
23120         InvariantCulture, which will be filled in managed code.
23121
23122 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
23123
23124         * reflection.c (mono_image_fill_module_table): Initialize the
23125         GENERATION field as well.
23126
23127 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23128
23129         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
23130         Monitor.Enter on the object.
23131
23132 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
23133
23134         * threads.c: Enable the wait for running threads when exiting.
23135         * icall.c: Suspend all threads before exiting.
23136
23137 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
23138
23139         * assembly.c (mono_assembly_load_reference): Fix warning.
23140
23141 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23142
23143         * threadpool.c: changed the default number of threads per cpu. From now
23144         on, the default will be 20 + (5 * number of cpus) instead of 50.
23145
23146 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
23147
23148         * loader.c (mono_method_get_signature_full): Add locking here.
23149
23150 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
23151
23152         * appdomain.c: Moved methods for parsing and freeing assembly
23153         names to assembly.c.
23154         * assembly.c, domain-internals.h: Created public methods for parsing
23155         assembly names. Fixed mono_assembly_load_with_partial_name:
23156         it now finds the best match, taking into account the version,
23157         token and culture specified in the partial name. Also return
23158         the latest version if no version information is specified.
23159
23160 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
23161
23162         * threadpool.c: replace check for SocketAsyncCall class.
23163
23164 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23165
23166         * threadpool-internals.h:
23167         * Makefile.am: added threadpool-internals.h
23168
23169         * threadpool.c: call mono_unhandled_exception on exceptions not handled
23170         that happen in threadpool threads (tested on MS).
23171         (mono_thread_pool_remove_socket): new function that dispatch any pending
23172         AIO call on a socket that is closing. By now only epoll really needs it,
23173         as select/poll wake up when the socket closes.
23174
23175
23176         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
23177
23178 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
23179
23180         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
23181
23182 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
23183
23184         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
23185
23186 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
23187
23188         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
23189         has an abort request, convert it into a suspend request.
23190
23191 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
23192
23193         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
23194         warning for the usage of `UnmanagedFunctionPointerAttribute' which
23195         is not supported yet.
23196
23197 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23198
23199         * image.c: register assemblies loaded from data (bundles) in the loaded
23200         assemblies hash. Fixes bug #74772.
23201
23202 2005-04-29  Martin Baulig  <martin@ximian.com>
23203
23204         * class.c (mono_type_get_name_recurse): Update to the new naming
23205         schema from the latest .NET 2.x beta2.
23206         (mono_class_setup_vtable_general): If we're a generic instance,
23207         copy the vtable from our generic type definition and inflate all
23208         the methods in it.
23209
23210         * loader.c (find_method): Update to the new naming schema from the
23211         latest .NET 2.x beta2.
23212
23213 2005-04-29  Raja R Harinath  <harinath@gmail.com>
23214
23215         * class.c (mono_class_init): Add a mono_loader_unlock to the
23216         #74734 fix.
23217
23218 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
23219
23220         * icall.c (ves_icall_System_Environment_Exit): Remove the 
23221         suspend_all_other_threads () call for the time being, since it can hang.
23222
23223         * threads.c (mono_thread_manage): Similarly, disable the waiting for
23224         the background threads to exit, since it can also hang.
23225
23226         * class.c (mono_class_init): Applied patch from Ankit Jain 
23227         (radical@gmail.com). Avoid pending init errors when a field refers
23228         to a nested class using a typeref. Fixes #74734.
23229
23230         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
23231         this for dynamic modules.
23232
23233 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23234
23235         * threads.c: don't wait for threads that are in the process of aborting
23236         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
23237         and waiting for background threads to finish. This makes xsp and
23238         mod-mono-server exit without random length delays and/or hangs.
23239
23240 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23241
23242         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
23243
23244 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
23245
23246         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
23247         dynamic types to prevent infinite loops. Fixes #74727.
23248
23249         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
23250         ..._is_assignable_to.
23251
23252 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
23253
23254         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
23255
23256 2005-04-25  Martin Baulig  <martin@ximian.com>
23257
23258         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
23259
23260         * domain.c
23261         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
23262
23263         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
23264
23265         * reflection.c (build_compressed_metadata): Set metadata header
23266         version to 2.0.
23267
23268 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
23269
23270         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
23271         number into an integral and a decimal part. Fixes #70473.
23272
23273         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
23274
23275 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
23276
23277         * culture-info-table.h : reflected the latest locale-builder output.
23278
23279 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23280
23281         * threadpool.c: check for SuspendRequested too when deciding if
23282         mono_thread_interruption_checkpoint should be called.
23283
23284 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23285
23286         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
23287         * threads.c: remove interruption_mutex and use Interlocked instead. When
23288         suspending all the threads, wait for all the suspended events at once.
23289         If we're shutting down and get an APC that is going to be queued,
23290         call mono_thread_execute_interruption immediately, as the thread might
23291         be sleeping on a pthread condition or mutex.
23292
23293         * icall.c: call mono_runtime_set_shutting_down before suspending the
23294         threads.
23295
23296         Fixes bug #74693. And now xsp is happier when exiting.
23297
23298 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
23299
23300         * loader.c (mono_stack_walk): Fix #74690.
23301
23302 2005-04-22  Martin Baulig  <martin@ximian.com>
23303
23304         * mono-debug.h (MonoDebugMethodJitInfo): Added
23305         `MonoDebugMethodJitInfo *jit'.
23306
23307         * mono-debug.c (mono_debug_read_method): Cache the
23308         MonoDebugMethodJitInfo in `address->jit'.
23309         (mono_debug_free_method_jit_info): New public method.
23310
23311 2005-04-22  Martin Baulig  <martin@ximian.com>
23312
23313         * class.c (mono_class_is_assignable_from): Disallow
23314         type parameter -> interface.
23315
23316 2005-04-21  Dick Porter  <dick@ximian.com>
23317
23318         * threads.c (mono_thread_create): Turn an assertion into an error.
23319
23320 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
23321
23322         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
23323         
23324         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
23325         Fix some gcc 4.0 warnings.
23326
23327 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
23328
23329         * file-io.c: fix alt dir separator char on unix systems
23330         and cleanup (fixes bug #71214).
23331
23332 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
23333
23334         * marshal.c: Use CALLVIRT instead of CALL when dispatching
23335         a call to a remote domain, since the method may be an
23336         interface method in the client domain. This fixes bug #74192.
23337
23338 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23339
23340         * threadpool.c: recv/send are now performed before going back to managed
23341         code to save one transition.
23342
23343 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23344
23345         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
23346
23347         * metadata/threadpool.c: removed hack to workaround the bug above.
23348
23349         Fixes bug #74618.
23350
23351 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
23352
23353         * reflection.c reflection.h: Fix handling of parameter defaults in
23354         dynamic methods. Also fixes handling of parameter attributes.
23355         Fixes #74609.
23356
23357         * mono-debug.c (mono_debug_close_image): Fix warning.
23358
23359 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23360
23361         * socket-io.h: replaced old unused field with new 'blocking'.
23362         * threadpool.c: restore socket blocking state on windows(tm).
23363
23364 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
23365
23366         * icall.c: don't return the codebase in the AssemblyName[] returned by
23367         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
23368         * object-internals.h: Removed FIXME (fields were presents) and fixed
23369         versioncompat declaration.
23370
23371 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23372
23373         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
23374         not closed, so don't cleanup when it happens.
23375
23376 2005-04-13  Chris Toshok  <toshok@ximian.com>
23377
23378         * mono-debug-debugger.h: change prototype for
23379         mono_debugger_lookup_type.
23380
23381         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
23382         this function, although it should probably be named
23383         mono_debugger_init_type.
23384
23385 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23386
23387         * threadpool.c: fix non-AIO case.
23388
23389 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
23390
23391         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
23392         the built-in profiler to measure just JIT compilation times.
23393
23394 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23395
23396         * threadpool.c: the epollfd might be closed by another thread at
23397         any time, so ignore EBADF at treat it as a "we're closing" sign.
23398
23399 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23400
23401         * threadpool.c: release the semaphores with a count equals to the number
23402         of working threads in both IO and regular pools. Fixed typo that messed
23403         up the count of IO pool threads. Don't initialize the pipe handles if
23404         we're using epoll.
23405
23406 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23407
23408         * threadpool.c: some systems don't like a NULL when deleting the socket
23409         from epoll.
23410
23411 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23412
23413         * threadpool.c: fix semaphore allocation.
23414
23415 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23416
23417         * threadpool.c: added epoll() based implementation for asynchronous IO
23418         that is used instead of the default poll() when available.
23419         It can be disabled by setting MONO_DISABLE_AIO.
23420
23421 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23422
23423         * threadpool.c: windows needs 'closesocket' and instead of returning
23424         0 when the stream is closed while in select, it returns -1. Fixes bug
23425         #74573.
23426
23427 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23428
23429         * class.c (class_compute_field_layout): Fix the regression caused by
23430         the previous try.
23431
23432 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23433
23434         * threadpool.c: separate pool for socket async. IO.
23435         * threadpool.h: mono_max_worker_threads is not a global any more.
23436
23437 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23438
23439         * class.c (class_compute_field_layout): Fix #74549.
23440
23441 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23442
23443         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23444         use 2 connected sockets instead.
23445
23446 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23447
23448         * mono-config.c: Add new entry point for mkbundle
23449         mono_config_parse_memory. 
23450
23451 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23452
23453         * threadpool.c: removed another unused function.
23454
23455 2005-04-08  Ankit Jain  <radical@corewars.org>
23456
23457         * reflection.c (get_default_param_value_blobs): Add 'types'
23458         parameter to get the types encoded in the constant table.
23459         (mono_param_get_objects): Use the type from the constant table,
23460         not the type of the parameter, when creating default values.
23461         Handle null default values correctly.
23462
23463 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23464
23465         * file-io.c:
23466         * file-io.h:
23467         * threadpool.c:
23468         * threadpool.h:
23469         * icall.c:
23470         * socket-io.c: removed dead code for async IO.
23471
23472 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23473
23474         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23475
23476         * threadpool.c: intercept socket async. calls and pass them to a thread
23477         that is polling and dispatching the job items to the threadpool as
23478         socket become ready. Fixes bugs #71217, #71933.
23479
23480         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23481         between char and short/ushort arrays.
23482
23483         * socket-io.c: remove dead code.
23484
23485 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23486
23487         * locales.c,
23488           icall.c : removed InternalToUpper_Comp() and
23489           InternalToLower_Comp().
23490
23491 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23492
23493         * char-conversions.h : The tables were incorrectly generated. Should
23494           be generated against invariant culture.
23495
23496 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23497
23498         * object.c (mono_runtime_invoke_array): Fix return value when 
23499         passing pre-created valuetype objects to ctors.
23500
23501         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23502         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23503         Fixes #74338.
23504
23505 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23506
23507         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23508         only used with --security and hides the wrong corlib version error.
23509
23510 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23511
23512         * class.c: Changed mono_class_name_from_token so that types
23513         outside of a namespace don't have an initial period.  Improved
23514         the g_warning message used in _mono_class_get when loading
23515         fails.
23516         * assembly.c: In mono_assembly_load_reference, when an assembly
23517         can't be found, "No such file or directory" is misleading and
23518         unhelpful because a few paths were checked for the presence of
23519         the assembly.  When that happens (ENOENT), display a nicer
23520         message indicating the directories that were searched.  In all
23521         cases, the warning is made easier to read for non-hackers.
23522
23523 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23524
23525         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23526         project/solution.
23527         * appdomain.h|domain.c: Removed inline from functions.
23528         * appdomain.c: Reduced warnings when compiling on windows.
23529         * icall.c: Fixed output_debug declaration to gunichar2*.
23530         * mono-config.c: Reduced warnings when compiling on windows.
23531         * rand.c: Added missing "windows.h". Added missing return value.
23532         * rawbuffer.c: Added missing winsock2.h for windows.
23533         * sysmath.h: Added mono-compiler.h header to allow/ease 
23534         compilation with non-GCC compilers.
23535         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23536         Removed cast warnings.
23537
23538         Adapted from the work of J Lothian (for VC6).
23539
23540 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23541
23542         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23543         from default_path.
23544
23545 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23546
23547         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23548         the 2.0 profile.
23549
23550 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23551
23552         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23553         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23554         stuff, and it would probably use $(prefix)/share rather than
23555         $(prefix)/lib.
23556
23557 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23558
23559         * console-io.c: added 2 includes that might be missing.
23560
23561 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23562
23563         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23564         profile.
23565
23566         * reflection.c (create_custom_attr): Allocate the params array using
23567         alloca so it gets GC tracking.
23568
23569 2005-03-23  Chris Toshok  <toshok@ximian.com>
23570
23571         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23572         out some spew.
23573
23574 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23575
23576         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23577         changes to pick up any changes in prefix, etc.
23578
23579 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23580
23581         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23582         
23583         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23584         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23585
23586 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23587
23588         * class-internals.h object-internals.h class.c reflection.c: Extend the
23589         mono_lookup_dynamic_token () function to return the class of the
23590         token as well. 
23591
23592         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23593         well. Fixes #73848.
23594
23595 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23596
23597         * security-manager.c: Skip inheritance checks for intra-corlib
23598         class inheritance and method overrides. This skips a lot of checks
23599         and (anyway) permissions cannot work until corlib is loaded.
23600
23601 2005-03-23  Martin Baulig  <martin@ximian.com>
23602
23603         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23604         MONO_TYPE_GENERICINST.  
23605
23606 2005-03-23  Martin Baulig  <martin@ximian.com>
23607
23608         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23609
23610 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23611
23612         * class.c: added locking comments to some functions.
23613         Cache the interface offsets arrays (saves about 20 KB
23614         of runtime memory in a typical app).
23615         Reduce the time overhead in mono_class_setup_supertypes ().
23616
23617 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23618
23619         * icall.c: speedup and fix leaks in GetMethodsByName and
23620         GetPropertiesByName.
23621
23622 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23623
23624         * reflection.c: some locking fixes.
23625
23626 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23627
23628         * metadata.c: added missing break in case statement.
23629
23630 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23631
23632         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23633         typedbyref return values. Fixes #73941.
23634
23635 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23636
23637         * security-manager.c|h: Added demandunmanaged method and 
23638         suppressunmanagedcodesecurity class to MonoSecurityManager.
23639         Renamed aptc class to allowpartiallytrustedcallers.
23640
23641 2005-03-17  Martin Baulig  <martin@ximian.com>
23642
23643         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23644
23645 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23646
23647         * file-io.c: disabled file async. IO using aio_*. It uses the
23648         threadpool now. Workaround for bug #73718.
23649
23650 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23651
23652         * assembly.h, mono-config.c: added code to deal with bundled configs
23653         for bundled assemblies.
23654
23655 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23656
23657         * *.c, private.h: cleanup, removing old private.h header file.
23658
23659 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23660
23661         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23662         and throw_on_unmappable_char attributes.
23663
23664 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23665
23666         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23667         _ProcessName_internal.
23668
23669 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23670
23671         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23672         #73631.
23673
23674         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23675         are no longer used.
23676
23677 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23678
23679         * object.c (compute_class_bitmap): Add support for generics. Fixes
23680         #73527.
23681
23682 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23683
23684         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23685
23686 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23687
23688         * filewatcher.c: commented out the code for windows watcher, as we don't
23689         use it (we use the managed implementation instead).
23690
23691 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23692
23693         * object-internals.h (MonoThread): Remove 'unused1' field.
23694
23695         * appdomain.c: Bump corlib version.
23696
23697         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23698
23699         * reflection.c (mono_reflection_create_runtime_class): Remove the
23700         AssemblyBuilder.Save optimization since it causes too many problems.
23701
23702 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23703
23704         * exception.c|h: Added mono_get_exception_reflection_type_load to
23705         create a ReflectionTypeLoadException object.
23706         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23707         to return NULL is a InheritanceDemand fails during reflection. Updated
23708         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23709         ReflectionTypeLoadException if an InheritanceDemand fails during 
23710         reflection. Added icall mapping for GetLinkDemandSecurity.
23711         * security-manager.c|h: Added ves_icall_System_Security_
23712         SecurityManager_GetLinkDemandSecurity internal call to return the
23713         class and methods permissions set for a LinkDemand. Removed unused
23714         fields in MonoSecurityManager.
23715
23716 2005-03-10  Martin Baulig  <martin@ximian.com>
23717
23718         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23719         it's a generic instance.
23720
23721 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23722
23723         * reflection.c (mono_get_object_from_blob): Applied patch from
23724         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23725
23726         * class.c (mono_class_is_assignable_from): Another try at fixing 
23727         #73469 without breaking anything.
23728
23729 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23730
23731         * class.c: (mono_class_is_assignable_from): Revert the last changes
23732         since they don't work with generics.
23733         
23734         * class.c (mono_class_is_assignable_from): Fix build bustage.
23735
23736         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23737         the managed IsAssignableFrom method. Fixes #73469.
23738
23739         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23740         function.
23741
23742 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23743
23744         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23745         memory when the remoting callback does not sets the out arguments.
23746         Fixes #73007.
23747
23748         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23749         by mistake.
23750
23751         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23752
23753         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23754
23755         * appdomain.c: Bump corlib version.
23756
23757 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23758
23759         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23760         function.
23761
23762         * threads.c (mono_thread_attach): Detect threads which are not started
23763         by the GC pthread wrappers.
23764
23765 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23766
23767         * icall.c: Added new icall for RNG.
23768         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23769         single handle on Linux to access /dev/urandom and fix #73183.
23770
23771 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23772
23773         * object.c: setting the new vtable in a transparent proxy object must
23774         not change the GC descriptor.
23775
23776 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23777
23778         * object.c: fixed compilation without GCJ support.
23779         * reflection.c: for runtime-created types ensure klass->has_references
23780         is correct (bug #73215).
23781
23782 2005-03-02  Martin Baulig  <martin@ximian.com>
23783
23784         * class.c (mono_class_is_assignable_from): Make this work if
23785         `oklass' is a generic instance; fixes #72831.
23786
23787 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23788
23789         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23790         with hasthis set.
23791         
23792         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23793
23794         * marshal.c: Reorganize native->managed marshalling code to also use
23795         the emit_marshal_... functions.
23796
23797 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23798
23799         * object.c: typed allocs have issues with bitmap sizes > 30,
23800         so check for max_set >= 30.
23801
23802 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23803
23804         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23805         managed code. Fixes #73012.
23806
23807         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23808
23809         * metadata.c reflection.c: Load/Emit elem_mult as well.
23810         
23811         * metadata.h (MonoMarshalSpec): Add comment.
23812
23813         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23814
23815         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23816         num_elem to -1 if not given.
23817
23818         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23819
23820         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23821         given values.
23822
23823 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23824
23825         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23826
23827 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23828
23829         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23830
23831         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23832
23833 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23834
23835         * object.c: generalized the reference bitmap creation
23836         and added hooks for the new GC.
23837         * class-internals.c: removed the gc_bitmap field from MonoClass.
23838
23839 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23840
23841         * domain.c: help the compiler to produce better code
23842         in mono_jit_info_table_find ().
23843
23844 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23845
23846         * object.c: make all allocations look typed.
23847
23848 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23849
23850         * socket-io.c: load Mono.Posix if it's not loaded already
23851         (fixes bug#73033).
23852
23853 2005-02-24  Martin Baulig  <martin@ximian.com>
23854
23855         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23856         * reflection.c (dup_type): Likewise.
23857
23858 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23859
23860         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23861         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23862
23863 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23864
23865         * domain.c, threads.c, object-internals.h: make the critical thread
23866         local vars use the fast access mode (even when we're compiled in
23867         a lib). Provide accessors to be used by the jit during codegen.
23868
23869 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23870
23871         * appdomain.c: Changed hook functios behavior to include
23872         support for the reflection only assemblies. Some icalls were changed
23873         to support the mentioned assemblies too. Signatures of static methods
23874         try_assembly_resolve and real_load now have an additional parameter:
23875         refonly.
23876
23877         * assembly.c: General changes to mono_assembly_ methods to support
23878         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23879         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23880         suffix, to support an additional gbool parameter to specify whether
23881         the assembli is reflection only or not. Created some new hook functions 
23882         to add support for reflection only assemblies. Signatures of static 
23883         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23884         have now an additional parameter: refonly.
23885
23886         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23887         indicating whether the assembly is reflection only or not.
23888
23889         * exception.c: Add mono_get_exception_invalid_operation.
23890
23891         * icall.c: Throw an InvalidOperationException when trying to invoke
23892         a property/method/event, or trying to set/get the value of a field.
23893         Also add an icall to retrieve the ref_only flag to the
23894         MonoReflectionAssembly.
23895
23896 2005-02-23  Chris Toshok  <toshok@ximian.com>
23897
23898         Part of fix for #72827.
23899         * mono-debug.c (mono_debug_add_method): add lexical block data to
23900         the info we write.  Kind of a hack at the moment - we copy the
23901         lexical block info from the MonoDebugMethodInfo to the
23902         MonoDebugMethodJitInfo here, before writing it.
23903         (mono_debug_read_method): read the lexical block info.
23904
23905         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23906
23907         * debug-mono-symfile.h: add lexical block support.
23908
23909         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23910         support.
23911
23912 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23913
23914         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23915
23916         * object.c (mono_runtime_free_method): Call mono_free_method () and
23917         put the TODOs there.
23918
23919         * loader.c (mono_free_method): Free up most memory allocated for 
23920         dynamic methods.
23921
23922 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23923
23924         * reflection.c: properly flag a Type argument to a
23925         named custom attr value (bug #72248).
23926
23927 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23928
23929         * reflection.c: reduce code duplication in named custom
23930         attribute encoding.
23931
23932 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23933
23934         * reflection.c: properly encode custom attrs of type object
23935         (bug #72649).
23936
23937 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23938
23939         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23940
23941 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23942
23943         * socket-io.c: load System.dll if it's not loaded already
23944         (bug #72850 and #70477).
23945
23946 2005-02-21  Martin Baulig  <martin@ximian.com>
23947
23948         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23949         generic instances.
23950
23951 2005-02-21  Martin Baulig  <martin@ximian.com>
23952
23953         * reflection.c (mono_image_build_metadata): We also need to
23954         "fixup" the MethodImpl table after we computed the final method
23955         indices.  Call fixup_methodimpl() to do that.
23956         (fixup_methodimpl): New private method.
23957
23958 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23959
23960         * assembly.c: special case mscorlib.dll (bug#72536),
23961         patch from Carlos Alberto Cortez.
23962
23963 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23964
23965         * threads-types.h threads.c: Fix build bustage.
23966
23967         * threads.c: Use a union for long<->double conversions.
23968
23969         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23970         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23971
23972         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23973         containing the checkpoint call with NOT_TAKEN.
23974         
23975         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23976         checkpoint before pushing the arguments, so they won't have to be
23977         spilled to stack.
23978
23979 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23980
23981         * domain.c, assembly.c, domain-internals.h: make some data
23982         const and relocation-free.
23983
23984 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23985
23986         * object.c, appdomain.c, class-internals.h: introduce the
23987         MonoClassRuntimeInfo structure to hold the info needed to
23988         use a class at runtime. Made mono_class_vtable() lock-free
23989         for all the appdomains.
23990
23991 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23992
23993         * metadata-internals.h, image.c: introduce a per-image mempool to
23994         be used for memory that has the same lifetime as the image.
23995
23996 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23997
23998         * domain.c: In mono_init_internal(), instead of selecting the first
23999         runtime version supported by an executable, get a list of all
24000         supported versions and select the one for which an mscorlib exists
24001         (since even if the runtime supports a given version, it doesn't mean
24002         that the framework for that version is installed).
24003         Modified get_runtimes_from_exe to support this behavior.
24004         In supported_runtimes, added information about additional system
24005         assembly versions.
24006         
24007         * assembly.c: Added support for more than one system assembly version
24008         per runtime version. Updated the assembly list.
24009         In mono_assembly_remap_version, removed the initial version check,
24010         since we don't know to which version we need to compare until we
24011         get the version set on which the assembly is based.
24012         Moved the code for loading corlib into the new method
24013         mono_assembly_load_corlib(), so it can be used by the initialization
24014         code.
24015         
24016         * domain-internals.h: Updated data structures and added declaration
24017         for mono_assembly_load_corlib.
24018
24019 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24020
24021         * reflection.c (resolve_object): Fix the creation of the signature in 
24022         the SignatureHelper case.
24023
24024         * assembly.c (mono_assembly_remap_version): Fix binary search.
24025         
24026 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
24027  
24028         * class.c: Added inheritance check when a method is overloaded (from a
24029         virtual method or when implementing an interface) and when a class is
24030         inherited. Added functions to set a failure for a class and to 
24031         retreive the exception from a failure.
24032         * class-internals.h: Added fields to MonoClass to keep the exception
24033         information status for inheritance (or other exceptions) to be thrown
24034         later (i.e. not at load time).
24035         * object.c: Throw the inheritance SecurityException when a type is to 
24036         be created with either class or method inheritance violations.
24037         * reflection.c|h: Fix when getting declsec from a class. Removed 
24038         unrequired code for class. Improved sanity in parameter naming.
24039         * security-manager.c|h: Added functions to check for class and method
24040         inheritance.
24041
24042 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24043
24044         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
24045         and has_finalize in dynamic types as well.
24046
24047 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
24048
24049         * culture-info-table.h : fixed currency format for en-GB (and so on).
24050
24051 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
24052
24053         * gc.c: ensure the GC handles never have 0 as a value.
24054
24055 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24056
24057         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
24058         a pointer to a struct to unmanaged code. Fixes #72625.
24059
24060 2005-02-16  Martin Baulig  <martin@ximian.com>
24061
24062         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
24063
24064 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24065
24066         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
24067
24068 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24069
24070         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
24071
24072         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
24073         UnmanagedFunctionPointerAttribute, use it for determining calling convention
24074         etc. Fixes #71471.
24075
24076         * reflection.c (mono_custom_attrs_get_attr): New helper function.
24077
24078         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
24079
24080 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
24081
24082         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
24083         changes to make the current context a field in MonoThread.
24084
24085 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24086
24087         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
24088         the last change.
24089         
24090         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
24091         extracted from mono_marshal_get_native_wrapper.
24092
24093         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
24094         to create wrappers around native functions.
24095
24096         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
24097         delegates for arbitrary function pointers. Fixes #71472.
24098
24099 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24100
24101         * threads.c: cleaned up the code a little.
24102
24103 2005-02-15  Martin Baulig  <martin@ximian.com>
24104
24105         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
24106         the data table.
24107
24108         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
24109         allocate larger chunks if needed.
24110
24111 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24112
24113         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
24114         in by mistake.
24115
24116 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
24117
24118         * domain.c: keep the domains in an array and ensure the domain ids
24119         are kept small, so they can be used as indexes to domain-specific data
24120         with a small memory overhead.
24121
24122 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24123
24124         * icall.c: Handle byref types in Type icalls. Fixes #72544.
24125
24126 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
24127
24128         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
24129
24130 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
24131
24132         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
24133
24134         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
24135         values.
24136
24137         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
24138         
24139 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
24140
24141         * domain-internals.h: add the hashtable here.
24142
24143         * class-internals.h: Remove `info' from MonoMethod
24144
24145         * domain.c: Add a new hashtable, jit_trampoline_hash
24146
24147 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24148
24149         * object.c: don't set the value of static fields
24150         (fixes bug#72494).
24151
24152 2005-02-11  Martin Baulig  <martin@ximian.com>
24153
24154         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
24155         (mono_debug_add_method): Silently ignore the method if it's too big.
24156         (mono_debug_add_type): Likewise.
24157
24158 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
24159
24160         * threads.c, appdomain.c: remove #ifdefs from the code.
24161
24162 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
24163
24164         * metadata-internals.h: Added flags to MonoAssembly to cache the most
24165         common security informations. This allows us to stay in unmanaged code
24166         when doing LinkDemand and it's special cases (except for the first 
24167         time for initialization). The flags a very much used with --security.
24168         * reflection.c|h: Added code to get declarative security attributes 
24169         for LinkDemand and InheritanceDemand. This required to refactor the
24170         existing code for Demand.
24171         * security-manager.c|h: Added new method fields for the special cases
24172         of LinkDemand.
24173
24174 2005-02-10  Martin Baulig  <martin@ximian.com>
24175
24176         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
24177         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
24178
24179 2005-02-10  Martin Baulig  <martin@ximian.com>
24180
24181         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
24182         debugging code; this is almost a complete rewrite.
24183
24184         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
24185
24186 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24187
24188         * domain.c, object.h: expose mono_string_equal () and 
24189         mono_string_hash ().
24190         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
24191         it's implemented in managed code.
24192
24193 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24194
24195         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
24196         lo leak objects between appdomains.
24197
24198 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24199
24200         * assembly.c: old compilers compilation fix from 
24201         robertj@gmx.net (Robert Jordan).
24202
24203 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
24204
24205         * class-internals.h: Little reminder for the future.
24206
24207         * debug-helpers.c: Fix up wrapper_type_names
24208
24209 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24210
24211         * image.c, metadata-internals.h: when loading an image from a file,
24212         mmap all of it and use the same codepaths as when using a
24213         in-memory image: the code is simpler and we use less memory
24214         (both writable and readonly).
24215
24216 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24217
24218         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
24219         API to alloc runtime data structures that need to be tracked by the
24220         GC and contain pointers.
24221         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
24222         make the code more readable and eventually use a different GC.
24223
24224 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
24225
24226         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
24227         for out arguments.
24228         
24229 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
24230
24231         * object.c: In release_type_locks(), don't release the cctor lock
24232         if it has already been released. This fixes a crash in the
24233         thread5 test.
24234
24235 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24236
24237         * gc.c, marshal.c, icall.c: register a delegate for finalization
24238         only when the native function pointer has been allocated for it.
24239
24240 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24241
24242         * object.c: cleaned up some code, allocate objects that are
24243         pointer free with the atomic malloc variant. Allocate memory
24244         for static data from the mempool if it's pointer-free.
24245         Allocate the bounds array at the end of the array data, when needed.
24246         * object-internals.h, object.h: move a private function in a private
24247         header.
24248         * class.c: handle missing case in tracking references in fields.
24249
24250 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24251
24252         * class.c, class-internals.h: keep track if a type has
24253         reference fields in either the instance or static fields.
24254
24255 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
24256
24257         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
24258         and renamed to MonoRuntimeInfo. Added fields to store the expected
24259         framework assembly version. Changed mono_get_framework_version and
24260         mono_get_runtime_version for a single mono_get_runtime_info method.
24261         
24262         * assembly.c: Added method to remap system assembly versions to the
24263         current executing runtime version. Removed old mapping code.
24264         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
24265         
24266         * icall.c, reflection.c: Track api changes.
24267
24268 2005-02-06  Miguel de Icaza  <miguel@novell.com>
24269
24270         * loader.c (method_from_memberref): Improve error reporting,
24271         produce the class name instead of the typeref/typedef index. 
24272
24273 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
24274
24275         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
24276
24277 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24278
24279         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
24280         stdcall and charset name mangling.  Reorganize the code and add
24281         some tracing stuff.
24282
24283 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24284
24285         * monodiet.c: More iters!
24286
24287         * marshal.c: Iter usage.
24288
24289         * icall.c: Iter usage.
24290
24291         * object.c: Use iters.
24292
24293         * debug-helpers.c: More iters
24294
24295 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24296
24297         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
24298         under win32.
24299
24300 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24301
24302         * mono-debug-debugger.c: use iters
24303
24304         * class.c, class-internals.h: mono_class_setup_events is static
24305         now
24306
24307         * All callers: use iters
24308
24309 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24310
24311         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
24312         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
24313
24314 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24315
24316         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
24317
24318         * marshal.h: Add prototypes for ldfld/stfld_remote.
24319
24320         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
24321         this is called during startup.
24322         
24323 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
24324
24325         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
24326         MonoThreadsSync struct private in monitor.c. Changed the way
24327         MonoThreadsSync is allocated so it's faster and there is no
24328         need to keep track of it with a finalizer and it uses less memory.
24329         This also finally allows us to allocate mono objects as ptrfree when
24330         there are no reference fields.
24331
24332 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
24333
24334         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
24335         disappearing link to the GC interface and use them to simplify
24336         the gchandles code.
24337
24338 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24339
24340         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
24341         stfld_remote which call mono_load/store_field_new. This allows methods
24342         calling ldfld/stfld wrappers to be AOTed.
24343
24344         * console-io.c: Include sys/filio.h under solaris.
24345         
24346         * console-io.c: Include curses.h if needed correctly.
24347
24348 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24349         
24350         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
24351         method->klass as well.
24352
24353         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
24354
24355         * class.c (mono_class_init): Switch on lazy initialization of 
24356         methods.
24357
24358         * class.c (mono_class_get_finalizer): Handle the case when the 
24359         finalizer is inherited.
24360
24361 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24362
24363         * console-io.c: <curses.h> is needed by term.h on solaris.
24364
24365 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
24366
24367         * icall.c, class-internals.h, monodiet.c, class.c: Remove
24368         mono_class_setup_properties where possible. Remove this ftn from
24369         the header file, and make it static.
24370
24371 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24372
24373         * loader.c: Add missing setup_... call.
24374
24375         * class.c: Add missing setup_... calls.
24376
24377         * class.c (mono_class_init): Switch on lazy initialization of 
24378         the generic vtable.
24379         
24380         * class.c (mono_class_init): Fix generics broken by the recent changes.
24381
24382         * monodiet.c (handle_type): Add missing setup_... calls.
24383
24384         * class.c: Back out garbage in previous patch.
24385         
24386         * class.c: Add missing setup_... calls.
24387
24388         * class.c (mono_class_get_method_from_name_flags): Avoid calling
24389         mono_class_setup_methods () if possible.
24390
24391         * class-internals.h (MonoClass): Add 'has_cctor' flag.
24392
24393         * class-internals.h (MonoCachedClassInfo): New structure.
24394
24395         * class.c: Initialize properties and events fields of MonoClass lazily.
24396
24397         * class.c: Add infrastructure for lazily initializing the methods and
24398         vtable fields of MonoClass. Not yet used.
24399
24400         * class.c (mono_class_get_finalizer): New helper function.
24401
24402         * class.c: Add infrastructure for loading some class related data from
24403         an AOT file.
24404
24405         * object.c: Add infrastructure for initializing the vtable from data
24406         in the AOT file.
24407
24408         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24409
24410         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24411         appropriate initialization function before accessing parts of the
24412         MonoClass structure.
24413
24414         * marshal.c: Fix warnings.
24415         
24416         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24417
24418         * mono-debug-debugger.c (get_exception_message): Use 
24419         mono_class_get_method_from_name_flags ().
24420
24421 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24422
24423         * reflection.c, appdomain.c: Replace a few manual searches that
24424         Zoltan missed. (Paolo approved this part of my initial patch).
24425
24426 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24427
24428         * profiler.c: disable recording statistical events at report time.
24429
24430 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24431
24432         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24433         to byteswap arrays of enum values, too (bug #72080).
24434
24435 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24436
24437         * appdomain.c (set_domain_search_path): Allow this to be called if
24438         domain->setup is not yet set.
24439
24440         * loader.c (mono_method_get_index): New helper function.
24441
24442         * loader.c reflection.c: Use mono_method_get_index ().
24443
24444         * class.c (mono_class_get_method_from_name_flags): New helper method.
24445
24446         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24447         this.
24448
24449         * class.c (mono_class_get_cctor): New helper method.
24450
24451         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24452         mono_class_get_method () to look up methods.
24453
24454 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24455
24456         * console-io.c: Fix the build, this should work on Windows.
24457
24458 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24459
24460         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24461         be set to null to keep things valid
24462
24463 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24464
24465         * icall.c: added Console 2.0 icalls.
24466         * Makefile.am: added console-io.[ch]
24467         * console-io.[ch]: internal calls for Console 2.0 API.
24468
24469 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24470
24471         * class.c: make sure we consider all the interfaces
24472         when calculating max_interface_id (bug found by
24473         Jeroen Frijters running ikvm).
24474
24475 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24476
24477         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24478         valuetype fields to null.
24479
24480         * object.c (set_value): Ditto. Fixes #71669.    
24481
24482 2005-01-31  Martin Baulig  <martin@ximian.com>
24483
24484         * metadata.c (mono_metadata_has_generic_params): New public
24485         function; checks whether something is a generic method.
24486
24487 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24488
24489         * appdomain.c: fix infinite recursion when adding assemblies.
24490
24491 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24492
24493         * object.c: Fix small typo to return all items for Environment.
24494         GetCommandLineArgs.
24495
24496 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24497
24498         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24499         reflection.c: more domain and assembly-unload related fixes
24500         and memory leaks plugs.
24501
24502 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24503
24504         * 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.
24505
24506 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24507
24508         * loader.c (mono_method_signature): Make this method lazy
24509         (mono_get_method_from_token): Don't computate the signature here.
24510
24511         Doing this saves quite a bit of memory. I got 90 kb on starting up
24512         monodoc. It should also save some disk reads on startup.
24513
24514         * *: MonoMethod->signature might be NULL now. You *MUST* use
24515         mono_method_signature.
24516
24517 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24518
24519         * object.c (mono_runtime_get_main_args): Return an array from the
24520         current domain here. Fixes #71938.
24521
24522 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24523
24524         * monitor.c: formatting changes to comply with the
24525         mono coding style and remove #ifdefs from the code.
24526
24527 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24528
24529         * metadata.c, private.h: remove some unneeded data
24530         and use a more compact representation for table schemas.
24531
24532 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24533
24534         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24535         to get a better distribution in hash tables.
24536         * *.c: use mono_aligned_addr_hash() where appropriate.
24537         * assembly.c: make var static.
24538
24539 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24540
24541         * domain-internals.h: Put MonoJitInfo on a diet.
24542
24543         * domain.c: Fix a warning.
24544
24545 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24546
24547         * gc.c: rework the gc handles code to reuse handles
24548         when freed.
24549
24550 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24551
24552         * domain.c: fixed long standing bug in mono_string_equal() which
24553         was brought to light with the ldstr changes.
24554
24555 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24556
24557         * reflection.c: Remove warning by adding missing include for marshal.h
24558
24559 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24560
24561         * domain.c, object.c: change the ldstr_table to hold
24562         MonoString* as keys: makes the runtime isinterned lookup
24563         faster and simplifies memory management.
24564
24565 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24566  
24567         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24568         possible to add imperative security checks before calling the icall.
24569         * reflection.c: Return security attributes on the original MonoMethod
24570         (and not the wrapped one). This fix permissions on icalls.
24571
24572 2005-01-25  Dick Porter  <dick@ximian.com>
24573
24574         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24575         the check for mktime() support actually test the mktime() return
24576         value.  "Fixes" bug 71682, though the output is still different to
24577         MS.
24578
24579 2005-01-25  Martin Baulig  <martin@ximian.com>
24580
24581         * class.c (mono_class_is_assignable_from): Make this work for
24582         generic instances.
24583
24584 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24585
24586         * marshal.c (mono_string_utf8_to_builder)
24587         (mono_string_builder_to_utf16): We might not have ownership of the
24588         string. In thise case, we need to create a new buffer.
24589
24590         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24591         be null, in which case, use the default capacity.
24592
24593 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24594
24595         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24596         GC events to the profiler.
24597
24598 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24599
24600         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24601         if you don't want the GC to run.
24602
24603 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24604
24605         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24606         start providing a GC API and keeping different implementations in
24607         their own file.
24608         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24609
24610 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24611
24612         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24613         mmap rather than allocating a huge buffer.
24614         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24615         above.
24616
24617 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24618
24619         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24620         and CheckExecutionRights.
24621         * reflection.c|h: Keep the index of the declarative security to be 
24622         used, instead of the pointer, when AOT compiler is used. Also add 
24623         class initialization when requesting demands.
24624         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24625         CheckExecutionRights. Both properties are now FALSE by default, and
24626         unmodifiable, unless the --security option is used.
24627
24628 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24629
24630         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24631         reflection.c: properly refcount images and assemblies, many leaks fixed.
24632
24633 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24634
24635         * threadpool.c: increase the timeout for threads in the thread pool to
24636         10s.  Fixes bug #67159.
24637
24638 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24639
24640         * class-internals.h: Sun's compiler insists on explicit
24641         signed on bit fields to handle then correctly.
24642
24643 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24644
24645         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24646         Make the size of the array fit only the number of invalid path
24647         chars that we have.
24648
24649         * class.c (_mono_class_get): Improve the error reporting when a
24650         class referenced is not found, to assist debugging. 
24651
24652 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24653
24654         * threads.c: fix off-by-one error.
24655         * domain.c: free data allocated in the domain.
24656
24657 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24658
24659         * reflection.c (mono_method_body_get_object): Fill out exception info
24660         as well.
24661
24662         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24663         structure.
24664         
24665 2005-01-19  Martin Baulig  <martin@ximian.com>
24666
24667         * loader.c (mono_get_method_constrained): Make this work again.
24668
24669 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24670
24671         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24672         guint16 to match the managed side.
24673
24674         * reflection.c (mono_reflection_body_get_object): Fill out local
24675         variables array.
24676
24677         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24678         as well.
24679
24680         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24681         'local_var_sig_token'.
24682
24683 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24684
24685         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24686         System.Drawing.
24687
24688         * reflection.c (mono_method_body_get_object): Handle abstract and
24689         runtime methods.
24690
24691 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24692
24693         * marshal.c, loader.c, class-internals.h, reflection.c:
24694         store the emthod data for a wrapper in an array instead of a list.
24695
24696 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24697
24698         * marshal.c: change the code to allocate memory more
24699         conservatively for method wrappers.
24700
24701 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24702
24703         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24704         fields from MonoClass to the marshal info structure where they belong.
24705
24706 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24707
24708         * class.c, object.c, class-internals.h, marshal.c: rearrange
24709         some fields and tweak some types to lower memory usage.
24710
24711 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24712
24713         * threads.c (signal_thread_state_change): Handle the case when the
24714         target thread is the current thread.
24715
24716         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24717
24718         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24719         emit_ptr_to_object_conv. 
24720
24721         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24722         marshalling. Fixes #71352.
24723
24724 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24725
24726         * metadata.h, blob.h: move table enum to blob.h so it can be included
24727         in any header.
24728         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24729         cut the size of MonoImage/MonoDynamicImage.
24730
24731 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24732
24733         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24734
24735 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24736
24737         * reflection.c, reflection.h, icall.c: add a function to check
24738         if an attribute type is defined for a metadata object.
24739
24740 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24741
24742         * object-internals.h: Added some needed fields from StringBuilder class.
24743         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24744
24745 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24746
24747         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24748         threads before shutting down the runtime.
24749
24750         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24751
24752 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24753
24754         * object-internal.h, threads.c: implement stacksize and 
24755         parameterized thread start functionality (requires
24756         matching corlib). Marked broken code for later removal.
24757
24758 2005-01-12  Martin Baulig  <martin@ximian.com>
24759
24760         * class-internals.h (MonoGenericClass): Moved the `initialized'
24761         flag to MonoDynamicGenericClass, removed `init_pending'.
24762         (MonoGenericInst): Added `is_reference' flag.
24763
24764 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24765
24766         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24767         inside the MSDOS header. Fixes #71201.
24768
24769         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24770         gc thread.
24771         (mono_domain_finalize): Ditto.
24772
24773 2005-01-12  Martin Baulig  <martin@ximian.com>
24774
24775         * class.c (mono_get_shared_generic_class): Use the cache for
24776         non-dynamic generic classes.
24777
24778         * class-internals.h (mono_class_create_generic_2): Removed
24779         function prototype, this function is now static inside class.c.
24780
24781         * class.c (mono_class_create_generic_2): Made this static, only
24782         call it from mono_class_init() and mono_class_setup_parent().
24783         (collect_implemented_interfaces_aux): Call mono_class_init() on
24784         the interfaces we collect.
24785         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24786
24787 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24788
24789         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24790         it a real thread handle.
24791
24792         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24793         MonoJitExceptionInfo, since each catch clause needs its own variable.
24794         
24795 2005-01-11  Dick Porter  <dick@ximian.com>
24796
24797         * image.c (mono_pe_file_open): New variant on mono_image_open()
24798         that does not set up the CLI metadata; used for FileVersionInfo so
24799         it can get the data for windows binaries too.
24800         
24801         * process.c (process_read_string_block): Don't read off the end of
24802         the StringTable block.
24803
24804         These both fix bug 70766.
24805
24806 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24807
24808         * gc.c: set some fields to NULL at GC cleanup time.
24809         * threads.c: if we quit the main thread, call exit ().
24810
24811 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24812
24813         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24814
24815 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24816
24817         * threads.h, threads.c, object.c: added accessor and settor for
24818         main_thread. Handle it specially when exiting from it: wait
24819         for other foreground threads to exit.
24820
24821 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24822
24823         * process.c, verify.c: remove some bloat.
24824
24825 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24826
24827         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24828         the calling convention to cdecl under win32.
24829
24830 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24831
24832         * object.c (mono_object_get_size): New function to get the size of
24833         an object instance.
24834
24835         * profiler.c (simple_allocation): Use above.
24836
24837 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24838
24839         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24840         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24841         get an appdomain by it's id and we can't assume the root's id is 0).
24842         * domain-internals.h: Change the function prototype to match.
24843         * icall.c: Change the icall table for AppDomain.
24844
24845 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24846
24847         * locales.c (string_invariant_compare_char): Only compute
24848         GUnicodeTypes in the case where we need them.  Test for ordinality
24849         first and return if so.
24850
24851         From the commit:
24852
24853                 /*
24854                  * FIXME: here we must use the information from c1type and c2type
24855                  * to find out the proper collation, even on the InvariantCulture, the
24856                  * sorting is not done by computing the unicode values, but their
24857                  * actual sort order.
24858                  */
24859
24860 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24861
24862         * loader.c: for P/Invoke methods, allow the "Internal" shared
24863         library name to refer to the calling process symbol namespace.
24864
24865 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24866
24867         * Makefile.am: Add the security manager to the build.
24868         * security-manager.c|h: New. Initialization of the security manager.
24869
24870 2005-01-07  Dick Porter  <dick@ximian.com>
24871
24872         * threads.c: 
24873         * monitor.c: Update thread state during Monitor and WaitHandle
24874         waits.  Fixes bug 71031.
24875
24876 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24877
24878         * reflection.c (property_encode_signature): Correctly handle when the
24879         property has no methods.
24880
24881 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24882
24883         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24884         
24885         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24886         fields from mb, not rmb. Fixes #71017.
24887
24888         * marshal.c (emit_ptr_to_str_conv): Add support for 
24889         ByValTStr -> string conversion. Fixes #71015.
24890
24891         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24892
24893         * mempool.c (mono_mempool_contains_addr): New helper function.
24894
24895 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24896
24897         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24898         HasSematics encoded fields.
24899         
24900         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24901         invalid string marshalling.
24902
24903         * metadata.c: Fix warnings.
24904         
24905 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24906
24907         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24908         profiler support.
24909
24910 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24911
24912         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24913         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24914         tests.
24915
24916 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24917
24918         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24919         so methods containing these can be AOTed.
24920
24921 2005-01-03  Martin Baulig  <martin@ximian.com>
24922
24923         * loader.c (find_method): Removed the hack for generic instances.
24924         (method_from_memberref): If our parent is a generic instance, pass
24925         its generic type definition to find_method() and then inflate the
24926         method.
24927         (mono_get_method_constrained): Pass the generic type definition to
24928         find_method() and inflate the method later.
24929
24930         * class-internals.h (MonoStats): Added `generic_class_count'.
24931
24932         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24933         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24934
24935         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24936         generic type definitions.
24937
24938 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24939
24940         * loader.c icall.c: Fix warnings.
24941
24942 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24943
24944         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24945         blittable types. Fixes #70864.
24946
24947 2004-12-29  Martin Baulig  <martin@ximian.com>
24948
24949         * icall.c
24950         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24951
24952         * reflection.c (mono_method_get_object): Create a
24953         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24954         call mono_get_inflated_method().
24955
24956         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24957
24958 2004-12-27  Martin Baulig  <martin@ximian.com>
24959
24960         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24961         (MonoMethodInflated): Added `inflated' field.
24962
24963         * class.c (mono_class_inflate_generic_method): Don't really
24964         inflate the method here; just set the `is_inflated' flag in the
24965         MonoMethod.
24966         (mono_class_get_inflated_method): Actually inflate the method here
24967         if it's not already inflated; we use the MonoMethodInflated's new
24968         `inflated' field as a cache.
24969
24970 2004-12-26  Martin Baulig  <martin@ximian.com>
24971
24972         * class.c
24973         (inflate_generic_class): Moved some code out of inflate_generic_type().
24974         (mono_class_inflate_generic_method): If we're already inflated,
24975         inflate the context and use the declaring method; ie. make sure
24976         the declaring method of an inflated method is always the generic
24977         method definition.
24978         (mono_class_create_from_typedef): Create
24979         `class->generic_container->context->gclass'.
24980
24981 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24982
24983         * metadata-internals.h, marshal.c, reflection.c: More
24984         MonoGHashTable->GHashTable.
24985
24986         * domain-internals.h, class.c: Change MonoGHashTable's into
24987         GHashTables for some cases where no gc stuff is used
24988
24989         All users: update apis
24990
24991 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24992
24993         * metadata.c (builtin_types): Make this `const'. Makes this get
24994         put into the shareable section.
24995         (mono_metadata_init): Casts to make gcc happy.
24996
24997 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24998
24999         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
25000
25001 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
25002
25003         * icall.c: Added an internal call to retrieve the position and length
25004         of assembly-level declarative security attributes (RequestMinimum, 
25005         RequestOptional and RequestRefuse). This is used by the Assembly class
25006         to re-create the corresponding permission sets.
25007
25008 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
25009
25010         * marshal.c: fix the stelemref wrapper to be type correct
25011         (and faster).
25012
25013 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
25014
25015         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
25016         to do key & 0x7fffffff. Hashtable already does this. It just
25017         results in longer code.
25018
25019 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
25020
25021         * appdomain.c: Bump corlib version.
25022         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
25023         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
25024         * reflection.c|h: Add functions to get declarative security infos
25025         (blob position and length) for assemblies, classes and methods.
25026
25027 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
25028
25029         * reflection.c: sort the constant table (bug #70693).
25030
25031 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
25032
25033         * object-internals.h, threads.c, domain.c: add accessors for
25034         the MonoThread and MonoDomain tls keys.
25035
25036 2004-12-18  Martin Baulig  <martin@ximian.com>
25037
25038         * class.c (inflate_generic_type): If we're inflating a generic
25039         instance, set `ngclass->context->container = context->container';
25040         ie. the container we inflated into.
25041
25042         * metadata.c (mono_metadata_parse_generic_param): Reflect above
25043         inflate_generic_type() changes.
25044
25045 2004-12-17  Martin Baulig  <martin@ximian.com>
25046
25047         * class-internals.h
25048         (MonoGenericClass): Replaced `MonoType *generic_type' with
25049         `MonoClass *generic_class'.  Removed `dynamic_info'; if
25050         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
25051         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
25052
25053 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
25054
25055         * exception.c (mono_exception_from_token): New helper function.
25056
25057 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
25058
25059         * assembly.c (mono_assembly_load_with_partial_name): Call 
25060         mono_assembly_loaded before invoking the preload hooks. Fixes
25061         #70564.
25062
25063         * object-internals.h (MonoThread): Change culture_info and 
25064         ui_culture_info into an array.
25065
25066         * threads.c: Cache culture info objects from more than one appdomain.
25067
25068         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
25069         current UI culture.
25070
25071 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
25072
25073         * threads.h threads.c appdomain.c: Clear the culture_info field of
25074         all threads during unloading if they point to an object in the dying
25075         appdomain.
25076
25077 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
25078
25079         * culture-info.h (TextInfoEntry): New struct
25080         * object-internals.h: sync with managed
25081         * locales.c: fill the `text_info_data' field
25082         * culture-info-tables.h: update
25083
25084 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
25085
25086         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
25087         collector.
25088
25089 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
25090
25091         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
25092         (ves_icall_ModuleBuilder_getMethodToken): Ditto
25093
25094 2004-12-12  Martin Baulig  <martin@ximian.com>
25095
25096         * mono-debug-debugger.c (write_type): If we're an enum and the
25097         builtin types have already been initialized, call mono_class_init().
25098
25099 2004-12-11  Martin Baulig  <martin@ximian.com>
25100
25101         * metadata.c (mono_metadata_load_generic_params): Added
25102         `MonoGenericContainer *parent_container' argument; automatically
25103         compute `container->is_method'; pass the correct owner to
25104         get_constraints().      
25105
25106         * reflection.c (compare_genericparam): Sort the GenericParam table
25107         according to increasing owners. 
25108
25109 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
25110
25111         * profiler.c: allow disabling the default profiler.
25112
25113 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
25114
25115         * decimal.c, icall.c: allow disabling System.Decimal support.
25116
25117 2004-12-09  Marek Safar <marek.safar@seznam.cz>
25118
25119         * reflection.c: Add support for null attribute arguments.
25120
25121 2004-12-09  Martin Baulig  <martin@ximian.com>
25122
25123         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
25124         names to get rid of compiler warnings.
25125
25126 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25127
25128         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
25129         mono_marshal_load_type_info (). Fixes #69625.
25130         (mono_marshal_get_ptr_to_struct): Likewise.
25131
25132 2004-12-08  Martin Baulig  <martin@ximian.com>
25133
25134         * mono-debug.h: Bumped version number to 47.
25135
25136         * mono-debug-debugger.c
25137         (mono_debugger_event_handler, mono_debugger_event): Take two
25138         guint64 arguments insteed of a gpointer and a guint32.  
25139
25140 2004-12-08  Martin Baulig  <martin@ximian.com>
25141
25142         * debug-mono-symfile.h
25143         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
25144         `address' to `native_offset'.
25145
25146 2004-12-08  Martin Baulig  <martin@ximian.com>
25147
25148         * class.c (mono_class_create_from_typespec): Only inflate if we
25149         either have `context->gclass' or `context->gmethod'.
25150
25151 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25152
25153         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
25154
25155         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
25156
25157         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
25158
25159         * reflection.c (mono_assembly_get_object): Remove the workaround put
25160         in for the release.
25161         
25162         * appdomain.c: Use the corlib_internal field from MonoAssembly.
25163
25164         * appdomain.c: Bump corlib version.
25165
25166         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
25167         be visible in other appdomains.
25168
25169 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
25170
25171         * threads.c: Interlocked inc and dec for longs were messed up,
25172         use a KISS based impl for this. Fixes 70234
25173
25174 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
25175
25176         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
25177
25178 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25179
25180         * icall.c: fix to follow policy not to allow struct
25181         arguments in icalls.
25182
25183 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25184
25185         * process.c: make the patch that handles spaces in file paths work
25186         on mono/windows too.
25187
25188 2004-12-06  Martin Baulig  <martin@ximian.com>
25189
25190         * class.c (mono_class_create_generic): Call
25191         mono_class_setup_supertypes() if we're dynamic.
25192         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
25193
25194 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
25195
25196         * object-internals.h: Add new fields to MonoThread.
25197
25198         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25199
25200         * icall.c threads-types.h threads.c: Add new icalls.
25201
25202         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
25203
25204         * object-internals.h (MonoReflectionAssembly): Sync object layout with
25205         managed side.
25206
25207         * appdomain.c: Bump corlib version.
25208
25209         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
25210         internal assemblies. Fixes #69181.
25211
25212 2004-12-05  Martin Baulig  <martin@ximian.com>
25213
25214         * class.c (mono_class_inflate_generic_signature): Make this a
25215         no-op if `context' is NULL or we don't have any type parameters;
25216         also copy `sentinelpos'.        
25217
25218 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
25219
25220         * image.c: Add unbox_wrapper_cache.
25221
25222         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
25223
25224         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
25225         function generator.
25226         
25227         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
25228         Fixes #70173.
25229
25230         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
25231         
25232 2004-12-04  Martin Baulig  <martin@ximian.com>
25233
25234         * loader.c (mono_method_get_signature_full): New public function;
25235         like mono_method_get_signature(), but with an additional
25236         `MonoGenericContext *' argument.
25237
25238         * class.c (mono_class_inflate_generic_signature): Formerly known
25239         as inflate_generic_signature(); make this public.
25240
25241 2004-12-04  Martin Baulig  <martin@ximian.com>
25242
25243         * metadata.c
25244         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
25245         instead of a `MonoGenericContainer *'.  
25246         (mono_metadata_parse_array_full): Likewise.
25247         (mono_metadata_parse_signature_full): Likewise.
25248         (mono_metadata_parse_method_signature_full): Likewise.
25249         (mono_metadata_parse_generic_inst): Likewise.
25250         (mono_metadata_parse_generic_param): Likewise.
25251         (mono_metadata_parse_mh_full): Likewise.
25252         (mono_type_create_from_typespec_full): Likewise.
25253
25254 2004-12-03  Martin Baulig  <martin@ximian.com>
25255
25256         * class-internals.h (MonoGenericContainer): Replaced the
25257         `MonoGenericContext * pointer with a `MonoGenericContext'
25258         structure and made it the first element.
25259
25260 2004-12-03  Martin Baulig  <martin@ximian.com>
25261
25262         * class.c
25263         (inflate_generic_type): Set the `context->container' when creating
25264         a new MonoGenericContext.
25265         (mono_class_inflate_generic_method): Likewise.
25266         (mono_class_create_from_typespec): Just use `context->container'
25267         to get the container.
25268
25269         * loader.c (method_from_methodspec): Set `context->parent' from
25270         `context->container' - and if that's a method container, use its
25271         parent.  Also set the `context->container' when creating a new
25272         MonoGenericContext.
25273         (mono_get_method_from_token): Use just `context->container' to get
25274         the container.
25275
25276         * metadata.c (do_mono_metadata_parse_generic_class): Also set
25277         `gclass->context->container'.
25278
25279         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
25280         the `context->container' when creating a new MonoGenericContext.
25281
25282 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
25283
25284         * reflection.c (compare_genericparam): Sort params with identical
25285         owner by their number. Fixes gen-111 on sparc.
25286
25287 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25288
25289         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
25290         around the domain changes.
25291
25292         * appdomain.c (mono_domain_unload): Handle the case when the thread
25293         calling Unload is itself being aborted during unloading. Fixes #70022.
25294
25295         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
25296
25297         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
25298         checkpoint_func as an icall so it gets a wrapper.
25299         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
25300         in the cross-appdomain wrappers too.
25301
25302         * threads.c (mono_thread_has_appdomain_ref): Make this public.
25303
25304         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
25305
25306         * reflection.c: Fix some memory leaks.
25307         
25308 2004-12-02  Martin Baulig  <martin@ximian.com>
25309
25310         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
25311
25312         * metadata.c (generic_class_cache): New static hashtable.
25313         (mono_metadata_lookup_generic_class): New public method.
25314
25315 2004-12-02  Martin Baulig  <martin@ximian.com>
25316
25317         * class.c (mono_class_create_from_typedef): Call
25318         mono_class_setup_parent() and mono_class_create_mono_type() before
25319         parsing the interfaces.
25320
25321 2004-12-02  Martin Baulig  <martin@ximian.com>
25322
25323         * metadata.c (generic_inst_cache): New static hashtable.
25324         (mono_metadata_lookup_generic_inst): New public function.
25325         (mono_metadata_inflate_generic_inst): New public function.
25326         (mono_metadata_parse_generic_inst): New public function.
25327         (do_mono_metadata_parse_generic_class): Use the new
25328         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
25329         since this'll also use the cache.
25330
25331         * reflection.c (mono_reflection_bind_generic_method_parameters):
25332         Use mono_metadata_lookup_generic_inst() to use the new cache.
25333
25334         * class.c (inflate_mono_type): Use
25335         mono_metadata_inflate_generic_inst() to inflate a generic
25336         instance; this'll also use the new cache.
25337
25338         * loader.c (method_from_methodspec): Use
25339         mono_metadata_parse_generic_inst() and
25340         mono_metadata_inflate_generic_inst() rather than parsing it
25341         manually, so we can use the new cache.
25342
25343 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25344
25345         * threads.c (wait_for_tids): Do not incorrectly free threads when 
25346         the wait times out.
25347
25348 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
25349
25350         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
25351         iter->args based on whether parameters are passed in registers (i.e.
25352         MONO_ARCH_REGPARMS is defined)
25353
25354 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
25355
25356         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
25357         the exception message. Fixes #70070.
25358         (method_from_methodspec): Fix warnings.
25359
25360 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25361
25362         * process.c: (complete_path) return the path quoted
25363
25364 2004-12-01  Martin Baulig  <martin@ximian.com>
25365
25366         * class-internals.h (MonoGenericInst): New structure.
25367         (MonoGenericClass): Replaced `type_argc', `type_argv' and
25368         `is_open' with `MonoGenericInst *inst'.
25369         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
25370         `is_open' with `MonoGenericInst *inst'.
25371
25372 2004-11-30  Martin Baulig  <martin@ximian.com>
25373
25374         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
25375
25376         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
25377         to `generic_class_cache'.
25378
25379         * metadata.c
25380         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
25381         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
25382         (mono_generic_inst_is_valuetype): Renamed to
25383         mono_generic_class_is_valuetype().
25384
25385         * class-internals.h
25386         (MonoGenericInst): Renamed to MonoGenericClass.
25387         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
25388         (MonoClass): Renamed `generic_inst' to `generic_class'.
25389         (MonoGenericContext): Renamed `ginst' to `gclass'.
25390
25391         * object-internals.h
25392         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25393
25394         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25395         mono_reflection_generic_class_initialize().
25396
25397         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25398         now known as "System.Reflection.MonoGenericClass".
25399         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25400
25401 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25402
25403         * class-internals.h: Added a flag field to MonoClass to cache the
25404         declarative security attributes actions associated with the class.
25405         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25406         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25407         applicable to the JITted method.
25408         * reflection.c|h: Added functions to extract (as flags) which security
25409         actions are available (declaratively) for a method, class or assembly.
25410         * metadata.c|h: Added functions to search the declarative security
25411         table in the metadata.
25412         
25413 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25414
25415         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25416         EXPORTEDTYPES are already in the class name cache, so there is no
25417         need to add extra code here to look at them. Just removes a bit of
25418         cruft.
25419
25420         (ves_icall_System_Environment_get_TickCount): No need for #if
25421         WINDOWS. We already have the code in io-layer.
25422
25423 2004-11-28  Martin Baulig  <martin@ximian.com>
25424
25425         * loader.c
25426         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25427         Fixes gen-112.cs.
25428
25429 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25430
25431         * assembly.c (do_mono_assembly_open): Instead of having a
25432         conditional WITH_BUNDLE, incorporate support for bundles here, by
25433         having a global `bundles' variable holding a pointer to the actual
25434         bundles. 
25435
25436         (mono_register_bundled_assemblies): New API call used by the
25437         bundle code. 
25438
25439         See mkbundle.1 for details.
25440         
25441 2004-11-27  Martin Baulig  <martin@ximian.com>
25442
25443         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25444         the vtable for generic methods.
25445
25446 2004-11-26  Martin Baulig  <martin@ximian.com>
25447
25448         * metadata.c
25449         (mono_metadata_generic_method_hash): New public function.
25450         (mono_metadata_generic_method_equal): Likewise.
25451
25452         * class-internals.h
25453         (MonoGenericContainer): Added `GHashTable *method_hash'.
25454
25455         * reflection.c (ReflectionMethodBuilder): Added
25456         `MonoGenericContainer *generic_container'.
25457         (reflection_methodbuilder_to_mono_method): Don't create a new
25458         MonoGenericContainer each time we're called.
25459         (mono_reflection_bind_generic_method_parameters): Use
25460         `container->method_hash' to cache the results so we don't create a
25461         different method if we're called several times with the same
25462         arguments.
25463
25464         * loader.c (method_from_methodspec): Use the new
25465         `container->method_hash' here, too.
25466
25467 2004-11-26  Martin Baulig  <martin@ximian.com>
25468
25469         * class.c (inflate_generic_signature): Correctly compute
25470         `res->has_type_parameters'.
25471         (mono_class_vtable): Use the `has_type_parameters' flag to
25472         determine whether we're a generic method.
25473
25474         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25475
25476 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25477
25478         * object.c (mono_runtime_run_main): Fix a small memory leak.
25479
25480 2004-11-25  Martin Baulig  <martin@ximian.com>
25481
25482         * class.c (set_generic_param_owner): Fixed the loop.
25483
25484 2004-11-25  Martin Baulig  <martin@ximian.com>
25485
25486         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25487         generic methods.
25488
25489 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25490
25491         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25492         names. Fixes #69787.
25493
25494 2004-11-24  Martin Baulig  <martin@ximian.com>
25495
25496         * class.c (mono_class_create_generic_2): If we don't have a
25497         `ginst->parent', inflate `gklass->parent' to get our parent.
25498
25499 2004-11-24  Martin Baulig  <martin@ximian.com>
25500
25501         * reflection.c (compare_genericparam): Correctly sort the
25502         GenericParam table; fixes #69779.
25503
25504 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25505
25506         * reflection.c: When writing a PE file, don't create a huge
25507         buffer in memory. Just write the arrays we have to the file.
25508         This reduces memory usage.
25509
25510         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25511         globally.
25512
25513 2004-11-17  Martin Baulig  <martin@ximian.com>
25514
25515         * class.c (mono_class_init): Don't setup `class->parent' for
25516         dynamic instances; moved this to mono_class_generic_2().
25517         (mono_class_create_generic): Also set `klass->inited' for dynamic
25518         generic instances.
25519         (mono_class_create_generic_2): Don't do anything for dynamic
25520         generic instances.  Set `klass->parent' here and also call
25521         mono_class_setup_parent() here. 
25522
25523         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25524         `MonoType *parent' argument; set `ginst->parent' before calling
25525         mono_class_create_generic_2(), so we set the correct parent.
25526
25527 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25528
25529         * reflection.c: allow getting attributes from ModuleBuilder
25530         (used by ikvm).
25531
25532 2004-11-17  Martin Baulig  <martin@ximian.com>
25533
25534         * class.c (mono_class_create_from_typedef): If a type parameter is
25535         inherited from an outer class, set its owner to that class.
25536
25537 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25538
25539         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25540           for (int*) written size. This fixes bug #69592.
25541
25542 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25543
25544         * icall.c: Added IsAuthenticodePresnet internal call.
25545         * image.c|h: New function that check a MonoImage for an Authenticode
25546         signature in the certificate PE data directory.
25547         * security.c|h: New internal call to ask the runtime if an 
25548         Authenticode signature seems referenced in the PE header.
25549
25550 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25551
25552         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25553
25554         * reflection.c (mono_image_create_pefile): Free the assembly streams
25555         after writing out the assembly file.
25556
25557         * object.c (mono_runtime_run_main): Fix small memory leak.
25558
25559         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25560         property access modifiers. Fixes #69389.
25561
25562 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25563
25564         * domain.c, object.c, object-internals.h, domain-internals.h,
25565         object.h, marshal.c: keep dynamic code info per domain.
25566
25567 2004-11-15  Martin Baulig  <martin@ximian.com>
25568
25569         * class.c (mono_type_get_name_recurse): Put type arguments in
25570         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25571         see bug #68387.
25572
25573 2004-11-15  Martin Baulig  <martin@ximian.com>
25574
25575         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25576         (mono_class_setup_vtable): When computing `the_cname' for a
25577         generic instance, don't include the namespace since we'd otherwise
25578         add it twice.
25579
25580 2004-11-15  Martin Baulig  <martin@ximian.com>
25581
25582         * class.c (mono_class_create_generic): Changed return type to void.
25583         (mono_class_create_generic_2): New public function; setup
25584         `class->method', `class->field' and `class->interfaces' here
25585         instead of in mono_class_init().
25586
25587         * class.h (mono_class_create_generic): Moved to class-internals.h.
25588
25589 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25590
25591         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25592         rather than writing to memory, write to this file. Right now,
25593         we are just writting into a buffer, and copying that. However
25594         we can avoid the buffer later.
25595
25596         (mono_dynamic_stream_reset): new function
25597
25598         * icall.c, object-internals.h: update for the above.
25599
25600 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25601
25602         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25603         have been using gc'd memory. First it is slower, unlikely
25604         the comment in the source code said, secondly, it increases
25605         our footprint to do it in the gc.
25606
25607         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25608         the method so that it does not have to copy to managed code.
25609
25610 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25611
25612         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25613
25614 2004-11-12  Martin Baulig  <martin@localhost>
25615
25616         * reflection.c (mono_image_create_token): Allow generic method
25617         definitions here, since they may appear in an `.override'; see
25618         gen-98/gen-99 for an example.
25619
25620 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25621
25622         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25623         #69365.
25624
25625         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25626         descriptive.
25627
25628 2004-11-11  Martin Baulig  <martin@ximian.com>
25629
25630         * class.c (mono_class_setup_vtable): In an explicit interface
25631         implementation, the method name now includes the arity.
25632
25633 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25634
25635         * object.c (mono_array_full_copy): Fix warning.
25636
25637 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25638
25639         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25640         mono_class_get_method_from_name() instead.
25641         
25642         * class-internals.h: Added two new types of wrappers. 
25643         Added MonoRemotingTarget enum. Added new trampoline function type, which
25644         takes an additional MonoRemotingTarget value as parameter, so it is
25645         possible to request a trampoline for a specific target.
25646         
25647         * class.c: Added new mono_class_get_method_from_name() method.
25648         
25649         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25650         general remoting sinks and one specific for cross domain calls.
25651         
25652         * debug-helpers.c: Added new wrapper names.
25653         
25654         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25655         of a remote class.
25656         
25657         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25658         
25659         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25660         with several other methods (mono_marshal_get_xappdomain_dispatch,
25661         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25662         and others) can generate a fast remoting wrapper for cross domain calls.
25663         More information can be found in docs/remoting.
25664         Other changes: Removed mono_find_method_by_name, and used
25665         mono_class_get_method_from_name instead.
25666         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25667         is stored in the remoting invoke hashtable.
25668         
25669         * marshal.h: published the new method for getting the xdomain wrapper,
25670         and also added a method for getting the adequate wrapper for a given
25671         method and target.
25672         
25673         * object-internals.h, object.c: Added a couple of methods for capying and
25674         cloning arrays.
25675         Modified mono_install_remoting_trampoline, which takes the new remoting
25676         trampoline that has a remoting target as parameter.
25677         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25678         will return the most suitable vtable for the target.
25679         Added mono_remote_class_vtable, which returns the vtable of a remote class
25680         (which can be the normal remoting vtable or the xdomain vtable).
25681         
25682         * threads.c: the xdomain invoke and dispatch wrappers must also be
25683         protected against interruptions.
25684
25685 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25686
25687         * icall.c: use memmove in BlockCopyInternal when the source and
25688         destination arrays are the same.
25689
25690 2004-11-09  Martin Baulig  <martin@ximian.com>
25691
25692         * class-internals.h (MonoGenericContainer): Removed `method' and
25693         `signature', replaced them with `is_method' and `is_signature'
25694         flags.  Added `context'.
25695
25696         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25697         instead of a `MonoGenericContainer *'.
25698
25699         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25700         for dynamic type parameters.
25701         (mono_metadata_load_generic_params): Setup `container->context'.
25702
25703         * reflection.c (mono_reflection_setup_generic_class): Setup
25704         `tb->generic_container->context'.
25705         (do_mono_reflection_bind_generic_parameters): Use
25706         mono_class_inflate_generic_type() to correctly inflate types,
25707         rather than using our own hack just for MONO_TYPE_VAR.
25708
25709 2004-11-09  Martin Baulig  <martin@ximian.com>
25710
25711         * class.c (mono_class_inflate_generic_method): Small fix; don't
25712         crash here.
25713
25714         * icall.c
25715         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25716         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25717         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25718         (ves_icall_Type_BindGenericParameters): Likewise.
25719         (ves_icall_Type_get_IsGenericInstance): Likewise.
25720         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25721         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25722         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25723         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25724
25725 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25726
25727         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25728         assembly versions and public key tokens. Fixes #69113.
25729
25730 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25731
25732         * metadata.c: fix bug introduced with the type cache changes
25733         on 2004-11-06.
25734
25735 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25736
25737         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25738         the MonoClass pointer instead of the token in exception clauses.
25739         * reflection.c: updates for the above and make the code not depend
25740         on the structure of MonoExceptionClause.
25741
25742 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25743
25744         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25745         Add support for dynamic assemblies. Fixes #69114.
25746
25747         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25748
25749 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25750
25751         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25752         since most only those methods use it. the code member of
25753         MonoMethodPInvoke was dead, so that can be removed too. Also,
25754         remove inline_count (again, not used), and move slot so that it
25755         can share bits with some other flags. This saves 8 bytes in the
25756         structure and gives us about 50 kb back for mcs helloworld.cs
25757
25758         * *.[ch]: Do naming changes for the above.
25759
25760         * loader.c (mono_method_get_header): Lazily init the header
25761         on first access.
25762         (mono_get_method_from_token): don't init the header here
25763         (mono_free_method): the header may never be allocated
25764
25765         Overall, this saves 150 kb of unmanaged allocations
25766         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25767         memory at runtime.
25768         
25769         * loader.c, loader.h (mono_method_get_header): new accessor.
25770
25771         * *.[ch]: use the above method. Prepares us to lazily load
25772         the header.
25773
25774         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25775         three warnings, which are actual bugs (see 69206).
25776
25777         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25778         unused. Saves a cool 4 bytes / method.
25779
25780 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25781
25782         * metadata.c (builtin_types): Add types for System.Object here.
25783         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25784         for a class or valuetype from klass->this_arg or klass->byval_arg.
25785
25786         On mcs for a hello world, this gets us down from 21836 MonoType's
25787         to 14560.
25788
25789         (mono_metadata_free_type): Account for the above change.
25790
25791 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25792
25793         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25794         exception instead of asserting if name is null.
25795         (ves_icall_System_AppDomain_GetData): Ditto.
25796
25797 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25798
25799         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25800         EnumBuilder.
25801
25802         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25803         Return NULL when the domain does not have entry_assembly set.
25804
25805         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25806         Add a 'resource_modules' argument.
25807         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25808
25809         * reflection.c (mono_reflection_create_runtime_class): Move setting
25810         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25811         for enums too.
25812
25813         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25814         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25815         Throw an ArgumentNullException if 'ptr' is null.
25816
25817         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25818         assemblies here. Fixes #69020.
25819
25820 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25821
25822         * reflection.c (build_compressed_metadata): Fix the previous patch for
25823         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25824         the stack.
25825
25826 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25827
25828         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25829         the cultures is false. Fixes #69090.
25830
25831         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25832         detected by valgrind.
25833         
25834         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25835         TypeResolve multiple times for the same type. Fixes #65577.
25836
25837 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25838
25839         * marshal.c: Avoid using ldftn to call managed functions. It is
25840         much slower than just a call.
25841
25842         * reflection.c (mono_module_get_object): free the basename we
25843         allocate here from glib.
25844         
25845         * reflection.c (ensure_runtime_vtable): make sure to free
25846         overrides.  Also, we were allocating an array of MonoMethod not an
25847         array of MonoMethod*.
25848
25849         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25850
25851         * image.c (mono_image_close): free image->guid here.
25852
25853 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25854
25855         * reflection.c: Fix some spec conformance issues with the PE file
25856         structures so mcs compiled apps run on the Net 2.0 beta.
25857
25858 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25859
25860         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25861         Implement this. Fixes #67264.
25862
25863         * debug-helpers.h debug-helpers.c marshal.c: Move 
25864         mono_find_method_by_name to debug-helpers.c.
25865
25866 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25867
25868         * object.c (mono_release_type_locks): type_initialization_hash is
25869         a GHashTable.
25870
25871         * reflection.c object.c object-internals.h: Fix warnings.
25872
25873         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25874         without accessors. Fixes #61561.
25875
25876         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25877         application base from the root domain if not set. Fixes #65641.
25878         (mono_runtime_init): Fix warning.
25879
25880 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25881
25882         * appdomain.c: call mono_thread_pool_init.
25883         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25884         of worker threads based on the number of CPUs and the environment
25885         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25886         for non-windows (windows) systems.
25887
25888 2004-10-27  Chris Toshok  <toshok@ximian.com>
25889
25890         * mono-debug-debugger.c (write_class): don't call mono_class_init
25891         here, as even with the check for (!klass->init_pending), we get
25892         into a situation where we're hitting cycles in class
25893         initialization.  Fixes #68816.
25894
25895 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25896
25897         * image.c: Avoid overwriting values in the loaded_images_hash when an
25898         assembly is loaded multiple times. Fixes #61152.
25899
25900         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25901         so multiple satellite assemblies for the same name can be loaded.
25902         Fixes #68259.
25903
25904         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25905         not NULL.
25906
25907         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25908         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25909
25910         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25911         pending finalizers are not invoked after the appdomain has been 
25912         unloaded. Fixes #67862.
25913
25914 2004-10-22  Martin Baulig  <martin@ximian.com>
25915
25916         * mono-debug-debugger.c
25917         (mono_debugger_runtime_invoke): Don't box valuetypes.
25918
25919 2004-10-22  Chris Toshok  <toshok@ximian.com>
25920
25921         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25922         don't hide private methods.
25923
25924 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25925
25926         * icall.c: Allows the runtime to "share" (when known) the public key
25927         token of an assembly. This avoid the need to recalculate the token 
25928         (from the public key) in managed code.
25929
25930 2004-10-21  Chris Toshok  <toshok@ximian.com>
25931
25932         * debug-helpers.c (append_class_name): argh, revert last patch.
25933         
25934 2004-10-21  Chris Toshok  <toshok@ximian.com>
25935
25936         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25937         not '/', so that it matches what the debugger uses to look up
25938         methods.
25939
25940 2004-10-21  Martin Baulig  <martin@ximian.com>
25941
25942         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25943         public method; this is called each time an exception is thrown and
25944         allows the debugger to use exception catch points.
25945
25946 2004-10-21  Martin Baulig  <martin@ximian.com>
25947
25948         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25949         the stack pointer and the exception object in some struct and pass
25950         that to the debugger.
25951
25952 2004-10-21  Chris Toshok  <toshok@ximian.com>
25953
25954         * mono-debug-debugger.c (do_write_class): add instance/static
25955         event support.  We don't expose "raise" or "other" yet.
25956         (event_is_static): new method.
25957
25958 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25959
25960         * mono-debug-debugger.c
25961         (mono_debugger_handle_exception): Remove
25962         bogus return value for fussy compilers.
25963
25964 2004-10-20  Martin Baulig  <martin@ximian.com>
25965
25966         * mono-debug-debugger.c
25967         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25968         (mono_debugger_handled_exception): Likewise.
25969
25970 2004-10-20  Martin Baulig  <martin@ximian.com>
25971
25972         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25973         MONO_DEBUGGER_EVENT_EXCEPTION.
25974
25975         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25976         public function to send the debugger a notification for an
25977         exception and inform it about a catch/finally clause.
25978
25979 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25980
25981         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25982         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25983         fix 2.95 build. 
25984
25985         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25986
25987 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25988
25989         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25990         marshalled as [In,Out]. Fixes #58325.
25991
25992 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25993
25994         * reflection.c (mono_method_body_get_object): Implement some fields.
25995
25996 2004-10-12  Martin Baulig  <martin@ximian.com>
25997
25998         * reflection.c (mono_reflection_bind_generic_parameters): Small
25999         fix, correctly retrieve our parent from a generic instance.
26000
26001 2004-10-12  Martin Baulig  <martin@ximian.com>
26002
26003         * metadata.c (mono_metadata_generic_param_equal): We always have
26004         an owner.
26005
26006         * class.c
26007         (mono_class_from_generic_parameter): We need to have an owner.
26008         (my_mono_class_from_generic_parameter): Likewise.
26009
26010         * reflection.c (mono_reflection_setup_generic_class): Renamed to
26011         mono_reflection_create_generic_class() and added a new
26012         mono_reflection_setup_generic_class().  
26013         (mono_reflection_initialize_generic_param): If we're a nested
26014         generic type and inherited from the containing class, set our
26015         owner to the outer class.
26016
26017 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
26018
26019         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
26020
26021         * reflection.c (mono_method_body_get_object): New function to create
26022         a MethodBody object.
26023
26024         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
26025
26026 2004-10-11  Martin Baulig  <martin@ximian.com>
26027
26028         * metadata.c (_mono_metadata_type_equal): Renamed to
26029         do_mono_metadata_type_equal() and made static.
26030
26031 2004-10-11  Martin Baulig  <martin@ximian.com>
26032
26033         * appdomain.c: Bump corlib version number to 28.
26034
26035 2004-10-10  Martin Baulig  <martin@ximian.com>
26036
26037         * class-internals.h
26038         (MonoGenericInst): Added `MonoGenericContainer *container'.
26039         (MonoGenericMethod): Likewise.
26040         (MonoGenericContext): Likewise.
26041         (MonoGenericParam): Added `MonoGenericContainer *owner'.
26042
26043         * metadata.c
26044         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
26045         (do_mono_metadata_parse_generic_inst): Likewise.
26046         (mono_metadata_parse_type_full): New public method.  This is the actual
26047         mono_metadata_parse_type() implementation - with an additional
26048         `MonoGenericContainer *' argument.
26049         (mono_metadata_parse_array_full): Likewise.
26050         (mono_metadata_parse_signature_full): Likewise.
26051         (mono_metadata_parse_method_signature_full): Likewise.
26052         (mono_metadata_parse_mh_full): Likewise.
26053         (mono_type_create_from_typespec): Likewise.
26054         (mono_metadata_interfaces_from_typedef_full): New public method;
26055         this is similar to the other _full() methods, but we take a
26056         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
26057         (mono_metadata_parse_generic_param): Take an additional
26058         `MonoGenericContainer *' argument and lookup the MonoGenericParam
26059         from that container.
26060         (mono_metadata_generic_param_equal): New static method to compare
26061         two type parameters.
26062         (_mono_metadata_type_equal): New static method; takes an
26063         additional `gboolean signature_only' argument - if true, we don't
26064         compare the owners of generic parameters.
26065         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
26066         with a TRUE argument - do a signature-only comparision.
26067
26068         * loader.c: Use the new _full() methods and pass the
26069         MonoGenericContainer to them.
26070
26071         * object-internals.h (MonoReflectionTypeBuilder): Added
26072         `MonoGenericContainer *generic_container' field.
26073         (MonoReflectionMethodBuilder): Likewise.
26074
26075 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
26076
26077         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
26078         case initial images of dynamic assemblies.
26079
26080         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
26081
26082         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
26083
26084         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
26085         length of event->other array.
26086         (typebuilder_setup_events): Ditto.
26087
26088         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
26089         'assembly_by_name' and add an 'assemblies' list.
26090
26091         * assembly.h assembly.c: Add a new search hook for determining whenever
26092         an assembly is already loaded. Use this instead of searching in the
26093         loaded_assemblies list.
26094
26095         * domain.c appdomain.c: Implement the new search hook so loaded 
26096         assemblies are now scoped by appdomain. Fixes #67727.
26097
26098 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
26099
26100         * threads.c (mono_thread_attach): Initialize synch_lock field so
26101         mono_thread_detach works again.
26102
26103         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
26104         'lib' too. Fixes #63130.
26105
26106 2004-10-06  Jackson Harper  <jackson@ximian.com>
26107
26108         * culture-info-tables.h: regenerated.
26109
26110 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
26111
26112         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
26113         implemented by other interfaces in the result. Fixes #65764.
26114         
26115         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26116         Handle unloadable modules without crashing.
26117
26118         * image.c (load_modules): Revert the previous patch since modules must
26119         have a fixed index inside the array.
26120         
26121         * image.c (load_modules): Don't include native modules in the modules
26122         array.
26123
26124 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
26125
26126         * reflection.h: Add param_defaults field.
26127
26128         * reflection.c: Add support for parameter defaults in dynamic methods.
26129         Fixes #64595.
26130
26131         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
26132         an empty string when a type has no namespace. Fixes #64230.
26133
26134 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
26135
26136         * tabledefs.h: Added "internal" security actions to support non-CAS
26137         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
26138         Note: they do not seems to be used anymore in 2.0 (new metadata format)
26139
26140 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
26141
26142         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
26143         constructor of abstract class. Fixes #61689.
26144
26145 2004-10-04  Martin Baulig  <martin@ximian.com>
26146
26147         * class-internals.h (MonoGenericContainer): New type.
26148         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
26149         `MonoGenericContainer *generic_container'.
26150         (MonoClass): Replaced `gen_params' and `num_gen_params' with
26151         `MonoGenericContainer *generic_container'.
26152
26153         * metadata.c (mono_metadata_load_generic_params): Return a
26154         `MonoGenericContainer *' instead of a `MonoGenericParam *';
26155         removed the `num' argument.
26156
26157 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
26158
26159         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
26160         for dynamic images.
26161
26162         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
26163         machine fields.
26164
26165         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
26166
26167         * reflection.c: Save pe_kind and machine values into the generated
26168         image file.
26169
26170         * appdomain.c: Bump corlib version number.
26171
26172         * object-internals.h: Reorganize layout of LocalBuilder.
26173
26174         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
26175         New helper function.
26176
26177         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
26178         created MonoType for dynamic types. Fixes #66180.
26179
26180 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
26181
26182         * threadpool.c: the ares hashtable needs a critical section around it.
26183         this prevents some nasty segfaults
26184
26185 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
26186
26187         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
26188         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
26189         bug 67324).
26190         
26191 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26192
26193         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
26194         
26195 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
26196
26197         * image.c: Always canonicalize image file names, to avoid loading
26198         the same assembly twice when referenced using a relative path.
26199
26200 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26201
26202         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
26203
26204         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
26205
26206         * marshal.c: Fix warnings.
26207
26208 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
26209
26210         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
26211         attempting to marshal the delegate_trampoline as the method_addr.
26212         This patch has a static hashtable of marshalled delegates so that 
26213         we can map delegate_trampoline addresses back to delegates.  This
26214         allows a delegate passed to managed code to be passed back into native
26215         code.  Fixes #67039
26216
26217 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26218
26219         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
26220
26221         * reflection.c (method_encode_code): Align method headers properly.
26222         Fixes #66025.
26223
26224 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26225
26226         * marshal.c: In the runtime invoke wrapper, reset the abort
26227         exception if it is cached. This avoids the automatic rethrowal of 
26228         the exception after the catch of the wrapper. Also check for pending
26229         interruptions before calling the managed method. This is done using
26230         the new method emit_thread_force_interrupt_checkpoint, since the
26231         normal checkpoint method is ignored when running the invoke wrapper.
26232         * object.c: If the abort exception is rethrown, set the abort_exc
26233         field of the thread, so it will be rethrown aftere every catch.
26234         * threadpool.c: Only run an interruption checkpoint if what has been
26235         requested is a stop of the thread (aborts will be ignored).
26236         * threads.c: By default, a thread will now never be interrumped while
26237         running the runtime invoke wrapper (this ensures that runtime_invoke
26238         will always return to the caller if an exception pointer is provided).
26239         There is a new special method mono_thread_force_interruption_checkpoint()
26240         to force an interruption checkpoint even if running a protected
26241         wrapper, which is used by the same runtime invoke wrapper to do a check
26242         at a safe point.
26243
26244 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26245
26246         * object.c, object-internals.h: Implemented mono_release_type_locks,
26247         which releases the cctor locks held by a thread.
26248         * threads.c, threads.h: In thread_cleanup, release cctor locks held
26249         by a thread. Added mono_thread_exit() method to be used to safely stop
26250         a thread.
26251
26252 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26253
26254         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26255         Move null check before dereference.  Avoid indexing beyond the end
26256         of the 'modules' array.
26257
26258 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26259
26260         * metadata-internals.h (MonoImage): Add module_count field.
26261         * image.c (load_modules): Set image->module_count.
26262         (mono_image_load_file_for_image): Use image->module_count.
26263         * reflection.c (mono_image_load_module): Append to image->modules array 
26264         of dynamic assembly.
26265         (mono_module_get_object): Fix loop to actually increment index.
26266         Use image->module_count.
26267         * assembly.c (mono_assembly_load_references): Use image->module_count.
26268         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
26269         Likewise.
26270
26271 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26272
26273         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
26274         Avoid assert on generic types.
26275
26276 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
26277
26278         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
26279
26280         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
26281
26282         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
26283         function to convert a MarshalSpec structure to its managed counterpart.
26284
26285         * reflection.c: Fix warnings.
26286         
26287         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
26288         field.
26289
26290         * icall.c (mono_create_icall_signature): Fix build.
26291
26292 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
26293
26294         * icall.c: Add MakePointType icall.
26295
26296         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
26297         warnings.
26298
26299 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26300
26301         * threadpool.c: reuse allocated slots in the queue.
26302
26303 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
26304
26305         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
26306
26307         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
26308
26309         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
26310         previous change.
26311
26312         * tabledefs.h: Add constants for pinvoke attributes BestFit and
26313         ThrowOnUnmappableChar.
26314
26315         * icall.c (ves_icall_Type_GetPacking): New icall.
26316
26317 2004-09-24  Martin Baulig  <martin@ximian.com>
26318
26319         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
26320
26321 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26322
26323         * appdomain.c:
26324         (mono_domain_set): allow setting a domain that is being unloaded.
26325         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
26326         being unloaded.
26327
26328 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26329
26330         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
26331         the GetCustomAttributes icall.
26332
26333 2004-09-23  Martin Baulig  <martin@ximian.com>
26334
26335         * object-internals.h (MonoReflectionGenericParam): Replaced
26336         'has_ctor_constraint', `has_reference_type' and `has_value_type'
26337         with `guint32 attrs'.
26338
26339 2004-09-23  Martin Baulig  <martin@ximian.com>
26340
26341         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
26342
26343 2004-09-23  Martin Baulig  <martin@ximian.com>
26344
26345         * object-internals.h (GenericParameterAttributes): New enum.
26346
26347 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26348
26349         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
26350         
26351         * class.c (init_events): Fill out event->other field.
26352
26353         * class.c: Fix warnings.
26354
26355         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
26356
26357 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
26358
26359         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
26360         walk which doesn't supply the IL offset.
26361
26362 2004-09-22  Martin Baulig  <martin@ximian.com>
26363
26364         * reflection.c (mono_reflection_setup_internal_class): If we're
26365         System.ValueType, System.Object or System.Enum, set
26366         `klass->instance_size' and create the vtable.
26367         (mono_reflection_create_internal_class): If we're an enum type,
26368         get the base class from our current corlib.
26369
26370 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
26371
26372         * reflection.h (MonoResolveTokenError): New type.
26373
26374         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
26375         icall.
26376
26377         * icall.c: Add an 'error' argument to the ResolveToken icalls.
26378
26379 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
26380
26381         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
26382         Support also calling constructors, but only for already allocated objects.
26383
26384 2004-09-17  Geoff Norton <gnorton@customerdna.com>
26385
26386         * reflection.c (type_get_qualified_name): If the klass is null
26387         return the typename to avoid a NullRefEx.
26388         (encode_cattr_value): Get the qualified name of the boxed type,
26389         not the underlying enumtype.  Fixes #62984.
26390
26391 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
26392
26393         * marshal.c: Fix problems with previous checkin.
26394
26395 2004-09-21    <vargaz@freemail.hu>
26396
26397         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26398         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26399
26400         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26401
26402 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26403
26404         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26405         should only return a type for pointers, arrays, and passbyref types.
26406         Fixes bug #63841.
26407
26408 2004-09-21  Martin Baulig  <martin@ximian.com>
26409
26410         * domain.c (mono_debugger_check_runtime_version): New public
26411         function.
26412
26413         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26414
26415 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26416
26417         * reflection.c: Added missing sort to the declarative security 
26418         attributes table. MS implementation stops seeing the attributes if the
26419         token number regress in the table (as shown by ildasm and permview).
26420
26421 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26422
26423         * object-internals.h (MonoReflectionModule): Add 'token' field.
26424         
26425         * reflection.c (mono_reflection_get_token): Add support for Module
26426         and Assembly.
26427         (mono_module_get_object): Set 'token' field.
26428         (mono_module_file_get_object): Set 'token' field.
26429
26430         * icall.c: Add new Assembly and Module icalls.
26431
26432         * appdomain.c: Bump corlib version.
26433
26434 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26435
26436         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26437         tokens of metadata objects.
26438
26439         * reflection.h reflection.c (mono_reflection_get_token): New function
26440         to obtain the token of a metadata object.
26441
26442         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26443
26444 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26445
26446         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26447         
26448         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26449
26450 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26451
26452         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26453         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26454         AssemblyBuilder to access the permissions set in the class lib.
26455         * reflection.c: Added security attributes encoding step in 
26456         mono_image_build_metadata.
26457         * tabledefs.h: Added new security actions defined in 2.0:
26458         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26459
26460 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26461
26462         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26463         macro parameter.
26464
26465 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26466  
26467         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26468           finalized. There where random SIGSEVs at program termination, when
26469           an object being finalized was trying to do a string comparison and
26470           the current culture was already finalized.
26471  
26472 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26473
26474         * threads.c: call thread_cleanup before finishing the thread if we get
26475         there.
26476
26477 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26478
26479         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26480         assemblies from the parent. Fixes #65665.
26481
26482 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26483
26484         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26485         modifiers.
26486
26487 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26488
26489         * reflection.h: add prototype for mono_get_dbnull_object
26490         * reflection.c: add prototypes for get_default_param_value_blobs 
26491         and mono_get_object_from_blob for fussier compilers
26492
26493 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26494  
26495         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26496         false deadlock checks in class initialization.
26497  
26498 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26499
26500         * image.c (mono_image_addref): Fix comment.
26501
26502         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26503         possible.
26504
26505 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26506
26507         * reflection.c (mono_param_get_objects): Modified to return
26508         ParameterInfo.DefaultValue object.
26509
26510         (get_default_param_value_blobs):
26511         (mono_get_object_from_blob):
26512         (mono_get_dbnull_object): New helper routines. 
26513
26514         * object.c (mono_get_constant_value_from_blob): New helper routine
26515         carved out from get_default_field_value ()
26516
26517         * object-internals.h (mono_get_constant_value_from_blob): Added
26518         function declaration.
26519
26520 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26521
26522         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26523         referenced assemblies. Fixes #62135.
26524
26525         * exception.h exception.c (mono_get_exception_file_not_found2): New
26526         helper function.
26527
26528 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26529
26530         * class.h class.c: Add mono_type_get_underlying_type ().
26531
26532 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26533
26534         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26535         Fix GetTypes() to support dynamically created assemblies.
26536
26537 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26538
26539         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26540         
26541         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26542         previous patch.
26543
26544         * reflection.h reflection.c loader.c: Allow dynamic construction of
26545         pinvoke methods. Fixes #65571.
26546         
26547         * reflection.c (mono_reflection_get_type): Revert previous change since
26548         it causes regressions.
26549
26550 2004-09-08  Martin Baulig  <martin@ximian.com>
26551
26552         * class.c (class_compute_field_layout): Don't call
26553         mono_class_layout_fields() for open generic instances.
26554
26555 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26556         * threads.c appdomain.c: fix typo in GC macro
26557
26558 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26559
26560         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26561         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26562
26563 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26564
26565         * image.c (mono_image_close): Applied patch from 
26566         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26567         assembly is loaded multiple times from data.
26568         
26569         * image.c (mono_image_open): Fix warning.
26570
26571 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26572
26573         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26574         once. Fixes #58334.
26575         
26576         * reflection.c (mono_reflection_create_runtime_class): Initialize
26577         klass->nested_classes. Fixes #61224.
26578
26579 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26580
26581         * threads.c: sched_yield() on exit, to allow threads to quit.
26582
26583 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26584
26585         * object.c (mono_unhandled_exception): Remove leftover debug code.
26586
26587 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26588
26589         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26590
26591 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26592
26593         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26594         
26595         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26596
26597 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26598
26599         * marshal.c (emit_marshal_array): Null terminate string arrays.
26600         
26601         * marshal.c (raise_auto_layout_exception): Fix warning.
26602
26603         * reflection.c (mono_param_get_objects): Initialize the default value
26604         with DBNull.Value, not null. Fixes #62123.
26605
26606 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26607
26608         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26609         throw an exception with a cute explanation.
26610
26611 2004-09-06  Dick Porter  <dick@ximian.com>
26612
26613         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26614         Close the new process's thread handle, as we don't use it.  The
26615         handle stays around forever otherwise.
26616
26617 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26618
26619         * object.c (arith_overflow): Fix warning.
26620
26621         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26622         calling conventions in method refs. Fixes #65352.
26623
26624         * reflection.c: Fix warnings.
26625
26626 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26627
26628         * icall.c: Add a new icall for Array.Clear
26629
26630 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26631
26632         * object.c: When allocating an array, we have to throw
26633         an overflow exception if any of the lengths are < 0.
26634
26635 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26636
26637         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26638         properly. Also move implementation of string array marshalling to 
26639         managed code. Fixes #42316.
26640
26641 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26642
26643         * assembly.c: provide more information when loading an assembly fails.
26644
26645 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26646
26647         * filewatcher.c: don't expect the development fam package to be
26648         installed.
26649
26650 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26651
26652         * marshal.c: Make a copy of the signature cookie since it will be
26653         freed by the caller.
26654         
26655         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26656
26657         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26658
26659         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26660         marshal specs.
26661
26662         * marshal.c: More refactoring.
26663         
26664         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26665         smaller functions.
26666
26667 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26668
26669         * object.c: In mono_message_invoke, fill the output parameter array after
26670           calling the managed method (it was done before the call). This fixes
26671           bug #59299.
26672
26673 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26674
26675         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26676         as well.
26677
26678 2004-09-02  Martin Baulig  <martin@ximian.com>
26679
26680         * class.c (mono_class_instance_size): Don't allow generic type
26681         definitions or open generic instances.
26682         (mono_class_array_element_size): If we're a value type, call
26683         mono_class_instance_size() on the original class.
26684
26685         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26686         handle generic instances.
26687
26688         * mono-debug-debugger.c (write_type): Handle generic instances
26689         like classes.
26690
26691 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26692
26693         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26694         the allocation request fails. Fixes #65089.
26695
26696         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26697         
26698         * object.c (mono_runtime_free_method): New function to free a dynamic
26699         method.
26700
26701         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26702         delegate trampoline.
26703
26704         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26705         with hasthis as dynamic,
26706
26707         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26708
26709         * domain.c (mono_jit_info_table_remove): New function to remove an
26710         entry from the jit info table.
26711
26712         * class-internals.h (MonoMethod): Add 'dynamic' field.
26713
26714         * loader.c: Fix warnings.
26715
26716 2004-09-01  Martin Baulig  <martin@ximian.com>
26717
26718         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26719         instead of mono_debugger_lock() because the latter one is a no-op
26720         unless running in the debugger.
26721
26722 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26723
26724         * class.c (class_compute_field_layout): Classes with auto-layout or
26725         reference fields are not blittable.
26726         
26727 2004-09-01  Dick Porter  <dick@ximian.com>
26728
26729         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26730         mono_image_get_filename() to get the assembly location.
26731
26732         * icall.c:
26733         * metadata.h: Fix compile warnings
26734
26735 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26736
26737         * class.c (class_compute_field_layout): System.Object is blittable.
26738
26739         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26740         as in/out. Fixes #59909.
26741
26742 2004-09-01  Martin Baulig  <martin@ximian.com>
26743
26744         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26745         mono_metadata_generic_inst_is_valuetype() if we're a generic
26746         instance to check whether our underlying type is a reference type.
26747
26748 2004-09-01  Martin Baulig  <martin@ximian.com>
26749
26750         * metadata.c (mono_type_size): If we're a generic instance, call
26751         mono_class_value_size() for value types.
26752
26753 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26754
26755         * marshal.c: Implement more custom marshalling functionality. Fixes
26756         #64915.
26757
26758 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26759
26760         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26761
26762 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26763
26764         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26765
26766         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26767
26768         * icall.c: Fix some warnings.
26769
26770         * threads.c (abort_appdomain_thread): Fix unref errors.
26771         (mono_thread_current): Fix THREAD_DEBUG define.
26772
26773 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26774
26775         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26776
26777         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26778
26779 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26780
26781         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26782         string arrays.
26783
26784 2004-08-28  Martin Baulig  <martin@ximian.com>
26785
26786         * metadata.c
26787         (mono_metadata_generic_inst_is_valuetype): New public function.
26788
26789         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26790         mono_metadata_generic_inst_is_valuetype() if we're a generic
26791         instance to check whether our underlying type is a valuetype.
26792
26793 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26794
26795         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26796         #63768.
26797
26798 2004-08-25  Martin Baulig  <martin@ximian.com>
26799
26800         * loader.c (mono_get_method_from_token): Abstract methods can also
26801         be generic and thus have type parameters.
26802
26803         * metadata-internals.h
26804         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26805
26806         * reflection.c (mono_image_get_generic_param_info): Don't create a
26807         metadata row, just add an entry to the `gen_params' array.
26808         (build_compressed_metadata): Sort the `gen_params' array and then
26809         actually create the metadata.
26810
26811 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26812
26813         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26814
26815 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26816
26817         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26818
26819 2004-08-24  Martin Baulig  <martin@ximian.com>
26820
26821         * class.cs (mono_class_is_subclass_of): Like an interface, a
26822         generic instance also derives from System.Object.
26823
26824 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26825
26826         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26827         custom modifiers to be in any order. Fixes #61990.
26828
26829 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26830
26831         * object.c: Register mono_object_new_fast icall.
26832         
26833         * object.c (mono_class_get_allocation_ftn): Return to calling
26834         mono_object_new_fast, since it seems faster to compute the object 
26835         size in unmanaged code than passing it as a parameter.
26836
26837         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26838
26839         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26840         this function with Boehm as the oom handler, so we don't have to check
26841         the result of GC_malloc.
26842
26843         * object.c: Remove checks for oom.
26844
26845         * object.h object.c (mono_class_get_allocation_ftn): New function to
26846         return the icall which can be used to allocate an instance of a given
26847         class. 
26848
26849         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26850
26851         * class-internals.h: Add 'enabled' field.
26852
26853 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26854
26855         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26856
26857 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26858         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26859         value 0x0010.
26860
26861 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26862
26863         * appdomain.c: use the Tls function for appdomain too,
26864         at Zoltan's request. Actually return in mono_context_get
26865
26866         * appdomain.c, profiler.c, threads.c: use __thread
26867
26868 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26869
26870         * appdomain.c threads.c: Call GC_CreateThread on windows.
26871
26872         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26873         multiple libraries since this don't work on windows.
26874
26875 2004-08-18  Martin Baulig  <martin@ximian.com>
26876
26877         * class-internals.h
26878         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26879         MonoMethodHeader.
26880
26881         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26882         MonoMethodNormal since we also need it for abstract and interface
26883         methods.
26884
26885         * reflection.c
26886         (build_compressed_metadata): Sort the GenericParam table.
26887         (mono_image_create_token): Added `gboolean create_methodspec'
26888         argument; this is false when generating a MethodImpl token.
26889         (reflection_methodbuilder_to_mono_method): Abstract and interface
26890         methods may also have generic parameters.
26891
26892 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26893
26894         * appdomain.c: thread local alloc
26895
26896 2004-08-17  Martin Baulig  <martin@ximian.com>
26897
26898         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26899
26900         * icall.c
26901         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26902         argument.
26903
26904         * class.c (mono_type_get_full_name): New public function.
26905         (mono_type_get_name): Don't include the type arguments.
26906
26907 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26908
26909         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26910         for inclusion into the mono executable.
26911
26912 2004-08-16  Martin Baulig  <martin@ximian.com>
26913
26914         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26915         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26916
26917 2004-08-14  Martin Baulig  <martin@ximian.com>
26918
26919         * class.c (dup_type): Also copy the `byref' field.
26920
26921 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26922
26923         * reflection.c (create_dynamic_mono_image): Revert the last change 
26924         since it breaks bootstrap.
26925
26926 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26927
26928         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26929
26930         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26931         not free them with g_free.
26932
26933 2004-08-11  Martin Baulig  <martin@ximian.com>
26934
26935         * reflection.c (mono_reflection_setup_internal_class): Also call
26936         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26937
26938 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26939
26940         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26941         called during default (first) AppDomain creation. Keep track of
26942         Evidence when loading assemblies.
26943
26944 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26945
26946         * opcodes.c, opcodes.h: reduce runtime relocations.
26947
26948 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26949
26950         * culture-info.h, locales.c: fixes and chages to sue the new
26951         optimized format of the locale data.
26952         * culture-info-tables.h: regenerated.
26953
26954 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26955         
26956         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26957
26958 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26959
26960         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26961         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26962         * domain-internals.h: icall declaration.
26963         * icall.c: icall registration.
26964         * object-internals.h: New fields in MonoAssembly for CAS.
26965
26966 2004-08-05  Duncan Mak  <duncan@ximian.com>
26967
26968         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26969         CEE_LDELEM_ANY.
26970
26971 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26972
26973         * reflection.c: fix to deal with object[] arrays in custom ctors
26974         (bug #62550).
26975
26976 2004-08-05  Martin Baulig  <martin@ximian.com>
26977
26978         * class.c (mono_class_array_element_size): Added support for
26979         generic instances and correctly handle "recursive" types.
26980
26981 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26982
26983         * assembly.c: Fix warnings.
26984
26985 2004-08-04  Martin Baulig  <martin@ximian.com>
26986
26987         * class.c
26988         (mono_type_get_name_recurse): Added `gboolean include_arity'
26989         argument specifying whether or not we should include the generic
26990         arity in the type name.
26991         (_mono_type_get_name): New static function.
26992         (mono_class_setup_vtable): If we're a generic instance, don't
26993         include the generic arity in the names of explicit method
26994         implementations.        
26995
26996 2004-08-03  Martin Baulig  <martin@ximian.com>
26997
26998         * class.c (mono_type_get_name_recurse): Enclose the generic type
26999         arguments in `<', '>'.
27000
27001 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27002
27003         * gc.c: make GC warning messages use the trace API, they are just
27004         noise to most of the users.
27005
27006 2004-08-03  Martin Baulig  <martin@ximian.com>
27007
27008         * debug-mono-symfile.c (read_string): Correctly read the string.
27009
27010 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
27011
27012         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
27013         
27014         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
27015         icalls.
27016         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
27017
27018 2004-07-30  Martin Baulig  <martin@ximian.com>
27019
27020         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
27021         Reflect latest symbol writer changes.   
27022
27023 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27024
27025         * object.c: always create an object if null is passed
27026         to Invoke() where a valuetype is expected.
27027
27028 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
27029
27030         * marshal.c (mono_marshal_init): make managed
27031         signatures match native ones better for 64bits.
27032
27033 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27034
27035         * appdomain.c: hack to build correctly the private bin path on windows.
27036         Fixes bug #61991.
27037
27038 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
27039
27040         * assembly.c: Load mscorlib from the correct framework directory
27041           (mono/<version>/mscorlib.dll).
27042         * appdomain.h: Added prototypes for new functions.
27043         * internals.h: Added some prototypes.
27044         * domain.c: When initializing the runtime, get from the executable and
27045           the configuration files the runtime version that the app supports.
27046           Added support methods for reading app.exe.config. Added list of versions
27047           supported by the JIT. Added two new methods: mono_init_from_assembly,
27048           which initializes the runtime and determines the required version from
27049           the provided exe file, and mono_init_version, which initializes
27050           the runtime using the provided version.
27051         * icall.c: Get machine.config from version-specific directory.
27052         * reflection.c: When generating an image, embed the version number
27053           of the current runtime.
27054
27055 2004-07-28  Dick Porter  <dick@ximian.com>
27056
27057         * socket-io.c
27058         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
27059         returned sockaddr size before creating the remote address object.
27060         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
27061         61608.
27062
27063 2004-07-28  Dick Porter  <dick@ximian.com>
27064
27065         * locales.c (string_invariant_compare_char): Fix invariant char
27066         compares between upper and lower cases.  Fixes bug 61458.
27067
27068 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
27069         
27070         * marshal.c: actually cache stelem.ref wrappers.
27071         
27072 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
27073
27074         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
27075         sections and remove the mono_cli_rva_map () function.
27076
27077 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27078
27079         * debug-mono-symfile.c: fix one more endianess issue, from a patch
27080         by Geoff Norton (<gnorton@customerdna.com>).
27081
27082 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27083
27084         * class.c: fix class loads for pointer types (typeof(int) !=
27085         typeof(int*)).
27086
27087 2004-07-27  Martin Baulig  <martin@ximian.com>
27088
27089         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
27090         reading the debugging information from an external ".mdb" file.
27091
27092 2004-07-24  Martin Baulig  <martin@ximian.com>
27093
27094         * reflection.c (mono_image_get_type_info): Only write a class
27095         layout entry if we actually have a size or a packing size.
27096
27097 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27098
27099         * reflection.c (type_get_fully_qualified_name): 
27100         insert cast to get type checking of ?: with non-gcc compilers
27101
27102 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27103
27104         * rand.c: use g_getenv for both lookups of
27105         MONO_EGD_SOCKET
27106
27107 2004-07-17  Martin Baulig  <martin@ximian.com>
27108
27109         * reflection.c (mono_reflection_bind_generic_method_parameters):
27110         Set `gmethod->reflection_info'.
27111
27112 2004-07-17  Martin Baulig  <martin@ximian.com>
27113
27114         * class.c (mono_class_create_from_typedef): Insert the newly
27115         created class into the hash table before computing the interfaces
27116         since we could be called recursively.
27117
27118 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
27119
27120         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
27121         function to implement stelem.ref in managed code
27122         * class-internals.h, debug-helpers.c: a new wrapper type
27123         for the above.
27124
27125 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27126
27127         * gc.c: allow GC handles to work even when no GC is compiled in.
27128         Fix part of bug #61134 (GetAddrOfPinnedObject).
27129
27130 2004-07-13  Peter Williams  <peter@newton.cx>
27131  
27132         * process.c (complete_path): Make sure we don't attempt to execute
27133         directories.
27134  
27135 2004-07-12  Geoff Norton <gnorton@customerdna.com>
27136
27137         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
27138           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
27139           and will add/subtract the hour if needed
27140
27141 2004-07-12  Martin Baulig  <martin@ximian.com>
27142
27143         * reflection.c (mono_field_get_object): If we have
27144         `field->generic_info', take the attributes from
27145         `field->generic_info->generic_type'.    
27146
27147 2004-07-12  Martin Baulig  <martin@ximian.com>
27148
27149         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
27150         This function must be called before initializing the runtime.
27151         (mono_debug_init_1): New function; call this after initializing
27152         the runtime, but before loading the assembly.  It tells the
27153         debugger to load corlib and the builtin types.
27154
27155         * mono-debug-debugger.c: Did some larger changes in the debugging
27156         code; support recursive class declarations, make sure we actually
27157         add all classes.
27158
27159 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27160
27161         * debug-helpers.c: undo my previous patch and fixed the real issue in
27162         ../mini/exceptions-x86.c
27163
27164 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27165
27166         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
27167         when no HOME env. variable was set and a NullRef was thrown in a .cctor
27168         called from other .cctors.
27169
27170 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
27171
27172         * loader.c: Removed the mono_loader_wine_init hack now that we are
27173         doing a managed version of Windows.Forms.
27174
27175 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
27176
27177         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
27178         threadpool.c, threads.c: remove static data from rootset.
27179
27180 2004-07-09  Dick Porter  <dick@ximian.com>
27181
27182         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
27183         Don't do any more processing if the matched length was 0.  It was
27184         increasing the size of the string before.  Fixes bug 61167.
27185
27186 2004-07-09  Dick Porter  <dick@ximian.com>
27187
27188         * socket-io.h:
27189         * socket-io.c
27190         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
27191         Add support for SO_PEERCRED if its available.
27192
27193 2004-07-09  Peter Bartok <pbartok@novell.com>
27194         * loader.c: winelib.exe.so error message is now only displayed if
27195         MONO_DEBUG is set. To help us avoid questions when people are trying
27196         out the new Managed.Windows.Forms.
27197
27198 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
27199
27200         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
27201         for isinst and castclass wrappers.
27202
27203         * class-internals.h icall.c: Move registration and lookup of JIT icalls
27204         to libmetadata from the JIT, so they could be used by the marshalling
27205         code and the interpreter.
27206
27207         * marshal.c: Register marshalling related JIT icalls here instead of
27208         in mini.c. Use CEE_MONO_ICALL instead of the family of 
27209         CEE_MONO_PROC<x> opcodes to call marshalling functions.
27210
27211         * metadata.h: Remove unneeded marshalling conversions.
27212
27213         * opcodes.c: Update for new opcodes.
27214         
27215 2004-07-08  Martin Baulig  <martin@ximian.com>
27216
27217         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
27218         (mono_debug_get_domain_data): Make this function static.
27219
27220 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27221
27222         * gc.c, object.h: add nice GC handle API for embedders.
27223
27224 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
27225
27226         * reflection.c: more changes for the new api
27227
27228         * object.c: When we reflect on a field w/ a constant value, it
27229         will not have a memory location, so we must access metadata. Also,
27230         allow easier reading of strings so that we can read them from
27231         the constant data.
27232
27233         * class.c (mono_class_layout_fields): no need for literal fields here.
27234
27235         * class-internals.h: api changes for const fields
27236
27237         * icall.c (ves_icall_get_enum_info): use new apis for const fields
27238
27239 2004-07-06  Martin Baulig  <martin@ximian.com>
27240
27241         * mono-debug.h: Increment version number to 44.
27242
27243         * mono-debug.c (mono_debug_add_wrapper): The second argument is
27244         now a gpointer, rewrote this whole method.
27245
27246         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
27247         function.  Add information about the wrapper in a new "misc table".
27248
27249         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
27250         for the new misc table.
27251
27252 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
27253
27254         * metadata-internals.h image.c: Add a cache for helper signatures.
27255
27256         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
27257
27258 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
27259
27260         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
27261         delegates from a delegate. Fixes #61033.
27262         
27263         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
27264         marshalling of stringbuilder arrays. Fixes #59900.
27265
27266 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
27267
27268         * icall.c: Add EnumBuilder:setup_enum_type icall.
27269
27270 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
27271
27272         * icall.c: Added a new icall for the property version of
27273         OffsetOfStringData.
27274
27275 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
27276
27277         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
27278         it has a constant size across platforms.
27279
27280         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
27281         stack trace.
27282
27283 2004-06-29  Martin Baulig  <martin@ximian.com>
27284
27285         * mono-debug.c (mono_debug_add_method): Protect the whole function
27286         in mono_debugger_lock(), not just parts of it.
27287
27288 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
27289
27290         * reflection.c: make sure padding bytes in heaps are zeroed.
27291
27292 2004-06-24  David Waite  <mass@akuma.org>
27293
27294         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
27295         image.c, loader.c, locales.c, marshal.c, metadata.c,
27296         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
27297         string-icalls.c, threads.c: change to C90-style comments from C99 /
27298         C++ -style
27299
27300 2004-06-24  Dick Porter  <dick@ximian.com>
27301
27302         * threads.c
27303         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
27304         return createdNew.  Fixes bug 60412.
27305
27306         * threads-types.h: 
27307         * icall.c: Add createdNew parameter to CreateMutex icall
27308
27309 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27310
27311         * reflection.c, object-internals.h: save default value in params.
27312
27313 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27314
27315         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
27316         no need to build a new path combining that with the application base.
27317         Fixes bug #60442.
27318
27319 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
27320
27321         * reflection.c: fixed minor standard compliance issues.
27322
27323 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27324
27325         * reflection.c: fixed issue with encoding some custom attributes
27326         (arrays in properties and fields, bug #60411).
27327
27328 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27329
27330         * reflection.c: fix start address when copying the public key token.
27331
27332 2004-06-23  Martin Baulig  <martin@ximian.com>
27333
27334         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
27335         the `exc' object in a static object to put it into the GC's root set.
27336
27337 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
27338
27339         * reflection.c: make mono_reflection_setup_internal_class ()
27340         callable a second time to setup a new parent class.
27341
27342 2004-06-23  Dick Porter  <dick@ximian.com>
27343
27344         * threads.c: Check for WAIT_IO_COMPLETION return values.
27345
27346 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
27347
27348         * appdomain.c: Removed the g_free on the public key token. Now copy 
27349         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
27350         * assembly.c: Added public key token string value when loading 
27351         assemblies. Fix bug #60439.
27352         * icall.c: Added missing informations (like public key) in 
27353         GetReferencedAssemblies. Fix #60519.
27354         * image.h: Changed definition for public key token from const char*
27355         public_tok_value to guchar public_key_token [17];
27356         * reflection.c: Updated for changes to public key token.
27357
27358 2004-06-22  Lluis Sanchez Gual
27359
27360         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
27361         for the field in base classes.
27362
27363 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27364
27365         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
27366         mark headers as not supported, they are installed only for use by the
27367         debugger.
27368
27369 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
27370
27371         * *.c, *.h: avoid namespace pollution in public headers.
27372
27373 2004-06-21  Martin Baulig  <martin@ximian.com>
27374
27375         * exception.c (mono_get_exception_security): It's in
27376         "System.Security", not in "System".
27377
27378         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
27379         the exception classes.
27380
27381 2004-06-21  Martin Baulig  <martin@ximian.com>
27382
27383         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
27384         Protect the exception object from being finalized.
27385
27386 2004-06-21  Martin Baulig  <martin@ximian.com>
27387
27388         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
27389         public function.
27390
27391 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
27392
27393         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27394         if it was not loaded before. Fix parts of #60439.
27395
27396 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27397
27398         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27399         code that was broken since Ben's change: wrappers are now
27400         dependent on the method signature only again.
27401
27402 2004-06-21  Martin Baulig  <martin@ximian.com>
27403
27404         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27405         added interface support.
27406
27407 2004-06-21  Martin Baulig  <martin@ximian.com>
27408
27409         * class.c (mono_vtable_get_static_field_data): New public method.
27410
27411 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27412
27413         * filewatcher.c : Windows build fix to be compliant with API changes.
27414
27415 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27416
27417         * class.h, class.c: more accessors.
27418         * metadata.h, metadata.c: prepare for hiding MonoType and
27419         MonoMethodSignature: people should use the accessors from now on
27420         outside of the tree.
27421
27422 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27423
27424         * *.c, *.h: more API cleanups.
27425
27426 2004-06-18  Jackson Harper  <jackson@ximian.com>
27427
27428         * assembly.c: Trace loading assemblies.
27429         * loader.c: Trace loading native libraries.
27430         * mono-config.c: Trace loading config files.
27431         
27432 2004-06-18  Dick Porter  <dick@ximian.com>
27433
27434         * locales.c: Tell ICU the lengths of strings, it can cope with
27435         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27436
27437 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27438
27439         * image.c: swapped name/filename;
27440
27441 2004-06-18  Martin Baulig  <martin@ximian.com>
27442
27443         * mono-debug-debugger.c (write_class): Write the parent class at
27444         the end of the header.
27445
27446 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27447
27448         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27449
27450 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27451
27452         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27453         (bundle_obj): New conditional define.
27454         (BUILT_SOURCES): Remove.
27455         ($(bundle_srcs)): Make parallel-make safe.
27456         (libmonoruntime_la_LIBADD): Make unconditional.
27457         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27458         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27459
27460 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27461
27462         * culture-info-tables.h: It was inconsistent with the latest
27463           supp info files.
27464
27465 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27466
27467         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27468         be loaded.
27469
27470         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27471         with gcc 2.95.
27472
27473 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27474
27475         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27476         cleaned up public header threads.h.
27477
27478 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27479
27480         * Makefile.am, *.c, *.h: more API cleanups.
27481
27482 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27483
27484         * Makefile.am: removed monosn from compilation.
27485         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27486         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27487         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27488         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27489         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27490         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27491
27492 2004-06-15  Jackson Harper  <jackson@ximian.com>
27493
27494         * assembly.c: Make locales lower case when searching the GAC for
27495         assemblies. gacutil will always make locales lowercase when
27496         installing so this effectively makes them case insensitive.
27497         
27498 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27499
27500         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27501         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27502           parameter which allows to choose whether the wait can be interrupted or 
27503           not. Also added the method mono_monitor_enter(), which locks the monitor
27504           using an infinite wait and without allowing interruption.
27505           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27506           interrupted.
27507         * object.h: Added new fields in MonoThread. suspend_event holds the event
27508           used to susped/resume the thread. synch_lock is the lock object to use for
27509           modifying the thread state.
27510         * threads.c: Use the new synch_lock object for locking, instead of "this",
27511           which can generate deadlocks.
27512           Moved thread state change in Thread.Sleep and Thread.Join from managed
27513           to unmanaged code. This avoids a deadlock when the thread was suspended
27514           just after acquiring the thread lock.
27515           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27516           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27517           which is not fully implemented in the io-layer.
27518         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27519
27520 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27521
27522         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27523         threads-types.h: more API cleanups.
27524
27525 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27526
27527         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27528         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27529         threadpool.c, threads.c: first pass at the exported API cleanup.
27530
27531 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27532
27533         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27534
27535 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27536
27537         * icall.c: added internalGetHome.
27538
27539 2004-06-14  Dick Porter  <dick@ximian.com>
27540
27541         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27542         possible to return successfully when '.' or '..' were the only
27543         entries in a directory, but were skipped.  The MonoIOStat was not
27544         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27545         Fixes bug 59574.
27546
27547 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27548
27549         * reflection.c: make binaries run on .Net 1.1 by default.
27550
27551 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27552
27553         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27554
27555 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27556
27557         * marshal.c: keep track of struct size with explicit layout
27558         (bug #59979).
27559
27560 2004-06-12  Martin Baulig  <martin@ximian.com>
27561
27562         * mono-debug-debugger.c: Comment out a debugging g_message().
27563
27564 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27565
27566         * reflection.c, reflection.h: do not free custom attrs that are cached.
27567         * icall.c: use braces to make code clearer.
27568
27569 2004-06-11  Martin Baulig  <martin@ximian.com>
27570
27571         * class.h (MonoInflatedField): New type.
27572         (MonoClassField): Replaced `MonoType *generic_type' with
27573         `MonoInflatedField *generic_info'.
27574
27575         * icall.c
27576         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27577
27578 2004-06-11  Martin Baulig  <martin@ximian.com>
27579
27580         * reflection.c (mono_image_create_method_token): Correctly encode
27581         varargs methods.
27582
27583 2004-06-11  Martin Baulig  <martin@ximian.com>
27584
27585         * metadata.c (mono_metadata_parse_method_signature): When parsing
27586         a MethodDef which has VarArgs, also set sentinelpos if we don't
27587         have any parameters.
27588
27589 2004-06-11  Martin Baulig  <martin@ximian.com>
27590
27591         * verify.c (mono_method_verify): In CEE_CALL, use
27592         mono_method_get_signature() to get the method's signature, unless
27593         we're a PInvoke method.
27594
27595 2004-06-10  Jackson Harper  <jackson@ximian.com>
27596
27597         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27598         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27599         logical name as the supplied path is just a prefix to the gac not
27600         the direct path to it.
27601         
27602 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27603
27604         * reflection.c: make the token for a created method match
27605         the token of the MethodBuilder it was created from
27606         (IKVM requires this behaviour now).
27607
27608 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27609
27610         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27611         reflection.c, socket-io.c: leak fixes.
27612
27613 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27614
27615         * icall.c: handle sentinel pos in vararg methods in position different
27616         from 0.
27617
27618 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27619
27620         * culture-info-tables.h: freshly generated.
27621
27622 2004-06-09  Martin Baulig  <martin@ximian.com>
27623
27624         * loader.c (mono_get_method_constrained): Call `mono_class_init
27625         (constrained_class)'.   
27626
27627 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27628
27629         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27630         any methods. Fixes #59629.
27631
27632 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27633
27634         * culture-info-tables.h: reflecting locale-builder updates.
27635
27636 2004-06-08  Dick Porter  <dick@ximian.com>
27637
27638         * object.h:
27639         * locales.c: Fixed compile warnings, including a real bug in
27640         CompareInfo_internal_compare.
27641         
27642 2004-06-08  Dick Porter  <dick@ximian.com>
27643
27644         * locales.c
27645         (ves_icall_System_Globalization_CompareInfo_internal_index):
27646         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27647         Double-check the resuls of usearches, because ICU currently
27648         ignores most of the collator settings here.  Fixes bug 59720.
27649         
27650 2004-06-08  Dick Porter  <dick@ximian.com>
27651
27652         * locales.c
27653         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27654         Fix memory leak and segfault-causing typo.  No idea how this one
27655         lasted so long without being noticed.
27656
27657 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27658
27659         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27660         any methods. Fixes #59629.
27661
27662 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27663
27664         * assembly.c:
27665         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27666         own the critical section before). Removed dead code (that's done
27667         in the preload hook).
27668
27669         (mono_assembly_load_with_partial_name): call the preload hook.
27670
27671 2004-06-08  Martin Baulig  <martin@ximian.com>
27672
27673         * metadata.c (mono_metadata_signature_alloc): Default
27674         `sentinelpos' to -1.
27675
27676         * reflection.c (mono_image_get_array_token): Likewise.
27677
27678 2004-06-08  Martin Baulig  <martin@ximian.com>
27679
27680         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27681
27682         * metadata.c (mono_metadata_parse_method_signature): When parsing
27683         a MethodDef which has VarArgs, set sentinelpos.
27684
27685         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27686         `gint16' since we're using -1 for non-varargs methods.
27687
27688         * reflection.c
27689         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27690         (method_encode_signature): Added varargs support.
27691         (method_builder_encode_signature): Likewise.
27692         (mono_image_get_varargs_method_token): New static method.
27693         (mono_image_create_method_token): New public method; this is
27694         called via an icall instead of mono_image_create_token() when
27695         calling a varargs method.       
27696
27697 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27698
27699         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27700
27701 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27702
27703         * culture-info-tables.h : Reflecting the latest locale-builder that
27704           fixed empty array representation ({} to {0}).
27705
27706 2004-06-07  Jackson Harper  <jackson@ximian.com>
27707
27708         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27709         looking up extra gac paths. This allows MONO_GAC_PATH to act
27710         exactly like a prefix.
27711         
27712 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27713
27714         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27715         type name before modifying it. Fixes #59405.
27716
27717 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27718
27719         * culture-info.h: added fields for "all datetime patterns".
27720         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27721           _construct_datetime_format ()): fill xxx_patterns fields.
27722         * object.h: added fields for "all datetime patterns" to
27723           MonoDateTimeFormatInfo.
27724         * culture-info-tables.h: reflecting locale-builder updates.
27725
27726 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27727
27728         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27729         the event has no add and remove methods. Fixes #59629.
27730
27731 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27732
27733         * object.c: Fixed possible integer overflow when allocating large
27734         strings.
27735
27736 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27737
27738         * culture-info-tables.h: reflecting locale-builder updates.
27739
27740 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27741
27742         * culture-info-tables.h: reflecting locale-builder updates.
27743
27744 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27745
27746         * culture-info-tables.h: reflecting locale-builder updates.
27747
27748 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27749
27750         * threads.c: Made Thread.Sleep abortable.
27751
27752 2004-06-02  Martin Baulig  <martin@ximian.com>
27753
27754         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27755
27756         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27757
27758 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27759
27760         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27761
27762 2004-05-30  Jackson Harper  <jackson@ximian.com>
27763
27764         * reflection.c: Do not hardcode assembly versions or public key
27765         tokens anymore. All of this except the corlib section was dead
27766         code anyways.
27767         
27768 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27769
27770         * object.c (mono_runtime_invoke_array): Automatically create boxed
27771         objects for byref valuetypes if needed. Fixes #59300.
27772         
27773         * object.c (mono_method_return_message_restore): Handle 
27774         MONO_TYPE_OBJECT as well.
27775
27776 2004-05-28  Jackson Harper  <jackson@ximian.com>
27777
27778         * reflection.c: The modified type encoding was causing build
27779         problems. Reverted for now.
27780         
27781 2004-05-28  Jackson Harper  <jackson@ximian.com>
27782
27783         * reflection.c/h: Take an assembly ref so that we dont create
27784         fully qualified names when encoding types in the same assembly as
27785         the custom attribute being emitted.
27786         * appdomain.c: Increment version number.
27787         
27788 2004-05-26  Duncan Mak  <duncan@ximian.com>
27789
27790         * icall.c
27791         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27792         Set the full version number (major, minor, build, revision).
27793
27794 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27795
27796         * marshal.c (emit_struct_conv): increment src/dst after blit
27797         (mono_marshal_get_managed_wrapper,
27798         mono_marshal_get_native_wrapper): make sure we have marshalling
27799         info before marshalling params (info computation affects
27800         blittable)
27801
27802         * class.c (class_compute_field_layout): correctly deal with
27803         blittable
27804         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27805         value types (as per what windows dows by default)
27806         (mono_class_setup_mono_type): System.ValueType is blittable
27807         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27808         blittable
27809
27810         * marshal.c (mono_marshal_load_type_info): flag types  as
27811         non-blittable if the native layout doesn't match the managed
27812         layout
27813
27814 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27815
27816         * appdomain.c: don't add stuff in the private search path that is
27817         above the application base. If application base is not set, there's
27818         no private search path.
27819
27820 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27821
27822         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27823         byref struct arguments in native->managed marshalling.
27824
27825 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27826
27827         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27828         cache methods using signature (special case for methods
27829         that are value type or string class)
27830         
27831         * image.c (mono_image_close): clean up allocated GSList's
27832         in runtime_invoke_cache.
27833
27834 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27835
27836         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27837         there's no MONO_CFG_DIR environment variable defined.
27838
27839 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27840
27841         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27842
27843 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27844
27845         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27846           is interrumped.
27847         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27848           before waiting for it, and call CloseHandle after the wait to unref it.
27849           This will make sure that handles are not disposed too early.
27850
27851 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27852
27853         * appdomain.c:
27854         * appdomain.h:
27855         * icall.c: removed
27856         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27857         needed now.
27858
27859         * object.c: se the application_base only for the domain that runs
27860         Main. Fixes bug #59216,
27861
27862 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27863
27864         * appdomain.c:
27865         * object.c: only the domain in which Main is run have
27866         SetupInformation.ConfigurationFile set, so moved a few lines from
27867         appdomain.c to object.c.
27868
27869 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27870
27871         * appdomain.c: we tried to load [name].(dll|exe), but according
27872         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27873         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27874         There's a test case attached to bug #58922.
27875
27876 2004-05-27  Dick Porter  <dick@ximian.com>
27877
27878         * icall.c:
27879         * file-io.c: Implemented icalls for locking and unlocking regions
27880         in a file.
27881         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27882         FALSE on error (fixes both compiler warning and real bug.)
27883
27884 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27885
27886         * culture-info-tables.h: reflecting locale-builder updates.
27887
27888           (Added missing ChangeLog entry for 05/26)
27889
27890 2004-05-27  Jackson Harper  <jackson@ximian.com>
27891
27892         * locales.c: Fix some cut and paste errors.
27893         
27894 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27895
27896         * mono-config.c: set the correct path for config. directory on windows.
27897
27898 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27899
27900         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27901           on win32.
27902
27903 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27904
27905         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27906         from pinvoke functions.
27907         
27908         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27909
27910 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27911
27912         * culture-info-tables.h: reflecting locale-builder updates.
27913
27914 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27915
27916         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27917         #59086.
27918
27919 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27920
27921         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27922         * icall.c: Modified icalls for RNG.
27923         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27924         Windows (CryptoAPI).
27925
27926 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27927
27928         * locales.c: Fix build.
27929
27930 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27931
27932         * culture-info-tables.h: reflecting locale-builder updates.
27933
27934 2004-05-25  Jackson Harper  <jackson@ximian.com>
27935
27936         * locales.c: When creating the current culture use the $LANGs
27937         specific culture. So DateTimeFormat and NumberFormat entries are created.
27938         
27939 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27940
27941         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27942         a char array as parameter.
27943
27944 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27945
27946         * image.c: In mono_image_open(), always use an absolute path name to
27947           look for already loaded images.
27948
27949 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27950
27951         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27952         missing in the windows build (like older cygwin include files).
27953
27954 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27955
27956         * icall.c: Fixed check for possible integer overflow in Buffer_
27957         BlockCopy icall. Replaced comments style // by /* */.
27958
27959 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27960
27961         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27962         
27963         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27964         check after MONO_VTADDR. Fixes pinvoke2.exe.
27965
27966         * marshal.h marshal.c metadata.h: Add beginnings of support for
27967         ftnptr -> delegate marshalling.
27968
27969 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27970
27971         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27972         * threads.c: Fix warnings.
27973
27974 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27975
27976         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27977         * icall.c: Registered icalls for Suspend and Resume.
27978         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27979           Thread.Abort.
27980         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27981         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27982         * process.c: Use WaitForSingleObjectEx.
27983         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27984           checkpoints.
27985         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27986           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27987           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27988           background threads. Added basic support for Abort in Windows.
27989           Start new threads using a managed delegate invoke wrapper. This wrapper
27990           has an interruption checkpoint that is needed since an interruption
27991           can be requested before the thread leaves the unmanaged code that starts 
27992           the thread.
27993         * marshal.c: Added interruption checkpoint after every native call, and
27994           also before managed calls for wrappers called from unmanaged code to
27995           go into managed code.
27996         * object.h: Added new field in MonoThread to keep track of interruption
27997           requests.
27998
27999 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
28000
28001         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
28002         calls.
28003
28004 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28005
28006         * appdomain.c:
28007         * assembly.c:
28008         * gc.c:
28009         * locales.c:
28010         * mono-config.c:
28011         * rand.c: getenv -> g_getenv (windows!)
28012
28013         * process.c: complete_path is also used on non-windows platforms.
28014
28015 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28016
28017         * icall.c: new signature for Process_Start.
28018
28019         * process.[ch]: new signature for Process_Start. If we're on windows
28020         and UseShellExecute is false, we have to search for the program by
28021         ourselves if we don't get a full path.
28022
28023 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
28024
28025         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
28026         marshalling and call CleanUpNativeData if needed. Fixes #58646.
28027
28028 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28029
28030         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
28031         Fixes bug #58373.
28032
28033 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28034
28035         * process.c: use double quotes to quote program name and arguments on
28036         windows. Fixes bug #58575.
28037
28038 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28039
28040         * file-io.c: don't return "." and ".." when using windows Find*File.
28041
28042 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
28043
28044         * marshal.c: Don't pass wrappers to message init because method 
28045         addressed used to lookup metadata. part of remoting[2|3] fix.
28046
28047 2004-05-15  Jackson Harper  <jackson@ximian.com>
28048
28049         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
28050         path is essentially the same as MONO_PATH except that it points to
28051         GACs instead of lib directories.
28052         * loader.h: The user gac is gone so we dont need function to
28053         enable/disable it.
28054         * mono-config.c: user gac option is now gone.
28055         
28056 2004-05-15  Jackson Harper  <jackson@ximian.com>
28057
28058         * culture-info.h: Make defines more consistent, add calendar data
28059         to the culture info table.
28060         * culture-info-tables.h: Add basic calendar data. Basically
28061         everyone gets default gregorian until all the data is
28062         updated.
28063         * locales.c: Use the new consistent defines. Set calendar data for
28064         culture info objects.
28065         * object.h: add a field for calendar data to CultureInfo
28066         
28067 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
28068
28069         * image.c: image->runtime_invoke_cache is keyed on signatures now.
28070         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
28071         a signature.
28072         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
28073         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
28074         an extra param that is the pointer of the method to invoke. The IL for
28075         the invoke method is no longer specific to the method, but to the
28076         signature of the method. Thus, we can share the same code for multiple
28077         methods. This reduces the number of methods that have to be compiled.
28078
28079 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
28080
28081         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
28082
28083         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28084
28085         * icall.c: Optimize Buffer.BlockCopy.
28086
28087 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28088
28089         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
28090         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
28091         quote). Changed them to "MMMM yyyy".
28092
28093 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
28094
28095         * rand.c
28096         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
28097
28098 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
28099
28100         * reflection.h: Updated after changes to managed structures.
28101
28102         * appdomain.c: Bump corlib version.
28103
28104 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28105
28106         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
28107         windows.
28108
28109 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28110
28111         * Makefile.am: link to ../os/libmonoos.la on windows.
28112
28113         * assembly.c:
28114                 -If MONO_DEBUG, warn about non-existing directories in
28115                 MONO_PATH.
28116                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
28117                 compile time variable.
28118                 -Removed init_default_path and call mono_set_rootdir from
28119                 libmonoos.a instead (windows only).
28120
28121         * assembly.h: declare mono_assembly_getrootdir().
28122
28123         * domain.c:
28124         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
28125
28126         * loader.c: s/getenv/g_getenv/
28127
28128 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
28129
28130         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
28131
28132         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
28133
28134         * metadata.h: Add new marshalling conversions.
28135
28136         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
28137         function.
28138
28139         * reflection.c (mono_reflection_get_type): Lookup the type in all
28140         modules of a multi-module assembly. Fixes #58291.
28141
28142 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
28143
28144         * threads.c: Before aborting a background, set the StopRequested
28145         state.  This avoids throwing the Abort exception.
28146         In mono_thread_manage, don't continue with the shutdown until all
28147         aborted threads have actually stopped.
28148
28149 2004-05-10  Jackson Harper  <jackson@ximian.com>
28150
28151         * locales.c: Remove the modifier from culture names.
28152         
28153 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28154
28155         * Makefile.am: monosn is not installed any more. It has been deprecated
28156         in favor of sn.
28157
28158 2004-05-07  Jackson Harper  <jackson@ximian.com>
28159
28160         * locales.c
28161         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
28162         Fix array construction, add bailout if the length is 0.
28163
28164 2004-05-07  Dick Porter  <dick@ximian.com>
28165
28166         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
28167         machine doesn't have a DNS entry.  Patch by Urs Muff
28168         (umuff@quark.com), fixes bug 57928.
28169
28170 2004-05-06  Jackson Harper  <jackson@ximian.com>
28171
28172         * reflection.c: Handle null PublicTokens properly. alloc mem for
28173         assembly names culture so we dont crash when freeing it.
28174         
28175 2004-05-06  Jackson Harper  <jackson@ximian.com>
28176
28177         * assembly.c: Check the usergac when loading with partial names.
28178         
28179 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28180
28181         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
28182         does nothing for now (not required for Linux/Windows) but the class
28183         library can call it (and a newer or modified runtime could need it).
28184         * icall.c: Registred icall.
28185
28186 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28187
28188         * loader.c: prints a message on module loading error we set MONO_DEBUG
28189         environment variable.
28190
28191 2004-05-05  Jackson Harper  <jackson@ximian.com>
28192
28193         * appdomain.c: Handle PublicKeyToken=null properly.
28194         
28195 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28196
28197         * environment.c|h: Added icall ves_icall_System_Environment_
28198         GetOSVersionString to get the current OS version as a string.
28199         * icall.c: Registred icall.
28200
28201 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
28202
28203         * object.c: in mono_object_get_virtual_method(), take into account that
28204         non-virtual methods don't have a slot in the vtable. Check needed when
28205         the object is a proxy.
28206
28207 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
28208
28209         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
28210         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
28211
28212         * object.c (mono_class_compute_gc_descriptor): Fix warning.
28213
28214         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
28215         passed when a valuetype is expected.
28216
28217         * object.c (mono_unhandled_exception): Only set the exit code if the
28218         exception happens in the main thread. Fixes thread5.exe.
28219
28220         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
28221         invalid names. Fixes #58047.
28222
28223 2004-05-03  Jackson Harper  <jackson@ximian.com>
28224
28225         * assembly.c: This line was committed accidently and is unneeded.
28226         
28227 2004-05-03  Jackson Harper  <jackson@ximian.com>
28228
28229         * icall.c: Add new icall for Assembly::LoadWithPartialName
28230         * assembly.c/.h: new function that probes the GAC to load partial
28231         assembly names by Paolo Molaro.
28232         
28233 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28234
28235         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
28236         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
28237         (type_get_fully_qualified_name): Added PublicKeyToken when building a
28238         full type name.
28239
28240 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28241
28242         * appdomain.c: fixed check for 'neutral' culture and removed warning.
28243         * reflection.c: fix bug when parsing a full type name and Version is not
28244         the last thing in the string.
28245
28246 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
28247
28248         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
28249         crashes when it is freed.
28250
28251 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28252
28253         * assembly.c: print the compat warning to stderr.
28254
28255 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
28256
28257         * assembly.c (mono_assembly_load_references): Add a compatibility
28258         hack to run old applications that might be still referencing the
28259         3300-based assemblies, only do this for System.xxx.
28260
28261 2004-05-01  Jackson Harper  <jackson@ximian.com>
28262
28263         * appdomain.c: If the culture is neutral we set it to "".
28264         
28265 2004-04-29  Jackson Harper  <jackson@ximian.com>
28266
28267         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
28268
28269 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
28270  
28271         * string-icalls.c: added low overhead function for copying chars
28272         * icall.c: added needed icall for the above function
28273  
28274 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28275
28276         * icall.c: fix return value of get_global_assembly_cache.  Implemented
28277         Environment.GetLogicalDrives.
28278
28279 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
28280
28281         * rand.c: try and talk to egd or prngd
28282         for random bytes if opening devices fail.
28283
28284 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
28285
28286         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
28287         alignment for the type using the native alignment of its members 
28288         instead of using klass->min_align.
28289
28290         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
28291
28292 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28293
28294         * file-io.c:
28295         * socket-io.c: added check for sys/aio.h.
28296
28297 2004-04-28  Dick Porter  <dick@ximian.com>
28298
28299         * threads.c: Don't abort a thread thats already aborting, when
28300         terminating everything.
28301
28302 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28303
28304         * icall.c: added 2 new async calls for Socket.
28305
28306         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
28307         IO on *nix systems.
28308
28309         * threadpool.c: removed unused variable.
28310
28311 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
28312
28313         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
28314
28315 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
28316
28317         * locales.c: put back string_invariant_tolower () and
28318         string_invariant_toupper ().
28319
28320 2004-04-26 David Waite <mass@akuma.org>
28321
28322         * file-io.h:
28323         * socket-io.h:
28324         * threads.h:
28325         * unicode.h: remove comma from end of enumeration declarations
28326
28327 2004-04-26 David Waite <mass@akuma.org>
28328
28329         * debug-mono-symfile.h:
28330         * decimal.c:
28331         * mono_debug.h:
28332         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
28333
28334
28335 2004-04-26  Jackson Harper  <jackson@ximian.com>
28336
28337         * appdomain.c: Increment version number.
28338         
28339 2004-04-26  Jackson Harper  <jackson@ximian.com>
28340
28341         * appdomain.c: Set assembly references public token value when
28342         PublicKeyToken is specified, not the hash_value. Free public token
28343         values when free assembly name data. Previously the public key
28344         token was hex decoded, however we are using hex encoded public key
28345         tokens, so this is not neccasary.
28346         * assembly.c: Lookup assemblies in the gac if their public token
28347         value is set. Add function to allow enabling user gac
28348         lookups. Specify whether or not the assembly was loaded from the
28349         GAC. Compare full assembly names when checking the cache for
28350         assemblies (Temporarily disabled see comment in code). Remove
28351         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
28352         specifies trace-loader they get extra info to stdout on the
28353         loading of assemblies.
28354         * image.h: Add a field for an assembly references public token
28355         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
28356         whether an assembly has been loaded from the GAC.
28357         * image.c: Remove a corlib -> mscorlib name mapping.
28358         * loader.h: Add function to enable/disable the user gac.
28359         * mono-config.c: Check if the usergac is enabled in the config
28360         file.
28361         * icall.c: New icall to determine whether or not an assembly has
28362         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
28363         * tabldefs.h: Add constant for assemblyref flag that specifies a
28364         full public key is used instead of a public token.
28365         * reflection.c: Remove mscorlib -> corlib mappings. Set
28366         PublicTokenValue instead of hash value. This value is a hex
28367         string so it does not need to be expanded.
28368
28369 2004-04-26  Martin Baulig  <martin@ximian.com>
28370
28371         * mono-debug-debugger.c (mono_debugger_initialize): Set
28372         `mono_debugger_initialized' before calling mono_debug_lock().
28373
28374 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
28375
28376         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
28377           InternalToUpper/InternalToLower.
28378         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
28379           removed invariant culture shortcut.  This is now done in managed code.
28380         * locales.c: (string_invariant_toupper/tolower) removed.
28381
28382 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28383
28384         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
28385         Added Poll internal call.
28386
28387         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
28388         call for Poll. Select was too heavy for polling a single socket.
28389
28390         * threadpool.[ch]: added mono_threadpool_cleanup.
28391         * threads.c: use it. Don't use Thread_Abort on windows.
28392
28393 2004-04-23  Martin Baulig  <martin@ximian.com>
28394
28395         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28396
28397 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28398
28399         * icall.c: Registred new icalls for key pair protection and added an
28400         icall for Environment.GetFolderPath on Windows.
28401         * security.c|h: Added new icalls for key pair protection.
28402
28403 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28404
28405         * socket-io.c: don't display the non-supported family warning for known
28406         families. Now this is not displayed on windows when checking support
28407         for IPv4/IPv6.
28408
28409 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28410
28411         * class.c: don't display the layout warning for static fields.
28412
28413 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28414
28415         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28416         * locales.c, locales.h: Added new icalls for culture-specific
28417         Char.ToLower and Char.ToUpper.
28418
28419 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28420
28421         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28422         by David Waite.
28423
28424 2004-04-20  Martin Baulig  <martin@ximian.com>
28425
28426         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28427         of the type name before passing it to mono_reflection_type_from_name().
28428
28429 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28430
28431         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28432         encodings here. Fixes #56965.
28433
28434 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28435
28436         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28437         fix test on strstr result not that I can see anything that
28438         relies on the result.
28439
28440 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28441
28442         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28443         Fixes #57081.
28444
28445         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28446
28447         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28448         function to determine which marshalling to use for strings. Fixes
28449         #56965.
28450
28451         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28452
28453         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28454
28455 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28456
28457         * icall.c: #include mono-config.h
28458
28459 2004-04-15  Jackson Harper  <jackson@ximian.com>
28460
28461         * culture-info-tables.h: Fix date formats for en-US culture.
28462         
28463 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28464
28465         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28466         ThreadPool.SetMinThreads.
28467         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28468         ThreadPool.SetMinThreads.
28469
28470 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28471
28472         * mono-config.c: also load the .config file in the directory
28473         where the assembly was found.
28474
28475 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28476
28477         * assembly.c: load per-assembly config files.
28478         * icall.c: decrapified code to get the config dir and moved to
28479         mono-config.c.
28480         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28481         per-assembly config files. When doing a dll map lookup give precedence
28482         to the per-assembly data.
28483
28484 2004-04-14  Martin Baulig  <martin@ximian.com>
28485
28486         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28487         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28488         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28489
28490         * mono-debugger-debugger.c: While the debugger is locked, remember
28491         whether the symbol tables have changes and send one single
28492         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28493
28494 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28495
28496         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28497
28498         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28499         function.
28500
28501         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28502         account when marshalling string arrays. Fixes #56965.
28503
28504 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28505
28506         * icall.c: Add new icalls mapping for security.
28507         * security.c|h: Add internal calls for WindowsIdentity,
28508         WindowsImpersonationContext and WindowsPrincipal.
28509
28510 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28511
28512         * class.c: Added comment to ensure the System.MonoDummy class
28513         is removed when no longer necessary
28514
28515 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28516
28517         * appdomain.c: Pass arguments to the bootstraping exceptions to
28518         minimize JITed methods at boot
28519
28520         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28521         second string to be null.
28522
28523         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28524         Change the protocol to minimize the JIT methods at startup.  Now
28525         it Returns the internal codepage, if the value of "int_code_page"
28526         is 1 at entry, and we can not compute a suitable code page
28527         number, returns the code page as a string.
28528
28529 2004-04-13  Jackson Harper  <jackson@ximian.com>
28530
28531         * culture-info-tables.h: Fix number of decimal digits for all
28532         english locales.
28533
28534 2004-04-13  Jackson Harper  <jackson@ximian.com>
28535
28536         * icall.c: Clairfy out of sync error message. It is not always
28537         your corlib that is out of sync.
28538
28539 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28540
28541         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28542         properties when only the set accessor is overriden. Fixes #55874.
28543
28544 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28545
28546         * assembly.c (mono_assembly_load_references): Make this thread safe.
28547         Fixes #56327.
28548
28549 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28550
28551         * monosn.c: Add missing initialization calls.
28552
28553 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28554
28555         * locales.c:
28556         ves_icall_System_Globalization_CultureInfo_construct_number_format
28557         Fix g_assert so it compiles on fussier compilers re int/ptr
28558         mismatch
28559
28560 2004-04-08  Dick Porter  <dick@ximian.com>
28561
28562         * socket-io.h:
28563         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28564         53992.  Also rearrange the code so that the internal calls return
28565         an error value and exceptions are thrown from managed code.
28566
28567         * icall.c: Add type info to the socket icalls.
28568
28569 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28570
28571         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28572         owes me a beer.
28573
28574 2004-04-07  Martin Baulig  <martin@ximian.com>
28575
28576         * class.c (mono_class_from_generic_parameter): Don't default
28577         `klass->parent' to `mono_defaults.object_type'.
28578
28579 2004-04-07  Martin Baulig  <martin@ximian.com>
28580
28581         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28582         `param->pklass->reflection_info'.       
28583
28584 2004-04-07  Jackson Harper  <jackson@ximian.com>
28585
28586         * culture-info-tables.h: Fix date separator symbol.
28587         
28588 2004-04-07  Martin Baulig  <martin@ximian.com>
28589
28590         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28591         from System.Type to System.MonoType.
28592
28593 2004-04-07  Martin Baulig  <martin@ximian.com>
28594
28595         * reflection.h
28596         (MonoReflectionGenericParam): Added `has_reference_type' and
28597         `has_value_type' fields.
28598
28599         * reflection.c (mono_image_get_generic_param_info): Encode the
28600         correct flags if we have the `class' or `struct' constraint.
28601
28602 2004-04-07  Martin Baulig  <martin@ximian.com>
28603
28604         * reflection.h
28605         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28606
28607 2004-04-07  Jackson Harper  <jackson@ximian.com>
28608
28609         * appdomain.c: Revert extra patches, just wanted to bump the
28610         version number.
28611         
28612 2004-04-07  Jackson Harper  <jackson@ximian.com>
28613
28614         * Makefile.am: Add culture-info private headers.
28615         * icall.c: Add new icalls for contructing locales.
28616         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28617         * locales.h: Declare new culture info construction methods.
28618         * object.h: Add new fields used to avoid the CultureMap to
28619         MonoCultureInfo.
28620         * culture-info.h: Definition of structs used in the culture info
28621         tables.
28622         * culture-info-tables.h: Autogenerated tables that contain culture
28623         info data. This file was generated with the locale-builder tool.
28624         * appdomain.c: Incement corlib version number.
28625         
28626 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28627
28628         * appdomain.c: (mono_runtime_init) move mono_thread_init
28629         to before mono_object_new calls so critical sections
28630         are initialized before use.
28631
28632 2004-04-07  Martin Baulig  <martin@ximian.com>
28633
28634         * icall.c
28635         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28636         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28637         (ves_icall_MonoGenericParam_initialize): Removed.
28638         (monogenericparam_icalls): Removed.
28639         (generictypeparambuilder_icalls): Added new table for
28640         System.Reflection.Emit.GenericTypeParameterBuilder.
28641
28642         * reflection.c
28643         (mono_reflection_define_generic_parameter): Removed.
28644         (mono_reflection_initialize_generic_parameter): This is now called
28645         from GenericTypeParameterBuilder's .ctor.
28646
28647 2004-04-06  Martin Baulig  <martin@ximian.com>
28648
28649         * class.c (mono_class_init): Don't inflate nested classes in a
28650         generic instance.
28651         (mono_type_get_name_recurse): Include the generic arguments for
28652         generic instances and generic type declarations.
28653         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28654         (_mono_class_get_instantiation_name): Removed.
28655         (mono_class_create_generic): Always use `gklass->name' as our name.
28656
28657         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28658
28659         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28660         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28661         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28662         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28663         closed generic methods here.
28664
28665         * reflection.c
28666         (mono_reflection_generic_inst_get_nested_types): Removed.
28667         (inflate_mono_method): Copy the generic parameters from the
28668         MonoMethodHeader into out MonoGenericMethod.
28669
28670 2004-04-06  Martin Baulig  <martin@ximian.com>
28671
28672         * row-indexes.h
28673         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28674
28675         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28676
28677         * reflection.c (build_compressed_metadata): If we have any entries
28678         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28679         set the header version to 1.1.
28680
28681 2004-04-06  Martin Baulig  <martin@ximian.com>
28682
28683         * class.c (mono_class_init): If we're a generic instance,
28684         initialize our nested classes, too.
28685         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28686         suffix. 
28687
28688 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28689
28690         * process.c: quote the argument passed to the shell on windows.
28691
28692 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28693
28694         * threads.c (mono_alloc_special_static_data): Allow this to be
28695         called during startup.
28696
28697 2004-04-02  Martin Baulig  <martin@ximian.com>
28698
28699         * icall.c
28700         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28701
28702 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28703
28704         * icall.c: Fix build.
28705
28706 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28707
28708         * Makefile.am: Added security.c|h.
28709         * icall.c: Added icall for get_UserName;
28710         * security.c: New file for security related icalls. Added function
28711         get_UserName for System.Environment (fix #56144).
28712         * security.h: New. Header file for security.c
28713
28714 2004-04-02  Dick Porter  <dick@ximian.com>
28715
28716         * icall.c: Deleted the icalls that were obsoleted some time ago
28717         by the ICU string code, and which were mixed into the icall
28718         rearranging.  Fixes bug 55969.
28719
28720         * string-icalls.h: 
28721         * string-icalls.c: Deleted the code that those icalls reference.
28722
28723 2004-04-01  Martin Baulig  <martin@ximian.com>
28724
28725         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28726
28727         * class.c (mono_class_from_generic_parameter): Don't set 
28728         TYPE_ATTRIBUTE_INTERFACE.
28729         (my_mono_class_from_generic_parameter): Likewise.
28730
28731 2004-04-01  Martin Baulig  <martin@ximian.com>
28732
28733         * loader.c (find_method): Added an optional `MonoClass *ic'
28734         argument to search in a specific interface.
28735         (mono_get_method_constrained): New public function.
28736
28737 2004-04-01  Martin Baulig  <martin@ximian.com>
28738
28739         * reflection.c (mono_image_get_generic_field_token): Use the
28740         `handleref' cache here.
28741
28742 2004-04-01  Martin Baulig  <martin@ximian.com>
28743
28744         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28745
28746         * reflection.c (create_generic_typespec): Use the `typespec' hash
28747         here, not the `typeref' one.    
28748
28749 2004-04-01  Martin Baulig  <martin@ximian.com>
28750
28751         * class.c (mono_class_inflate_generic_type): Moved the
28752         functionality into a new static inflate_generic_type() which
28753         returns NULL if it didn't do anything.  Only increment the
28754         `mono_stats.inflated_type_count' if we actually inflated
28755         something.
28756         (mono_class_get_full): Check the classes type to see whether we
28757         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28758
28759 2004-04-01  Jackson Harper  <jackson@ximian.com>
28760
28761         * reflection.c: Set culture for assembly references.
28762         
28763 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28764
28765         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28766
28767 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28768
28769         * assembly.c:
28770         (do_mono_assembly_open): the critical section also covers
28771         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28772
28773 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28774
28775         * threads.c:
28776         (mono_manage_threads): abort the background threads when finishing.
28777         Fixes bug #47232.
28778
28779 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28780
28781         * gc.c: only close the done_event handle if there was no timeout.
28782         C-ified comments.
28783
28784 2004-03-30  Martin Baulig  <martin@ximian.com>
28785
28786         * icall.c (icall_entries): It's called "System.Activator", not
28787         "System.Activation".    
28788
28789 2004-03-30  Martin Baulig  <martin@ximian.com>
28790
28791         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28792         (mono_class_create_from_typespec): Likewise.
28793
28794 2004-03-30  Martin Baulig  <martin@ximian.com>
28795
28796         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28797         `has_ctor_constraint' and `initialized'.
28798
28799 2004-03-30  Martin Baulig  <martin@ximian.com>
28800
28801         * reflection.c (encode_new_constraint): New static function to add
28802         the constructor constraint attribute to a type parameter.
28803         (encode_constraints): Call encode_new_constraint() if necessary.
28804
28805         * reflection.h
28806         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28807
28808         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28809         
28810 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28811
28812         * reflection.c, icall.c: add support for pinning variables. 
28813
28814 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28815
28816         * marshal.c (mono_marshal_get_managed_wrapper):
28817         init bool local with zero rather than null.
28818
28819 2004-03-29  Martin Baulig  <martin@ximian.com>
28820
28821         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28822         the "official" behavior here.
28823         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28824
28825 2004-03-29  Martin Baulig  <martin@ximian.com>
28826
28827         * icall.c: Reflect latest API changes.
28828
28829 2004-03-29  Martin Baulig  <martin@ximian.com>
28830
28831         * loader.c (mono_get_method_from_token): Also call
28832         mono_metadata_load_generic_params () for abstract and interface
28833         methods; replace the type arguments in the method signature with
28834         the ones which are loaded from the metadata.
28835
28836 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28837
28838         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28839         of the lock is not the current thread. MS.NET don't do it, in spite of
28840         what the documentation says. See bug #56157.
28841
28842 2004-03-28  Martin Baulig  <martin@ximian.com>
28843
28844         * class.c (mono_class_init): Don't call init_properties() and
28845         init_events() for generic instances; set `prop->parent' when
28846         inflating properties.
28847
28848         * reflection.c (mono_generic_inst_get_object): Call
28849         `mono_class_init (ginst->klass)'.
28850         (mono_type_get_object): Only create a MonoGenericInst if your
28851         generic type is a TypeBuilder.
28852         (do_mono_reflection_bind_generic_parameters): Only set
28853         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28854
28855 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28856
28857         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28858         Fixes #56091.
28859
28860 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28861
28862         * icall.c: added Kill_internal icall.
28863         * process.[ch]: added Kill_internal icall.
28864
28865 2004-03-25  Martin Baulig  <martin@ximian.com>
28866
28867         * class.h (MonoStats): Added `generic_instance_count',
28868         `inflated_method_count', `inflated_type_count' and
28869         `generics_metadata_size'.       
28870
28871 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28872
28873         * reflection.c: no warnings now.
28874
28875 2004-03-25  Martin Baulig  <martin@ximian.com>
28876
28877         * class.c (mono_class_get_full): New public function; does a
28878         mono_class_get(), but also takes a `MonoGenericContext *'.
28879
28880         * loader.c (mono_field_from_memberref): Renamed to
28881         `field_from_memberref', made static and added `MonoGenericContext *'
28882         argument.
28883         (mono_field_from_token): Added `MonoGenericInst *' argument.
28884         (method_from_memberef): Likewise.
28885         (mono_get_method_from_token): Likewise.
28886         (mono_get_method_full): New public function; does a
28887         mono_get_method(), but also takes a `MonoGenericContext *'.
28888
28889         * verify.c (mono_method_verify): Get the method's generic context
28890         and pass it to mono_field_from_token(), mono_get_method_full() and
28891         mono_class_get_full().
28892
28893 2004-03-25  Martin Baulig  <martin@ximian.com>
28894
28895         * class.c (mono_class_inflate_generic_type): Take a
28896         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28897         `MonoGenericMethod *'.
28898
28899 2004-03-25  Martin Baulig  <martin@ximian.com>
28900
28901         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28902         instead of the MonoGenericMethod here.
28903
28904 2004-03-25  Martin Baulig  <martin@ximian.com>
28905
28906         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28907         each time we create a new MonoGenericInst, we also create a new
28908         context which points back to us.
28909
28910         * class.c (inflate_method): Use `ginst->context' instead of
28911         creating a new context.
28912
28913         * loader.c (method_from_memberref): Use
28914         `klass->generic_inst->context' instead of creating a new context.
28915
28916 2004-03-25  Martin Baulig  <martin@ximian.com>
28917
28918         * class.h (MonoGenericContext): New struct.
28919         (MonoGenericMethod): Removed `generic_inst'.
28920
28921         * class.c (mono_class_inflate_generic_method): Take a
28922         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28923
28924 2004-03-25  Martin Baulig  <martin@ximian.com>
28925
28926         * loader.h (MonoMethodInflated): New typedef.
28927
28928         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28929         `generic_param_count' consume just 30 bits, added `is_inflated'
28930         and `has_type_parameters' flags (one bit each).
28931
28932         * class.c (mono_class_inflate_generic_method): Create a
28933         MonoMethodInflated instead of a MonoMethodNormal and set
28934         `is_inflated' in the method signature.
28935
28936         * class.h (MonoGenericMethod): Removed `generic_method'.
28937
28938 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28939
28940         * image.c: Make sure the name of a MonoImage is always an absolute path.
28941           This fixes bug #54415.
28942
28943 2004-03-24  Martin Baulig  <martin@ximian.com>
28944
28945         * class.c (mono_class_setup_vtable): If we're a generic instance,
28946         use our generic type's vtable size.
28947
28948 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28949
28950         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28951         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28952         problems.
28953
28954 2004-03-23  Martin Baulig  <martin@ximian.com>
28955
28956         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28957         `MonoEvent *events'.
28958
28959         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28960         (typebuilder_icalls): Added "get_event_info"; calls
28961         mono_reflection_event_builder_get_event_info(). 
28962
28963         * reflection.c (mono_reflection_generic_inst_initialize): Added
28964         `MonoArray *events'.
28965         (mono_reflection_event_builder_get_event_info): New function.
28966
28967 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28968
28969         * object.h: add mono_type_initialization_init
28970
28971         * object.c (mono_runtime_class_init): 
28972         implement class constructor synchronization rules
28973         to cope with threading issues.  
28974         add mono_type_initialization_init
28975
28976         * appdomain.c (mono_runtime_init): call 
28977         mono_type_initialization_init
28978
28979         * class.h: removing initializing field from MonoVTable
28980
28981 2004-03-23  Martin Baulig  <martin@ximian.com>
28982
28983         * class.c (my_mono_class_from_generic_parameter): Use
28984         `param->name' if it's not NULL. 
28985
28986 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28987
28988         * class.c: do not insert non-virtual methods in the vtable.
28989         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28990         that means the method is non-virtual. This never would have
28991         happened before.
28992
28993 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28994
28995         * profiler.c: Added lock for accessing coverage_hash.
28996
28997 2004-03-22  Martin Baulig  <martin@ximian.com>
28998
28999         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
29000         `method->method->signature->generic_param_count != 0' to make it
29001         work for interface methods.
29002
29003 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29004
29005         * process.c: quote the string passed to the shell using g_shell_quote.
29006
29007 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29008
29009         * threads.c:
29010         (mono_threads_manage): don't remove the finalizer thread and self
29011         from the threads hash table so that mono_thread_manage can be called
29012         more than once.
29013
29014 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29015
29016         * process.c: quote the arguments when UseShellExecute is true. Fixes
29017         bug #55790.
29018
29019 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29020
29021         * threads.c: set mono_thread_detach as a cleanup routine for every
29022         thread. This way it's always executed upon thread termination, either
29023         aborted or finished normally. No more xsp hangs!
29024
29025 2004-03-17  Martin Baulig  <martin@ximian.com>
29026
29027         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
29028         `int count_nested' and a `MonoType **nested'.
29029
29030         * reflection.c (mono_reflection_bind_generic_parameters): Moved
29031         most of the functionality into a new static
29032         do_mono_reflection_bind_generic_parameters() and don't take a
29033         `MonoType *nested_in' argument any more.  Don't compute nested
29034         types here.
29035         (mono_reflection_generic_inst_get_nested_types): New public method
29036         to get nested types.
29037
29038         * class.c (mono_class_create_generic): Set `klass->nested_in' if
29039         we're a nested class.
29040
29041         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
29042         mono_reflection_generic_inst_get_nested_types() to compute the
29043         nested types.
29044
29045 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29046
29047         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
29048         descriptive error message under windows.
29049         
29050 2004-03-17  Martin Baulig  <martin@ximian.com>
29051
29052         * class.c (dup_type): Added `const MonoType *original' argument;
29053         copy the attrs from the original type.
29054
29055 2004-03-17  Martin Baulig  <martin@ximian.com>
29056
29057         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
29058         `m->generic_inst_cache' here.
29059
29060 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29061
29062         * exception.h exception.c: Add stack_overflow_exception.
29063
29064 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29065
29066         * threadpool.c:
29067         (overlapped_callback): call SetEvent *after* invoking the callback.
29068         No need to call CloseHandle.
29069
29070 2004-03-16  Martin Baulig  <martin@ximian.com>
29071
29072         * reflection.c (mono_image_get_fieldref_token): Take a
29073         `MonoReflectionField *' instead of a `MonoClassField *' and a
29074         `MonoClass *'; store the `MonoReflectionField *' in the hash.
29075
29076 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29077
29078         * appdomain.c: don't add the culture to the filename we're looking for
29079         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
29080
29081 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29082
29083         * locales.c: don't ignore symbols when doing case insensitive compares.
29084         Thanks Dick! Fixes bug #54046.
29085
29086         * threads.c: surround 'threads' usage with enter/leave in
29087         mono_thread_manage.
29088
29089 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
29090
29091         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
29092         implicitly marshalled as [Out]. Fixes #55450.
29093
29094         (mono_marshal_get_runtime_invoke): Zero out the result if there is
29095         an exception.
29096
29097 2004-03-16  Martin Baulig  <martin@ximian.com>
29098
29099         * class.c (mono_class_from_generic_parameter): Use the actual
29100         parameter name. 
29101
29102 2004-03-16  Martin Baulig  <martin@ximian.com>
29103
29104         * reflection.c (type_get_signature_size): New static function.
29105         Compues the size of the type in a method signature.
29106         (method_get_signature_size): New static function; calls
29107         type_get_signature_size() to compute the actual size of the
29108         method's signature.
29109         (method_encode_signature): Use method_get_signature_size() to get
29110         the signature's size rather than using `nparams * 10'.
29111
29112 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29113
29114         * file-io.h: define here WapiOverlapped on windows. I don't want the
29115         regular OVERLAPPED one.
29116
29117         * file-io.c:
29118         * threadpool.c: somehow, BindIoCompletionCallback is not found.
29119         Disabling AIO on windows.
29120
29121 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29122
29123         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
29124         bug #55385.
29125
29126 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29127
29128         * appdomain.c: upgraded corlib version.
29129
29130         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
29131         and BeginWrite. Allow opening files for asynchrnous operations.
29132
29133         * file-io.h: new struct that maps FileStreamAsyncResult.
29134         * icall.c: added new icalls.
29135         * process.[ch]: support setting child process environment variables
29136         and use the SHELL or COMSPEC when UseShellExecute is true.
29137
29138         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
29139         callback for async. IO is here and also BindHandle.
29140
29141         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
29142         from here.
29143
29144 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
29145
29146         * reflection.c (create_custom_attr): Allow len == 0.
29147
29148         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
29149         computation on big-endian machines.
29150
29151 2004-03-13  Martin Baulig  <martin@ximian.com>
29152
29153         * class.h (MonoGenericInst): Added `int count_ifaces'.
29154
29155         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
29156         `ginst->count_ifaces' instead `klass->interface_count' since we
29157         may get called before the vtable is created.
29158
29159         * loader.c (mono_method_get_param_names): If we're a generic
29160         instance, return and don't initialize the class.
29161
29162         * reflection.c (mono_reflection_setup_generic_class): Don't call
29163         ensure_runtime_vtable().
29164         (mono_reflection_bind_generic_parameters): Set
29165         `ginst->count_ifaces'.
29166
29167 2004-03-11  Jackson Harper <jackson@ximian.com>
29168
29169         * icall.c:
29170         * unicode.c:
29171         * unicode.h: Remove unused System.Char icalls.
29172         
29173 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
29174
29175         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
29176         code when we P/Invoke the first library in Windows.Forms, instead
29177         of when we first open the assembly.
29178
29179         * assembly.c: Drop the lookup from here.
29180
29181 2004-03-10  Martin Baulig  <martin@ximian.com>
29182
29183         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
29184         class for properties, fields and events.  Finally fixes #54945.
29185
29186 2004-03-10  Martin Baulig  <martin@ximian.com>
29187
29188         * metadata.c (mono_metadata_class_equal): New static function;
29189         checks whether two generic instances or two generic parameters are
29190         equal.
29191         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
29192         compare classes.        
29193
29194 2004-03-10  Martin Baulig  <martin@ximian.com>
29195
29196         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
29197
29198         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
29199         argument and write it into the `reflection_info' field.
29200
29201         * icall.c
29202         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
29203         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
29204
29205 2004-03-09  Jackson Harper  <jackson@ximian.com>
29206
29207         * char-conversions.h: use 8 bits for numeric data its all we need
29208         * icall.c: numeric data is only 8 bits now.
29209
29210 2004-03-09  Martin Baulig  <martin@ximian.com>
29211
29212         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
29213
29214         * class.c (init_properties, init_events): Initialize the new
29215         `parent' field.
29216
29217         * reflection.c (typebuilder_setup_properties): Likewise.
29218         (typebuilder_setup_events): Likewise.
29219
29220         * reflection.h (MonoEventInfo): Replaced `parent with
29221         `declaring_type' and `reflected_type'.
29222
29223         * icall.c (ves_icall_get_property_info): Distinguish between
29224         declaring and reflected type.
29225         (ves_icall_get_event_info): Likewise.
29226
29227 2004-03-09  Martin Baulig  <martin@ximian.com>
29228
29229         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
29230         (ves_icall_Type_GetField): Correctly set field->klass.
29231
29232 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
29233
29234         * loader.h: Fix warning.
29235
29236 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
29237
29238         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
29239         library routine if present.  Notice that it will still continue
29240         executing even if its missing, for those working on the Gtk#
29241         edition of Windows.Forms.
29242
29243         * assembly.c (do_mono_assembly_open): If loading the
29244         System.Windows.Forms call mono_loader_wini_init.
29245
29246 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
29247
29248         * class.h: Added MonoRemoteClass struct.
29249         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
29250         function for MonoStrings.
29251         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
29252         Added internal call for getting the proxy type.
29253         * marshal.c: Get the type of transparent proxies from its remote_class.
29254         Added methods that generate the IL for type checks and casts:
29255         mono_marshal_get_isinst, mono_marshal_get_castclass, 
29256         mono_marshal_get_proxy_cancast.
29257         * marshal.h: Declaration of the previous new methods.
29258         * object.c: Added new moethods for creating and updating MonoRemoteClass
29259         instances: mono_remote_class, mono_upgrade_remote_class, 
29260         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
29261         * verify.c: FIx transparent_proxy_fields layout.
29262         * appdomain.c: Bump corlib version.
29263
29264 2004-03-04  Jackson Harper  <jackson@ximian.com>
29265
29266         * icall.c: Add icall to access char conversion tables.
29267         * char-conversions.h: Character conversion tables.
29268         * Makefile.am: Add char-conversions.h private header file.
29269         
29270 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
29271
29272         * appdomain.c (unload_thread_main): Increase unloading timeout to
29273         10 sec as a temporary workaround for Nant problems.
29274
29275 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
29276
29277         * gc.c: Add checks for GC_enable and GC_disable.
29278
29279         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
29280         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
29281         (bug #54988).
29282         
29283 2004-02-27  Martin Baulig  <martin@ximian.com>
29284
29285         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29286         `MonoReflectionType *' instead of a `MonoType *'.
29287
29288 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
29289
29290         * gc.c (run_finalize): Avoid finalizing the object representing the
29291         finalizer thread.
29292         (finalizer_thread): Fix warning.
29293
29294 2004-02-25  Martin Baulig  <martin@ximian.com>
29295
29296         * class.c (_mono_class_get_instantiation_name): Added `int offset'
29297         argument for nested types.
29298         (mono_class_create_generic): Added support for nested generictypes.
29299
29300         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
29301         `GList *nested'.
29302
29303         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
29304
29305         * reflection.c (method_encode_signature): Increase the minimum
29306         value of `size' from 10 to 11.
29307         (mono_reflection_bind_generic_parameters): Take `int type_argc'
29308         and `MonoType **types' arguments instead of the `MonoArray
29309         *types'; added `MonoType *nested_in'.  Recursively instantiate
29310         nested classes. 
29311
29312 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
29313
29314         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
29315         stack_overflow_ex members which are used by exception handling.
29316
29317         * appdomain.c (mono_runtime_init): Initialize the new members.
29318
29319         * gc.c (mono_gc_enable): New helper function.
29320         * gc.c (mono_gc_disable): New helper function.
29321
29322 2004-02-23  Martin Baulig  <martin@ximian.com>
29323
29324         * icall.c: I must have been really stupid - make it actually work
29325         this time ;-)
29326
29327 2004-02-23  Martin Baulig  <martin@ximian.com>
29328
29329         * loader.c (method_from_memberref): Only inflate the method if
29330         it's in another klass.
29331
29332 2004-02-23  Martin Baulig  <martin@ximian.com>
29333
29334         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
29335         (mono_class_init): If we're a generic instance and an interface,
29336         compute `class->interface_id'; also create `class->interfaces'
29337         here and inflate them.
29338
29339         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
29340         `ginst->is_open'.
29341         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
29342
29343         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
29344
29345 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
29346
29347         * reflection.c (method_encode_code): Improved the error message
29348         generated by the exception.
29349
29350 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29351
29352         * icall.c: Martin did not do what he said in the ChangeLog for
29353         2004-02-18, but put back the changes for properties and events.
29354         Commenting those changes out again and adding comment to bug #54518.
29355         
29356         * process.c: removed warning.
29357
29358 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
29359
29360         * marshal.c (emit_struct_conv): Print an error message instead of
29361         asserting when a type does not have the StructLayout attribute.
29362
29363 2004-02-20  Martin Baulig  <martin@ximian.com>
29364
29365         * reflection.c (mono_type_get_object): Also use the cache for
29366         generic instances.
29367         (mono_reflection_bind_generic_parameters): Always compute
29368         `ginst->ifaces'.        
29369
29370 2004-02-20  Martin Baulig  <martin@ximian.com>
29371
29372         * class.h (MonoGenericMethod): Removed `klass'.
29373
29374         * class.c (mono_class_inflate_generic_method): Added `MonoClass
29375         *klass' argument.
29376
29377 2004-02-20  Martin Baulig  <martin@ximian.com>
29378
29379         * reflection.c (method_encode_methodspec): Actually use the
29380         uninflated signature for the memberref.
29381
29382 2004-02-20  Martin Baulig  <martin@ximian.com>
29383
29384         * class.h (MonoGenericMethod): Removed `declaring'.
29385
29386         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
29387         is NULL, compute it here.
29388
29389 2004-02-20  Martin Baulig  <martin@ximian.com>
29390
29391         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
29392
29393         * metadata.c (mono_metadata_generic_inst_hash): New method.
29394         (mono_metadata_generic_inst_equal): New method.
29395
29396         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29397         `klass->image->generic_inst_cache' cache to avoid creating
29398         duplicate MonoGenericInst's.
29399
29400         * class.c (mono_class_inflate_generic_type): Use the cache.
29401
29402 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29403
29404         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29405
29406 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29407
29408         * icall.c: added Socket.WSAIoctl icall.
29409
29410         * socket-io.[ch]: implemented
29411         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29412
29413 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29414
29415         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29416
29417 2004-02-18  Urs C Muff  <umuff@quark.com>
29418
29419         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29420         this work on PPC and other big-endian architectures.
29421
29422         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29423         fields with an underscore to make sure they're only accessed by
29424         the read32() macro.
29425
29426 2004-02-18  Martin Baulig  <martin@ximian.com>
29427
29428         * icall.c: Put the klass->refclass changes back for methods and
29429         fields, but not for properties and events.  We're currently not
29430         distinguishing between DeclaringType and ReflectedType for
29431         properties and events, that's what caused the regressions.
29432
29433 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29434
29435         * object.c:
29436         (mono_async_result_new): the handle can be NULL.
29437
29438         * threadpool.c: Use an event instead of a semaphore, don't initialize
29439         it until needed. This saves quite a few semaphores from being created
29440         when using the threadpool.
29441
29442 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29443
29444         * object.c (mono_string_is_interned_lookup): Fix interning of long
29445         strings. Fixes #54473.
29446
29447         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29448
29449         * icall.c: Revert the klass->refclass changes since they introduce
29450         regressions (bug #54518).
29451
29452 2004-02-18  Martin Baulig  <martin@ximian.com>
29453
29454         * class.c (mono_class_init): If we're a generic instance and don't
29455         come from a TypeBuilder, inflate our members here.
29456         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29457         (mono_class_create_generic): New public method.
29458         (mono_class_initialize_generic): Removed.
29459         (get_instantiation_name): Renamed to
29460         _mono_class_get_instantiation_name() and made it public.
29461
29462 2004-02-18  Martin Baulig  <martin@ximian.com>
29463
29464         * class.c (mono_class_inflate_generic_type): Clear the new
29465         instance's `nginst->klass' when inflating a generic instance.
29466         (mono_class_is_subclass_of): Added (basic) support for generic
29467         instances.
29468
29469 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29470
29471         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29472         MonoMempool to hold compiled native code.
29473
29474 2004-02-17  Martin Baulig  <martin@ximian.com>
29475
29476         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29477         `properties'.
29478
29479         * reflection.c (mono_reflection_generic_inst_initialize): Added
29480         `MonoArray *properties' argument.
29481
29482         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29483
29484 2004-02-17  Martin Baulig  <martin@ximian.com>
29485
29486         * icall.c (ves_icall_Type_GetFields): Renamed to
29487         ves_icall_Type_GetFields_internal() and added a
29488         `MonoReflectionType *rtype' argument; pass it to
29489         mono_field_get_object() to set the field's "reflected" type.
29490         (ves_icall_Type_GetConstructors): Likewise.
29491         (ves_icall_Type_GetEvents): Likewise.
29492         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29493         argument; pass it to mono_method_get_object() to set the method's
29494         "reflected" type.       
29495
29496 2004-02-17  Martin Baulig  <martin@ximian.com>
29497
29498         * class.h (MonoDynamicGenericInst): New type.
29499         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29500
29501         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29502         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29503         (ves_icall_MonoGenericInst_GetFields): New interncall.
29504
29505         * class.c (mono_class_from_generic): Don't call
29506         mono_class_initialize_generic() if this is a dynamic instance;
29507         ie. it's being created from a TypeBuilder.
29508         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29509         `class->byval_arg.type'.
29510
29511         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29512         to `inflate_method' and made static.
29513         (mono_reflection_inflate_field): Removed.
29514         (mono_reflection_generic_inst_initialize): New public method.
29515
29516         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29517         `ctors' and `fields'; added `initialized'.
29518
29519 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29520
29521         * debug-helpers.c (mono_method_full_name): Fix output for empty
29522         namespaces.
29523
29524 2004-02-12  Martin Baulig  <martin@ximian.com>
29525
29526         * class.h (MonoClassField): Added `MonoType *generic_type'.
29527
29528         * reflection.c (mono_image_get_fieldref_token): Added support for
29529         instantiated generic types.
29530         (field_encode_inflated_field): Removed.
29531         (mono_image_get_inflated_field_token): Removed.
29532         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29533
29534         * reflection.h (MonoReflectionInflatedField): Removed.
29535
29536 2004-02-12  Martin Baulig  <martin@ximian.com>
29537
29538         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29539         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29540
29541         * reflection.c (mono_image_get_methodspec_token): Take a
29542         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29543         (mono_image_create_token): Check whether we have a
29544         `method->signature->gen_method' and call
29545         mono_image_get_methodspec_token() if appropriate.
29546         (inflated_method_get_object): Removed.
29547         (mono_reflection_bind_generic_method_parameters): Return a
29548         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29549         (mono_reflection_inflate_method_or_ctor): Likewise.
29550
29551         * reflection.h (MonoReflectionInflatedMethod): Removed.
29552
29553 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29554
29555         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29556         for custom valuetype marshalling.
29557
29558         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29559
29560 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29561
29562         * icall.c: fixed WSAGetLastError_internal name.
29563
29564 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29565
29566         * threads.c (mono_thread_attach): Allow this to be called multiple
29567         times for a thread.
29568         
29569         * threads.c (build_wait_tids): Do not wait for ourselves.
29570
29571         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29572         appdomain list is empty.
29573
29574         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29575         memory returned by mono_string_builder_to_utf16, since it points into
29576         managed memory. Thanks to Bernie Solomon for noticing this.
29577
29578         * icall.c: Add AppDomainSetup icalls.
29579
29580         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29581
29582         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29583         types.
29584
29585         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29586         custom attributes to the method_aux struct. Also fix array indexes etc.
29587
29588         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29589         
29590 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29591
29592         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29593         (both static and runtime) and reduce startup time.
29594
29595 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29596
29597         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29598         AsAny marshalling conversion instead of crashing.
29599
29600         * marshal.c: Fix warnings.
29601
29602 2004-02-09  Martin Baulig  <martin@ximian.com>
29603
29604         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29605
29606         * reflection.h (MonoReflectionInflatedMethod): Removed the
29607         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29608
29609         * reflection.c (method_encode_methodspec): Removed the `method'
29610         argument; we get it from `gmethod->declaring'.
29611         (inflated_method_get_object): Removed the `declaring' argument.
29612
29613 2004-02-09  Martin Baulig  <martin@ximian.com>
29614
29615         * class.h (MonoGenericMethod): New type.
29616         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29617         `generic_method'.
29618
29619         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29620         a `MonoGenericMethod *gen_method' one.
29621
29622         * class.c (mono_class_inflate_generic_type): Take an additional
29623         `MonoGenericMethod * argument.  This is only non-NULL if we're
29624         inflating types for a generic method.   
29625         (mono_class_inflate_generic_signature): Renamed to
29626         inflate_generic_signature() and made static; take a
29627         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29628         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29629         instead of a `MonoGenericInst *' one.
29630         (mono_class_inflate_generic_method): Likewise.
29631
29632         * reflection.c (encode_generic_method_sig): Take a
29633         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29634         (method_encode_methodspec): Likewise.
29635         (inflated_method_get_object): Likewise. 
29636
29637         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29638         field with a `MonoGenericMethod *gmethod' one.  
29639
29640 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29641
29642         * class.h (mono_class_has_parent): add parens to expansion
29643         so you can ! this.
29644
29645 2004-02-08  Martin Baulig  <martin@ximian.com>
29646
29647         * image.h (MonoImage): Removed `generics_cache'.
29648
29649         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29650         instead of a `MonoType *' argument; removed the `inflate_methods'
29651         argument.  Don't inflate methods here.
29652
29653         * loader.c (find_method): If it's a generic instance, call
29654         mono_class_init() on the `sclass->generic_inst->generic_type'.
29655
29656         * metadata.c (mono_type_size): Make this work on uninitialized
29657         generic instances; call it on the `ginst->generic_type's class.
29658
29659         * reflection.c (mono_reflection_bind_generic_parameters): Call
29660         mono_class_from_generic() to create the `ginst->klass'.
29661
29662 2004-02-08  Martin Baulig  <martin@ximian.com>
29663
29664         * class.h (MonoClass): Changed type of `generic_inst' from
29665         `MonoType *' to `MonoGenericInst *'.
29666
29667 2004-02-08  Martin Baulig  <martin@ximian.com>
29668
29669         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29670         mono_type_get_object(), this is now creating a `MonoGenericInst'
29671         for MONO_TYPE_GENERICINST.
29672         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29673         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29674
29675         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29676         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29677         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29678         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29679         and reflected type.
29680
29681         * reflection.h (MonoReflectionInflatedMethod): Removed
29682         `declaring_type' and `reflected_type'.
29683
29684 2004-02-08  Martin Baulig  <martin@ximian.com>
29685
29686         * class.h (MonoGenericInst): Added `MonoType *parent' and
29687         `MonoType **ifaces'.
29688
29689         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29690         `parent' and `interfaces'.
29691
29692         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29693         `MonoType *' argument and return a `MonoType *'.
29694
29695         * icall.c
29696         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29697         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29698
29699 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29700
29701         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29702         valuetype marshalling.
29703
29704 2004-02-06  Martin Baulig  <martin@ximian.com>
29705
29706         * class.c
29707         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29708         (my_mono_class_from_generic_parameter): Likewise.
29709
29710 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29711
29712         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29713         contents of the symbol files lazily.
29714
29715         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29716
29717         * threads.h threads.c icall.c: New icalls for getting and setting the
29718         threads name.
29719
29720 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29721
29722         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29723         Raise an exception when the domain is not found.
29724
29725 2004-02-03  Martin Baulig  <martin@ximian.com>
29726
29727         * reflection.c (mono_image_get_methodspec_token): Use the
29728         uninflated signature; fixes gen-33.
29729
29730 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29731
29732         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29733         the finalizer code can use thread functionality.
29734
29735         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29736         the finalizer thread.
29737
29738         * threads.c: Make some functions more robust.
29739
29740         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29741
29742         * metadata.h: Add new marshalling conventions.
29743
29744         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29745         stringbuilder marshalling. Fixes #53700.
29746
29747         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29748
29749         * reflection.c (mono_image_get_type_info): Save declarative security
29750         info.
29751
29752         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29753         unmanaged fields as well.
29754
29755         * appdomain.c: Bump corlib version.
29756
29757 2004-02-01  Martin Baulig  <martin@ximian.com>
29758
29759         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29760         method type arguments.  
29761
29762 2004-01-30  Duncan Mak  <duncan@ximian.com>
29763
29764         * marshal.h: Add prototype for
29765         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29766         and
29767         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29768         fix the build.
29769
29770 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29771
29772         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29773         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29774
29775 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29776
29777         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29778         custom marshalling of valuetypes.
29779
29780         * marshal.c: Fix some warnings.
29781
29782 2004-01-29  Martin Baulig  <martin@ximian.com>
29783
29784         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29785         for generic method parameters.
29786
29787         * reflection.c (method_encode_methodspec): Write the uninflated
29788         signature into the methodspec table.
29789         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29790         is always the uninflated method.
29791         (reflection_methodbuilder_to_mono_method): Copy the generic
29792         parameters from the MethodBuilder into `header->gen_params'.
29793
29794 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29795
29796         * class.c (mono_class_from_generic_parameter): Fix warning.
29797
29798 2004-01-27  Martin Baulig  <martin@ximian.com>
29799
29800         * class.c (mono_class_from_generic_parameter): Don't create
29801         `klass->methods' here.  
29802
29803 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29804
29805         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29806         extension since it does not work with libraries named lib<FOO>.dll.so.
29807
29808 2004-01-25  Martin Baulig  <martin@ximian.com>
29809
29810         * class.c (mono_class_inflate_generic_type): Added support for
29811         MONO_TYPE_GENERICINST.
29812
29813         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29814         inflate methods on open constructed types.      
29815
29816 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29817
29818         * object.c: fire ProcessExit event in the root AppDomain after running
29819         Main. Fixes bug #53299.
29820
29821 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29822
29823         * socket-io.c: include the new socket-wrappers.h header.
29824         Use the wrappers instead of the unix socket functions to make the code
29825         more clear.
29826
29827 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29828
29829         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29830
29831         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29832         Fixes #22532.
29833
29834 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29835
29836         * reflection.c (mono_image_create_pefile): Handle the case when the
29837         entry point is not a MethodBuilder.
29838
29839         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29840         field to ReflectionMethod since it is not allways a builder.
29841
29842         * reflection.c (type_get_fully_qualified_name): New helper function to
29843         return the fully qualified name of a type.
29844
29845         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29846         type name for custom marshallers.
29847
29848         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29849
29850         * class.c (mono_class_setup_vtable): If a parent class already 
29851         implements an interface, use the implementing methods from that class.
29852         Fixes #53148.
29853
29854 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29855
29856         * threadpool.c: just return instead of ExitThread to allow for thread
29857         clean up earlier.
29858
29859 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29860
29861         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29862         when closing resource modules.
29863
29864         * reflection.c (mono_image_create_pefile): Handle the case when the
29865         entry point is not a MethodBuilder.
29866
29867         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29868         field to ReflectionMethod since it is not allways a builder.
29869
29870 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29871
29872         * marshal.c (mono_marshal_get_managed_wrapper): 
29873         mono_marshal_alloc takes native int so CONV_I
29874         the arg for 64bits.
29875
29876 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29877
29878         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29879         tokens in the cattr table. Fixes #53108.
29880
29881 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29882
29883         * loader.c: don't trim ".dll" before looking up in the config file.
29884         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29885
29886 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29887
29888         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29889         Return the module which contains the resource as well.
29890         (ves_icall_System_Reflection_Module_Close): New icall.
29891
29892         * appdomain.c: Bump corlib version number.
29893
29894         * image.c (mono_image_addref): New public function.
29895
29896         * assembly.c: Call mono_image_addref.
29897
29898         * reflection.c (mono_module_get_object): Increase reference count of 
29899         the image.
29900
29901         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29902         Fixes #22532.
29903
29904         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29905         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29906         proper exceptions on DllImport problems.
29907
29908 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29909
29910         * class.c, metadata.c: eliminate CSIZE macro.
29911
29912 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29913
29914         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29915         * object.h: Added async_callback field in MonoAsyncResult.
29916         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29917         * verify.c: Added async_callback in MonoAsyncResult layout.
29918
29919 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29920
29921         * reflection.c (mono_reflection_get_custom_attrs): Add support
29922         for Modules.
29923
29924 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29925
29926         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29927         marshalling.
29928         (mono_marshal_method_from_wrapper): Add null pointer check.
29929
29930 2004-01-16  Martin Baulig  <martin@ximian.com>
29931
29932         * debug-mono-symfile.h: Set version number to 36 and reflect
29933         latest symbol writer changes.
29934
29935 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29936
29937         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29938         multi-dimensional arrays.
29939         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29940         (mono_class_from_mono_type): Use bounded_array_class_get.
29941         
29942         * class.c (mono_bounded_array_class_get): New function which takes
29943         a 'bounded' bool argument to distinguish vectors from one dimensional
29944         arrays.
29945
29946         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29947         bounded_array_class_get if the array has bounds.
29948
29949         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29950         Search modules loaded using AssemblyBuilder:AddModule as well.
29951
29952 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29953
29954         * appdomain.c: increased corlib version.
29955         * filewatcher.c: removed g_print.
29956         * icall.c:
29957         (get_property_info): only allocate what is actually requested.
29958         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29959
29960 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29961
29962         * Makefile.am: added filewatcher.[ch]
29963         * filewatcher.[ch]: FileSystemWatcher runtime support.
29964         * icall.c: added new FSW icalls.
29965
29966 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29967
29968         * string-icalls.c: fix stringbuilder regression as suggested by
29969         Iain McCoy <iain@mccoy.id.au>.
29970
29971 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29972
29973         * process.c (process_read_stringtable_block): Recognize '007f' as
29974         a language neutral stringtable block.
29975
29976 2004-01-12  Patrik Torstensson
29977
29978         * object.h (MonoStringBuilder) : Changed layout to support our
29979         new stringbuilder class.
29980         * marshal.c: Change marshalling to support the new layout of 
29981         string builder.
29982         * appdomain.c: increased version number because new layout of
29983         string builder.
29984
29985 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29986
29987         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29988         assembly name as an string instead of an AssemblyName, since it is
29989         easier to extract info from it.
29990
29991         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29992         the culture subdirectories too. Fixes #52231.
29993
29994 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29995
29996         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29997         It takes 2 new parameters with an optional name for the method to look
29998         for and case ignoring info.
29999
30000         * threadpool.c: removed unused variable.
30001
30002 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30003
30004         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
30005         It takes 2 new parameters with an optional name for the property to look
30006         for and case ignoring info.
30007         Fixes bug #52753.
30008
30009 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
30010
30011         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
30012         Fix #52451.
30013
30014 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30015
30016         * appdomain.c:
30017         * assembly.c: escape the uri before passing it to g_filename_from_uri.
30018         Fixes bug #52630.
30019
30020 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
30021
30022         * reflection.c: Add support for more than one unmanaged resource.
30023
30024         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
30025         in field->def_value, as done in all other cases.
30026
30027         * reflection.c (mono_reflection_get_custom_attrs): Add support for
30028         TypeBuilders.
30029
30030         * reflection.c (mono_reflection_create_runtime_class): Remove 
30031         errorneous assignment to klass->element_class, since it is already
30032         done in mono_reflection_setup_internal_class.
30033
30034 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30035
30036         * gc.c: added missing LeaveCriticalSection.
30037         * icall.c: indented a couple of lines.
30038         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
30039         if we call EndInvoke inside a callback. Fixes bug #52601.
30040
30041 2004-01-07  Martin Baulig  <martin@ximian.com>
30042
30043         * mono-debug-debugger.h
30044         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
30045
30046 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
30047
30048         * appdomain.c: Use messages in NotImplementedException.
30049
30050         * exception.c (mono_get_exception_not_implemented): Now this takes
30051         a message argument.
30052
30053         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
30054         exception instead of g_asserting an aborting when something is not
30055         implemented.
30056
30057         Add some inline docs.
30058
30059 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
30060
30061         * reflection.h: Update after changes to object layout.
30062
30063         * reflection.c: Implement saving of unmanaged aka win32 resources.
30064
30065         * appdomain.c: Bump version number.
30066
30067         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
30068         Handle missing domains gracefully.
30069
30070 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
30071
30072         * file-io.c : On Windows, there are much more invalid_path_chars.
30073
30074 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
30075
30076         * class.h, object.c: prepare for GetType () speedup.
30077
30078 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
30079
30080         * profiler.c: workaround for --profile null reference exception on
30081           cygwin. Patch by Patrik Torstensson.
30082
30083 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
30084
30085         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
30086         make work for unaligned access.
30087
30088 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
30089
30090         * class.c: small cleanup (class->fields [i] -> field).
30091         * image.c: check address of metadata is valid.
30092
30093 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
30094
30095         * assembly.h assembly.c (mono_assembly_loaded): New public function to
30096         search the list of loaded assemblies.
30097
30098         * reflection.c (mono_reflection_type_from_name): Use 
30099         mono_assembly_loaded instead of mono_image_loaded.
30100
30101         * reflection.c: Fix warnings.
30102
30103 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
30104
30105         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
30106         is dynamic. This is needed since an assembly can contain both dynamic and
30107         non-dynamic images.
30108
30109         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
30110         assembly->dynamic.
30111
30112         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
30113
30114         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
30115         to store modules loaded using AddModule.
30116
30117         * reflection.c (mono_image_fill_file_table): Generalize this so it works
30118         on Modules.
30119
30120         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
30121
30122         * reflection.c (mono_image_fill_export_table_from_module): New function to
30123         fill out the EXPORTEDTYPES table from a module.
30124
30125         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
30126         into a separate function. Also handle loaded non-dynamic modules.
30127
30128         * reflection.c (mono_image_basic_init): Fix memory allocation.
30129
30130         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30131
30132         * assembly.c (mono_assembly_load_references): Make this public.
30133
30134 2003-12-19  Martin Baulig  <martin@ximian.com>
30135
30136         * class.c (mono_class_initialize_generic): Made this static, take
30137         a `MonoGenericInst *' instead of a `MonoClass *'.
30138         (mono_class_from_generic): Call mono_class_initialize_generic()
30139         unless we're already initialized or being called from
30140         do_mono_metadata_parse_generic_inst().
30141
30142         * class.h (MonoGenericInst): Added `initialized' and
30143         `init_pending' flags.
30144
30145         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
30146         `mono_class_init (gklass)' or mono_class_initialize_generic()
30147         here; set `generic_inst->init_pending' while parsing the
30148         `type_argv'.
30149
30150 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
30151
30152         * locales.c: include string.h for memxxx prototypes
30153
30154 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
30155
30156         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
30157         constructor when accessing literal fields.
30158
30159 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
30160
30161         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30162
30163         * reflection.c (assembly_add_resource_manifest): New function to fill
30164         the MANIFESTRESOURCE table.
30165
30166         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
30167
30168         * reflection.h: Update to changes in class layout.
30169
30170         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
30171         Reenable call to mono_runtime_is_shutting_down ().
30172
30173         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
30174         determine if the runtime is shutting down.
30175
30176 2003-12-16  Jackson Harper <jackson@ximian.com>
30177
30178         * icall.c: comment out call to mono_runtime_is_shutting_down to
30179         fix build.
30180         
30181 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
30182
30183         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
30184         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
30185
30186 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
30187
30188         * reflection.c: move definition of swap_with_size
30189         to before its first call
30190
30191 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
30192
30193         * appdomain.c (mono_runtime_is_shutting_down): New public function.
30194
30195         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
30196         icall.
30197
30198         * object.c: Fix warnings.
30199
30200         * icall.c (ves_icall_Type_Get...): Only consider inherited static
30201         members if FlattenHierarchy is set.
30202
30203         * reflection.c (mono_image_add_decl_security): New function to emit
30204         declarative security.
30205
30206         * reflection.h reflection.c: Add support for declarative security.
30207
30208         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30209         
30210 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
30211
30212         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30213         
30214         * appdomain.c verify.c: Moved corlib version checking into its own
30215         function in appdomain.c since it needs to create vtables etc.
30216
30217 2003-12-13  Patrik Torstensson <p@rxc.se>
30218
30219         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
30220         instead of unwrapped server.
30221
30222 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
30223
30224         * verify.c (check_corlib): Fix field index.
30225
30226 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
30227
30228         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
30229         GetGacPath icall.
30230
30231 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
30232
30233         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
30234         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
30235         cope with sizeof(size_t) != sizeof(guint32).
30236
30237 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30238
30239         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
30240         in case of failure.
30241
30242 2003-12-10  Mark Crichton <crichton@gimp.org>
30243
30244         * icall.c: removed the GetNonZeroBytes.  We now handle this case
30245         in managed code.
30246
30247         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
30248
30249 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
30250
30251         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
30252         marked as deleted.
30253
30254 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
30255
30256         * verify.c (check_corlib): Handle the case when the version field is 
30257         initialized by a static constructor.
30258
30259 2003-12-08  Patrik Torstensson  <p@rxc.se>
30260
30261     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
30262
30263 2003-12-08  Martin Baulig  <martin@ximian.com>
30264
30265         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
30266         a MonoReflectionGenericParameter, also take the parameter index
30267         and name as arguments.
30268         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
30269         (ves_icall_MonoGenericParam_initialize): New interncall.
30270         (ves_icall_Type_make_byref_type): New interncall.
30271
30272         * reflection.h (MonoReflectionGenericParam): Derive from
30273         MonoReflectionType, not just from MonoObject.  Added `refobj' and
30274         `index' fields.
30275
30276         * reflection.c (mono_reflection_define_generic_parameter): Create
30277         and return a new MonoReflectionGenericParam; don't initialize the
30278         constraints here.
30279         (mono_reflection_initialize_generic_parameter): New public method;
30280         initializes the constraints and creates the `param->pklass'.
30281
30282 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
30283
30284         * reflection.h reflection.c: Use the new fields 'num_types', 
30285         'num_fields' and 'num_methods' to track the number of types etc.
30286
30287         * verify.c (check_corlib): Check corlib version number.
30288
30289 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
30290
30291         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
30292         function works on all methods.
30293
30294 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
30295
30296         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
30297         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
30298         the custom_type_info flag of the transparent proxy.
30299         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
30300         objects that supports IRemotingTypeInfo.
30301         * object.h: Added custom_type_info field in transparent proxy.
30302
30303 2003-12-06  Martin Baulig  <martin@ximian.com>
30304
30305         * class.c (mono_class_create_from_generic): Removed.
30306         (mono_class_from_generic): Check `ginst->klass' before doing
30307         anything else.  This is important to fully support "recursive"
30308         generic types.
30309
30310         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
30311         empty `generic_inst->klass' before doing anything else.
30312
30313 2003-12-06  Dick Porter  <dick@ximian.com>
30314
30315         * verify.c: 
30316         * object.h:
30317         * icall.c:
30318         * locales.c: Use C structs to access class fields.  Don't do a
30319         conversion between MonoString and UChar because both are
30320         platform-endian UTF-16.  Compare now takes startindex and count
30321         parameters.  Add a char overload for IndexOf.  Speed up the
30322         invariant string IndexOf.
30323
30324 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
30325
30326         * Makefile.am (monosn_LDADD): Fix parallel build.
30327
30328 2003-12-04  Martin Baulig  <martin@ximian.com>
30329
30330         * icall.c
30331         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30332         (ves_icall_Type_make_array_type): New interncall.       
30333
30334 2003-12-04  Martin Baulig  <martin@ximian.com>
30335
30336         * locales.c: also change it in the !HAVE_ICU case.
30337
30338 2003-12-04  Dick Porter  <dick@ximian.com>
30339
30340         * icall.c:
30341         * locales.c: construct_compareinfo is now in CompareInfo, not
30342         CultureInfo.
30343
30344 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
30345
30346         * image.c (mono_image_load_file_for_image): Cache loaded images in the
30347         image->files array.
30348
30349         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
30350         table as well.
30351
30352         * assembly.c (mono_assembly_load_references): Only load references
30353         once.
30354
30355         * class.c (mono_class_from_name): Avoid linear search of the 
30356         EXPORTEDTYPE table.
30357
30358         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
30359
30360 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
30361
30362         * image.h (MonoImage): Add 'field_cache' field.
30363
30364         * loader.c (mono_field_from_token): Cache field lookups.
30365         
30366         * reflection.c (mono_module_get_object): Fix name property.
30367
30368         * icall.c (ves_icall_get_enum_info): Update after changes to 
30369         mono_metadata_get_constant_index ().
30370
30371         * icall.c: Get rid of get_type_info icall, use a separate icall for
30372         each type property to avoid needless memory allocations. Fixes #51514.
30373
30374         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
30375         to avoid needless binary searches.
30376
30377         * class.c (class_compute_field_layout): Move the initialization of
30378         field->def_value to mono_class_vtable ().
30379
30380         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
30381         non-corlib types.
30382
30383         * object.c (mono_object_allocate): Make it inline.
30384
30385         * object.c (mono_object_allocate_spec): Make it inline.
30386         
30387 2003-12-02  Dick Porter  <dick@ximian.com>
30388
30389         * locales.c (create_NumberFormat): NumberFormatInfo construction.
30390         Patch by Mohammad DAMT (mdamt@cdl2000.com).
30391
30392 2003-12-01  Dick Porter  <dick@ximian.com>
30393
30394         * threads.c: Fix signature and call in CreateMutex and
30395         CreateEvent.
30396
30397 2003-12-01  Dick Porter  <dick@ximian.com>
30398
30399         * icall.c: 
30400         * locales.c: Implement string compares and searching
30401
30402         * object.h: Add extra Thread field
30403
30404 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30405
30406         * reflection.c (fixup_method): Add support for MonoCMethod.
30407
30408 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30409
30410         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30411
30412         * reflection.c (assembly_name_to_aname): Allow extra characters in
30413         assembly names. Fixes #51468.
30414
30415 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30416
30417         * exception.c (mono_exception_from_name_domain): New helper function.
30418
30419         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30420         exception object in the correct domain.
30421
30422         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30423         formatting + make a copy a the input data.
30424
30425         * loader.c (mono_get_method_from_token): Methods which contain
30426         native code do not have entries in the ImplMap.
30427
30428         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30429         Thanks to Gonzalo for spotting this.
30430         
30431         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30432         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30433
30434         * assembly.h (mono_assembly_load_from): Split the second part of 
30435         assembly loading into a new public function.
30436
30437         * exception.h (mono_get_exception_bad_image_format): New function.
30438
30439 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30440
30441         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30442         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30443         
30444         * icall.c: Add new icall for creating dynamic methods.
30445
30446         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30447
30448         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30449
30450         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30451         create a dynamic method.
30452
30453         * reflection.c (resolve_object): New helper function.
30454
30455         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30456         which manipulate it so they can also work on dynamic methods.
30457
30458         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30459         creating the MonoReflectionMethodAux structure if it is not needed.
30460         
30461         * reflection.h verify.c: Update after changes to object layout.
30462
30463         * reflection.c (method_builder_encode_signature): Fix compilation on
30464         gcc 2.95.x.
30465
30466 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30467
30468         * appdomain.h: Added support for context static fields. Added static_data
30469           field to MonoAppContext and renamed thread_static_fields to a more
30470           generic special_static_fields in MonoAppDomain, since it can now contain
30471           context static fields.
30472         * domain.c: Updated hashtable name.
30473         * object.c: Replaced field_is_thread_static() for a more generic
30474           field_is_special_static() which also checks for context static attribute.
30475           In mono_class_vtable(), added support for static context fields.
30476         * threads.c: Changed methods that manage thread static fields to more
30477           generic methods so they can be reused both for thread and context static
30478           data.
30479         * threads.h: Declared some new methods.
30480
30481 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30482
30483         * reflection.h: Update after changes to the managed types.
30484
30485         * reflection.c (encode_custom_modifiers): New helper function.
30486
30487         * reflection.c (method_encode_signature): Emit custom modifiers.
30488
30489         * reflection.c (field_encode_signature): Emit custom modifiers.
30490
30491 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30492
30493         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30494
30495         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30496         implementation.
30497
30498         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30499         icall.
30500
30501         * object.c (mono_field_get_value_object): New function.
30502
30503         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30504         specific.
30505
30506 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30507
30508         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30509         return a preallocated out-of-memory exception instance.
30510
30511         * object.c (out_of_memory): Use the new function.
30512
30513         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30514         flag is before the custom modifiers. Fixes #49802.
30515
30516 2003-11-16  Martin Baulig  <martin@ximian.com>
30517
30518         * class.c (mono_class_is_open_constructed_type): Implemented the
30519         MONO_TYPE_GENERICINST case.
30520
30521 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30522
30523         * assembly.c (mono_assembly_fill_assembly_name): New function to
30524         fill out the MonoAssemblyName structure.
30525         (mono_assembly_open): Use the new function.
30526
30527         * icall.c (fill_reflection_assembly_name): New helper function.
30528
30529         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30530         new function.
30531
30532         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30533
30534 2003-11-15  Martin Baulig  <martin@ximian.com>
30535
30536         * class.c (mono_class_is_open_constructed_type): New public
30537         function; checks whether a type is an open constructed type,
30538         ie. whether it still contains type parameters.
30539         (mono_class_inflate_generic_type): If we're a type parameter and
30540         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30541         type.
30542
30543         * class.h (MonoGenericInst): Added `guint32 is_open'.
30544
30545         * loader.c (method_from_methodspec): Check whether we're an open
30546         or closed constructed type and set `ginst->is_open'.
30547
30548         * reflection.c (mono_reflection_bind_generic_parameters): Check
30549         whether we're an open or closed constructed type and set
30550         `ginst->is_open'.
30551         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30552         from open constructed types.
30553
30554 2003-11-15  Martin Baulig  <martin@ximian.com>
30555
30556         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30557         a generic instance (instead of a generic type declaration) with
30558         unbound generic parameters, bind them to our actual types.
30559
30560 2003-11-14  Martin Baulig  <martin@ximian.com>
30561
30562         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30563
30564         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30565         an interface type, populate `res->interfaces' with instantiated
30566         versions of all the interfaces we inherit.
30567
30568 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30569
30570         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30571         when MONO_PATH is set but doesn't contain the install dir.
30572
30573 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30574
30575         * icall.c:
30576         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30577         it's also implemented in base classes. Fixes bug #50927.
30578
30579 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30580
30581         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30582         if this method is called from a finalizer. Fixes #50913.
30583
30584 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30585
30586         * threads.c: Implement VolatileRead/VolatileWrite
30587
30588         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30589
30590 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30591
30592         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30593         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30594         2.95.3.
30595
30596         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30597         from Peter Ross (pro@missioncriticalit.com).
30598         
30599 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30600
30601         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30602
30603 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30604
30605         * assembly.c (mono_assembly_load_references): Disable check because it
30606         triggers on older corlibs which lots of people have.
30607
30608 2003-11-12  Jackson Harper  <jackson@ximian.com>
30609
30610         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30611         load corlib.dll if mscorlib.dll is not found.
30612         * assembly.h: Remove corlib name define.
30613         * class.c:
30614         * domain.c:
30615         * image.c: Change corlib name to mscorlib.
30616         
30617 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30618
30619         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30620
30621 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30622
30623         * appdomain.h: Added loader_optimization here to sync with the C#
30624         code, and add disallow_binding_redirects field.
30625
30626 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30627
30628         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30629
30630         * reflection.c (mono_image_build_metadata): Fix crash on modules
30631         with no types.
30632
30633         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30634
30635         * icall.c (ves_icall_get_method_info): Return callingConvention as
30636         well.
30637
30638         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30639         namespaces from the EXPORTEDTYPE table as well.
30640
30641         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30642         from all modules inside the assembly.
30643         
30644 2003-11-11  Martin Baulig  <martin@ximian.com>
30645
30646         * reflection.c (mono_reflection_bind_generic_parameters): Make
30647         this work for interfaces.
30648
30649 2003-11-11  Martin Baulig  <martin@ximian.com>
30650
30651         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30652
30653 2003-11-11  Martin Baulig  <martin@ximian.com>
30654
30655         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30656         "MonoInflatedMethod" and "MonoInflatedCtor".
30657
30658 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30659
30660         * reflection.c (resolution_scope_from_image): Use the assembly table
30661         from the manifest module, since other modules don't have it.
30662
30663         * debug-helpers.c (mono_type_full_name): New helper function.
30664
30665         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30666
30667         * image.c (mono_image_load_file_for_image): New public function which
30668         is a replacement for the load_file_for_image in class.c.
30669
30670         * assembly.c (mono_assembly_load_module): A wrapper for the function
30671         above which does assembly association and reference loading too.
30672
30673         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30674
30675 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30676
30677         * appdomain.c: not all of the attributes for the full assembly name
30678         are required and the order doesn't matter. Fixes bug #50787.
30679
30680 2003-11-10  Dick Porter  <dick@ximian.com>
30681
30682         * locales.c: Use platform-endian UTF16
30683
30684 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30685
30686         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30687         
30688 2003-11-10  Martin Baulig  <martin@ximian.com>
30689
30690         * metadata.c
30691         (mono_metadata_load_generic_params): Make this actually work.
30692
30693         * reflection.c (mono_reflection_bind_generic_parameters): If our
30694         parent is a generic instance, pass all the `types' to it, no
30695         matter whether it has the same number of type parameters or not.
30696
30697 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30698
30699         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30700
30701         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30702         assignment code to this function so it gets called recursively for all
30703         modules.
30704
30705         * image.c (load_modules): Remove the assembly assignment since it is
30706         now done by mono_assembly_load_references.
30707         
30708         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30709         Add 'module' argument.
30710         (mono_module_get_types): New helper function.
30711         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30712
30713 2003-11-08  Martin Baulig  <martin@ximian.com>
30714
30715         * class.c (mono_class_inflate_generic_method): Interface method
30716         don't have a header.
30717
30718         * reflection.c (mono_image_get_methodspec_token): Take an
30719         additional `MonoGenericInst *' argument instead of reading it from
30720         the header; this is necessary to support interfaces.
30721         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30722         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30723         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30724         argument.
30725
30726         * reflection.h (MonoReflectionInflatedMethod): Added
30727         `MonoGenericInst *ginst'.
30728
30729 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30730
30731         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30732
30733 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30734
30735         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30736
30737 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30738
30739         * reflection.c 
30740         (reflection_methodbuilder_from_method_builder):
30741         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30742         initialize a ReflectionMethodBuilder structure.
30743         (mono_image_get_methodbuilder_token):
30744         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30745         tokens which point to types in another module inside the same assembly.
30746
30747         * reflection.c: Use the new helper functions.
30748         
30749         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30750
30751         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30752         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30753
30754         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30755         neccesary.
30756
30757         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30758         current module. Emit the manifest only for the main module.
30759
30760         * reflection.c (mono_image_create_token): Add assertion when a 
30761         memberref needs to be created.
30762
30763         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30764
30765         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30766         larger buffer for the custom attribute blob. Fixes #50637.
30767         
30768 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30769
30770         * threadpool.c: notify listener on async processing handles after
30771         invoking the async callback. Thanks to Zoltan.
30772
30773 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30774
30775         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30776         avoid code duplication.
30777
30778         * reflection.h (MonoDynamicImage): New type which is currently unused,
30779         but will be used through the ref.emit code in place of 
30780         MonoDynamicAssembly.
30781
30782         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30783         object layout.
30784
30785         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30786         a MonoDynamicImage instead of just a MonoImage.
30787         
30788         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30789         icalls to ModuleBuilder but keep their semantics, so they will work
30790         with moduleb->assemblyb. This will change later.
30791         
30792 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30793
30794         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30795         object layout.
30796
30797         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30798         main module, since it is now done by the managed code.
30799
30800 2003-11-03  Martin Baulig  <martin@ximian.com>
30801
30802         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30803         `ginst->klass' here.
30804         (method_encode_methodspec): Don't use the `ginst->generic_method's
30805         klass if it's a generic instance, use `ginst->klass' in this case.
30806
30807 2003-11-03  Martin Baulig  <martin@ximian.com>
30808
30809         * reflection.c (mono_image_get_generic_method_param_info):
30810         Removed, use mono_image_get_generic_param_info() instead.
30811         (mono_image_get_type_info): Write the GenericParam table before
30812         the Method table.  This is neccessary because in the GenericParam
30813         table, type parameters of the class (ie. '!0' etc.) must come
30814         before the ones from its generic methods (ie. '!!0' etc).
30815
30816 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30817
30818         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30819
30820 2003-11-02  Martin Baulig  <martin@ximian.com>
30821
30822         * reflection.c (create_generic_typespec): Take a
30823         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30824         the generic parameters from it.
30825
30826 2003-11-02  Martin Baulig  <martin@ximian.com>
30827
30828         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30829         instead of a `MonoClassField *' since we just need the type.
30830         (create_generic_typespec): New static function.  Creates a
30831         TypeSpec token for a generic type declaration.
30832         (mono_image_get_generic_field_token): New static function.
30833         (mono_image_create_token): If we're a FieldBuilder in a generic
30834         type declaration, call mono_image_get_generic_field_token() to get
30835         the token.
30836
30837 2003-11-02  Martin Baulig  <martin@ximian.com>
30838
30839         * reflection.h
30840         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30841         `MonoReflectionGenericInst *declaring_type' and
30842         `MonoReflectionGenericInst *reflected_type' fields.
30843
30844         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30845         `MonoReflectionGenericInst *declaring_type' and a
30846         `MonoReflectionGenericInst *reflected_type' argument instead of a
30847         single `MonoReflectionGenericInst *type' one.  Set
30848         `res->declaring_type' and `res->reflected_type' from them.
30849         (mono_reflection_inflate_field): Likewise.      
30850
30851 2003-11-02  Martin Baulig  <martin@ximian.com>
30852
30853         * class.c (mono_class_setup_vtable): Don't store generic methods
30854         in the vtable.  
30855
30856 2003-11-02  Martin Baulig  <martin@ximian.com>
30857
30858         * reflection.h (MonoReflectionGenericInst): Added
30859         `MonoReflectionType *declaring_type'.
30860
30861         * reflection.c (mono_reflection_bind_generic_parameters): Use
30862         `if (tb->parent)' instead of `klass->parent'.
30863
30864 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30865
30866         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30867         with an empty ASSEMBLY table.
30868
30869         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30870         variable in the inner and outer loops.
30871
30872 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30873
30874         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30875         argument.
30876
30877         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30878         
30879         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30880         icalls. Instead, do everything in managed code. This is needed since
30881         it is hard to restore the original domain etc. in unmanaged code in the
30882         presence of undeniable exceptions.
30883
30884         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30885         New icalls to push and pop appdomain refs.
30886
30887 2003-10-31  Martin Baulig  <martin@ximian.com>
30888
30889         * class.c (inflate_generic_type): Renamed to
30890         mono_class_inflate_generic_type() and made it public.
30891
30892         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30893         New interncall.
30894
30895         * loader.c (mono_field_from_memberref): Also set the retklass for
30896         typespecs.
30897
30898         * fielder.c (mono_image_get_inflated_field_token): New static
30899         method; creates a metadata token for an inflated field.
30900         (mono_image_create_token, fixup_method): Added support for
30901         "MonoInflatedField".
30902         (fieldbuilder_to_mono_class_field): New static function.
30903         (mono_reflection_inflate_field): New public function.
30904
30905         * reflection.h
30906         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30907         (MonoReflectionInflatedField): New typedef.     
30908
30909 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30910
30911         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30912         for Solaris and other platforms without s6_addr16
30913
30914 2003-10-30  Martin Baulig  <martin@ximian.com>
30915
30916         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30917         argument instead of two.
30918         (mono_class_inflate_generic_signature): Likewise.
30919         (inflate_generic_header): Likewise.
30920         (mono_class_inflate_generic_method): Likewise.  In addition, if
30921         `ginst->klass' is set, it becomes the new `method->klass'.
30922
30923         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30924         field.
30925
30926         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30927         first byte. [FIXME]
30928         (method_encode_methodspec): If we have generic parameters, create
30929         a MethodSpec instead of a MethodRef.
30930         (fixup_method): Added support for "MonoInflatedMethod" and
30931         "MonoInflatedCtor".
30932         (mono_image_create_token): Added support for "MonoInflatedMethod"
30933         and "MonoInflatedCtor".
30934         (inflated_method_get_object): New static function; returns a
30935         managed "System.Reflection.MonoInflatedMethod" object.
30936         (mono_reflection_bind_generic_method_parameters): Return a
30937         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30938         (mono_reflection_inflate_method_or_ctor): Likewise.
30939         (mono_image_get_generic_method_param_info): Initialize unused
30940         fields to zero.
30941         (mono_image_get_generic_param_info): Likewise.
30942
30943         * reflection.h (MonoReflectionInflatedMethod): New public
30944         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30945         "S.R.MonoInflatedCtor" classes.
30946
30947         * loader.c (method_from_memberref): If we're a TypeSpec and it
30948         resolves to a generic instance, inflate the method.
30949
30950 2003-10-28  Dick Porter  <dick@ximian.com>
30951
30952         * object.c (mono_runtime_run_main): Convert command-line arguments
30953         into utf8, falling back to the user's locale encoding to do so.
30954
30955 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30956
30957         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30958         at this time.
30959
30960         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30961
30962         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30963         up icalls at method definition time. Partially fixes #33569.
30964
30965 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30966
30967         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30968         marshalling of arrays. Fixes #50116.
30969
30970         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30971
30972         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30973         points to a vtable in the dying appdomain.
30974
30975         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30976         listeners into unmanaged code inside the lock.
30977
30978         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30979         domains and add some comments.
30980
30981 2003-10-25  Martin Baulig  <martin@ximian.com>
30982
30983         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30984
30985         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30986
30987         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30988         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30989         currently parsing.  Create the generic class and store it in
30990         `generic_inst->klass' before parsing the type arguments.  This is
30991         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30992         for an example.
30993         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30994         to support recursive typespec entries.
30995
30996         * class.c (mono_class_setup_parent): If our parent is a generic
30997         instance, we may get called before it has its name set.
30998         (mono_class_from_generic): Splitted into
30999         mono_class_create_from_generic() and mono_class_initialize_generic().
31000
31001 2003-10-25  Martin Baulig  <martin@ximian.com>
31002
31003         * icall.c (ves_icall_Type_BindGenericParameters): Return a
31004         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
31005         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
31006         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
31007
31008         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
31009         (create_typespec): Likewise.
31010         (mono_reflection_bind_generic_parameters): Return a
31011         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
31012         (mono_reflection_inflate_method_or_ctor): New public function.
31013
31014         * reflection.h (MonoReflectionGenericInst): New typedef.        
31015
31016 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
31017
31018         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
31019         inside the domain lock. Fixes #49993.
31020         
31021         * object.c (mono_class_vtable): When typed allocation is used, 
31022         allocate vtables in the GC heap instead of in the mempool, since the
31023         vtables contain GC descriptors which are used by the collector even
31024         after the domain owning the mempool is unloaded.
31025
31026         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
31027
31028         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
31029         reflect what it does. Also invalidate mempools instead of freeing
31030         them if a define is set.
31031
31032         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
31033         of the appdomain.
31034         
31035         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
31036         hold the finalizable objects in this domain.
31037
31038         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
31039         appdomain.
31040
31041         * appdomain.c (mono_domain_set): New function to set the current
31042         appdomain, but only if it is not being unloaded.
31043
31044         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
31045         appdomain which is being unloaded.
31046         
31047         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
31048         unloading of the root appdomain.
31049
31050         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
31051         icall to execute a method in another appdomain. Intended as a 
31052         replacement for InternalSetDomain, which can confuse the code 
31053         generation in the JIT.
31054
31055         * appdomain.c (mono_domain_is_unloading): New function to determine
31056         whenever an appdomain is unloading.
31057
31058         * appdomain.c (mono_domain_unload): New function to correctly unload
31059         an appdomain.
31060
31061         * assembly.c (mono_assembly_load_references): Check that an assembly
31062         does not references itself.
31063
31064         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
31065         domain manually, it asks the finalizer thread to do it, then waits for
31066         the result. Also added a timeout.
31067
31068         * icall.c: Register the new icalls.
31069
31070         * threads.h threads.c: Export the mono_gc_stop_world and 
31071         mono_gc_start_world functions.
31072         
31073         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
31074         function to fill out the mempool with 0x2a.
31075
31076 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
31077
31078         * reflection.h (MonoReflectionMethodAux): New structure to store
31079         information which is rarely used, thus is not in the MonoMethod
31080         structure.
31081
31082         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
31083         store the aux info.
31084
31085         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
31086         and marshalling info into the aux structure.
31087
31088         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
31089         from the aux structure.
31090
31091         * loader.c (mono_method_get_param_names): Retrieve the param names from
31092         the aux structure.
31093         
31094 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
31095
31096         * exception.h exception.c: Add AppDomainUnloadedException && fix 
31097         warning.
31098
31099 2003-10-21  Dick Porter  <dick@ximian.com>
31100
31101         * socket-io.c
31102         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
31103         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
31104
31105 2003-10-21  Martin Baulig  <martin@ximian.com>
31106
31107         * reflection.c (mono_reflection_bind_generic_parameters):
31108         `klass->parent' is NULL for interfaces.
31109
31110 2003-10-21  Martin Baulig  <martin@ximian.com>
31111
31112         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31113
31114 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
31115
31116         * exception.c (mono_exception_from_name_msg): New helper function for
31117         creating exceptions and initializing their message field.
31118
31119         * exception.c: Simplify functions using the new helper.
31120
31121         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
31122         New function.
31123
31124         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
31125         mono_raise_exception, since otherwise gcc doesn't generate the function
31126         epilog for raise_exception, confusing the stack unwinding in the JIT.
31127         Fixes #45043.
31128
31129         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
31130         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
31131         Fixes #49499.
31132
31133 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31134
31135         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
31136         utf8.
31137
31138 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
31139
31140         * icall.c: Removed GetUninitializedObject method because
31141           AllocateUninitializedClassInstance does the same.
31142
31143 2003-10-18  Martin Baulig  <martin@ximian.com>
31144
31145         * class.c (inflate_generic_signature): Renamed to
31146         mono_class_inflate_generic_signature() and made it public.
31147         (my_mono_class_from_generic_parameter): New static function; if we
31148         don't already have the generic parameter's MonoClass, create a
31149         very simple one which is just used internally in the runtime and
31150         not passed back to managed code.
31151
31152         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
31153
31154         * metadata.h (MonoMethodSignature): Moved the
31155         `MonoGenericParam *gen_params' to the MonoMethodHeader.
31156         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
31157
31158         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
31159         ves_icall_MonoMethod_GetGenericArguments(); this is now an
31160         interncall on the MonoMethod class, not on MethodInfo.
31161         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
31162         calling mono_reflection_bind_generic_method_parameters() directly.
31163
31164         * loader.c (mono_method_get_signature): If this is a MethodSpec;
31165         return the already computed `method->signature'.
31166         (method_from_methodspec): New static function to load a method
31167         from a MethodSpec entry.
31168         (mono_get_method_from_token): Call the new method_from_methodspec()
31169         for MethodSpec tokens.  
31170         (mono_get_method_from_token): If we're a generic method, load the
31171         type parameters.
31172
31173         * reflection.c (mono_image_get_memberref_token): Allow
31174         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
31175         table.
31176         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
31177         (mono_image_create_token): First check whether it's a generic
31178         method (so we'd need to create a MethodSpec), then do the other
31179         two alternatives.
31180         (mono_reflection_bind_generic_method_parameters): Return a
31181         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
31182         called directly from the interncall.
31183
31184 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
31185
31186         * reflection.c (load_public_key): Move loading of the public key
31187         into managed code.
31188
31189         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
31190
31191         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
31192         fields.
31193
31194         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
31195         culture, hash_alg and public_key. Fixes #49555.
31196
31197 2003-10-17  Martin Baulig  <martin@ximian.com>
31198
31199         * class.h (MonoGenericInst): Moved this declaration here and added
31200         `MonoMethod *generic_method'.
31201
31202         * icall.c
31203         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
31204         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
31205
31206         * metadata.c (mono_metadata_type_equal): Two types of
31207         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
31208         index; ie. don't compare the address of the `MonoGenericParam'
31209         structure.
31210         (mono_metadata_load_generic_params): Removed the `MonoMethod
31211         *method' argument.
31212
31213         * metadata.h (MonoGenericInst): Moved declaration to class.h.
31214         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
31215
31216         * reflection.c (method_encode_signature): Encode the number of
31217         generic parameters.
31218         (encode_generic_method_sig): New static function.
31219         (method_encode_methodspec): New static function; creates an entry
31220         in the MethodSpec table for a generic method.
31221         (mono_image_get_methodspec_token): New static function.
31222         (mono_image_create_token): Call mono_image_get_methodspec_token()
31223         for generic methods.
31224         (mono_reflection_bind_generic_method_parameters): New public
31225         function.  Instantiates a generic method.
31226
31227 2003-10-16  Martin Baulig  <martin@ximian.com>
31228
31229         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
31230         *gen_params' here from MonoMethodHeader.
31231
31232         * metadata.c (mono_metadata_parse_method_signature): If we have
31233         generic parameters, initialize `method->gen_params' and then set
31234         the correct `type->data.generic_param' in all the parameters.
31235
31236 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
31237
31238         * threads.c (mono_threads_get_default_stacksize): New function to 
31239         return the default stacksize.
31240
31241         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
31242         termination of the finalizer thread, since the previous method had
31243         race conditions. Fixes #49628.
31244
31245         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
31246         as for the other managed threads.
31247
31248 2003-10-16  Martin Baulig  <martin@ximian.com>
31249
31250         * class.c (inflate_generic_signature): Copy `generic_param_count'
31251         and `gen_params'.
31252
31253         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
31254         New interncall.
31255
31256         * metadata.c (mono_metadata_parse_method_signature): Actually set
31257         the `method->generic_param_count' here.
31258         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
31259
31260 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
31261
31262         * object.h: Add a new field to TypedRef to simplify the implementation
31263         of the REFANY opcodes in the JIT.
31264
31265         * icall.c: Make use of the new field.
31266
31267         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
31268         dynamically.
31269
31270 2003-10-15  Martin Baulig  <martin@ximian.com>
31271
31272         * class.c (mono_class_from_gen_param): Renamed to
31273         mono_class_from_generic_parameter() and moved most of the
31274         functionality from mono_reflection_define_generic_parameter()
31275         here; ie. we create a "real" class here.
31276         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
31277         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
31278         previously been called.
31279
31280         * class.h (MonoGenericParam): Moved the declaration of this struct
31281         here from metadata.h and added `MonoMethod *method'.
31282
31283         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
31284         interncall.
31285
31286         * loader.c (mono_get_method_from_token): If we have any generic
31287         parameters, call mono_metadata_load_generic_params() to read them
31288         from the MONO_TABLE_GENERICPAR.
31289
31290         * metadata.c (mono_metadata_load_generic_params): Added
31291         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
31292
31293         * metadata.h (MonoMethodSignature): Replaced
31294         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
31295         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
31296
31297         * reflection.c (mono_reflection_define_generic_parameter): Moved
31298         most of the functionality into the new
31299         mono_class_from_generic_parameter(); set the `method' field if
31300         we're a method parameter.       
31301
31302 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
31303
31304         * marshal.c (emit_struct_conv): if native size is 0
31305         emit no code.
31306
31307 2003-10-14  Martin Baulig  <martin@ximian.com>
31308
31309         * icall.c: The generics API has changed in the spec since it was
31310         added to System.Type; these modifications make it match the spec
31311         again.
31312         (ves_icall_Type_GetGenericParameters): Renamed to
31313         `ves_icall_Type_GetGenericArguments'.
31314         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
31315         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
31316         `ves_icall_MonoType_get_HasGenericArguments'.
31317         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
31318         `ves_icall_MonoType_get_IsGenericParameter'.
31319         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
31320         this is no interncall anymore.
31321         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
31322         `ves_icall_TypeBuilder_get_IsGenericParameter'.
31323
31324 2003-10-14  Martin Baulig  <martin@ximian.com>
31325
31326         * reflection.c (mono_reflection_bind_generic_parameters): Also
31327         inflate generic methods if we're reading the class from IL.
31328
31329 2003-10-13  Martin Baulig  <martin@ximian.com>
31330
31331         * reflection.c (mono_reflection_define_generic_parameter): This
31332         method isn't called directly from the icall anymore; take a
31333         `MonoReflectionAssemblyBuilder *' so we can use this for type and
31334         method generic parameters.
31335         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
31336         (method_builder_encode_signature): Encode generic parameters.
31337         (mono_image_get_method_info): Write generic params to the
31338         MONO_TABLE_GENERICPARAM table.
31339
31340         * reflection.h (MonoReflectionMethodBuilder): Added
31341         `MonoArray *generic_params'.
31342
31343         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
31344
31345         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
31346         wrapper for mono_reflection_define_generic_parameter().
31347         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
31348
31349 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
31350
31351         * marshal.h: Add missing function to fix build.
31352
31353         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
31354         the SetLastError pinvoke attribute.
31355
31356         * marshal.c (mono_marshal_set_last_error): New helper function called
31357         by the generated code.
31358         
31359         * marshal.c (mono_mb_emit_branch): New helper function.
31360
31361         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
31362
31363         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31364         classes as parameters and return values of delegates. Fixes #29256. 
31365
31366 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
31367
31368         * locales.c: use gint32 in non HAVE_ICU case
31369
31370 2003-10-11  Martin Baulig  <martin@ximian.com>
31371
31372         * mono-debug.c (mono_debug_add_method): Added a workaround for
31373         bug #48591.
31374
31375 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
31376
31377         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
31378         delegates passed to native code must use the STDCALL calling 
31379         convention. Fixes #35987.
31380
31381 2003-10-10  Martin Baulig  <martin@ximian.com>
31382
31383         * class.c (inflate_generic_type): If we're inflating for a generic
31384         type instance (and not for a generic method), return
31385         MONO_TYPE_MVAR unchanged.
31386
31387 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31388
31389         * string-icalls.c: Join ignores null strings in the source array.
31390         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
31391         * threads.c: GetAvailableTheads is slightly more accurate.
31392
31393 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31394
31395         * threads.h threads.c : add mono_threads_set_default_stacksize
31396         and pass default to CreateThread calls.
31397
31398 2003-10-09  Dick Porter  <dick@ximian.com>
31399
31400         * icall.c:
31401         * locales.h:
31402         * locales.c: Internal calls for constructing CultureInfo and
31403         related objects from libicu (if its available.)
31404
31405 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31406
31407         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31408
31409 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31410
31411         * threadpool.c: added an argument to async_invoke_thread that is the
31412         item to process, pass the MonoAsyncResult to the thread start function
31413         when creating a new thread. This way we don't need to acquire any lock
31414         when we're creating a new thread. Readded a semaphore for faster
31415         response times (instead of that Sleep i added).
31416
31417 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31418
31419         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31420         get daylight change dates better on Windows, fix handling
31421         of platforms without tm_gmtoff.
31422
31423 2003-10-06  Martin Baulig  <martin@ximian.com>
31424
31425         * class.c (inflate_generic_method): Renamed to
31426         mono_class_inflate_generic_method() and made public.
31427         (mono_class_init): Don't inflate the generic methods here.
31428         (mono_class_from_generic): Added `gboolean inflate_methods'
31429         argument.  Inflate the methods here.
31430
31431         * loader.c (mono_method_get_param_names): Ignore instances of
31432         generic types for the moment.
31433
31434         * reflection.c (fixup_method): Added support for inflated methods.
31435         (mono_image_create_token): Use mono_image_get_methodref_token()
31436         for inflated methods.
31437         (mono_custom_attrs_from_param): Ignore instances of generic types
31438         for the moment.
31439         (mono_reflection_bind_generic_parameters): New public function.
31440         Moved all the functionality from
31441         ves_icall_Type_BindGenericParameters() here and added support for
31442         dynamic types.
31443         (mono_reflection_define_generic_parameter): Initialize
31444         `klass->methods' here.
31445
31446         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31447         functionality into mono_reflection_define_generic_parameter().
31448         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31449         TypeBuilder, return that TypeBuilder.
31450
31451 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31452
31453         * appdomain.c: removed mono_delegate_semaphore.
31454
31455         * threadpool.c:
31456         (mono_thread_pool_add): moved hash table creation inside and the thread 
31457         creation outside of the critical region.
31458         (mono_thread_pool_finish): removed obsolete code.
31459         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31460         continue or exit the thread depending on the queue.
31461
31462 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31463
31464         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31465         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31466         handle more bool marshalling options
31467
31468 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31469
31470         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31471         arrays of structs. Also add a more descriptive error message when
31472         a structure member is marshalled as LPArray.
31473
31474 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31475
31476         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31477         marshalling arrays of complex types. Fixes #29098. Also remove an
31478         usused and incomplete function.
31479
31480 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31481
31482         * gc.c: report heap_size - free_bytes as total memory allocated
31483         (bug#49362).
31484
31485 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31486
31487         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31488         fix timezone handling problems on Windows.
31489         
31490         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31491         asserts when the year is outside the range handled by ms the functions.
31492
31493         * class.c (setup_interface_offsets): If the class is an interface,
31494         fill out its interface_offsets slot.
31495
31496 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31497
31498         * threadpool.c: mark threadpool threads as background.
31499
31500 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31501
31502         * decimal.c - define DECINLINE to nothing if not using GCC
31503
31504 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31505
31506         * assembly.c: More refcount fixes.
31507
31508 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31509
31510         * string-icalls.c: if we're not trimming, return the same string.
31511         When not splitting, don't create a new string.
31512
31513 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31514
31515         * image.c:
31516         (mono_image_open): increment the ref_count inside the critical section.
31517
31518 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31519
31520         * image.c (mono_image_open): Fix reference counting bug.
31521
31522 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31523
31524         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31525         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31526         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31527         mono_lookup_pinvoke_call throws.        
31528
31529 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31530
31531         * reflection.c (mono_reflection_parse_type): Fix #49114.
31532
31533         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31534         temporary workaround for cygwin header problem.
31535
31536         * object.c (mono_object_isinst): Synchronize this with the code
31537         generated by the JIT for casts.
31538
31539 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31540
31541         * reflection.c (encode_type): Fix #38332.
31542
31543 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31544
31545         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31546         the original method from the wrapper method.
31547
31548 2003-09-25  Martin Baulig  <martin@ximian.com>
31549
31550         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31551         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31552         (ves_icall_Type_get_IsGenericInstance): New interncall.
31553
31554 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31555
31556         * object.c: fix cast warning in big endian code.
31557
31558 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31559
31560         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31561         
31562 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31563
31564         * assembly.c: don't call check_env from mono_assembly_load. It's
31565         already done once in mono_assemblies_init and may cause headaches when
31566         multiple threads are loading assemblies.
31567
31568 2003-09-19  Martin Baulig  <martin@ximian.com>
31569
31570         * reflection.c (mono_reflection_define_generic_parameter): Don't
31571         allocate `klass->methods', set `klass->flags' to
31572         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31573
31574 2003-09-18  Martin Baulig  <martin@ximian.com>
31575
31576         * class.c (mono_class_init): Don't create `class->methods' if it's
31577         already initialized.
31578
31579         * metadata.c (mono_metadata_load_generic_params): Make this
31580         actually work.
31581
31582         * reflection.c (mono_reflection_define_generic_parameter): Set
31583         parent class and interfaces from the constraints.
31584
31585         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31586         to keep this struct in sync with the declaration in TypeBuilder.cs.
31587
31588 2003-09-17  Martin Baulig  <martin@ximian.com>
31589
31590         * metadata.h (MonoType): Replaced the data's `int type_param'
31591         field with `MonoGenericParam *generic_param'.
31592         (MonoGenericParam): Added `MonoClass *klass'.
31593
31594         * class.c (mono_class_from_gen_param): Removed the
31595         `MonoImage *image' and `int type_num' arguments.
31596
31597         * metadata.c (mono_metadata_parse_generic_param): New static
31598         method; creates a MonoGenericParam which just contains the index.
31599         (do_mono_metadata_parse_type): Call
31600         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31601         MONO_TYPE_MVAR.
31602
31603         * reflection.c (mono_image_typedef_or_ref): Generic type
31604         parameters may be in the same assembly, but never use a typedef
31605         for them.
31606         (mono_reflection_define_generic_parameter): We're now creating a
31607         "real" class for the type parameter; it's now safe to call
31608         mono_class_from_mono_type() on the class'es type, it'll do the
31609         right thing.
31610
31611 2003-09-16  Martin Baulig  <martin@ximian.com>
31612
31613         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31614         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31615         the `symfile' data structure must be fully initialized before it
31616         gets added to the table.
31617
31618 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31619
31620         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31621
31622         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31623         class init trampolines.
31624
31625 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31626
31627         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31628         to the built-in profiler to turn off time and allocation profiling
31629         respectively.
31630
31631 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31632
31633         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31634         g_direct_equal.
31635
31636         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31637         in human readable form.
31638
31639 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31640
31641         * reflection.c icall.c: Fixed warnings.
31642
31643         * image.c (load_class_names): Use a temporary hash table to hold the
31644         namespaces in order to avoid doing many string comparisons.
31645
31646         * image.h: Fix typo.
31647
31648         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31649         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31650         since the NULL case is short-circuited inside g_hash_table_lookup, 
31651         leading to better performance.  
31652
31653         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31654         obtain the first custom attribute for a given index. Depends on the
31655         CustomAttribute table being sorted by the parent field.
31656
31657         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31658         for better performance.
31659
31660 2003-09-07  Martin Baulig  <martin@ximian.com>
31661
31662         * class.c (mono_class_init): If we're a generic instance, inflate
31663         all our methods instead of loading them from the image.
31664         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31665
31666 2003-09-07  Martin Baulig  <martin@ximian.com>
31667
31668         * mono-debug-debugger.c: Added support for constructors.
31669
31670 2003-09-06  Martin Baulig  <martin@ximian.com>
31671
31672         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31673         New interncall.
31674
31675         * reflection.c (mono_reflection_setup_generic_class): Call
31676         ensure_runtime_vtable() to create the vtable.
31677
31678 2003-09-05  Martin Baulig  <martin@ximian.com>
31679
31680         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31681         MONO_TYPE_MVAR.
31682
31683 2003-09-04  Martin Baulig  <martin@ximian.com>
31684
31685         * reflection.c (mono_reflection_define_generic_parameter): Generic
31686         parameters start with zero.
31687
31688 2003-09-04  Martin Baulig  <martin@ximian.com>
31689
31690         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31691
31692         * reflection.h (MonoReflectionGenericParam): New typedef.
31693         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31694         the generic parameters from the managed TypeBuilder.
31695
31696         * reflection.c (mono_reflection_define_generic_parameter): New function.
31697         (mono_reflection_create_runtime_class): Encode generic parameters.
31698         (mono_reflection_setup_generic_class): New function; this is
31699         called after adding adding all generic params to the TypeBuilder.
31700         (encode_type): Added MONO_TYPE_VAR.
31701
31702 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31703
31704         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31705         here from the JIT.
31706
31707         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31708         load hook.
31709
31710 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31711
31712         * reflection.h reflection.c class.h class.c: Delete duplicate 
31713         definition of mono_type_get_name () from reflection.c and export the
31714         one in class.c.
31715
31716         * class.c: Class loading fixes from Bernie Solomon 
31717         (bernard@ugsolutions.com).
31718
31719         * reflection.c: Endianness fixes from Bernie Solomon 
31720         (bernard@ugsolutions.com).
31721         
31722 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31723
31724         * assembly.h assembly.c: Define a file format version for AOT
31725         libraries.
31726         
31727         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31728
31729         * appdomain.h (MonoJitInfo): New field to determine whenever the
31730         code is domain neutral.
31731         
31732 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31733
31734         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31735
31736 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31737
31738         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31739         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31740         Avoid caching the result since strings must be domain specific. Fixes
31741         #48050.
31742
31743 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31744
31745         * marshal.c (mono_marshal_init): Make this callable multiple times
31746         since it is hard to find a correct place to call it.
31747
31748         * object.c (mono_runtime_class_init): Execute static constructors in
31749         the correct appdomain.
31750
31751         * image.c (build_guid_table): Handle the case when multiple images have
31752         the same GUID.
31753
31754 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31755
31756         * icall.c: added a couple of icalls for System.Web.
31757
31758 2003-08-28  Martin Baulig  <martin@ximian.com>
31759
31760         * icall.c (ves_icall_Type_BindGenericParameters): Use
31761         `klass->generic_inst' instead of `&klass->byval_arg' in the
31762         mono_type_get_object() call.  The returned type must be
31763         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31764
31765 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31766
31767         * NOTES: New file.
31768
31769         * object.c (mono_class_proxy_vtable): Make it thread safe.
31770
31771         * pedump.c: Fix warning.
31772
31773         * object.c appdomain.h: Get rid of metadata_section. 
31774         It is no longer needed and it was causing deadlocks with domain->lock.
31775
31776         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31777
31778 2003-08-26  Martin Baulig  <martin@ximian.com>
31779
31780         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31781
31782 2003-08-26  Martin Baulig  <martin@ximian.com>
31783
31784         * pedump.c (main): Call mono_metadata_init(),
31785         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31786         and mono_loader_init().
31787
31788 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31789
31790         * loader.h: Add missing include to fix build.
31791
31792         * image.h: mono_image_load_references is no more.
31793
31794         * assembly.c: Reworked assembly loading to make it really thread safe.
31795         After these changes, the assembly returned by mono_assembly_open is
31796         fully initialized, i.e. all its references assemblies are loaded.
31797
31798         * assembly.c (mono_image_load_references): Renamed to 
31799         mono_assembly_load_references, and made private, since clients no
31800         longer need to call it.
31801
31802         * class.c: Removed calls to mono_assembly_load_references, since it was
31803         a source of deadlocks.
31804
31805         * loader.h loader.c class.h class.c: Protect data structures using a 
31806         new lock, the loader lock.
31807
31808         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31809         GPtrArrays only when needed.
31810
31811         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31812         into empty structures by mcs. Fixes pinvoke7.cs.
31813         
31814         * domain.c (mono_init): Call a new initialization function.
31815
31816         * appdomain.c (mono_runtime_init): Call the new initializer function
31817         of the marshal module.
31818
31819         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31820         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31821
31822         * marshal.h marshal.c: Added locks around the wrapper caches to make
31823         this module thread safe.
31824
31825         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31826         this argument. Fixes pinvoke1.exe.
31827
31828 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31829
31830         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31831         enumeration of values. Removed fields to store remote call output values in
31832         MonoAsyncResult. Not needed any more.
31833         * object.c: Initialize call_type and async_result fields in mono_message_init.
31834         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31835         dispatching the message.
31836         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31837         async call to finish. To do it use a message with EndInvoke call type.
31838
31839 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31840
31841         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31842         determines whenever a method has marshalling info.
31843
31844 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31845
31846         * assembly.c: fix the build on windows.
31847
31848 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31849
31850         * object.cs: Fixed bug #47785.
31851
31852 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31853
31854         * string-icalls.c (StringReplace): If their are no occurances of
31855         the old string found return a reference to the supplied
31856         string. This saves some memory and matches MS behavoir.
31857         
31858 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31859
31860         * socket-io.c: fixed compilation for systems that define AF_INET6
31861         and don't define SOL_IP/SOL_IPV6.
31862
31863 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31864
31865         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31866         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31867
31868         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31869
31870         * domain.c: Make this module thread safe.
31871
31872         * domain.c (mono_init): Call new initialization function.
31873
31874         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31875         reference types too. Fixes #38812.
31876
31877         * image.c (mono_image_init): Fixed warnings.
31878
31879         * class.c (mono_class_from_typeref): Handle assembly load failure
31880         correctly.
31881
31882         * appdomain.c (add_assemblies_to_domain): Handle the case when
31883         the references of an assembly are not yet loaded.
31884
31885         * metadata.c image.c assembly.c: Moved initialization of global
31886         variables to a separate function called at startup since lazy 
31887         initialization of these variables is not thread safe.
31888         
31889         * image.c assembly.c: Made this module thread safe by adding locks in 
31890         the appropriate places.
31891
31892         * domain.c (mono_init): Call the new initialization functions of the
31893         three modules.
31894
31895 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31896
31897         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31898           make a direct call. It is proxy's work to make the call asynchronous.
31899           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31900           the return values.
31901         * object.cs: mono_method_call_message_new(): read AsyncResult and
31902           state object from parameters list, if this info is requested.
31903         * object.h: Added fields to store remote call output values in
31904           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31905
31906 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31907
31908         * object.h: add needed fields to MonoThread.
31909         * threads.c, threads.h: allow registering a function to cleanup data
31910         allocated per thread by the JIT.
31911
31912 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31913
31914         * loader.h: portability fix by Bernie Solomon
31915         * <bernard@ugsolutions.com>.
31916
31917 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31918
31919         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31920         return a MonoArray. This simplifies the code and also ensures that
31921         the cache allways contains an object reference as a value.
31922
31923         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31924         function.
31925
31926 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31927
31928         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31929         fixes a problem with byte ordering when getting the address family for
31930         a socket.
31931
31932 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31933
31934         * .cvsignore: Added monosn.
31935
31936         * reflection.h reflection.c loader.c: Added support for parameter
31937         marshalling to dynamically created types. Fixes #47295.
31938
31939 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31940
31941         * rand.c: remove useless warnings.
31942
31943 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31944
31945         * class.c: implemented ldtoken for methods and fieldrefs.
31946
31947 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31948
31949         * threadpool.c: when mono_async_invoke was called, no one took care of
31950         monitoring the queue. So if the method invoked took some time and we
31951         got new async invoke requests after 500 ms (the thread created waited
31952         that long in WaitForSingleObject), the new async invoke was not called
31953         until the previous one finished.
31954
31955         This is fixed now. Thanks to Totte for helping with it.
31956
31957 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31958
31959         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31960
31961 2003-08-11  Martin Baulig  <martin@ximian.com>
31962
31963         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31964
31965 2003-08-06  Martin Baulig  <martin@ximian.com>
31966
31967         * mono-debug-debugger.c: Added support for static fields,
31968         properties and methods.
31969
31970 2003-08-06  Martin Baulig  <martin@ximian.com>
31971
31972         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31973         make this work for applications with multiple application domains.
31974
31975 2003-08-04  Martin Baulig  <martin@ximian.com>
31976
31977         * mono-debug-debugger.c: Completely reworked the type support; the
31978         most important thing is that we're now just using one single
31979         `MonoType' instance per type.
31980
31981 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31982
31983         * mono-endian.h, mono-endian.c, icall.c: Added icall
31984         ves_icall_System_Double_AssertEndianity to assert double word endianity
31985         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31986
31987 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31988
31989         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31990         support, icalls and fixes.
31991
31992 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31993
31994         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31995         classes that are a punctuation character in .NET is not the same a
31996         g_unichar_ispunct.
31997
31998 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31999
32000         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
32001
32002 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
32003
32004         * icall.c: Add new MemCopy internalcall.
32005         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
32006         Simplified code; It is not necessary to handle all the cases here,
32007         as the C# code takes care of it.  Only handle the case of the name
32008         resource embedded into the assembly.
32009
32010         Changed signature to return the data pointer and the size of the
32011         data. 
32012
32013 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
32014
32015         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
32016         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
32017
32018 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32019
32020         * socket-io.c: ignore EINTR error in select.
32021
32022 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32023
32024         * class.h, class.c: removed unused subclasses field in MonoClass.
32025
32026 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32027
32028         * icall.c: improve fix of get_base_definition(). If the parent class
32029           doesn't have the mehod, look at the parent of the parent.
32030         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
32031           to check if a parameter is an in or out parameter
32032           (PARAM_ATTRIBUTE_IN is not set by default).
32033           mono_method_return_message_restore(): Use mono_class_value_size to
32034           get the size of a value type. mono_type_stack_size (parameterType)
32035           does not return the correct value if parameterType is byRef.
32036           mono_load_remote_field(), mono_load_remote_field_new(),
32037           mono_store_remote_field(), mono_store_remote_field_new():
32038           raise exception if the remote call returns an exception.
32039
32040 2003-07-28  Martin Baulig  <martin@ximian.com>
32041
32042         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
32043         method.  This is a wrapper around mono_runtime_invoke() which
32044         boxes the instance object if neccessary.
32045
32046 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32047
32048         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
32049         metadata.h, row-indexes.h, verify.c: first cut of generics support.
32050
32051 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32052
32053         * icall.c: disable mcs bug workaround.
32054
32055 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
32056
32057         * object.c (mono_runtime_class_init): Take the metadata_section
32058         mutex before obtaining the domain mutex.
32059
32060         * appdomain.h: Added definition of metadata_section mutex here. 
32061
32062         * object.c: define metadata_mutex here.
32063
32064 2003-07-24  Ravi Pratap  <ravi@ximian.com>
32065
32066         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
32067         fixed.
32068
32069 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
32070
32071         * reflection.c: Fix bug #46669
32072
32073 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32074
32075         * exception.c:
32076         * exception.h:
32077         * icall.c:
32078         * object.h: fill in the type name for TypeLoadException.
32079
32080 2003-07-23  Ravi Pratap  <ravi@ximian.com>
32081
32082         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
32083         relationship between TypeBuilders while compiling corlib) and bug
32084         45993 (Array types returned from the runtime while compiling
32085         corlib were from the loaded corlib).
32086
32087 2003-07-22  Martin Baulig  <martin@ximian.com>
32088
32089         * mono-debug-debugger.c: Reworked the type support a bit more;
32090         distinguish between types and classes.
32091
32092 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
32093
32094         * icall.c: add IsArrayImpl icall.
32095
32096 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
32097
32098         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
32099         initializing real_size only once. Also fix bug #46602.
32100
32101 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
32102
32103         * object.c: Renamed mono_metadata_section to metadata_section.
32104
32105 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
32106
32107         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
32108           empty array if the type is an array. Fixed.
32109           ves_icall_MonoMethod_get_base_definition: if the base method
32110           is abstract, get the MethodInfo from the list of methods of
32111           the class.
32112         * reflection.c: ParameterInfo.PositionImpl should be zero-based
32113           and it was 1-based. Fixed in mono_param_get_objects.
32114
32115 2003-07-20  Martin Baulig  <martin@ximian.com>
32116
32117         * mono-debug.h: Set version number to 31.
32118         (mono_debug_init): Added `MonoDomain *' argument.
32119
32120         * mono-debug-debugger.c: Reworked the type support; explicitly
32121         tell the debugger about builtin types; pass the `klass' address to
32122         the debugger.
32123
32124 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
32125
32126         * image.c: Allow new metadata tables to be loaded without a
32127         warning. Also update the warning message to give the new constant value.
32128                 
32129 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
32130
32131         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
32132         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
32133         array type representation changes.
32134
32135 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32136
32137         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
32138         on Environment.Exit () call.
32139
32140 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
32141
32142         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
32143         requires a matching corlib.
32144
32145 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32146
32147         * Changelog: My editor decided to add a CR to each line. Sorry about that.
32148           Committed again without the CRs.
32149         
32150 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32151
32152         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
32153           getting it from the "this" socket instance. Did not work
32154           if the socket is a subclass of Socket.
32155           Also fixed bug #35371.
32156
32157 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32158
32159         * metadata.c: fixed size for TypedByRef.
32160         * loader.c: when searching for a method, consider the vararg amrker.
32161         * unicode.c, decimal.c: constify some arrays.
32162
32163 2003-07-15  Dick Porter  <dick@ximian.com>
32164
32165         * socket-io.c: Fixed compilation for gcc < 3.2.
32166
32167         Fixed compilation for machines that don't have AF_INET6 (thanks to
32168         Bernie Solomon <bernard@ugsolutions.com> for that part.)
32169
32170         Fixed compile warnings.
32171         
32172         Fixed formatting and line endings.
32173
32174 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
32175
32176         * socket-io.h:
32177         * socket-io.c: Added IPv6 support.
32178
32179 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
32180
32181         * class.c (mono_class_is_assignable_from): New function to implement
32182         the is_assignable_from logic. Used by mono_object_isinst, 
32183         Type::IsAssignableFrom () and the interpreter.
32184
32185         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
32186         Object, even interfaces.
32187         
32188         * object.c (mono_object_isinst): Implement in terms of 
32189         is_assignable_from.
32190
32191         * icall.c (ves_icall_type_is_assignable_from): New icall.
32192
32193 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
32194
32195         * domain.c (foreach_domain): fix compiler warning.
32196
32197 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
32198
32199         * image.c (load_metadata_ptrs): use g_strndup because strndup is
32200         not available on all plattforms
32201
32202 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
32203
32204         * image.h image.c: Store the metadata version string in MonoImage.
32205         * icall.c: New icall to retrieve the image version.
32206         * reflection.c (create_dynamic_image): Fill in the image version field
32207         * reflection.c (build_compressed_metadata): Use the image version
32208         from the image structure.
32209
32210 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32211
32212         * appdomain.c: modified comment.
32213         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
32214         That will be its last iteration when mono_gc_cleanup is called from
32215         mono_runtime_cleanup and before the domain is unloaded.
32216
32217         Fixes bug #45962.
32218
32219 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
32220
32221         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
32222         attributes.
32223
32224 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32225
32226         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
32227         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
32228         Bernie Solomon <bernard@ugsolutions.com>.
32229
32230 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32231
32232         * object.c, object.h: provide mono_object_new_fast() for faster
32233         allocation in some special cases.
32234
32235 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
32236
32237         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
32238         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
32239
32240 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
32241
32242         * threadpool.c: fix leaks.
32243
32244 2003-07-01  Dick Porter  <dick@ximian.com>
32245
32246         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
32247         using MonoGHashTables.  Fixes threadpool bug posted to list.
32248
32249 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
32250
32251         * image.h, image.c: added support to load an assembly from a byte array.
32252         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
32253         assembly bundle support.
32254
32255 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
32256
32257         * threadpool.c (mono_thread_pool_add): keep a reference to the
32258         AsyncResult to prevent GC
32259
32260 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32261
32262         * class.c: leak fix.
32263
32264 2003-06-25  Dick Porter  <dick@ximian.com>
32265
32266         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
32267         for the async object, the WaitHandle object will close the handle.
32268         Fixes bug 45321.
32269
32270 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32271
32272         * class.c: in mono_array_class_get (), lookup from the hash with the
32273         same type we insert: this works around a bug in
32274         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
32275         lluis. The real fix will have to wait for after the release.
32276
32277 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32278
32279         * icall.c: fix memory leak when getting type members.
32280
32281 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32282
32283         * reflection.c: added more pubtoken special cases.
32284
32285 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
32286
32287         * class.c: handle field offset correctly when class size
32288         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
32289
32290 2003-06-20  Martin Baulig  <martin@ximian.com>
32291
32292         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
32293         *image' field.
32294
32295 2003-06-20  Martin Baulig  <martin@ximian.com>
32296
32297         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
32298
32299 2003-06-20  Martin Baulig  <martin@ximian.com>
32300
32301         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
32302         just distinguish between variables in registers and variables at
32303         an offset relative to a register.
32304
32305 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32306
32307         * icall.c: #ifdef out latest changes until mcs is fixed.
32308
32309 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32310
32311         * icall.c: return members in metadata order.
32312
32313 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32314
32315         * icall.c: avoid infinite loop in GetTimeZoneData.
32316
32317 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
32318
32319         * icall.c: added Marshal.Prelink/All icalls.
32320
32321 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32322
32323         * object.c, object.h: fix warnings and do some overflow checking
32324         when creating arrays.
32325
32326 2003-06-17  Dick Porter  <dick@ximian.com>
32327
32328         * file-io.h:
32329         * file-io.c: File attributes need to be tweaked slightly when
32330         passed from the managed to the w32 world.
32331
32332 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32333         * profiler.h profiler-private.h profiler.c: Rework last patch
32334         based on suggestion by Paolo.
32335         
32336 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32337
32338         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
32339         instruction level coverage data collection.
32340         * profiler.h profiler.c (: Added new callback function which can be
32341         used by the profiler to limit which functions should have coverage
32342         instrumentation.
32343         * profiler.c (mono_profiler_load): Call g_module_build_path to
32344         generate the file name of the profiler library.
32345
32346 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32347
32348         * profiler.c, profiler.h, profiler-private.h: added basic block 
32349         coverage profiling API.
32350
32351 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
32352
32353         * reflection.c (mono_reflection_create_runtime_class): Add support
32354         for events in dynamically generated code.
32355
32356         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
32357         not allocated.
32358
32359 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32360
32361         * icall.c: when getting timezone info, return reasonable values if we
32362         can't get the actual data.
32363
32364 2003-06-14  Dick Porter  <dick@ximian.com>
32365
32366         * threads.c (start_wrapper): Remove the reference to the thread
32367         object in the TLS data, so the thread object can be finalized.
32368         This won't be reached if the thread threw an uncaught exception,
32369         so those thread handles will stay referenced :-( (This is due to
32370         missing support for scanning thread-specific data in the Boehm GC
32371         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
32372
32373 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
32374
32375         * reflection.c: ensure streams and tables are first allocated with
32376         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
32377
32378 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32379
32380         * icall.c: fixed GetElementType for byrefs (bug# 44792).
32381
32382 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
32383
32384         * reflection.c (mono_reflection_create_runtime_class): Add support for
32385         properties to dynamically created classes.
32386         * reflection.c: Fix a few places where non-MonoObjects were inserted
32387         into the tokens hashtable.
32388
32389 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32390
32391         * object.c: some support to handle out of memory exceptions.
32392
32393 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32394
32395         * marshal.c (mono_marshal_get_native_wrapper): support reference
32396         return types
32397
32398 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32399
32400         * object.h, object.c: more portability stuff from Bernie Solomon.
32401         Unexport mono_object_allocate(). Added mono_object_unbox ().
32402         Set exitcode when an unhandled exception is thrown.
32403
32404 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32405
32406         * marshal.c (mono_marshal_get_native_wrapper): use custom
32407         marshaler for return types.
32408
32409 2003-06-10  Dick Porter  <dick@ximian.com>
32410
32411         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32412         ip_mreq is available
32413
32414 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32415
32416         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32417         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32418         by Bernie Solomon <bernard@ugsolutions.com>.
32419
32420 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32421
32422         * gc.c (mono_gc_init): Avoid error message on shutdown when
32423         GC_DONT_GC=1 is used.
32424
32425         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32426         New icall to return the GUID of a module.
32427
32428 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32429
32430         * class.c: ensure instance size always includes the parent's size
32431         even whem class size is set explicitly (fixes bug#44294).
32432
32433 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32434
32435         * profiler.h, profiler.c: made the simple profiler thread-safe,
32436         get more accurate timing info. Allow the loading of an
32437         externally-developed profiler module.
32438
32439 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32440
32441         * marshal.c (mono_marshal_get_native_wrapper): improved
32442         class/byref arguments.
32443         (mono_marshal_get_native_wrapper): better string marshaling support.
32444
32445 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32446
32447         * class.c: ensure .pack and .size are handled correctly and
32448         simplified layout of static fields.
32449
32450 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32451
32452         * appdomain.c
32453         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32454
32455         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32456         current directory (fix bug 44008)
32457
32458 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32459
32460         * marshal.c (mono_marshal_get_native_wrapper): started support for
32461         custom marshalers.
32462         (mono_delegate_to_ftnptr): consider marshalling specifications
32463
32464 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32465
32466         * reflection.c, reflection.h: emit custom marshal info.
32467
32468 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32469
32470         * object.c: free the GError.
32471         * icall.c: added CloseEvent_internal.
32472         * threads.[ch]:
32473         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32474         call.
32475
32476 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32477
32478         * loader.c (mono_method_get_signature): Add support for dynamic
32479         assemblies.
32480
32481 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32482
32483         * reflection.c: fixed bug #43905.
32484
32485 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32486
32487         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32488         handling TypedReference and ArgIterator.
32489         * loader.c, loader.h: added function to get signature at call site.
32490
32491 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32492
32493         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32494         data readonly. Buglets and warning fixes. Some MethodSpec support.
32495
32496 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32497
32498         * class.h, class.c, object.c: remove relative numbering support.
32499
32500 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32501
32502         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32503         free the string, until we get a chance to fix Gtk#
32504
32505 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32506
32507         * marshal.c: revert last patch.
32508
32509 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32510
32511         * icall.c: updates for new mono_class_vtable() not calling
32512         the type constructor anymore.
32513
32514 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32515
32516         * object.h, object.c: separate vtable creation from type
32517         initialization. Make running the .cctor thread safe.
32518
32519 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32520
32521         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32522
32523 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32524
32525         * loader.c (mono_get_method): consider calling convention
32526
32527 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32528
32529         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32530         to return the invisible global type for a module.
32531
32532         * reflection.c (mono_image_build_metadata): Emit global fields too.
32533
32534 2003-05-20  Peter Williams  <peterw@ximian.com>
32535
32536         * loader.c (mono_lookup_internal_call): Add a few newlines.
32537
32538 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32539
32540         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32541         literal strings.
32542
32543         * appdomain.c (set_domain_search_path): Recalculate search path when
32544         AppDomainSetup.PrivateBinPath changes.
32545
32546         * object.c (mono_class_compute_gc_descriptor): It turns out some
32547         parts of the class libs (like System.Thread) holds pointers to
32548         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32549         to treat native int a pointer type here.
32550         
32551 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32552
32553         * appdomain.h, domain.c: add hashtable for jump target resolution.
32554
32555 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32556
32557         * reflection.h reflection.c icall.c: Added new icalls 
32558         GetManifestResourceInfoInternal, GetModulesInternal and support
32559         infrastructure.
32560
32561 2003-05-16  Dick Porter  <dick@ximian.com>
32562
32563         * icall.c:
32564         * file-io.h:
32565         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32566
32567 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32568
32569         * object.c: mono_store_remote_field: little fix to previous patch.
32570
32571 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32572
32573         * class.c: add constructors to array classes.
32574         * icall.c: special case array construction for InternalInvoke (),
32575
32576 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32577
32578         * class.h class.c reflection.c object.c: Added support for field
32579         defaults in dynamically generated classes.
32580
32581 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32582
32583         * reflection.c: properly encode charset for ddlimport.
32584
32585 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32586
32587         * threads.c: allow compiling without GC.
32588
32589 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32590
32591         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32592         handling of thread static data.
32593
32594 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32595
32596         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32597
32598 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32599
32600         * class.c (mono_array_class_get): always set the serializable flags
32601         (mono_array_class_get): always set the SEALED attribute for array types
32602
32603 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32604
32605         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32606         attributes (fix for bug 42021).
32607
32608 2003-05-12  Dick Porter  <dick@ximian.com>
32609
32610         * gc.c: Don't run finalizers when the finalizer thread is
32611         finishing up, because the default domain has already been
32612         destroyed.
32613
32614 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32615
32616         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32617         value is null, we should throw an exception.   This is slightly
32618         different than the other conventions used for the constructor.
32619
32620 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32621
32622         * socket-io.c: fixed windows build.
32623
32624 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32625
32626         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32627
32628 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32629
32630         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32631         compilers.
32632
32633 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32634
32635         * class.c (mono_class_layout_fields): Add experimental GC aware
32636         auto layout facility. Requires class library changes to work correctly.
32637
32638         (mono_class_setup_vtable): Avoid overriding explicit interface
32639         method implementations. Fixes iface3.exe test.
32640
32641         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32642         object reference.
32643         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32644         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32645
32646         * metadata.h: Add new type classification macro which determines
32647         whenever the type holds an object reference.
32648
32649 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32650
32651         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32652
32653 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32654
32655         * gc.c (finalizer_thread): Work around a GC bug.
32656
32657 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32658
32659         * marshal.c (emit_struct_conv): allow unions
32660
32661         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32662
32663 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32664
32665         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32666
32667 2003-05-06  Martin Baulig  <martin@ximian.com>
32668
32669         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32670
32671 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32672
32673         * socket-io.c:
32674         (Select_internal): allow NULLs, don't create arrays if not needed.
32675         Coupled with Socket.cs changes.
32676
32677         * threadpool.c:
32678         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32679         register a finalizer for it that will close the semaphore handle. This
32680         fixes the leak and make Lupus' test run with > 4080 loops.
32681
32682 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32683
32684         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32685         Jerome Laban (bug #42287)
32686
32687 2003-05-02  Martin Baulig  <martin@ximian.com>
32688
32689         * debug-mono-symfile.h
32690         (MonoSymbolFile): Moved declaration into mono-debug.h.
32691         (MonoDebugMethodJitInfo): Likewise.
32692         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32693         argument.
32694         (_mono_debug_address_from_il_offset): Take a
32695         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32696
32697         * mono-debug.h
32698         (MonoDebugDomainData): New struct.
32699         (mono_debug_get_domain_data): New function.
32700         (mono_debug_add_method): Take an additional `MonoDomain *'
32701         argument.
32702         (mono_debug_source_location_from_address): Likewise.
32703         (mono_debug_il_offset_from_address): Likewise.
32704         (mono_debug_address_from_il_offset): Likewise.
32705
32706 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32707
32708         * reflection.c: one more check for null type in custom attrs.
32709
32710 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32711
32712         * reflection.c: avoid warning (comparison is always false due to limited
32713         range of data type).
32714
32715 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32716
32717         * icall.c: throw an exception in Type.GetField if the argument 'name'
32718         is NULL.
32719
32720 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32721
32722         * reflection.c: fixed handling of enums in named arguments to custom
32723         attributes (bug #42123).
32724
32725 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32726
32727         * reflection.c: use the right array element type and handle
32728         a null for a Type argument, too.
32729
32730 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32731
32732         * reflection.c: handle arrays as arguments to custom attributes.
32733
32734 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32735
32736         * reflection.c: handle a string value in a custom attr
32737         ctor that takes an object.
32738
32739 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32740
32741         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32742         (fix bug #42063)
32743
32744 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32745
32746         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32747
32748 2003-04-27  Martin Baulig  <martin@ximian.com>
32749
32750         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32751         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32752         MONO_DEBUGGER_EVENT_BREAKPOINT.
32753         (mono_breakpoint_trampoline_code): Removed.
32754         (mono_debugger_event_handler): The last argument is now a
32755         `guint32'.
32756         (mono_debugger_insert_breakpoint_full): Removed the
32757         `use_trampoline' argument.
32758         (mono_debugger_method_has_breakpoint): Likewise.
32759         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32760         mono_debugger_breakpoint_callback(); take the method and
32761         breakpoint number as arguments.
32762
32763 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32764
32765         * metadata.c: fix off by one when loading parameters attributes.
32766
32767 2003-04-24  Martin Baulig  <martin@ximian.com>
32768
32769         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32770
32771 2003-04-24  Martin Baulig  <martin@ximian.com>
32772
32773         * mono-debug-debugger.c: Moved all code which interacts with the
32774         Mono Debugger here.
32775
32776         * debug-mono-symfile.c: This code now just deals with the symbol
32777         file itself, the debugger code is now in mono-debug-debugger.c.
32778
32779 2003-04-23  Martin Baulig  <martin@ximian.com>
32780
32781         * mono-debug.c (mono_debug_source_location_from_il_offset):
32782         New method; like mono_debug_source_location_from_address(), but
32783         takes an IL offset instead of a machine address.
32784
32785 2003-04-23  Martin Baulig  <martin@ximian.com>
32786
32787         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32788         `line' field; this is now computed by the debugger.
32789
32790 2003-04-23  Martin Baulig  <martin@ximian.com>
32791
32792         * mono-debug.[ch]: New files.  This is the new debugging interface.
32793
32794         * mono-debug-debugger.[ch]: New files.  Moved all code which
32795         interacts with the Mono Debugger here.
32796
32797 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32798
32799         * domain.c (mono_init): initialize mono_defaults.monitor_class
32800
32801 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32802
32803         * reflection.c (method_encode_code): Add a spicy exception to help
32804         future compiler authors.
32805
32806 2003-04-21  Martin Baulig  <martin@ximian.com>
32807
32808         * icall.c
32809         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32810         Make this work with relative pathnames; g_filename_to_uri() needs
32811         an absolute filename.
32812
32813 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32814
32815         * icall.c: Track name changes in Object and ValueType.
32816
32817 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32818
32819         * metadata.c (mono_type_stack_size): size should be a multiple of
32820         sizeof (gpointer)
32821
32822 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32823
32824         * gc.c:
32825         (internal_domain_finalize): moved into mono_domain_finalize. No need
32826         to create another thread because the finalizers will be run in the
32827         finalizer thread.
32828         
32829         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32830         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32831         to be run (MS does this too).
32832
32833 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32834
32835         * object.c (mono_class_compute_gc_descriptor): Update comment.
32836
32837         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32838
32839         * image.h: Add synchronized wrapper cache.
32840
32841         * image.c (do_mono_image_open): Initialize cache.
32842
32843         * reflection.c (create_dynamic_mono_image): Initialize cache.
32844
32845 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32846
32847         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32848         ves_icall_System_Buffer_ByteLengthInternal.
32849
32850 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32851
32852         * reflection.c: setup klass->nested_in earlier. Allow
32853         a dash in the assembly name.
32854
32855 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32856
32857         * metadata.c (mono_type_to_unmanaged): dont access
32858         type->data.klass for MONO_TYPE_OBJECT
32859         (mono_type_to_unmanaged): consider System.Delegate class
32860
32861 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32862
32863         * class.c: just setup supertypes in the proper place instead of
32864         initializing the full element class for arrays.
32865
32866 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32867
32868         * class.c: ensure the element class of arrays is initialized.
32869         Setup the supertype info for array classes, too.
32870
32871 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32872
32873         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32874
32875 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32876
32877         * Makefile.am: re-added -m option when running cygpath. This way,
32878         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32879         separator.
32880         * mono-config.c: same codepath for locating mono config file for WIN32
32881         and the rest.
32882         * assembly.c: if mono_assembly_setrootdir is called, don't override
32883         the value set.
32884
32885 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32886
32887         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32888         MONO_ASSEMBLIES variable.
32889
32890 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32891
32892         * icall.c: added Assembly::GetNamespaces() icall.
32893
32894 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32895
32896         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32897
32898 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32899
32900         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32901         * object.c: fixed bug in the construction of vtable for proxies
32902
32903 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32904
32905         * object.c (mono_array_new): Mark mono_array_new as an icall.
32906
32907 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32908
32909         * class.c: fixed test for public method when overriding interfaces.
32910         Closes bug #40970.
32911
32912 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32913
32914         * appdomain.h, domain.c: added mono_domain_foreach() to
32915         be able to access the currently loaded appdomains.
32916         * object.c: make string interning work across sppdomains.
32917         Mark some functions for use as icalls.
32918
32919 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32920
32921         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32922
32923         * reflection.h reflection.c: Allocate long living data using 
32924         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32925
32926         * reflection.c: Double the allocation size in streams instead of
32927         increasing it, to prevent unneccesary copying on large assemblies.
32928         
32929         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32930         creation if the assembly does not have the Run flag set.
32931
32932 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32933
32934         * class.h: avoid the C++ keywords in header files (Jerome Laban
32935         spotted and fixed this).
32936
32937 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32938
32939         * object.c:
32940         (mono_unhandled_exception): fill in the arguments for the
32941         UnhandledException event. Only trigger that event for the default
32942         domain (as MS does).
32943
32944 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32945
32946         * object.c: Improve typed allocation stuff based on suggestions from
32947         Paolo. Also turn it on if the GC library supports it.
32948
32949 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32950
32951         * object.c object.h class.h: Added experimental typed allocation
32952         facility using the interfaces in gc_gcj.h.
32953
32954         * os/gc_wrapper.h: Added new include files.
32955         
32956 2003-04-03  Martin Baulig  <martin@ximian.com>
32957
32958         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32959         which is not yet enabled by default.
32960
32961         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32962         functions.
32963         (mono_gc_lock, mono_gc_unlock): New static functions.
32964
32965         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32966         functions; stop/start the world for the garbage collector.  This
32967         is using the windows API; we need to complete the SuspendThread()/
32968         ResumeThread() implementation in the io-layer to make this work on Unix.
32969         (mono_gc_push_all_stacks): New public function; tells the garbage
32970         collector about the stack pointers from all managed threads.
32971
32972 2003-04-03  Martin Baulig  <martin@ximian.com>
32973
32974         * object.h (MonoThread): Added `gpointer stack_ptr'.
32975
32976         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32977
32978 2003-04-03  Martin Baulig  <martin@ximian.com>
32979
32980         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32981
32982 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32983
32984         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32985         field.last.
32986
32987 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32988
32989         * loader.c (mono_lookup_internal_call): Report the corlib that is
32990         out of sync.
32991
32992 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32993
32994         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32995         System.DBNull (it's class not valuetype).
32996
32997 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32998
32999         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
33000         if the array method was already assigned a token (fixes bug#40646).
33001
33002 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
33003
33004         * reflection.c (mono_reflection_get_type): Attempt type resolve even
33005         if no assembly is given.
33006
33007 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
33008
33009         * metadata.h: Added the new tables.
33010
33011         * row-indexes.h: Added definitions for new tables.
33012
33013         * metadata.c: Add schemas for new tables, and add support for
33014         computing the sizes of them.
33015
33016         * class.c: Update for handling the new type cases.
33017
33018 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
33019
33020         * metadata.h (MONO_TYPE_IS_VOID): new macro
33021
33022 2003-03-31  Martin Baulig  <martin@ximian.com>
33023
33024         * threads.h (MonoThreadCallbacks): Added `thread_created'.
33025
33026         * threads.c (mono_thread_new_init): Call `thread_created' in the
33027         mono_thread_callbacks.
33028
33029 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
33030
33031         * loader.h: added marshalbyrefobject_class to mono_defaults
33032         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
33033         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
33034           generation of output parameters.
33035           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
33036         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
33037           contextbound and the target object belongs to the context of the caller.
33038         * object.h: added context and unwrapped_server variables in MonoRealProxy.
33039         * object.c: Implemented support for interfaces and abstract classes
33040           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
33041           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
33042
33043 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
33044
33045         * class.h class.c (mono_class_is_subclass_of): New function.
33046         
33047         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
33048         routines for most common case (calls from ArrayList::ToArray).
33049
33050         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
33051         routine so programs which call Environment::Exit() can be profiled.
33052
33053         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
33054         Added MONO_ARCH_SAVE_REGS.
33055
33056         * icall.c (ves_icall_type_is_subtype_of): Use new function.
33057
33058 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
33059
33060         * blob.h: Add a couple of new MonoType types definitions.
33061
33062         * tabledefs.h: Add a couple of new call convs.
33063
33064 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
33065
33066         * reflection.h (MonoReflectionDynamicAssembly): track changes in
33067         the layout of the class.
33068
33069         * reflection.c (alloc_table): double the size on overflow to avoid
33070         unnecessary copying.
33071
33072         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
33073         avoid filling out metadata tables and blobs. Also set mb->ilgen to
33074         null so it can be garbage collected.
33075         
33076 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
33077
33078         * reflection.c (mono_reflection_get_type): Return the resolved type
33079         only if it is in the assembly we searched.
33080
33081         * reflection.c (ensure_runtime_vtable): Initialize method slots.
33082
33083         * class.c (mono_class_setup_vtable): Set the slot of the overriding
33084         method.
33085
33086 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33087
33088         * appdomain.c:
33089         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
33090         the right one is 'file:///blah', but MS allows it.
33091         * assembly.c:
33092         (mono_assembly_open): allow 'file://blah'
33093
33094         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
33095
33096 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
33097
33098         * socket-io.c: fixes bug #40310.
33099
33100 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
33101
33102         * reflection.c (mono_reflection_parse_type): handle deeply nested
33103         types correctly.
33104
33105         * reflection.c (mono_image_create_token): Use unique token values
33106         since they will be put into a hash table.
33107
33108         * class.c (mono_class_setup_vtable): If a method occurs in more than
33109         one place in the vtable, and it gets overriden, then change the
33110         other occurances too.
33111
33112         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
33113         object as return type.
33114
33115 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33116
33117         * icall.c: Deleted "ToString" implementation for double and float
33118         because they are full implemented in managed code.
33119
33120 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33121
33122         * reflection.c, reflection.h: implemented and exported functions
33123         to retrieve info about custom attributes.
33124
33125 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33126
33127         * appdomain.c: moved Uri handling to assembly.c
33128         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
33129         work when using a file Uri in *nix and windows.
33130
33131         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
33132         GetReferencedAssemblies.
33133
33134 2003-03-18  Dick Porter  <dick@ximian.com>
33135
33136         * icall.c: Rename a couple of internal calls
33137
33138         * threads.c: Set the thread state to Stopped when a thread exits.
33139         Fixes bug 39377.
33140
33141 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
33142
33143         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
33144         New icall.
33145
33146         * object.c (mono_class_vtable): fix warning.
33147
33148 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
33149
33150         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
33151
33152         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
33153         memory.
33154         (method_encode_clauses): Create exception info structures in the right
33155         order.
33156         (mono_reflection_setup_internal_class): Initialize supertypes field.
33157
33158         * class.c object.c: Handle interfaces which implement other interfaces 
33159         correctly.
33160
33161         * class.h class.c: Move the supertypes array initialization code into 
33162         a separate function so it can be used for dynamic types too. Also call
33163         it earlier, in mono_class_init(), since it can be used before the
33164         type is initialized.
33165
33166 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33167
33168         * Makefile.am:
33169         * assembly.c:
33170         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
33171
33172         * appdomain.c:
33173         * appdomain.h:
33174         * marshal.c:
33175         * object.c: remove warnings.
33176
33177 2003-03-13  Martin Baulig  <martin@ximian.com>
33178
33179         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
33180         (MonoDebugLexicalBlockEntry): New types.
33181
33182         * debug-mono-symfile.c
33183         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
33184
33185 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33186
33187         * process.c: ret can be any non-zero value accroding to MS doc.
33188
33189 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
33190
33191         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
33192         fixing a warning for a miss-used prototype, would have cause
33193         random memory corruption.
33194
33195 2003-03-07  Martin Baulig  <martin@ximian.com>
33196
33197         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
33198         getting really annoying ....
33199
33200 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
33201
33202         * reflection.c (fixup_method): added support for array methods.
33203
33204 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
33205
33206         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
33207         (pointed out by Michael Adams).
33208
33209 2003-03-04  Dick Porter  <dick@ximian.com>
33210
33211         * icall.c: Temporarily reverted the Double and Single ToString()
33212         change, because it broke nunit.
33213
33214 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
33215
33216         * object.h, threads.h: make include files compatible with C++
33217         (patch by Jerome Laban <jlaban@wanadoo.fr>).
33218
33219 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33220
33221         * icall.c: Erased ToString helper functions for Double and Single.
33222         Now, that implementations ar all in managed code (Double and Single
33223         Formatters).
33224
33225 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
33226
33227         * appdomain.c: Added method for initializing the default context of
33228         a domain. Added internal call for getting the default context.
33229         * appdomain.h: Added context variable in MonoDomain struct.
33230         * domain.c: mono_domain_set also sets the default context of the domain
33231         * icall.c: Mapped internal method InternalGetDefaultContext.
33232         * object.c: mono_object_get_virtual_method returns always a remoting
33233         wrapper if the object is a transparent proxy.
33234         mono_runtime_invoke_array: when creating an object by calling the
33235         constructor, if the created object is a proxy, then the constructor should
33236         be called using the a remoting wrapper.
33237
33238 2003-03-03  Dick Porter  <dick@ximian.com>
33239
33240         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
33241         variable so it compiles on solaris.  Problem spotted by
33242         Christopher Taylor <ct@cs.clemson.edu>
33243
33244 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33245
33246         * appdomain.c:
33247         (get_info_from_assembly_name): don't leak value.
33248
33249         * icall.c:
33250         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
33251         result.
33252
33253 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
33254
33255         * assembly.c: export mono_image_load_references ().
33256         * class.c: handle function pointers. mono_class_from_name() now
33257         supports nested type names directly.
33258
33259 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
33260
33261         * reflection.h reflection.c: Encode already created dynamic methods 
33262         and fields correctly as a DEF instead of a REF.
33263
33264         * reflection.c: Get rid of the force_ref argument to 
33265         mono_image_typedef_or_ref since it was wrong in the first place.
33266
33267         * string-icalls.c: add error checking to string constructors according
33268         to the MSDN docs.
33269
33270         * reflection.c: Emit types in the order their TypeBuilders were 
33271         created. Previously, a new table index was assigned to each type before
33272         the tables were emitted. This was wrong because the signature blob
33273         might already refer to a type by its original table index.
33274
33275 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
33276
33277         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
33278         change.
33279         
33280 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33281
33282         * Makefile.am: make assemblies dir have \ instead of / on windows.
33283
33284 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
33285
33286         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
33287         iterate over the NESTEDCLASS table using a linear search since the
33288         table is not guaranteed to be sorted by the secondary key.
33289
33290         * class.c (mono_class_create_from_typedef): fixed up call to
33291         mono_metadata_nesting_typedef.
33292         
33293 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
33294
33295         * marshal.c (mono_string_to_byvalstr): clear the memory as
33296         suggested by Jerome Laban <jlaban@wanadoo.fr>
33297
33298 2003-02-26  Dick Porter  <dick@ximian.com>
33299
33300         * process.c: Cope with padding in .rsrc blocks
33301
33302 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33303
33304         * metadata.h: reverted the filter_len change, it breaks reflection
33305         
33306 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33307
33308         * metadata.h: added a new field to store the filter_len
33309         
33310
33311 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
33312
33313         * reflection.c: handle custom attributes for types and members
33314         created with Reflection.Emit (bug#38422).
33315
33316 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
33317
33318         * reflection.c: define RTSpecialName automatically for constructors for
33319         compatibility with MS.NET.
33320
33321         * reflection.c (mono_reflection_create_runtime_class): initialize
33322         nested_in field of dynamically created classes.
33323
33324 2003-02-22  Martin Baulig  <martin@ximian.com>
33325
33326         * debug-mono-symfile.h: Incremented version number.
33327
33328 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33329
33330         * object.h icall.c process.c: fix warnings.
33331
33332 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33333
33334         * appdomain.h appdomain.c:
33335         (mono_domain_try_type_resolve): split the 
33336         name_or_tb argument into a name and a tb argument.
33337         (mono_domain_has_type_resolve): new function to check whenever the
33338         application has registered a TypeResolve event handler.
33339         
33340         * icall.c reflection.h reflection.c: move the type resolve logic into
33341         mono_reflection_get_type () so it will be invoked when 
33342         Assembly::GetType () is called.
33343
33344         * reflection.c:
33345         (mono_reflection_get_type): renamed to get_type_internal.
33346         (mono_reflection_get_type): fixed type name generation so it works 
33347         for nested types too.
33348         (mono_reflection_get_type): call has_type_resolve () to avoid the 
33349         costly type name generation if there is no resolve event handler.
33350
33351 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33352
33353         * class.c, image.c: load exported types from file references.
33354
33355 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
33356
33357         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
33358           used to cache the managed methods used to create proxies and make 
33359           remote invocation of methods.
33360         * class.h: Added in MonoVTable a flag to indicate that a class needs 
33361           to be remotely created.
33362         * object.c: Modified the method mono_class_vtable(). It now initializes 
33363           the remote flag of the vtable. Modified mono_object_new_specific(), 
33364           so now it checks the remote flag.
33365         * icall.c: Added a couple of internal methods, one for enabling instance 
33366           creation interception for a type, and one for creating objects bypassing
33367           the remote check.
33368
33369 2003-02-18  Martin Baulig  <martin@ximian.com>
33370
33371         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
33372         New interncall to get a method's metadata token.
33373
33374         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
33375         New interncall for the debugger.
33376
33377 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
33378
33379         * class.c (mono_class_setup_vtable): allocate supertype array
33380
33381 2003-02-18  Martin Baulig  <martin@ximian.com>
33382
33383         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
33384
33385 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33386
33387         * reflection.c:
33388         (assembly_name_to_aname): jump over unknown properties (i've found
33389         something like: 'type, assembly, version=xxx, custom=null, public...',
33390         so now will ignore custom=null and still get the rest of the values).
33391
33392 2003-02-17  Dick Porter  <dick@ximian.com>
33393
33394         * threads.c: Have Thread.Start() wait for a semaphore to signal
33395         that the thread has set up all its local data.  This fixes bug
33396         34323, where Abort() raced the new thread's TLS data.
33397
33398         Also removes the handle_store() call from start_wrapper, because
33399         threads are now always created suspended and there is no longer a
33400         race between the parent and child threads to store the info.
33401
33402 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33403
33404         * image.c: explain the #- heap issue in a message, hopefully
33405         avoiding FAQs on mono-list.
33406
33407 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33408
33409         * icall.c:
33410         (GetEntryAssembly): if the domain has not invoked
33411         AppDomain.ExecuteAssembly yet, return the assembly of the default
33412         AppDomain.
33413
33414 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33415
33416         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33417
33418 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33419
33420         * metadata.c, reflection.c: simple speedup to type hash
33421         and equals code.
33422
33423 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33424
33425         * image.c, image.h, class.c, assembly.c: move module loading
33426         to MonoImage. When loading metadata, consider alignemnet from
33427         the start of metadata, not from the metadata address in memory.
33428
33429 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33430
33431         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33432         AssemblyBuilder objects. Factored out custom attribute creation into
33433         a separate function.
33434         (create_custom_attr): new function to create custom attributes.
33435
33436 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33437
33438         * Makefile.am: Got tired of typing the full pathname to pedump.
33439         Until there is another option, am installing this.
33440
33441 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33442
33443         * class.c (class_compute_field_layout): always set field->parent 
33444         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33445
33446 2003-02-11  Dick Porter  <dick@ximian.com>
33447
33448         * threads-types.h:
33449         * monitor.c: Rewrote Monitor, making lock much faster and
33450         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33451         creates them as needed.
33452
33453         * exception.c: Added SynchronizationLockException
33454
33455         * threads.c: Deleted old Monitor implementation.  The new one is
33456         in a new file.
33457
33458 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33459
33460         * class.c: handled TypedReference type code. Set the correct size for
33461         class data. Setup interface_offsets for interface classes, too.
33462
33463 2003-02-09  Martin Baulig  <martin@ximian.com>
33464
33465         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33466
33467 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33468
33469         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33470         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33471         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33472         * verify.c: check for code that runs after the end of the method.
33473
33474 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33475
33476         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33477         "System.Math::Round2".
33478         * sysmath.h: Added Floor, Round and Round2 definitions.
33479         * sysmath.c: Modified certain functions that were not 100% compliant
33480         with MS.NET (math precision) and added the implementation of Floor,
33481         Round and Round2.
33482
33483 2003-02-07  Martin Baulig  <martin@ximian.com>
33484
33485         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33486
33487 2003-02-07  Martin Baulig  <martin@ximian.com>
33488
33489         * debug-mono-symfile.c: Reflected latest symwriter changes.
33490         (mono_debug_create_mono_symbol_file): Removed.
33491         (mono_debug_open_mono_symbol_file): Take an argument which
33492         specifies whether to create a dynamic symbol file.
33493
33494 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33495
33496         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33497
33498 2003-02-05  Martin Baulig  <martin@ximian.com>
33499
33500         * reflection.c (mono_image_build_metadata): Make this public,
33501         protect it against being called multiple times, don't create
33502         resources and don't build the compressed metadata here.
33503         (mono_image_create_pefile): Do this here.
33504
33505         * icall.c
33506         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33507
33508 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33509
33510         * socket-io.c: fixed bug #36322.
33511
33512 2003-02-06  Piers Haken <piersh@friskit.com>
33513
33514         * appdomain.[ch]:
33515         * class.h:
33516         * debug-mono-symfile.c:
33517         * icall.c:
33518         * loader.c:
33519         * mono-config.c:
33520         * monosn.c:
33521         * reflection.c:
33522         * socket-io.c: warning cleanups
33523
33524 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33525
33526         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33527         function. works like remoting invoke, but does a check for the Proxy first.
33528
33529 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33530
33531         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33532
33533 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33534
33535         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33536         array of pointers.
33537         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33538         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33539
33540         * object.c (mono_store_remote_field_new): used by the new jit
33541         instead of mono_store_remote_field
33542         (mono_load_remote_field_new): used by the new jit
33543         instead of mono_load_remote_field
33544
33545 2003-02-05  Patrik Torstensson
33546
33547         * appdomain.c: changed unload to take the domain id instead
33548         of domain
33549         
33550         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33551
33552
33553 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33554
33555         * appdomain.c: don't look for assemblies in ApplicationBase if
33556         PrivateBinPathProbe is set.
33557
33558 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33559
33560         * object.c: make the first argument in main_args contain the absolute
33561         path to the assembly. Fixes bug #37511.
33562
33563 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33564
33565         * icall.c: get correct UTC offset for countries not using daylight
33566         time saving. Fixes bug #30030.
33567
33568 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33569
33570         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33571         and 1 are the family).
33572
33573 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33574
33575         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33576
33577         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33578
33579 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33580
33581         * reflection.c: added support for SignatureHelper tokens, which is
33582         needed by the Calli opcode.
33583
33584         * reflection.h: track changes to SignatureHelper class.
33585
33586         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33587
33588 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33589
33590         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33591
33592 2003-02-03  Patrik Torstensson
33593         * appdomain.[c|h], domain.c : 
33594          - Added support for getting a domain via domain id
33595          - Support for setting and getting domain from System.AppDomain 
33596            (used in cross appdomain channel)
33597          - Added support for get/set for a MonoAppContext on a thread 
33598            (Context class in System.Runtime.Remoting.Contexts),
33599          - Removed hack in Get/SetData and ExecuteAssembly.
33600         
33601         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33602         the managed world to get control when a proxy is created.
33603
33604         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33605         
33606 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33607
33608         * icall.c
33609         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33610         Populate the codebase field as well.
33611
33612 2003-02-02  Martin Baulig  <martin@ximian.com>
33613
33614         * debug-mono-symfile.c
33615         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33616         (mono_debug_symfile_add_method): Allow interncalls.
33617
33618 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33619
33620         * icall.c: throw parse exception if strtod fails or the string is empty.
33621
33622 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33623
33624         * marshal.c: handle object type separately from defined
33625         class types.
33626
33627 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33628
33629         * marshal.c: handle NATIVE_LPSTR for strings when it's
33630         explicitly specified.
33631
33632 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33633
33634         * reflection.c, reflection.h, icall.c: setup the reflection
33635         handle cache for ModuleBuilders and AssemblyBuilders.
33636
33637 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33638
33639         * reflection.c (reflection_methodbuilder_to_mono_method): set
33640         pinvoke flag
33641
33642 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33643
33644         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33645
33646 2003-01-29  Dick Porter  <dick@ximian.com>
33647
33648         * threads.c: No need for the fake_thread kludge now that Thread
33649         doesn't run a class constructor
33650         
33651 2003-01-29  Dick Porter  <dick@ximian.com>
33652
33653         * threads.c: Use g_direct_hash instead of the rather bogus
33654         g_int_hash
33655
33656 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33657
33658         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33659         (fix pinvoke12.exe)
33660         (mono_marshal_get_struct_to_ptr): generate valid IL code
33661         (mono_marshal_get_ptr_to_struct): generate valid IL code
33662         (*): correctly set sig->pinvoke, we need to memdup the signature
33663         to do that
33664
33665 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33666
33667         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33668         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33669
33670 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33671
33672         * profiler.c: provide more callers information.
33673
33674 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33675
33676         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33677
33678         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33679
33680         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33681
33682 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33683
33684         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33685         exception instead of going into an infinite loop on dates which it 
33686         can't yet handle.
33687
33688         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33689         out-of-range exception if needed.
33690
33691         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33692         an implementation for an interface method and to override an inherited
33693         method at the same time. 
33694         Imagine a scenario when a virtual method is used to override a
33695         virtual abstract method in a parent class, and this same method 
33696         provides an implementation for an method inherited from an interface. 
33697         In this case, the interface resolution code will set im->slot, which 
33698         means that the virtual method override pass will skip this method 
33699         which means a pointer to the abstract method inherited from the parent
33700         will remain in the vtable of this non-abstract class.
33701
33702         * class.c: (mono_class_setup_vtable): continue search for a real 
33703         method if only an abstract method is found.     
33704
33705 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33706
33707         * reflection.c: add size to encoding for ByValStr and ByValArray
33708         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33709
33710 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33711
33712         * class.c (mono_class_setup_vtable): pass the override info as an
33713         argument.
33714
33715         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33716         correctly.
33717         
33718         * reflection.c (ensure_runtime_vtable); add support for method 
33719         overrides.
33720         
33721 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33722
33723         * reflection.c (resolution_scope_from_image): Hack to work to work with
33724         dynamic assemblies.
33725
33726         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33727         added a 'force_ref' argument to force this function to allways return 
33728         a TypeRef. This is needed by mono_image_get_memberref_token ().
33729         
33730 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33731
33732         * reflection.c (mono_image_get_type_info): interfaces really don't have
33733         a parent.
33734
33735         * reflection.c (mono_image_basic_init): fill out missing fields of
33736         image structure.
33737
33738         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33739         dynamic assemblies. This is required so dynamic assemblies show up in
33740         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33741         Type::GetType() etc. This is consistent with MS behaviour.
33742
33743         * image.c image.h reflection.c: add newly created classes to the name 
33744         cache so mono_class_get () will find them.      
33745
33746 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33747
33748         First part of changes to get IKVM.NET running under mono.
33749         
33750         * appdomain.h, appdomain.c: added new function 
33751         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33752         This function will call AppDomain::DoTypeResolve to do the actual work.
33753
33754         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33755         moved existing code dealing with dynamic tokens to a new function 
33756         called mono_reflection_lookup_dynamic_token (). This function will 
33757         raise TypeResolve events when appropriate. Since reflection.c is not 
33758         part of libmetadata, a new hook function called 
33759         mono_lookup_dynamic_token() is added to class.c which will call this.
33760
33761         * assembly.h assembly.c: make the invoke_load_hook function public,
33762         so it can be called for dynamic assemblies.
33763
33764         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33765
33766         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33767         type isn't found.
33768
33769         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33770         MonoGHashTable, since it contains pointers to objects which the GC 
33771         needs to track.
33772
33773         * assembly.c (search_loaded): remove unused variable.
33774         
33775 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33776
33777         * object.c: fixed issue exposed by gcc-generated IL programs
33778         that use RVA data for pointers.
33779
33780 2003-01-25  Martin Baulig  <martin@ximian.com>
33781
33782         * threads.c (start_wrapper): Moved the initialization of
33783         `start_func' above the mono_new_thread_init() call to which we
33784         pass it as argument.
33785
33786 2003-01-24  Martin Baulig  <martin@ximian.com>
33787
33788         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33789         the MonoThread pointer.
33790
33791 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33792
33793         * icall.c: Rename `PowImpl' to Pow.
33794
33795 2003-01-23  Dick Porter  <dick@ximian.com>
33796
33797         * threads.c (start_wrapper): Create a Thread object if needed, so
33798         the Main() thread can do the class initialisation in a subthread
33799         that has been set up to allow managed code execution.
33800
33801         Pass the thread ID instead of the MonoThread pointer to the thread
33802         start and attach callbacks.  This change is required, because the
33803         jit thread start callback must be called _before_ the Thread
33804         object can be created.
33805         
33806         (mono_thread_init): Removed much object creation code that is no
33807         longer needed.  No managed code is called from here now.
33808
33809         * object.c (mono_runtime_exec_managed_code): Create a subthread
33810         for Main, and call back to the runtime to use it.
33811         Set the exit code when Main exits.
33812
33813         * gc.c: Make sure domain finalisation happens in a subthread.
33814         Re-enable threaded GC, fixing bug 31333 (again).
33815
33816         * environment.c: System.Environment internall calls (so far just
33817         ExitCode is here, the others are still in icall.c)
33818
33819         * appdomain.c (mono_runtime_cleanup): All threads running managed
33820         code should have finished before mono_runtime_cleanup() is
33821         reached, so no need to clean up threads.
33822
33823 2003-01-22  Martin Baulig  <martin@ximian.com>
33824
33825         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33826         `gpointer func' arguments.      
33827         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33828         but added `MonoThread *thread' argument.
33829         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33830
33831         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33832         and pass it to the mono_thread_start_cb callback.
33833         (mono_install_thread_callbacks): New public function to install a
33834         set of callbacks which are set by the debugger.
33835         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33836
33837 2003-01-22  Martin Baulig  <martin@ximian.com>
33838
33839         * Makefile.am: Install debug-mono-symfile.h.
33840
33841 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33842
33843         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33844
33845 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33846
33847         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33848         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33849         (mono_array_class_get): correctly set access levels of arrays
33850
33851 2003-01-20      Patrik Torstensson
33852         * image.h (MonoAssemblyName): changed major, minor, build, revision
33853         from signed to unsigned.
33854
33855 2003-01-20  sean kasun <skasun@azstarnet.com>
33856
33857         * reflection.c (load_cattr_value): Now this handles
33858         MONO_TYPE_SZARRAY.  Fixes bug #35629
33859
33860 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33861
33862         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33863         integer value
33864
33865 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33866
33867         * decimal.c: fixed bug #26056.
33868
33869 2003-01-17  Martin Baulig  <martin@ximian.com>
33870
33871         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33872
33873 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33874
33875         * exception.[ch]:
33876         (mono_get_exception_type_initialization): new function.
33877
33878         * object.c: throw a TypeInitializationException when an exception is
33879         thrown invoking the class constructor.
33880
33881 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33882
33883         * reflection.c: fixed attribute reading.
33884
33885 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33886
33887         * icall.c:
33888         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33889         provided, look for the type in the calling assembly and then in
33890         mscorlib; if the assembly name is provided, only try that one.
33891
33892 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33893
33894         * object.c: register the vtable before there is a chance it's
33895         queried again recursively.
33896
33897 2003-01-13  Duncan Mak  <duncan@ximian.com>
33898
33899         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33900         gc-internal.h. 
33901         
33902 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33903
33904         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33905
33906 2003-01-11  Martin Baulig  <martin@ximian.com>
33907
33908         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33909         this to 20 for the release.
33910
33911 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33912
33913         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33914
33915         * loader.c (mono_method_get_marshal_info): bug fix
33916
33917         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33918         structures with explicit layout
33919
33920 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33921
33922         * profiler.c: made the output more readable (and sorted). 
33923         Added caller information for the allocation profiler.
33924
33925 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33926
33927         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33928
33929 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33930
33931         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33932         to get value types.
33933         
33934 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33935
33936         * object.c, profiler.h, profiler.c, profiler-private.h:
33937         Added object allocation profiler.
33938
33939 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33940
33941         * reflection.h, reflection.c: handle global methods.
33942         Compress blob entries.
33943
33944 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33945
33946         * marshal.c: fix compilation.
33947
33948 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33949
33950         * loader.c (mono_method_get_marshal_info): impl.
33951
33952         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33953
33954 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33955
33956         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33957         for reference types.
33958
33959 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33960
33961         * loader.c: fixed off by one error in loaded parameter names.
33962
33963 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33964
33965         * marshal.c (mono_marshal_get_icall_wrapper): like
33966         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33967         instead of a MonoMethod.
33968
33969 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33970
33971         * decimal.c: fixed bug #36537.
33972
33973 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33974
33975         * marshal.c: throw a missing method exception if a
33976         P/Invoke method is not found.
33977
33978 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33979
33980         * icall.c: allow a null this for constructors.
33981
33982 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33983
33984         * icall.c: raise the proper exceptions if the arguments to the
33985         internal Invoke are incorrect.
33986
33987 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33988
33989         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33990
33991 2003-01-03  Martin Baulig  <martin@ximian.com>
33992
33993         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33994
33995 2002-12-31  Martin Baulig  <martin@ximian.com>
33996
33997         * debug-mono-symfile.c: Completely rewrote the type section.
33998         Instead of using individual malloc()ed fields, we use one big
33999         continuous memory area and offsets into this area.
34000         See the comments in the source code for details.
34001
34002 2002-12-30  Martin Baulig  <martin@ximian.com>
34003
34004         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
34005
34006 2002-12-30  Martin Baulig  <martin@ximian.com>
34007
34008         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
34009         line number table in this data blob instead of using an external
34010         pointer.
34011
34012 2002-12-28  Martin Baulig  <martin@ximian.com>
34013
34014         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
34015
34016 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
34017
34018         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
34019         as a boxed return type.
34020
34021 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
34022
34023         * appdomain.c
34024         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
34025         g_build_filename to properly get separators on the filename created.
34026
34027         * object.h: Small change, introduce MonoMarshalByRefObject to
34028         track the layout of that structure in the C# universe as we make
34029         changes there.
34030
34031 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
34032
34033         * object.c: removed assert to allow static fields on interfaces.
34034         * loader.c: a TypeSpec may be used for any type, not just arrays.
34035
34036 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34037
34038         * class.c, class.h: added mono_class_array_element_size ().
34039         Ignore static methods in interfaces.
34040
34041 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34042
34043         * threads.c: fixed the build under cygwin.
34044
34045 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34046
34047         * reflection.c: handle nullref constants. Allocate keys for
34048         reflection handles with the GC.
34049
34050 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34051
34052         * threads.c, threads.h: added mono_thread_get_abort_signal()
34053         to get a suitable signal for thread abort.
34054
34055 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34056
34057         * metadata.c: fix handling of ExportedType table.
34058
34059 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34060
34061         * icall.c: added WriteWindowsDebugString internal call.
34062
34063 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34064
34065         * reflection.h: added fields to match C# implementation.
34066
34067 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34068
34069         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
34070
34071 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
34072
34073         * gc.h, gc-internal.h: Rename header for GC internal calls to
34074         gc-internal.h from gc.h as to not clash with Boehm GC having its
34075         header installed as <gc.h> in outside include paths.
34076         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
34077         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
34078
34079 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34080
34081         * icall.c: assign minor, build and revision in FillName.
34082
34083 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
34084
34085         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
34086         Added support for running code generated by Reflection.Emit.
34087
34088 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34089
34090         * appdomain.c: check for NULL argument in LoadFrom.
34091
34092 2002-12-10  Dick Porter  <dick@ximian.com>
34093
34094         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
34095
34096 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34097
34098         * appdomain.c: fix buglet when building exe file name.  Handle full
34099         assembly name (needed after latest changes to AssemblyName).
34100         * image.c:
34101         (mono_image_close): free some hashtables.
34102
34103 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
34104
34105         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
34106         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
34107         on some systems (redhat 7.3) 
34108
34109 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
34110
34111         * threads.c: delete the critical section of a sync block,
34112         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
34113
34114 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
34115
34116         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
34117
34118 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34119
34120         * appdomain.[ch]: handle the assembly preload event to try loading the
34121         assemblies using the paths we have in the current domain.
34122
34123         * assembly.[ch]: created an assembly preload hook that is called to try
34124         loading the assembly by other means that the ones provided here.
34125
34126         * domain.c: initialize the domain search path.
34127
34128         From now on, assemblies (TODO: except corlib and System) are loaded
34129         according to these rules when using mono_assembly_load ():
34130
34131                 1. It tries to load the assembly from the ApplicationBase
34132                 of the current domain appending .dll and .exe (TODO: have to
34133                 try loading from name/name.dll and name/name.exe).
34134
34135                 2. It tries the search path specified in PrivateBinPath for the
34136                 current domain (if any).
34137
34138                 3. Previous behavior.
34139
34140 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
34141
34142         * icall.c: implemented GetInterfaceMap() related icall.
34143         * domain.c, loader.h: load MethodInfo in mono_defaults.
34144
34145 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34146
34147         * gc.c: disable the finalizer thread for now, untill all the issues
34148         with it are resolved.
34149
34150 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34151
34152         * string-icalls.c: handle embedded nulls in string ctor when the
34153         length is specified.
34154
34155 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34156
34157         * class.c: look for explicit interface implementation in parent
34158         classes, too.
34159
34160 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
34161
34162         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
34163
34164 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34165
34166         * gc.c: protect handles with a critical section.
34167
34168 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34169
34170         * icall.c:
34171         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
34172         parameters. If no assembly specified, try getting the type from all
34173         the assemblies in the current domain, else, load the assembly and get
34174         the type from it.
34175
34176 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34177
34178         * marshal.c: applied patch from Aleksey Demakov that fixes
34179         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
34180
34181 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34182
34183         * icall.c: fixed get_location.
34184
34185 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
34186
34187         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
34188         declarations to make it work with older gcc. 
34189
34190         * loader.c (mono_get_method): set signature->pinvoke for native calls
34191
34192 2002-11-20  Dick Porter  <dick@ximian.com>
34193
34194         * threads.c (mono_thread_init): Set the main thread's handle
34195
34196 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34197
34198         * gc.c: allow compilation without GC support. Changed to match the
34199         mono coding style.
34200
34201 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34202
34203         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
34204
34205 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
34206
34207         * reflection.c: set a public key token on the core assemblies.
34208
34209 2002-11-18  Dick Porter  <dick@ximian.com>
34210
34211         * threads.c: Split out some thread initialisation so that other
34212         files can set the start callback function.
34213
34214         * gc.c: Run finalisers in a separate thread, to avoid stack
34215         overflow.  Fixes bug 31333.
34216
34217         * appdomain.c: Set up GC finalisation thread.
34218
34219         * reflection.c: 
34220         * object.c: 
34221         * domain.c: Use gc.h macros for GC_malloc
34222         
34223 2002-11-15  Dick Porter  <dick@ximian.com>
34224
34225         * threadpool.c: 
34226         * threads.c:
34227         * appdomain.c: Removed mono_runtime_init_with_attach(),
34228         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
34229         merging the extra parameter with the existing function.  Removed
34230         unneeded code in mono_thread_attach().
34231
34232 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
34233
34234         * image.c (mono_image_loaded_by_guid): a method to get loaded
34235         images by guid. 
34236         (load_metadata_ptrs): we store the guid as string.
34237
34238 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
34239
34240         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
34241
34242         * metadata.c (mono_guid_to_string): imported method form Zoltan
34243         Varga (slightly modified)
34244
34245         * assembly.c (mono_assembly_open): load precompiled code
34246
34247         * loader.h (MonoMethod): we store the method token for use in the
34248         aot compiler. 
34249
34250 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34251
34252         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
34253         the hook function called when an assembly is loaded.
34254         
34255         * domain.c: Modified file.
34256         (mono_domain_assembly_load): removed hash table insertion of assemblies.
34257
34258         Fixes bug #33196.
34259
34260 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
34261
34262         * reflection.c: Map PEFileKind to the value expected by the WinNT
34263         image loader. 
34264
34265 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34266
34267         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
34268         Read until the buffer is filled completely.
34269
34270 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34271
34272         * icall.c: implemented MonoType.InternalGetEvent ().
34273
34274 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34275
34276         * appdomain.c: implemented InitAppDomainSetup. Delayed
34277         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
34278         the entry_assembly.
34279
34280         * assembly.c: base_dir is now an absolute path ending with
34281         G_DIR_SEPARATOR.
34282
34283         * icall.c: modified get_location according to the above changes.
34284
34285         * object.c: init AppDomain.SetupInformation for the default domain after
34286         we have the entry assembly.
34287
34288         * domain.c: when unloading a domain, setup = NULL.
34289
34290 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
34291
34292         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
34293
34294 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
34295
34296         * object.h, object.c: introduced mono_object_get_virtual_method ()
34297         to lookup the method invoked on an object when a callvirt is done on
34298         a method.
34299         * icall.c: make MethodInfo::Invoke() always do a virtual call.
34300
34301 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34302
34303         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
34304         current domain when loaded an assembly and failed to load it.
34305
34306         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
34307
34308 2002-10-31  Dick Porter  <dick@ximian.com>
34309
34310         * icall.c: 
34311         * file-io.h: 
34312         * file-io.c: Return the error status in a parameter, as the
34313         GetLastError() value has long since been blown away if we try and
34314         look it up in a subsequent internal call invocation.  Delete the
34315         GetLastError() internal call, because it's useless.
34316
34317 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
34318
34319         * class.[ch]: added cast_class to fix bug 29517
34320
34321 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
34322
34323         * marshal.c: create valid IL code in the filter clause:
34324         the new JIT is less forgiving:-)
34325
34326 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34327
34328         * icall.c: removed get_property internal call.
34329
34330 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
34331
34332         * appdomain.h domain.c: Added an ID to appdomains.
34333         
34334         * threads.c threads.h icall.c: Implement icall
34335         Thread:GetDomainID(), and remove unused icall 
34336         CurrentThreadDomain_internal.
34337
34338 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34339
34340         * icall.c: Don't recurse through the base types in GetConstructor.
34341         Fixes bug #32063. 
34342
34343 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34344
34345         * mempool.h, mempool.c: added mono_mempool_empty() and
34346         mono_mempool_stats().
34347
34348 2002-10-23  Dick Porter  <dick@ximian.com>
34349
34350         * file-io.c: 
34351         * file-io.h: 
34352         * icall.c: Added MonoIO.GetFileType internal call
34353
34354 2002-10-17  Dick Porter  <dick@ximian.com>
34355
34356         * appdomain.c (mono_runtime_cleanup): Don't signal the async
34357         delegate semaphore before waiting for all threads to finish,
34358         because new threads can also call async delegates.  Fixes bug
34359         32004.
34360
34361         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
34362         of 3 seconds, in case another async job is queued.  (This part is
34363         needed because the bug fix reintroduced the 3s exit lag.)  This
34364         makes the mono_runtime_shutdown flag superfluous.
34365
34366 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34367
34368         * reflection.c: include ehader size in method section headers.
34369         Really check for suplicated modules entries.
34370
34371 2002-10-17  Martin Baulig  <martin@gnome.org>
34372
34373         * debug-mono-symfile.c: Added back support for locals.
34374
34375 2002-10-14  Martin Baulig  <martin@gnome.org>
34376
34377         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
34378         MONO_TYPE_VOID.
34379
34380 2002-10-14  Martin Baulig  <martin@gnome.org>
34381
34382         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
34383         mono_class_get() instead of looking in the class cache. 
34384
34385 2002-10-13  Martin Baulig  <martin@gnome.org>
34386
34387         * debug-mono-symfile.c: Set version number to 28, include the
34388         signature in method names.
34389
34390 2002-10-13  Martin Baulig  <martin@gnome.org>
34391
34392         * debug-mono-symfile.h: Set version number to 27.
34393
34394 2002-10-11  Martin Baulig  <martin@gnome.org>
34395
34396         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34397
34398 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34399
34400         * metadata.c, metadata.h: added helper function to allocate signatures.
34401
34402 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34403
34404         * icall.c: added internal call to get the location of machine.config.
34405
34406 2002-10-08  Martin Baulig  <martin@gnome.org>
34407
34408         * debug-mono-symfile.c: Ignore classes with a pending init for the
34409         moment.
34410
34411 2002-10-03  Dick Porter  <dick@ximian.com>
34412
34413         * threads.c: Freebsd pthread_t is a pointer
34414
34415 2002-10-03  Dick Porter  <dick@ximian.com>
34416
34417         * socket-io.c: Implemented GetHostName_internal
34418
34419 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34420
34421         * mono-config.c:
34422         (mono_config_parse_file): don't leak the text.
34423
34424 2002-10-02  Martin Baulig  <martin@gnome.org>
34425
34426         * debug-mono-symfile.c: Added support for methods.
34427
34428 2002-10-01  Martin Baulig  <martin@gnome.org>
34429
34430         * debug-mono-symfile.c: Don't emit methods and line numbers for
34431         the dynamic symbol file, just write the type table.  We can easily
34432         have an external helper program which creates a symbol file for an
34433         IL file.        
34434
34435 2002-10-01  Dick Porter  <dick@ximian.com>
34436
34437         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34438         Only add the handle to the cleanup array when we're about to
34439         launch the thread.  Bug 31425 deadlocked when the test was run on
34440         mono under w32.
34441
34442 2002-10-01  Martin Baulig  <martin@gnome.org>
34443
34444         * debug-mono-symfile.c: Added support for properties.
34445
34446 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34447
34448         * reflection.c: unaligned store fix from Mark Crichton
34449         <crichton@gimp.org>.
34450
34451 2002-09-27  Martin Baulig  <martin@gnome.org>
34452
34453         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34454         New interncall.
34455
34456 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34457
34458         * assembly.h, assembly.c: use a sane API to hook into the assembly
34459         loading process instead of a useless special-purpouse hack
34460         (ngen needs a hook, too, for example).
34461
34462 2002-09-27  Dick Porter  <dick@ximian.com>
34463
34464         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34465         io-layer can set up some process handle info.  Not needed on w32,
34466         but doesn't hurt either.
34467
34468         * process.c: Pass the program name in the second parameter to
34469         CreateProcess, so the path is searched.  Include the working
34470         directory. Implemented process name, process enumeration, and some
34471         process detail internal calls.
34472         
34473         * icall.c: Added internal calls for process lookup, and some
34474         process details
34475
34476 2002-09-26  Martin Baulig  <martin@gnome.org>
34477
34478         * assembly.c (mono_install_open_assembly_hook): New global
34479         function to install a function to be invoked each time a new
34480         assembly is loaded.
34481         (mono_assembly_open): Run this callback function if set.
34482
34483         * debug-mono-symfile.c: Put back line numbers for the dynamic
34484         symbol file and also record the .il file as source file.  This
34485         allows us to install the temporary symbol file as `file.dbg' just
34486         like a compiler-generated one.
34487
34488 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34489
34490         * Corrected typo in gc.c (BOHEM vs BOEHM).
34491
34492 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34493
34494         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34495         GetProperties. Also avoid calling g_slist_length in GetProperties and
34496         GetMethods.
34497
34498 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34499
34500         * reflection.c: avoid unaligned stores (bug spotted by
34501         Mark Crichton  <crichton@gimp.org>).
34502
34503 2002-09-25  Martin Baulig  <martin@gnome.org>
34504
34505         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34506         instead of guint64 for addresses and added prologue/epilogue info.
34507
34508 2002-09-25  Martin Baulig  <martin@gnome.org>
34509
34510         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34511         store line number info.  For the dynamic symbol file, we only need
34512         to provide the JIT generated dynamic line number info for the dynamic
34513         symbol file.
34514
34515 2002-09-25  Martin Baulig  <martin@gnome.org>
34516
34517         * debug-mono-symfile.h: Incremented version number.
34518
34519 2002-09-24  Martin Baulig  <martin@gnome.org>
34520
34521         * class.c (mono_debugger_class_init_func): New global function
34522         pointer variable.
34523         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34524         call it.
34525
34526         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34527         function.  This is called via the mono_debugger_class_init_func
34528         hook to add all types to the dynamic type table.
34529         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34530         from its metadata token.
34531
34532         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34533         New interncall for the debugger.
34534
34535 2002-09-24  Nick Drochak <ndrochak@gol.com>
34536
34537         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34538         before using it in case it is null.
34539         
34540 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34541
34542         * metadata.c: allow custom modifiers in local var signatures
34543         (bug spotted by Zoltan Varga).
34544
34545 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34546
34547         * class.c: deal with the <Module> class that may have a NULL vtable.
34548         Eliminate warnings.
34549
34550 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34551
34552         * image.c, image.h: more strong name helpers.
34553         * monosn.c: more work: convert pem keys to cryptoapi format.
34554
34555 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34556
34557         * string-icalls.c: speedup IndexOf.
34558
34559 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34560
34561         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34562
34563 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34564
34565         * icall.c: cleanup: use mono_object_domain ().
34566
34567 2002-09-23  Martin Baulig  <martin@gnome.org>
34568
34569         * debug-mono-symfile.c: Improved type support.
34570
34571 2002-09-22  Martin Baulig  <martin@gnome.org>
34572
34573         * debug-mono-symfile.c: Added support for reference types and strings.
34574
34575 2002-09-22  Martin Baulig  <martin@gnome.org>
34576
34577         * debug-mono-symfile.c: Started to work on the type table.
34578
34579 2002-09-21  Martin Baulig  <martin@gnome.org>
34580
34581         * debug-mono-symfile.c: Largely reworked the symbol table format.
34582         The symbol table is now incrementally updated each time a new
34583         method is added.  We're now also using our own magic and version
34584         so that you don't need to recompile all your classes if the
34585         dynamic table changes.
34586         (mono_debug_update_mono_symbol_file): Removed.
34587         (mono_debug_symfile_add_method): New function to add a method.
34588
34589 2002-09-21  Martin Baulig  <martin@gnome.org>
34590
34591         * icall.c
34592         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34593         New interncall.
34594
34595         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34596         New interncall to get a method from its metadata token.
34597
34598 2002-09-21  Martin Baulig  <martin@gnome.org>
34599
34600         * debug-mono-symfile.c: Create type table.
34601
34602 2002-09-20  Martin Baulig  <martin@gnome.org>
34603
34604         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34605
34606 2002-09-20  Martin Baulig  <martin@gnome.org>
34607
34608         * debug-mono-symfile.c: Provide information about params and locals.
34609
34610 2002-09-20  Martin Baulig  <martin@gnome.org>
34611
34612         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34613         New interncall.
34614
34615         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34616         interncall to get a method from its metadata token.
34617
34618 2002-09-20  Martin Baulig  <martin@gnome.org>
34619
34620         * debug-mono-symfile.c: Added a few checks for method->header
34621         being non-NULL.  This should never happen, but for the moment
34622         let's use a g_warning() rather than a g_assert().
34623
34624 2002-09-19  Mark Crichton  <crichton@gimp.org>
34625
34626         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34627         even if support for it isn't present.  Added an #ifdef to fix this.
34628
34629         * socket-io.c: Added checks back for Solaris support.
34630
34631 2002-09-19  Martin Baulig  <martin@gnome.org>
34632
34633         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34634         changes in the symbol file format.
34635
34636 2002-09-18  Martin Baulig  <martin@gnome.org>
34637
34638         * debug-mono-symfile.c: Set version number to 21.
34639
34640 2002-09-18  Dick Porter  <dick@ximian.com>
34641
34642         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34643         on netbsd.  Fixes bug 30051.
34644
34645 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34646
34647         * reflection.c:
34648         (set_version_from_string): little fix.
34649
34650 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34651
34652         * monosn.c, Makefile.am: added strong name utility.
34653         * reflection.h, reflection.c: implemented delayed signing,
34654         locale, version and hash id assembly attributes.
34655
34656 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34657
34658         * loader.c, metadata.c: load param attributes in signatures.
34659
34660 2002-09-16  Martin Baulig  <martin@gnome.org>
34661
34662         * debug-mono-symfile.c: Added string table with all method names.
34663
34664 2002-09-14  Martin Baulig  <martin@gnome.org>
34665
34666         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34667         fast method lookup.
34668
34669 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34670
34671         * reflection.c: record the public key token of referenced assemblies.
34672
34673 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34674
34675         * image.c, image.h: added functions to get the strong name and the
34676         public key of an assembly.
34677         * pedump.c: use them.
34678
34679 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34680
34681         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34682
34683 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34684
34685         * marshal.c (mono_marshal_get_managed_wrapper): Added
34686         MONO_TYPE_BOOLEAN 
34687
34688 2002-09-11  Martin Baulig  <martin@gnome.org>
34689
34690         * gc.c: Call GC_unregister_disappearing_link() on all links when
34691         finalizing them, this is necessary to aviod a crash in boehm's
34692         finalize handler.
34693
34694 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34695
34696         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34697         nick@chemlab.org.
34698
34699 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34700
34701         * icall.c: implemented MonoType::Module.
34702         * reflection.c, reflection.h: mono_module_get_object () from
34703         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34704
34705 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706
34707         * icall.c: ignore overridden methods in GetMethods ().
34708         Fix for FieldInfo::SetValue().
34709         * object.c: handle float/double in runtime invoke.
34710
34711 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34712
34713         * object.c: allow a constructor to be called again on an object.
34714
34715 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34716
34717         * class.h, class.c: move field layout code to it's own function and
34718         export it. Get an interface id earlier. Move fields in MonoClass
34719         so they are more cache friendly and align the bitfields.
34720         * loader.c: temporary handle get_param_names() for a runtime method.
34721         * reflection.c, reflection.h: more code to handle runtime creation of
34722         types.
34723
34724 2002-09-09  Martin Baulig  <martin@gnome.org>
34725
34726         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34727         signature with the pinvoke field being set for the actual call.
34728
34729 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34730
34731         * icall.c: removed some unused icalls. Start of map of glib charsets
34732         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34733
34734 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34735
34736         * debug-helpers.c: break infinite loop (found and fixed by
34737         Holger Arnold <harnold@gmx.de>).
34738
34739 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34740
34741         * icall.c: target may be null in create_delegate.
34742
34743 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34744
34745         * marshal.c: handle a boolean return type.
34746
34747 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34748
34749         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34750
34751 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34752
34753         * gc.c: fix weakreferences.
34754
34755 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34756
34757         * icall.c: added icall to get default codepage.
34758
34759 2002-09-03  Dick Porter  <dick@ximian.com>
34760
34761         * threads.h: 
34762         * threads.c: Use MonoThread instead of MonoObject where
34763         apropriate.
34764
34765         Store running thread objects in a hash table, so that we have all
34766         the info to hand when waiting for them to finish
34767         (means we don't need OpenThread() any more, so mingw builds should
34768         be fully functional again.)
34769
34770         * verify.c:
34771         * object.h: Added thread ID to MonoThread
34772
34773 2002-09-03  Martin Baulig  <martin@gnome.org>
34774
34775         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34776
34777 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34778
34779         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34780
34781 2002-09-03  Martin Baulig  <martin@gnome.org>
34782
34783         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34784         argument to store the end address of the disassembled instruction.
34785
34786         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34787         here from debug-symfile.h.
34788         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34789         JIT into this struct.
34790         (MonoSymbolFile): Added `char *image_file' field.
34791         (MonoDebugGetMethodFunc): Removed.
34792         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34793         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34794         (mono_debug_find_method): New method.
34795
34796         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34797         create a full symbol file.
34798         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34799         and static symbol files.
34800         (mono_debug_find_method): The symbol file keeps an internal method hash,
34801         call this to get a MonoDebugMethodInfo from a MonoMethod.
34802
34803         * debug-symfile.[ch]: Removed.
34804
34805 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34806
34807         * image.c (do_mono_image_open): Remove linker version check.
34808
34809 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34810
34811         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34812         wrappers for instance methods.
34813         
34814 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34815
34816         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34817
34818 2002-08-28  Dick Porter  <dick@ximian.com>
34819
34820         * Makefile.am: Export HOST_CC for w32 builds
34821
34822 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34823
34824         * file-io.c process.c: MonoString are null terminated, no
34825         need for mono_string_to_utf16() anymore.
34826
34827 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34828
34829         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34830
34831 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34832
34833         * icall.c, reflection.h: speedup System.MonoType.
34834
34835 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34836
34837         * reflection.c: allow null as the value of a string argument in
34838         custom attributes constructors.
34839
34840 2002-08-27  Martin Baulig  <martin@gnome.org>
34841
34842         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34843         `trampoline_address' field.
34844
34845 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34846
34847         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34848         check (fixes bug #29486) 
34849
34850 2002-08-27  Martin Baulig  <martin@gnome.org>
34851
34852         * debug-mono-symfile.c: Changed the file format in a way that allows us
34853         open it read-only and to use a specially malloced area for all the
34854         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34855         debugging IL code and there is no MCS generated symbol file for it.
34856
34857 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34858
34859         * object.c: added a define for a good string and array
34860         creation speedup (not enabled by default because we need to deal with
34861         the synch stuff).
34862
34863 2002-08-26  Martin Baulig  <martin@gnome.org>
34864
34865         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34866         function to create a dynamic symbol file.  This is used by the
34867         debugger to create a symbol file for IL code on-the-fly.
34868
34869 2002-08-26  Martin Baulig  <martin@gnome.org>
34870
34871         * loader.c (mono_lookup_pinvoke_call): Include the error message
34872         from g_module_error() in the error message.
34873
34874 2002-08-24  Martin Baulig  <martin@gnome.org>
34875
34876         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34877         function to update the symbol file.  The symbol file is mmap()ed
34878         writable, but private.  This allows us to install the symbol file
34879         together with the assembly.
34880
34881 2002-08-24  Martin Baulig  <martin@gnome.org>
34882
34883         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34884         but they can read the new symbol file format which mcs is now creating.
34885
34886         * debug-symfile.c (mono_debug_find_source_location): Moved to
34887         debug-mono-symfile.c; this is now operating on the new symbol file.
34888
34889 2002-08-23  Martin Baulig  <martin@gnome.org>
34890
34891         * debug-helpers.c (mono_method_desc_from_method): New function to get
34892         a MonoMethodDesc from a MonoMethod.
34893
34894 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34895
34896         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34897         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34898
34899 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34900
34901         * string-icalls.[ch]: make helper methods static.
34902
34903 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34904
34905         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34906         types to it and to SetValueInternal.
34907
34908         * object.c: Moved handle_enum label to its proper place. This was the
34909         f... bug! ;-)
34910
34911         This time i compiled mcs and gtk-sharp and they both work.
34912
34913 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34914
34915         * icall.c: reverted partially my previous patch until 
34916         object.c:set_value handles enums correcly.
34917
34918 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34919
34920         * icall.c:
34921         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34922         (ves_icall_System_Environment_get_MachineName): removed warning when
34923         compiling under cygwin.
34924
34925 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34926
34927         * object.c: fixed field_get_value() for reference types.
34928
34929 2002-08-22  Dick Porter  <dick@ximian.com>
34930
34931         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34932         Don't free a buffer while it's still needed.  Patch from Jonathan
34933         Liger <Jonathan.liger@wanadoo.fr>
34934
34935 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34936
34937         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34938         internal call.
34939
34940 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34941
34942         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34943         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34944
34945         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34946         we call unmanaged code which throws exceptions.
34947
34948 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34949
34950         * appdomain.h: added per-domain entry_assembly.
34951         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34952         arguments.
34953         * icall.c: Assembly::GetEntryAssembly icall.
34954         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34955         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34956
34957 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34958
34959         * appdomain.h, gc.c: added mono_domain_finalize ().
34960
34961 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34962
34963         * object.c:
34964         (mono_print_unhandled_exception): changed g_warning by g_printerr
34965         because g_log has a 1024 characters limit (yeah, i got a big stack
34966         trace). Don't print exception name, that should be in ToString 
34967         returned string.
34968
34969 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34970
34971         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34972         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34973
34974 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34975
34976         * object.c:
34977         (mono_print_unhandled_exception): after previous commit, i realized
34978         that MS calls ToString on the exception. I changed this function to
34979         do that. This way we get stack_trace for free.
34980
34981 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34982
34983         * object.c:
34984         (mono_print_unhandled_exception): invoke Message property instead of
34985         getting 'message' field from Exception. Don't allocate memory for
34986         'trace' and 'message' if not needed.
34987
34988 2002-08-18  Dick Porter  <dick@ximian.com>
34989
34990         * unicode.c: Fix asserts to match Encoder.cs checks
34991
34992 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34993
34994         * marshal.c: fix unaligned store issue and a few wrong
34995         opcode argument types.
34996
34997 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34998
34999         * icall.c: added GetUninitializedObjectInternal internal call.
35000
35001 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
35002
35003         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
35004         to the right domain.
35005
35006 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
35007
35008         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
35009
35010         * class.c (class_compute_field_layout): set blittable to false for Strings
35011
35012         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
35013
35014 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35015
35016         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
35017         first chunk of code to create types at runtime. Code to
35018         handle ReflectedType/DeclaringType. Make reflection handles
35019         domain specific.
35020
35021 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35022
35023         * class.c: set correct name in arrays.
35024
35025 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
35026
35027         * appdomain.c (mono_domain_transfer_object): make it work with
35028         valuetypes. bug fixes.
35029
35030 2002-08-12  Dick Porter  <dick@ximian.com>
35031
35032         * object.h: Rename some parameters to avoid c++ keywords (Patch
35033         from Joseph Wenninger <kde@jowenn.at>)
35034
35035 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
35036
35037         * icall.c: added icall to implement Assembly.GetFile*.
35038
35039 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35040
35041         * reflection.h, reflection.c: code to embed managed resources.
35042
35043 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35044
35045         * class.c: move all the type size stuff into
35046         class_compute_field_layout().
35047
35048 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35049
35050         * class.c: ensure enums have always the correct instance size.
35051         * unicode.c: remove wrong assert.
35052
35053 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35054
35055         * assembly.c: fix mem corruption issue.
35056         * image.h, image.c: added mono_image_get_resource () to access
35057         managed resources.
35058         * icall.c: implemented Assembly.EntryPoint property and some
35059         Managed Resources related internalcalls.
35060
35061
35062 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35063
35064         * image.c, image.h: impemented mono_image_get_entry_point ().
35065         * appdomain.c: use mono_image_get_entry_point.
35066
35067 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35068
35069         * reflection.c: support the object type argument when loading
35070         custom attributes.
35071
35072 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
35073
35074         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
35075         String as return type.
35076
35077 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
35078
35079         * reflection.c: fix encoding of named args for custom attrs to match
35080         the ms implementation. Read them back when instantiating custom
35081         attributes.
35082
35083 2002-08-02  Radek Doulik  <rodo@ximian.com>
35084
35085         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
35086         by Dietmar as quick fix
35087         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
35088         16 as stack size, used on more places as quick fix before Dietmar
35089         will fix it properly
35090
35091 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35092
35093         * object.h, object.c: added accessors for fields and properties.
35094
35095 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096
35097         * class.c, class.h: made mono_class_get_field_from_name ()
35098         loop on parent types.
35099         Added mono_class_get_property_from_name ().
35100
35101 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35102
35103         * class.c, class.h: move the code to setup the type vtable in its own
35104         function so that it can be reused also for types created at runtime.
35105         Eliminate the "class" identifier from the header file.
35106         * reflection.c: setup the vtable for enums so that we can create
35107         objects for use in SetConstant ().
35108
35109 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
35110
35111         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
35112         instead of the delegate itself as this pointer (bug #28383)
35113
35114 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
35115
35116         * marshal.c (mono_marshal_get_managed_wrapper): added return type
35117         conversions.
35118
35119 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35120
35121         * loader.c: don't set the pinvoke bit on icalls.
35122
35123 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
35124
35125         * debug-helpers.c (mono_method_full_name): only print a number to
35126         indicate wrapper type (so that the output is more readable in traces).
35127
35128 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
35129
35130         * class.c (mono_class_init): include method override patch from Paolo
35131
35132 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
35133
35134         * icall.c: fixed GetTypeCode().
35135
35136 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
35137
35138         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
35139         use real delegate invoke function to make it work with multicast
35140         delegates (fix bug# 28291).
35141
35142 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35143
35144         * object.c: load constant strings.
35145
35146 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35147
35148         * reflection.c: no magic numbers.
35149         * tabledefs.h: security action enum.
35150
35151 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35152
35153         * assembly.c: fix possible memory corruption.
35154
35155 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35156
35157         * reflection.h, reflection.c: added support for linking resources.
35158         * verify.c: check we have an updated corlib.
35159
35160 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
35161
35162         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
35163         string arrays.
35164         (mono_marshal_string_array): null terminate unmanaged string arrays.
35165         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
35166
35167 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35168
35169         * icall.c: Type.GetType () can now return also types from the
35170         calling assembly.
35171
35172 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35173
35174         * loader.h, loader.c: stack walking support.
35175         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
35176         GetCallingAssembly.
35177
35178 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
35179
35180         * marshal.c: added optimisations for blittable types 
35181
35182         * class.c (mono_array_class_get): do not set blittable attribute on arrays
35183         (mono_class_setup_mono_type): set blittable attribute for single
35184         and double.
35185
35186         * marshal.c (mono_string_utf8_to_builder): impl.
35187         (mono_string_builder_to_utf8): impl.
35188         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
35189
35190 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
35191
35192         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
35193         (mono_marshal_get_managed_wrapper): impl. byref types
35194
35195 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35196
35197         * icall.c:
35198         (search_method): don't display debug message. 
35199
35200 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35201
35202         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
35203
35204 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35205
35206         * appdomain.c: set the missing filename when throwing exception.
35207
35208 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35209
35210         * metadata.c (mono_type_size): code cleanup
35211         (mono_type_stack_size): removed some test code
35212
35213 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
35214
35215         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
35216         mono_get_exception_file_not_found now.
35217
35218         * exception.c (mono_exception_from_name_two_strings): New version
35219         that will call a constructor with two string arguments. 
35220         (mono_get_exception_file_not_found): New helper routine, used to
35221         report file-not-found errors.
35222
35223 2002-07-20  Dick Porter  <dick@ximian.com>
35224
35225         * process.h:
35226         * process.c: Pass file handles to CreateProcess
35227         
35228         * icall.c:
35229         * file-io.h:
35230         * file-io.c: Implemented CreatePipe
35231
35232 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35233
35234         * metadata.c (mono_get_param_info): set alignment for value types
35235
35236 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35237
35238         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
35239         Constify mono_domain_assembly_open().
35240         * loader.c: handle null namespace in icalls.
35241
35242 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35243
35244         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
35245         (emit_str_to_ptr_conv): marshal object as structs
35246
35247         * metadata.c (mono_type_to_unmanaged): marshal object as structs
35248
35249         * marshal.c (mono_marshal_get_runtime_invoke): support value types
35250
35251 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
35252
35253         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
35254         (mono_marshal_get_native_wrapper): we an now return value types
35255
35256 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35257
35258         * verify.c: more checks implemented.
35259
35260 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
35261
35262         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
35263         (fix bug #27695)
35264         (mono_marshal_get_native_wrapper): allow byref arguments
35265         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
35266         impl. PtrToStringXXX methods
35267         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
35268         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
35269         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
35270         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
35271         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
35272
35273 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35274
35275         * reflection.c: fix buglet in parsing an assembly name.
35276
35277 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35278
35279         * marshal.c (emit_ptr_to_str_conv): first impl.
35280
35281 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35282
35283         * object.c, class.h: cache the vtable in the class as suggested by
35284         vargaz@freemail.hu (Zoltan Varga).
35285
35286 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35287
35288         * class.h, loader.c: added mono_field_from_token().
35289         * verify.c: first cut of type checking code.
35290
35291 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35292
35293         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
35294
35295 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
35296
35297         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
35298         (fix bug #27782)
35299         (mono_marshal_get_remoting_invoke): impl.
35300         (mono_delegate_begin_invoke): impl.
35301         (mono_mb_emit_save_args): impl.
35302         (mono_delegate_end_invoke): impl.
35303         (mono_marshal_get_delegate_begin_invoke):
35304         (mono_marshal_get_delegate_end_invoke):
35305         (mono_marshal_get_delegate_invoke): generate a special name for
35306         those methods (including the signature) and associate them whith
35307         the delegate class. 
35308
35309 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
35310
35311         * reflection.[ch]: 
35312         (mono_reflection_type_from_name): now it has a MonoImage parameter
35313         which is used as the default image to search the type in. If the image
35314         is NULL or getting the type from it fails, it defaults to corlib.
35315
35316         * icall.c: changed 1 call to mono_reflection_type_from_name to match
35317         new parameter.
35318
35319 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35320
35321         * reflection.c: update the parameter table index.
35322
35323 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35324
35325         * domain.c: don't include the mark byte in the string hash.
35326
35327 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35328
35329         * icall.cs: icall for Type.GetTypeCode ().
35330         * verify: a couple of fixes and disabled local initialization checks.
35331
35332 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
35333
35334         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
35335
35336         * debug-helpers.c (mono_method_full_name): print the type of the
35337         runtime wrapper
35338
35339         * metadata.c (mono_signature_hash): a hash function for signatures
35340         (mono_signature_hash): better hash algorithm
35341
35342         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
35343
35344         * debug-helpers.c (mono_method_full_name): this can now generate
35345         method names with signatures
35346
35347         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
35348         method dont have this pointers.
35349
35350 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35351
35352         * reflection.c: fixup typebuilder tokens.
35353         * image.c: fix buglet.
35354         * marshal.h: remove whitespace.
35355         * metadata.h, metadata.c: reinstate code that was removed.
35356         * verify.c: handle catch directives and fix another couple of bugs.
35357
35358 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
35359
35360         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
35361         (mono_marshal_get_native_wrapper): make it comp. with the old code
35362         (mono_marshal_get_native_wrapper): support boolean
35363         (mono_marshal_get_managed_wrapper): support more types
35364
35365 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
35366
35367         * class.c (class_compute_field_layout): compute class->blittable attribute.
35368
35369 2002-07-09  Dick Porter  <dick@ximian.com>
35370
35371         * threads.c: Make the thread cleaning up cope with threads that
35372         call ExitThread()
35373
35374 2002-07-08  Radek Doulik  <rodo@ximian.com>
35375
35376         * reflection.c (method_encode_code): use non-translated values to
35377         compute finally_start, this fixes exception handling on ppc, yay!
35378
35379         * decimal.h (struct signscale): fix endianess
35380
35381 2002-07-07  Radek Doulik  <rodo@ximian.com>
35382
35383         * reflection.c: swap box_val and not val
35384
35385 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35386
35387         * reflection.c, reflection.h: handle full assembly info in type name.
35388         Handle Type arguments when loading custom attributes.
35389         * icall.c: updated to use new mono_reflection_type_from_name () method.
35390
35391 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35392
35393         * loader.c:
35394         (method_from_memberref): also print assembly name when method not found.
35395
35396 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35397
35398         * icall.c:
35399         (ves_icall_TypeGetProperties): fixed bug #27473. 
35400
35401 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35402
35403         * reflection.c: display image name and token when cannot find the
35404         .ctor for an attribute.
35405
35406 2002-07-05  Martin Baulig  <martin@gnome.org>
35407
35408         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35409
35410 2002-07-04  Dick Porter  <dick@ximian.com>
35411
35412         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35413         compile on mingw.  This will cause mingw builds to not wait for
35414         subthreads to terminate after the main thread does.  I've lodged a
35415         bug with the mingw developers for them to wrap OpenThread().
35416
35417 2002-07-03  Dick Porter  <dick@ximian.com>
35418
35419         * threads.c: Store thread IDs instead of handles, because
35420         GetCurrentThread() returns a pseudohandle and therefore stores
35421         useless values.  mono_thread_cleanup() continues checking the
35422         array of threads until it is empty, to cope with subthreads
35423         spawning new threads after the main thread has finished.
35424
35425         * profiler.h:
35426         * profiler.c:
35427         * profiler-private.h: Pass the thread ID to thread profiler
35428         functions, instead of a handle
35429
35430 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35431
35432         * verify.c: fixes to make it more usable.
35433         * pedump.c: added --verify code to verify IL code in an assembly.
35434
35435 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35436
35437         * reflection.c: turn errors into warnings to allow compiling corlib.
35438
35439 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35440
35441         * reflection.c: add special cases to compile corlib.
35442
35443 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35444
35445         * reflection.c: handle properties with only a set method.
35446
35447 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35448
35449         * opcodes.h: add enum with opcodes in opval order.
35450
35451 2002-07-01  Dick Porter  <dick@ximian.com>
35452         
35453         * object.h:
35454         * object.c (mono_runtime_run_main): Removed unneeded argument
35455
35456 2002-06-28  Martin Baulig  <martin@gnome.org>
35457
35458         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35459
35460 2002-06-27  Dick Porter  <dick@ximian.com>
35461
35462         * threads.c: Store the handle in both the parent thread and in the
35463         subthread, to minimise the time between starting a new thread and
35464         storing its ID.
35465
35466 2002-06-26  Dick Porter  <dick@ximian.com>
35467
35468         * appdomain.c (mono_runtime_cleanup): Close the socket library
35469         after all the threads have finished, not before
35470
35471 2002-06-26  Martin Baulig  <martin@gnome.org>
35472
35473         * debug-symfile.c (mono_debug_find_source_location): Added
35474         `guint32 *line_number' argument.  If it's not NULL, store the line number
35475         there and return the file name without the line number.
35476
35477 2002-06-25  Dick Porter  <dick@ximian.com>
35478
35479         * icall.c:
35480         * process.h:
35481         * process.c: Process forking and other support functions
35482
35483 2002-06-25  Dick Porter  <dick@ximian.com>
35484
35485         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35486         things dont happen when the image is closed.
35487         (mono_image_lookup_resource): Walk the resource section looking
35488         for a particular entry
35489
35490         * cil-coff.h: PE resource section decoding
35491
35492 2002-06-25  Dick Porter  <dick@ximian.com>
35493         
35494         * assembly.h:
35495         * assembly.c: 
35496         (mono_assembly_foreach): Accessor functions to walk the list of
35497         loaded assemblies
35498         (mono_assembly_set_main):
35499         (mono_assembly_get_main): Process methods need to know which
35500         assembly is the "main" one
35501
35502         * object.c (mono_runtime_run_main): Record the main assembly
35503
35504         * debug-helpers.c: Fix typo
35505
35506 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35507
35508         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35509         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35510
35511 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35512
35513         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35514
35515 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35516
35517         * image.c (do_mono_image_open): Initialize reference count,
35518         otherwise we leak the MonoImage.
35519
35520 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35521
35522         * reflection.c: small tweak to handle self-hosting.
35523
35524 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35525
35526         * reflection.c: fix type name parse code.
35527
35528 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35529
35530         * reflection.c: break out of the loop.
35531         * image.c: special case corlib.
35532
35533 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35534
35535         * reflection.c: add all the custom attrs at the end to ensure the
35536         ctors have been properly initialized when the attributes are defined
35537         in the current assembly.
35538
35539 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35540
35541         * reflection.c: handle correctly multiple-nested types.
35542
35543 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35544
35545         * row-indexes.h: fix typos.
35546         * reflection.c: adjust for typos and fix method_def_or_ref
35547         encoding in MethodImpl table.
35548
35549 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35550
35551         * reflection.c: fix entry point patching (thanks Serge!).
35552
35553 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35554
35555         * verify.c: add check for System.Exception
35556
35557 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35558
35559         * image.c, class.c: minifix for code just c&p'ed.
35560         * reflection.c: warning fix.
35561         * object.h, loader.h, domain.c: load also StringBuilder.
35562
35563 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35564
35565         * marshal.h, marshal.c: some support code to handle complex marshaling.
35566
35567 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35568
35569         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35570         Better signatures with vtable error dump.
35571
35572 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35573
35574         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35575
35576 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35577
35578         * icall.c (ves_icall_Type_GetField): impl.
35579
35580 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35581
35582         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35583         to retrieve a marshal description blob for a field or param.
35584
35585 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35586
35587         * reflection.h, reflection.c: change order of nested type emission
35588         to avoid table corruption. The NestedTypes table is sorted.
35589         * icall.c: change order of GetConstructor results to workaround mcs bug.
35590
35591 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35592
35593         * reflection.h, reflection.c: handle field and param marshal
35594         information.
35595
35596 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35597
35598         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35599
35600 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35601
35602         * reflection.c: fix call convention.
35603
35604 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35605
35606         * reflection.h, reflection.c: mono_image_get_memberref_token()
35607         takes a type instead of a class, now. Added
35608         mono_image_get_array_token() to create tokens for the special
35609         multi-dim array methods.
35610
35611 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35612
35613         * assembly.c: handle modules (no assembly table). Split
35614         loading references in its own function.
35615         * class.c: handle moduleref resolution scope.
35616         * image.c, image.h: cache module name in image.
35617
35618 2002-06-07  Martin Baulig  <martin@gnome.org>
35619
35620         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35621         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35622
35623 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35624
35625         * icall.c: more signature fixes that used uint instead of int.
35626
35627 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35628
35629         * reflection.c: fixed signature of field refs.
35630
35631 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35632
35633         * class.c, reflection.c: handle typerefs of nested types
35634         (both on read and when writing files).
35635
35636 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35637
35638         * icall.c: fix method signatures that tried to workaround the previous
35639         typo, d'oh!
35640
35641 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35642
35643         * debug-helpers.c: fix typo.
35644
35645 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35646
35647         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35648         rewrote the PE/COFF writing code (our programs are understood by the
35649         ms runtime, now).
35650
35651 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35652
35653         * gc.c, gc.h, icall.c: weakreference support.
35654
35655 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35656
35657         * Makefile.am, mono-config.c: use $(sysconfdir).
35658
35659 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35660
35661         * icall.c: changed default precision of Double.ToString() to 15.
35662         Fixed memory leak. Unified with Single.ToString.
35663
35664 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35665
35666         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35667
35668 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35669
35670         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35671         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35672         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35673         and myself.
35674
35675 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35676
35677         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35678
35679 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35680
35681         * reflection.c, socket-io.c: more compilation fixes.
35682
35683 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35684
35685         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35686         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35687         unicode.c: warning and compiler compatibility fixes.
35688
35689 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35690
35691         * class.h, metadata.c: fixed warnings/compilation errors.
35692
35693 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35694
35695         * Makefile.am, mono-config.c, mono-config.h: configuration file
35696         support routines.
35697         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35698         config file. Export methods to insert and lookup mappings.
35699
35700 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35701
35702         * reflection.c: handle types and boxed objects in custom attr
35703         constructors.
35704
35705 2002-05-30  Martin Baulig  <martin@gnome.org>
35706
35707         * debug-symfile.c
35708         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35709
35710 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35711
35712         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35713         to lookup the implmap row for a P/Invoke method.
35714         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35715         P/Invoke method from the runtime on an as needed basis.
35716
35717 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35718
35719         * metadata.c (mono_metadata_parse_signature): impl.
35720
35721 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35722
35723         * class.c: handle .pack directive.
35724
35725 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35726
35727         * object.c: initialize static fields with RVA data.
35728
35729 2002-05-25  Martin Baulig  <martin@gnome.org>
35730
35731         * debug-symfile.c
35732         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35733
35734 2002-05-24  Martin Baulig  <martin@gnome.org>
35735
35736         * debug-symfile.c
35737         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35738         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35739         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35740
35741 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35742
35743         * object.c: special case string ctros in invoke.
35744         * gc.c: silly whitespace changes.
35745
35746 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35747
35748         * threadpool.[ch]: impl. a threadpool that can
35749         be used by mint and mono.
35750
35751 2002-05-22  Martin Baulig  <martin@gnome.org>
35752
35753         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35754         The first argument is now a `MonoReflectionModuleBuilder *', the return
35755         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35756         `methods' field to get the method builder.  The `token' argument is the
35757         unfixed token.
35758
35759         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35760         invalid characters instead of g_assert_not_reached()ing.  This seems
35761         to be the behaviour of mscorlib.
35762
35763 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35764
35765         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35766         Hestilow to fix bug #25104
35767
35768 2002-05-21  Martin Baulig  <martin@gnome.org>
35769
35770         * debug-symfile.c (mono_debug_find_source_location): New function.
35771         Looks up an IL offset in the line number table and returns the source
35772         location as a string.
35773
35774 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35775
35776         * icall.c:
35777         (mono_double_ToStringImpl): changed %f by %g until we have something
35778         better.
35779
35780 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35781
35782         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35783         parameters first in C#.
35784
35785 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35786
35787         * icall.c, reflection.h: added icall to get info about an event.
35788
35789 2002-05-20  Radek Doulik  <rodo@ximian.com>
35790
35791         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35792         endian
35793         (mono_value_box): don't use memcpy for small sizes on
35794         architectures with unaligned access
35795
35796 2002-05-20  Martin Baulig  <martin@gnome.org>
35797
35798         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35799         if `tb->parent == NULL'.
35800         (mono_reflection_create_internal_class): New function.  This is
35801         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35802         for enum types.
35803
35804         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35805         New interncall.
35806
35807 2002-05-19  Martin Baulig  <martin@gnome.org>
35808
35809         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35810         argument to get the length, don't default to the array length.
35811
35812 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35813
35814         * assembly.c (mono_assembly_setrootdir): New function used to
35815         override the MONO_ASSEMBLIES directory.
35816
35817 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35818
35819         * icall.c: ValueType_GetHashCode() initialize local var.
35820
35821 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35822
35823         * reflection.c: sort custom attributes table.
35824
35825 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35826
35827         * reflection.c: support named args in custom attributes (write support).
35828
35829 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35830
35831         * reflection.c: fix finally position calculation.
35832
35833 2002-05-15  Radek Doulik  <rodo@ximian.com>
35834
35835         * reflection.c: fixed endianess at many places
35836
35837         * icall.c (ves_icall_InitializeArray): comment out debug msg
35838
35839 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35840
35841         * object.c (mono_unhandled_exception): new function to handle
35842         unhandled exceptions.
35843         (mono_unhandled_exception): call the UnhandledException event.
35844         (mono_runtime_delegate_invoke): impl.
35845
35846 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35847
35848         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35849         returns the RVA, not the direct pointer to the data. Handle the case
35850         when the class size is fixed.
35851
35852 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35853
35854         * reflection.c: fix some endianess issues.
35855
35856 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35857
35858         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35859
35860         * threads.c (mono_thread_init): added a callback which is invoked
35861         at thread start.
35862
35863 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35864         
35865         * icall.c: make GetHashCode return non-negative values.
35866
35867 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35868
35869         * object.c, icall.c, gc.c: revert to address-based hashcode.
35870
35871 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35872
35873         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35874
35875 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35876
35877         * icall.c, class.c: special case <Module>.
35878
35879 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35880
35881         * icall.c: fix bug in GetNow().
35882
35883 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35884
35885         * object.c (mono_runtime_class_init): make sure that we call all
35886         static class constructors.
35887
35888 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35889
35890         * reflection.c: sort methodsemantics table.
35891
35892 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35893
35894         * reflection.h, reflection.c: honour init locals setting.
35895
35896 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35897
35898         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35899
35900 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35901
35902         * reflection.c: support ContructorBuilders in attribute blob creation.
35903
35904 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35905
35906         * reflection.c: some changes to build a binary that can be run
35907         directly in windows.
35908
35909 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35910
35911         * loader.c: print a big message when an icall can't be found.
35912
35913 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35914
35915         * string-icalls.c: fix bug 24248.
35916
35917 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35918
35919         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35920         icall.c, reflection.h: separate assembly loading by pathname and by
35921         assembly name. Use the MONO_PATH env var to search for assemblies.
35922
35923 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35924
35925         * assembly.c, image.h: add some support for assemblies
35926         with multiple modules.
35927         * class.c, class.h: export mono_class_from_typeref().
35928         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35929         instead.
35930
35931 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35932
35933         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35934         documentation says (the ECMA one is correct).
35935
35936 2002-05-02  Dick Porter  <dick@ximian.com>
35937
35938         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35939         Don't name the synchronisation mutex.
35940
35941 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35942
35943         * rand.c
35944         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35945         Make the prototypes match.
35946         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35947         Same.
35948
35949         * icall.c
35950         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35951         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35952         all systems have tm.tm_zone, so use strftime() with %Z to print
35953         the timezone abreviation into a temp string.
35954
35955         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35956         rather than mono_array_addr() on a MonoString on Big Endian
35957         machines.
35958
35959 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35960
35961         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35962         fix bug 24041
35963
35964 2002-04-30  Dick Porter  <dick@ximian.com>
35965
35966         * socket-io.c: Cope with SOCKET being an integer rather than a
35967         pointer now.
35968
35969         * threads.c: Added Thread_free_internal, to deal with thread
35970         handle cleanup.  Moved calls to handle_store() and handle_remove()
35971         to start_wrapper(), so each can only be called once.  Allocate
35972         synchronisation blocks with GC_malloc(), and use GC finalisation
35973         to close the handles.
35974
35975         * icall.c: added System.Threading.Thread::Thread_free_internal
35976
35977 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35978
35979         * icall.c: support Environment.Exit, CommandLineArgs().
35980
35981 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35982
35983         * object.c, object.h: added mono_runtime_run_main () and
35984         mono_runtime_get_main_args () for use in System.Environment.
35985
35986 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35987
35988         * gc.c: fix thinko, enable actual finalization since the jit is now
35989         fixed.
35990
35991 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35992
35993         * gc.c, object.c: take into account that an object may be offset wrt the address
35994         returned by GC_malloc().
35995
35996 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35997
35998         * image.c: handle files without entries in the assembly table (modules).
35999
36000 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
36001
36002         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
36003         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
36004         allowed to be null when it's System.Object class setup.
36005
36006 2002-04-27  Martin Baulig  <martin@gnome.org>
36007
36008         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
36009         if `tb->parent == NULL' rather than crashing.
36010
36011 2002-04-28  Nick Drochak  <ndrochak@gol.com>
36012
36013         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
36014         calling acos() where asin() should have been called.
36015
36016 2002-04-26  Martin Baulig  <martin@gnome.org>
36017
36018         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
36019         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
36020         there's a subdirectory called `System', but we don't want to read that
36021         subdirectory as an assembly.
36022
36023 2002-04-25  Martin Baulig  <martin@gnome.org>
36024
36025         * debug-symfile.c: Reflect latest MonoString changes.
36026
36027 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
36028
36029         * rand.c, rand.h: instance method icalls need to have an explicit
36030         this pointer as first argument in the C implementation.
36031
36032 2002-04-25  Nick Drochak <ndrochak@gol.com>
36033
36034         * icall.c: Fix typo in map for GetNonZeroBytes
36035
36036 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36037
36038         * string-icalls.c : String does now passes unit tests without any 
36039         errors, the following changes has been made:
36040         
36041         Implemented replace methods.
36042         Renaming of methods to (try) follow the standard.
36043         Fixed compare ordinal
36044         Made all memory allocated directly to function instead of via icall function.
36045         Small performance fix in is_in_array function
36046                         
36047  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
36048
36049         c (mono_string_Internal_ctor_charp_int_int):
36050         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
36051         sindex < 0, throw ArgumentOutOfRangeException instead of
36052         ArgumentNullException.
36053
36054         Added new check for length == 0, however
36055         I need to make it return String.Empty from the C code.
36056         
36057         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
36058         that calculate the length for us here.
36059         
36060         (mono_string_Internal_ctor_sbytep_int_int): Replaced
36061         mono_string_new_utf16 with mono_string_new, since value is utf8.
36062
36063 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36064
36065         * object.c: register the object for finalization if needed.
36066         Allocate one more char in the string for the terminating 0 char.
36067
36068 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
36069
36070         * class.c, class.h, image.c: check if a type implemenst a destructor.
36071         Use the proper key for array class lookups.
36072         * icall.c: register the icalls in the System.GC class.
36073         * gc.c, gc.h: GC-related functions and icalls.
36074
36075 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36076
36077         * icall.c:
36078         * socket-io.c:
36079         * unicode.c: free some strings gotten from mono_string_to_utf8 and
36080         changed a couple of free () by g_free ().
36081
36082         * decimal.c: one-liner in the comments for decimal2string ().
36083
36084 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36085
36086         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
36087
36088 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36089
36090         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
36091         * object.c (mono_runtime_invoke_array) : handle null in params
36092
36093 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36094
36095         * string-icalls.c: fixed bug in split (one off bug)
36096
36097 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36098
36099         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
36100         * icalls.c: added String::Equals as internal method
36101
36102 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36103
36104         * threads.c: fixed bug in the double interlocked functions
36105
36106 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
36107
36108         * threads.c: implemented all of the new interlocked icalls.
36109         * string-icalls.c: fix a bug in insert.
36110         * icalls.c: added the icalls for interlocked, removed old string functions.
36111         
36112 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36113
36114         * loader.c: fix off-by-one error when reading argument names.
36115
36116 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36117
36118         * profiler.c: win32 counter implementation (untested).
36119         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
36120         (the latter needs testing and more complete impl. from win32 folks).
36121
36122 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
36123
36124         * object.c: mono_array_new_full workaround mono_array_class_get
36125         problem.
36126
36127 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36128
36129         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
36130         * object.h (mono_string_chars): Changed casting type.
36131
36132 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36133
36134         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
36135                            method signatures to use gunichar2 instead of gint16.
36136
36137 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
36138
36139         * object.h, object.c: domain-specific versions of mono_object_new and
36140         mono_array_new.
36141
36142 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
36143
36144         * object.c: changed String layout
36145
36146         * string-icalls.c (mono_string_Internal_ctor_chara): added
36147         internal string constructors.
36148
36149 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
36150
36151         * threads.c: pass 'this' to the thread start routine.
36152
36153 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36154
36155         * string-icalls.c: fix IndexOf and LastIndexOf. Now
36156         InternalCompareStr don't call twice mono_string_cmp_char for the last
36157         character. Improved performance in mono_string_cmp_char.
36158
36159 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
36160
36161         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
36162         code into its own library: libmonoruntime.
36163
36164 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
36165
36166         * object.h, object.c: changed array format so that szarrays do not
36167         require a bounds structure.
36168         * icall.c, appdomain.c: support for new szarray format.
36169
36170 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
36171
36172         * metadata.c: compare also the retuns type when comparing signatures:
36173         we didn't do this as an optimization since really overloaded methods
36174         must differ also in the arguments, but this doesn't work with
36175         low-level IL code (or when using explicit conversion operators: see
36176         bug#23498 for an example).
36177
36178 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
36179
36180         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
36181
36182 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
36183
36184         * icall.c: make MonoType::GetElementType its own icall.
36185
36186 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
36187
36188         * icall.c: remove MonoMethod_get_Name().
36189         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
36190         object.
36191
36192 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36193
36194         * string-icalls.c: optimized a few methods.
36195
36196 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36197
36198         * icall.c: added all new string internal calls
36199         * string-icalls.c: added, new string internal call implementation.
36200         * object.c: added mono_string_new_size for allocating a string a size
36201
36202 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
36203
36204         * object.c (mono_object_isinst): use the same code as in the
36205         optimized x86 version.
36206
36207 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36208
36209         * profiler.c: TSC-based timer code (faster and more accurate).
36210         Not hooked up in configure, yet (set USE_X86TSC to 1).
36211
36212 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
36213
36214         * profiler.c, profiler.h: track time spent compiling methods.
36215         * threads.c: track thread creation/destruction.
36216
36217 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
36218
36219         * profiler.c, profiler.h, profiler-private.h: profiling interface
36220         and sample implementation. Moved here so that it can be used also by
36221         the jit.
36222
36223 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
36224
36225         * reflection.c, reflection.h: keep types and other handles separate in
36226         the hash tables for referred tokens. Add guid for modules.
36227
36228 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
36229
36230         * assembly.c: fix bugs found with valgrind.
36231         * metadata.h, metadata.c: added mono_metadata_guid_heap().
36232
36233 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
36234
36235         * threads: added icall support for getting current domain for
36236                    the thread.
36237  
36238 2002-04-13  Martin Baulig  <martin@gnome.org>
36239
36240         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
36241         (MonoDebugVarInfo): Added `index' field for register based addresses.
36242         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
36243         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
36244         `MonoDebugVarInfo *params' and `guint32 this_offset' with
36245         `MonoDebugVarInfo *this_var'.
36246
36247         * debug-symfile.c (relocate_variable): New static function to write
36248         a location description for a local variable or method parameter.
36249
36250 2002-04-12  Martin Baulig  <martin@gnome.org>
36251
36252         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
36253         stack offset and begin/end scope address of a local variable.
36254         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
36255         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
36256         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
36257
36258         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
36259         Added new relocation types for start/end scope of a local variable.
36260
36261 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36262
36263         * object.h: add mono_object_domain() macro.
36264         * reflection.c: handle typespecs.
36265         * icall.c: MonoMethod::get_Name() implementation.
36266
36267 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36268
36269         * icall.c: String::GetHashCode() icall implementation.
36270
36271 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36272
36273         * icall.c: String::IndexOfAny icall.
36274         * object.c, object.h: make array->max_length more useful.
36275         Intrduced mono_object_class() and mono_string_length() macros.
36276
36277 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36278
36279         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
36280         instead of g_unichar_isdigit.
36281
36282 2002-04-11  Nick Drochak  <ndrochak@gol.com>
36283
36284         * icall.c: Implement a simple Double.ToString().
36285
36286 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36287
36288         * appdomain.h: only io-layer.h is supposed to be included.
36289         * icall.c: explicitly import environ. Fix warning.
36290
36291 2002-04-10  Nick Drochak  <ndrochak@gol.com>
36292
36293         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
36294                 return true even if it's not Daylight Savings time.
36295                 Only return false for the case where the function isn't
36296                 implemented for a plaform (read Windows).
36297
36298 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36299
36300         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
36301         data with a mutex.
36302
36303 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
36304
36305         * mempool.c (mono_mempool_alloc): only use g_malloc when
36306         absolutely necessary.
36307
36308 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36309
36310         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
36311
36312         * class.c (mono_class_vtable): use domain mempool to allocate vtable
36313         (mono_class_proxy_vtable): use domain mempool
36314
36315 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
36316
36317         * appdomain.h, appdomain.c: split initialization that requires the
36318         execution engine support into mono_runtime_init().
36319
36320 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36321
36322         * class.c (mono_class_init): don't include vtable inside MonoClass
36323         to save some memory, gather some statistics.
36324         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
36325
36326 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36327
36328         * icall.c: internalcall implementation for ValueType.Equals().
36329
36330 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
36331
36332         * object.c (mono_message_init): moved 
36333         (mono_runtime_exec_main): new arch. independent impl.
36334         (mono_runtime_invoke_array): new method - like
36335         mono_runtime_invoke, but you can pass an array of objects.
36336         (mono_remoting_invoke): new arch. independent impl.
36337         (mono_message_invoke): new arch. independent impl.
36338         (mono_runtime_class_init): new arch. independent impl.
36339         (mono_runtime_object_init): new arch. independent impl.
36340
36341 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36342
36343         * metadata.c, object.c, reflection.c: documented the exported
36344         functions.
36345
36346 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
36347
36348         * icall.c: simpler code to pass the assembly builder data to corlib.
36349         Implement GetNestedTypes() internalcall.
36350
36351 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36352
36353         * class.c: warn if a type can't be loaded.
36354
36355 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
36356
36357         * image.h: typedef MonoImageOpenStatus
36358         * types.h: removed unused file
36359         
36360 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
36361
36362         * icall.c: Enum_ToObject accepts enum value arguments.
36363
36364 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
36365
36366         * class.c: move initialization of properties, events and nested
36367         classes, so that they happen for interfaces, too.
36368
36369 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
36370
36371         * icall.c: cleanup some ugly casts in Array_SetValue*.
36372
36373 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36374
36375         * icall.c: the values array fro enums is of the correct type, now.
36376         Implement (correctly) getFullName instead of assQualifiedName for
36377         MonoType.
36378         * reflection.h, reflection.c: added mono_type_get_name ().
36379
36380 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36381
36382         * assembly.c, image.h: for each MonoImage, record from wich assembly
36383         it was loaded.
36384         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
36385         Make Type.Assembly work.
36386
36387 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
36388
36389         * debug-symfile.h: use char* instead of gpointer to avoid
36390         unnecessary casts.
36391
36392         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36393
36394         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36395         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36396
36397 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36398
36399         * icall.c (mono_message_init): impl. (code cleanup)
36400         (ves_icall_InternalExecute): impl. FieldGetter
36401
36402         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36403         defined we call all (non-static)methods through the vtable. 
36404
36405 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36406
36407         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36408         finalizer even though the memory is still referenced (and the chunk of
36409         memory is not freed).
36410
36411 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36412
36413         * assembly.c: fix brokeness.
36414
36415 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36416
36417         * class.c: kill some warnings. Check explicit interface method
36418         implementation also without considering the namespace.
36419         Load also literal strings in static class data.
36420
36421 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36422
36423         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36424         (default_assembly_name_resolver): Make the resolver take the
36425         "base" directory where the assembly was originally defined, so we
36426         can load DLLs that are in the same directory as the assembly that
36427         is being referenced.
36428
36429 2002-03-28  Dick Porter  <dick@ximian.com>
36430
36431         * file-io.h: 
36432         * file-io.c:
36433         * socket-io.c: 
36434         * unicode.h: 
36435         * unicode.c: Warning cleanups
36436
36437 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36438
36439         * object.h, reflection.h: use the correct type instead of MonoObject.
36440
36441 2002-03-28  Martin Baulig  <martin@gnome.org>
36442
36443         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36444         (mono_debug_update_symbol_file): Initialize classes if necessary.
36445
36446 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36447
36448         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36449         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36450
36451 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36452
36453         * assembly.h: fix function prototype.
36454         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36455         * mono-endian.h: use const cast.
36456
36457 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36458
36459         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36460
36461 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36462
36463         * loader.c: don't assert when a typeref can't be loaded, give
36464         a chance to the runtime to trow an exception instead.
36465         * loader.h: fix warning.
36466
36467 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36468
36469         * class.c (mono_class_proxy_vtable): added proxy support
36470
36471 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36472
36473         * icall.c: removed last of PAL calls, added System.Environment
36474         * file-io.h, file-io.c: MonoIO implementation
36475         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36476
36477 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36478
36479         * appdomain.c: do not use the byte marker in ldstr table lookup.
36480         * debug-helpers.c: allow two ':' to separate class and method name.
36481         * object.c: allocate arrays bounds with the GC, too.
36482         * verify: add a few more checks.
36483
36484 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36485
36486         * reflection.c: output also literal strings. Allocate parameter data
36487         with GC_malloc() (thanks, Martin, for catching this!).
36488
36489 2002-03-26  Martin Baulig  <martin@gnome.org>
36490
36491         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36492         include the `this' offset in the `param_offsets'.
36493
36494 2002-03-25  Martin Baulig  <martin@gnome.org>
36495
36496         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36497         mono_debug_get_class() function to get the classes. Added new
36498         relocation types for arrays and strings.
36499         (mono_debug_get_class): New static function to search in all
36500         referenced assemblies for a metadata token.
36501
36502         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36503
36504 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36505
36506         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36507         hold gc-allocated objects. Make the string heap a stream like the
36508         others. Removed duplicated code when writing stream info.
36509         Added asserts to catch possible buffer overflows. Set the sorted map
36510         for tables that need sorting. Added some documentation.
36511
36512 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36513
36514         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36515         for interned strings and vtables.
36516
36517 2002-03-24  Martin Baulig  <martin@gnome.org>
36518
36519         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36520         it in the array since it was created with g_slist_prepend().
36521
36522 2002-03-24  Martin Baulig  <martin@gnome.org>
36523
36524         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36525         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36526         (mono_debug_method_from_token): Renamed to
36527         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36528         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36529
36530         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36531         relocation types.
36532
36533         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36534
36535 2002-03-24  Martin Baulig  <martin@gnome.org>
36536
36537         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36538         (mono_debug_method_from_token): New func.
36539
36540         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36541         New interncall, calls mono_debug_local_type_from_signature().
36542         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36543         calls mono_debug_method_from_token().
36544
36545 2002-03-23  Martin Baulig  <martin@gnome.org>
36546
36547         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36548         specifies the number of bytes to be converted, not the array size.
36549         Return the number of chars, not the number of bytes.
36550         (ves_icall_iconv_get_chars): The `byteCount' argument
36551         specifies the number of bytes to be converted, not the array size.
36552
36553 2002-03-23  Martin Baulig  <martin@gnome.org>
36554
36555         * reflection.h (MonoReflectionSigHelper): New type.
36556
36557         * reflection.c (mono_reflection_sighelper_get_signature_local),
36558         (mono_reflection_sighelper_get_signature_local): New functions.
36559
36560         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36561         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36562         interncalls.
36563
36564 2002-03-23  Martin Baulig  <martin@gnome.org>
36565
36566         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36567         is_writeable is set.
36568         (mono_raw_buffer_update): New function to write the modified map
36569         back to disk.
36570
36571         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36572
36573         * debug-symfile.c (mono_debug_update_symbol_file): Call
36574         mono_raw_buffer_update() when done writing.
36575
36576 2002-03-23  Martin Baulig  <martin@gnome.org>
36577
36578         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36579
36580         * debug-symfile.c: Added support for arguments and local variables.
36581
36582 2002-03-23  Dick Porter  <dick@ximian.com>
36583
36584         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36585         protected by ifdefs, hence breaking the w32 build.
36586
36587 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36588
36589         * object.c: implement is_interned() the right way.
36590
36591 2002-03-21  Martin Baulig  <martin@gnome.org>
36592
36593         * debug-symfile.[ch]: New files to handle debugging information
36594         files. There's also support to dynamically update these symbol
36595         files to include machine dependent information.
36596
36597 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36598
36599         * threads.c (mono_thread_create): new function to create thread
36600         from C
36601
36602 2002-03-20  Martin Baulig  <martin@gnome.org>
36603
36604         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36605         method is a constructor.
36606         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36607         points to ves_icall_InternalInvoke().
36608
36609 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36610
36611         * file-io.c: Flush shouldn't throw exceptions.
36612
36613 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36614
36615         * file-io.c: FileStream flush support; FileSetLength now
36616         restores file pointer.
36617
36618 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36619
36620         * class.c: set image for pointer classes.
36621
36622 2002/03/19  Nick Drochak <ndrochak@gol.com>
36623
36624         * sysmath.c: Forgot one.
36625
36626 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36627
36628         * sysmath.c: Avoid redefining existing names.
36629
36630 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36631
36632         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36633         handled by runtime as icall rather than dllimport from libm.so
36634         * file-io.c, file-io.h: fixed handle argument type.
36635
36636 2002-03-18  Dick Porter  <dick@ximian.com>
36637
36638         * reflection.c (mono_image_get_type_info): rename interface to
36639         iface, because of "#define interface struct" on windows.
36640
36641 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36642
36643         * class.c, class.h: rename and export mono_ptr_class_get().
36644         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36645         * reflection.c, reflection.h, icall.c: better/saner type name
36646         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36647         method signatures.
36648
36649 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36650
36651         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36652
36653         * icall.c (ves_icall_InternalInvoke): impl.
36654
36655 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36656
36657         * reflection.c: output the interface map table, too.
36658
36659 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36660
36661         * class.c (class_compute_field_layout): separate computation of 
36662         static field layout
36663
36664 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36665
36666         * icall.c: added System.Buffer support.
36667         * file-io.c: moved file icalls from PAL to FileStream.
36668
36669 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36670
36671         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36672
36673 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36674
36675         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36676
36677 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36678
36679         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36680
36681 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36682
36683         * debug-helpers.{c,h}: moved here from monograph some useful functions
36684         to locate a method by name/signature in a class or image. Included
36685         also a small and flexible IL disassembler.
36686
36687 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36688
36689         * reflection.c: fixup tokens in methods with small header size, too.
36690
36691 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36692
36693         * object.c (mono_string_to_utf8): remove assert(!error), instead
36694         print a warning. 
36695
36696 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36697
36698         * icall.c: update to the new mono_Array_class_get interface.
36699
36700 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36701
36702         * appdomain.c, object.c: Boehm-GC enable.
36703         * icall.c: make get_data_chunk() support split data requests.
36704         Ensure a class is initialized in more cases. Return only the first
36705         property found in GetProperties() or the compiler gets confused. 
36706         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36707         * reflection.h, reflection.c: add fixup mechanism for field and method
36708         tokens. Initialize assembly->typeref in a single place. Output
36709         properties after events. Support custom attributes for events, too.
36710         Typo fix for paramter custom attrs.
36711
36712 2002-03-07  Martin Baulig  <martin@gnome.org>
36713
36714         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36715
36716 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36717
36718         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36719
36720 2002-03-06  Martin Baulig  <martin@gnome.org>
36721
36722         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36723         non-zero lower bounds. See testcases #F10-#F13.
36724
36725 2002-03-05  Martin Baulig  <martin@gnome.org>
36726
36727         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36728
36729         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36730         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36731         here.
36732         (ves_icall_System_Array_SetValue): Likewise.
36733         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36734         as argument and does the actual work. This function is used when copying a
36735         multi-dimensional array.
36736         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36737         now do all the widening conversions of value types.
36738         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36739
36740 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36741
36742         * class.c: remove some magic numbers and use the smbolic names,
36743         instead. Added init_events() to load event info at class init time.
36744         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36745         and mono_metadata_methods_from_event().
36746         * reflection.h, reflection.c: added support for writing out the evnets
36747         related information.
36748
36749 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36750
36751         * reflection.h, icall.c: use a different method (GetInterfaces)
36752         to gather interface info and add isbyref, isprimitive and
36753         ispointer to the ves_icall_get_type_info() return value.
36754
36755 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36756
36757         * class.h: stared adding support for events.
36758         * icall.c: split find_members implementation. Added debug icall to get
36759         the address of an object.
36760         * reflection.c: handle TypeBuilders in mono_type_get_object().
36761
36762 2002-03-01  Martin Baulig  <martin@gnome.org>
36763
36764         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36765         ArgumentOutOfRangeException(), not an ArgumentException().
36766         (ves_icall_System_Array_GetLowerBound): Likewise.
36767         (ves_icall_System_Array_GetValue): Improved argument checking.
36768         (ves_icall_System_Array_SetValue): Improved argument checking.
36769
36770 2002-03-01  Martin Baulig  <martin@gnome.org>
36771
36772         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36773         called with invalid arguments rather than just dying with g_assert().
36774         (ves_icall_System_Array_SetValue): Likewise.
36775         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36776         raise a NotImplementedException instead.
36777         (ves_icall_System_Array_GetLength): Added argument checking.
36778         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36779
36780 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36781
36782         * object.h (mono_assert): new macros mono_assert and
36783         mono_assert_not_reached
36784
36785 2002-02-28  Martin Baulig  <martin@gnome.org>
36786
36787         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36788         and "System::String::IsInterned" to "System::String::_IsInterned".
36789
36790 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36791
36792         * icall.c: remove hacks for typebuilder. Added icall to create a
36793         modified type from a tybebuilder.
36794         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36795         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36796         to create a backing MonoClass for a TypeBuilder.
36797
36798 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36799
36800         * class.c, class.h: more refactoring of class init.
36801         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36802
36803 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36804
36805         * marshal.c, marshal.h: start of marshaling interface.
36806
36807 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36808
36809         * icall.c: fix order in assembly qualified name icall.
36810
36811 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36812
36813         * class.c: do not free str, since we store it in the hash table.
36814         * reflection.h: add label field to MonoILExceptionInfo.
36815         * reflection.c: handle references to more than one assembly. Handle
36816         case when there isn't a module created in the assembly.
36817
36818 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36819
36820         * class.c: Fix typo. Start refactoring of class init code.
36821
36822 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36823
36824         * appdomain.c: exit with 1 on error.
36825         * class.c: we already have the name in MonoClassField.
36826         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36827         MonoStreamHeader instead of an offset of image->raw_metadata.
36828
36829 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36830
36831         * appdomain.c (mono_init): Be even more descriptive about the error.
36832
36833 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36834
36835         * appdomain.c: give the user an informative message when corlib can't
36836         be loaded.
36837
36838 2002-02-26  Martin Baulig  <martin@gnome.org>
36839
36840         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36841         New icall to get the time zone data.
36842
36843 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36844
36845         * reflection.c: set virtual and raw size of section correctly.
36846         * threads.c: transfer domain information to newly created threads.
36847
36848 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36849
36850         * class.c: when instancing a class in a domain, load the default
36851         vaules for static fields from the constant table. Fix System.Enum to
36852         not be an enum.
36853         * icall.c: implement Object::GetType() internalcall. Implemented
36854         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36855         Fixed checking of binding flags in find_members().
36856         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36857         * reflection.c: handle enumerations when writing to the constant
36858         table. Use a different object cache for types.
36859
36860
36861 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36862
36863         * object.c (mono_object_isinst): fix for arrays
36864
36865         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36866
36867 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36868
36869         * object.c: don't use mprotect ()  and fix intern pool hash table
36870         lookup for big endian systems.
36871
36872 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36873
36874         * icall.c: change type_is_subtype_of () signature.
36875
36876 2002-02-21  Mark Crichton  <crichton@gimp.org>
36877
36878         * rand.c, rand.h: Added random number generator for
36879         System.Security.Cryptography classes.
36880
36881         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36882
36883         * icall.c: Added System.Security.Cryptography calls.
36884
36885 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36886
36887         * class.c, icall.c, metadata.c: better support for pointer types.
36888         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36889         * reflection.c: Add support for getting custom attrs for properties
36890         and simplify some code.
36891
36892 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36893
36894         * icall.c: change getToken () and add custom attribute GetBlob()helper
36895         method.
36896         * reflection.h: add custom attrs array to the reflection builder structures.
36897         * reflection.c: encode and emit custom attributes for all the relevant
36898         reflection objects. Cache fieldref and methodref tokens. Change
36899         mono_image_create_token() interface to take a MonoDynamicAssembly.
36900         More complete custom attributes decoder. Load custom attributes for
36901         Assembly, Field, Method and Constructor objects, too. Make the
36902         returned array an Attribute[] one, not object[]. Added
36903         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36904         custom attribute constructor.
36905
36906 2002-02-20  Dick Porter  <dick@ximian.com>
36907
36908         * icall.c:
36909         * rawbuffer.c:
36910         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36911         problem code out for now).
36912
36913 2002-02-19  Radek Doulik  <rodo@ximian.com>
36914
36915         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36916
36917 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36918
36919         * icall.c: register the GetCustomAttributes method.
36920         * object.c, object.h: add mono_string_new_len ().
36921         * reflection.h, reflection.c: added mono_runtime_invoke(),
36922         mono_install_runtime_invoke(). Added
36923         mono_reflection_get_custom_attrs () to load custom attributes and
36924         create the attribute objects.
36925
36926 2002-02-19  Dick Porter  <dick@ximian.com>
36927         * threads-dummy-types.c:
36928         * threads-dummy-types.h:
36929         * threads-dummy.c:
36930         * threads-dummy.h:
36931         * threads-pthread-types.c:
36932         * threads-pthread-types.h:
36933         * threads-pthread.c:
36934         * threads-pthread.h:  Deleted obsolete files
36935
36936 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36937
36938         * class.c (mono_class_vtable): runtime init the class when we
36939         allocate static class data.
36940
36941         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36942
36943         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36944         and String - but we will need generic marshalling support in the
36945         future. 
36946         (mono_init): set the domain name in a ms compatible way
36947
36948         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36949         String[].
36950
36951 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36952
36953         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36954         for sizes
36955
36956         * appdomain.c (mono_domain_unload): impl.
36957
36958 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36959
36960         * appdomain.c, object.c: fix intern pool implementation.
36961         * class.c: fix alignment code.
36962
36963 2002-02-16  Radek Doulik  <rodo@ximian.com>
36964
36965         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36966         and s2 > s1, just copy lower bytes to be compatible with little
36967         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36968         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36969
36970         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36971         force big_endian to be 1 for big endian machines 
36972         (ves_icall_iconv_new_decoder): ditto
36973
36974 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36975
36976         * socket-io.c (convert_sockopt_level_and_name): If the system
36977         doesn't define SOL_IP or SOL_TCP, get them by hand using
36978         getprotobyname() and caching the values (because this could be a
36979         slow operation).
36980         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36981         Use the appropriate struct when the system does support it. Ie,
36982         not all systems have struct ip_mreqn so use struct ip_mreq when
36983         appropriate.
36984
36985 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36986
36987         * reflection.c: handle finally clauses.
36988
36989 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36990
36991         * socket-io.c: use g_snprintf() instead of snprintf.
36992
36993 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36994
36995         * reflection.c (mono_param_get_objects): Cast second argument to
36996         mono_method_get_param_names to a const char** to silence the
36997         compiler warning.
36998
36999         * appdomain.c (mono_domain_assembly_open): Put parens around the
37000         truth statement in the for-loop.
37001
37002         * unicode.c (iconv_convert): Got rid of a compiler warning about
37003         int i being unused when the system has a new iconv.
37004         (iconv_get_length): Same.
37005
37006         * image.c (load_class_names): Cast the second argument to
37007         g_hash_table_insert() to char* to hush compiler warnings about the
37008         arg being a const.
37009         (mono_image_open): Same here.
37010
37011         * socket-io.c: Don't conditionally include sys/filio.h or
37012         sys/sockio.h here anymore since we now get them from
37013         io-layer/io-layer.h
37014         (inet_pton): If the system doesn't support inet_aton, implement
37015         using inet_addr and also #define INADDR_NONE if it isn't defined
37016         by the system.
37017
37018 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
37019
37020         * metadata.c, metadata.h: added function to get packing and size info
37021         of a typedef.
37022         * reflection.h, reflection.c: handle field RVA data. Save info about
37023         the table layout if needed. Assign typedef indexes to all the types
37024         before dumping the info about them to avoid forward reference problems.
37025
37026 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
37027
37028         * socket-io.c (convert_sockopt_level_and_name): ifdef
37029         SO_ACCEPTCONN because it is not defined on my system (old debian)
37030
37031 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
37032
37033         * opcode.c: use stddef.h to get NULL.
37034
37035 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37036
37037         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
37038         for FIONBIO, FIONREAD and SIOCATMARK.
37039         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
37040         define INADDR_NONE and besides, inet_addr() is deprecated and
37041         should not be used. Use inet_pton() instead - it also has the
37042         added bonus that it can easily handle IPv6 addresses as well.
37043         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
37044
37045 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
37046
37047         * decimal.c: remove _MSC_VER conditional.
37048
37049 2002-02-13  Dick Porter  <dick@ximian.com>
37050
37051         * socket-io.c: 
37052         * icall.c: Internal calls for Blocking, Select, Shutdown,
37053         GetSocketOption and SetSocketOption
37054
37055 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37056
37057         * assembly.cs: better resolver: use it instead of some kludgy
37058         code.
37059
37060 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
37061
37062         * reflection.c: the best way to speed-up the compiler is to avoid
37063         infinite loops.
37064
37065 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
37066
37067         * class.c (mono_class_vtable): changed the object layout
37068         (obj->vtable->class). 
37069         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
37070
37071 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37072
37073         * assembly.c: look for assemblies in the assembly dir, too.
37074
37075 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37076
37077         * class.c: fix thinko in mono_class_from_type().
37078
37079 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
37080
37081         * exception.h, exception.c: added TypeLoadException.
37082         * object.h, object.c: added mono_array_clone ().
37083         * icall.c: handle throwOnError in AssemblyGetType().
37084         Added Array.Clone().
37085         * opcode.h, opcode.c: use a single value for the opcode val.
37086         Compile fix for non-gcc compilers.
37087
37088 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
37089
37090         * opcodes.c, opcodes.h: export interesting info about opcodes.
37091
37092 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
37093
37094         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
37095         icalls. 
37096
37097         * class.c (class_compute_field_layout): set element_class for enums
37098         (mono_class_create_from_typedef): set element_class for normal classes
37099
37100         * icall.c (ves_icall_System_Enum_get_value): impl.
37101
37102         * class.c (mono_class_create_from_typedef): do not set valuetype
37103         flag for System.ValueType and System.Enum
37104
37105 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
37106
37107         * unicode.c (iconv_convert): fix big endian problem.
37108
37109 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
37110
37111         * class.c: add asserts if we are ever going to scribble over memory.
37112         * socket-io.c: not all systems have AF_IRDA defined.
37113
37114 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
37115
37116         * class.c (class_compute_field_layout): do not consider static
37117         fields to compute alignment
37118
37119 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
37120
37121         * appdomain.c (mono_appdomain_get): impl.
37122         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
37123
37124 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
37125
37126         * icall.c: ignore "file://" prefix when loading an assembly.
37127
37128 2002-01-23  Dick Porter  <dick@ximian.com>
37129
37130         * socket-io.c:
37131         * icall.c:
37132         * Makefile.am: Added socket support
37133
37134 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37135
37136         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
37137         code back.  This should return the assemblies that are loaded by
37138         the runtime on behalf of an application domain. 
37139
37140         The current implementation is still broken, it just returns every
37141         assembly loaded, but until we get real applications domain this
37142         will do.
37143
37144 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
37145
37146         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
37147         AppDomain object.
37148
37149 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37150
37151         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
37152         the mono_class_from_name lookup.
37153         (ves_icall_get_parameter_info): ditto.
37154         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
37155         method.
37156         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
37157
37158 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
37159
37160         * class.c: load also nested classes on class init.
37161         System.ValueType instance methods gets passed boxed
37162         values, unless methods in derived classed that get a pointer to the
37163         data.
37164         * icall.c: use better name parsing code in GetType().
37165         * image.c, image.h: add mono_image_loaded ().
37166         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
37167         * reflection.c, reflection.h: added mono_reflection_parse_type().
37168
37169 2002-01-22  Veronica De Santis <veron78@interfree.it>
37170
37171         * icall.c : Added mapping of internal calls for Manual and Auto reset events
37172         * threads.c : Added the implementation of internal calls for events
37173         * threads.h : Added prototypes of internal calls for events
37174         
37175 2002-01-21  Radek Doulik  <rodo@ximian.com>
37176
37177         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
37178
37179 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
37180
37181         * class.c (mono_class_init): set min_align to 1 (instead of 0)
37182         (mono_class_value_size): use min_align
37183
37184 2002-01-20  Dick Porter  <dick@ximian.com>
37185
37186         * threads.h:
37187         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
37188         so it compiles on w32.
37189
37190 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
37191
37192         * metadata.c (mono_type_stack_size): impl.
37193
37194         * class.c (mono_class_get_field): impl. memberref token
37195
37196 2002-01-16 Veronica De Santis <veron78@@interfree.it>
37197
37198         * icall.h : Added the internal calls mapping for CreateMutex_internal
37199                     and ReleaseMutex_internal.
37200         * threads.h : Added the prototype of mutexes internal calls.
37201         * threads.c : Added the implementations of mutexes internal calls.
37202
37203 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
37204
37205         * metaparse.h: removed unused file.
37206         * reflection.c, reflection.h: added stream_data_align () function 
37207         to align data in streams and keep stream aligned. Add support for
37208         exception support in method headers.
37209
37210 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
37211
37212         * unicode.c: make iconv_convert () return the number of bytess written
37213         in the output buffer.
37214
37215 2002-01-15  Dick Porter  <dick@ximian.com>
37216         * threads.c: Make the runtime's idea of infinite timeouts coincide
37217         with the class library's
37218
37219         Fix a particularly egregious bug in mono_thread_cleanup(). That
37220         code was so utterly bogus it must have been written on a Monday.
37221
37222 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
37223
37224         * reflection.h: add subtypes field to TypeBuilder.
37225         * reflection.c: encode constants for literal fields.
37226         Handle subtypes. Fix user string token (and add a zero byte)
37227         at the end.
37228         
37229 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
37230
37231         * class.c (mono_class_init): bug fix: assign slot numbers for
37232         abstract methods.
37233
37234 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37235
37236         * reflection.c: don't try to output a code RVA for abstract methods.
37237         Small fixes for method header format. Output parameter info to the
37238         ParamDef table. Save method overriding info to MethodImpl table.
37239         Fix property support. Allow typedef.extends to be a type in the
37240         building assembly.
37241         * verify.c: fix off-by-one error.
37242
37243 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
37244
37245         * class.c: fix mono_class_from_mono_type () for szarray types.
37246         Remove unused cache check in mono_class_from_type_spec().
37247         * icall.c: *type_from_name () functions handle simple arrays and byref.
37248         * reflection.c: handle byref and szarray types. Handle methods without
37249         body (gets P/Invoke compilation working). Handle types and fields in
37250         get_token ().
37251         * reflection.h: add rank to MonoTypeInfo.
37252
37253 2002-01-10  Dick Porter  <dick@ximian.com>
37254
37255         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
37256         internal calls
37257
37258 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
37259
37260         * icall.c: initialize class in type_from_handle ().
37261         Loop also in parent classes for get_method ().
37262         * reflection.c: properly encode class and valuetype types.
37263         Start on encoding TypeBuilder types. Handle fieldrefs.
37264         Use correct length when registering a user string.
37265         Handle ConstructorBuilder and MonoMethod in get_token ().
37266         Make mono_type_get_object () aware of cached types.
37267         * object.c: back out change to mono_string_new ().
37268
37269 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
37270         * object.c: mono_string_new should return a NULL when the string 
37271         passed in is NULL -- not try to deference it.
37272         
37273 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
37274
37275         * icall.c: hack to make IsSubType work for TypeBuilders.
37276         * reflection.c: emit constructors before methods.
37277         Retrieve param names in mono_param_get_objects().
37278
37279 2002/01/05  Nick Drochak  <ndrochak@gol.com>
37280
37281         * Makefile.am: fix list of headers and sources so automake 1.5
37282         doesn't complain. Removed \# at end of list.
37283
37284 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
37285
37286         * reflection.c: get token for a method ref. Set return type of
37287         constructor to void.
37288         * loader.c: debug message.
37289         * class.c: typo fix.
37290
37291 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
37292
37293         * icall.c: fix array init with rank > 1. FindMembers
37294         loops in parent class as well.
37295         * image.c: do not insert nested types in name cache.
37296         * reflection.c: warning fix.
37297         * reflection.h: add override method (for interface impl).
37298
37299 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
37300
37301         * metadata.c: fix customattr decoding.
37302
37303 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
37304
37305         * rawbuffer.cs: Added native Win32 implementation, avoids using
37306         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
37307
37308 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
37309
37310         * class.c: make the low-level routines handle the cache.
37311
37312 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
37313
37314         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
37315
37316 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
37317
37318         * class.c: fix mono_array_element_size() for objects.
37319         * class.h, class.c: add properties to MonoClass and load them
37320         at init time.
37321         * icall.c: check with isinst() when assigning a value to an array
37322         instead of requiring the classes to match exactly.
37323         Implemented icall for System.Type::GetType().
37324         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
37325         enums. Handle bindingflags when looking for methods and fields.
37326         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
37327         and mono_metadata_methods_from_property().
37328         * reflection.h, reflection.c: added structures for propreties,
37329         parameters and enums. Implemented mono_property_get_object() and
37330         mono_param_get_objects().
37331
37332 2001-12-18  Dick Porter  <dick@ximian.com>
37333
37334         * file-io.c: Use mono_string_to_utf16() instead of
37335         mono_string_chars()
37336
37337         * object.c: Added mono_string_to_utf16(), which copies the non
37338         NULL-terminated MonoString into a new double-null-terminated
37339         buffer.
37340
37341 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
37342
37343         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
37344
37345 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
37346
37347         * file-io.c: raise exceptions if handle is invalid.
37348
37349 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
37350
37351         * assembly.c: yet another check for mscorlib.
37352         * class.c, class.h: load nesting info for classes.
37353         * icall.c: many new functions to support the Reflection classes.
37354         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
37355         * reflection.h, reflection.c: mono_image_create_token(),
37356         mono_assembly_get_object(), mono_type_get_object(),
37357         mono_method_get_object(), mono_field_get_object(): methods to return
37358         objects that parallel the C representation of assemblies, types,
37359         methods, fields.
37360
37361 2001-12-11  Dick Porter  <dick@ximian.com>
37362
37363         * icall.c:
37364         * file-io.c: Internal calls for file IO.
37365
37366 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
37367
37368         * tabledefs.h: missing FileAttributes.
37369         * verify.h, verify.c: use is_valid_string () to simplify and check for
37370         valid strings more correctly. Fix warnings and speeling.
37371         Check more tables: Filed, File, ModuleRef, StandAloneSig.
37372         Check code: branches, maxstack, method calls.
37373
37374 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
37375
37376         * object.c (mono_object_allocate): removed static, so that the jit
37377         can allocate value types.
37378
37379         * icall.c (ves_icall_System_DateTime_GetNow): impl.
37380
37381 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37382
37383         * class.c: init enum types right away and register the
37384         token->MonoClass map in mono_class_create_from_typedef ().
37385         * verify.h, verify.c: first cut of the verifier.
37386         * pedump.c: add --verify switch to verify metadata tables.
37387         * tabledefs.h: add some missing enums.
37388
37389 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
37390
37391         * class.c (mono_install_runtime_class_init): impl.
37392         (mono_class_init): renamed mono_class_metadata_init to
37393         mono_class_init, also removed the metadata_inited flag
37394
37395         * object.c (mono_object_isinst): use faster algorithm
37396
37397 2001-11-30  Radek Doulik  <rodo@ximian.com>
37398
37399         * mono-endian.h: reverted last change
37400         added function prototypes
37401
37402         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37403         add mono-endian.c back
37404
37405         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37406         for unaligned access, I've mistaked it with endianess. I am
37407         sorry.
37408         (mono_read16): fix reverted endianess
37409         (mono_read64): ditto
37410         (mono_read32): ditto
37411
37412 2001-11-30  Dick Porter  <dick@ximian.com>
37413
37414         * exception.c: Implement mono_exception_from_name()
37415
37416 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37417
37418         * metadata.h, metadata.c: remove params_size and locals_size and their
37419         calculation from the metadata code: they are only usefult to the
37420         interp.
37421
37422 2001-11-29  Radek Doulik  <rodo@ximian.com>
37423
37424         * object.c (mono_ldstr): swap bytes here, it's probably not the
37425         best place, but works for me now, I'll redo it once I know mono
37426         better, also note that I add PROT_WRITE and don't reset back, also
37427         note that it's only affects big endians, so x86 should be OK
37428
37429         * mono-endian.h (read16): use just glib macros for both endians
37430
37431         * mono-endian.c: removed as glib macros are used in in
37432         mono-endian.h so we don't need to care about endianess for read
37433         macros as glib does that for us already
37434
37435 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37436
37437         * class.h, class.h: take minimum alignment into consideration so
37438         that the fields of a class remain aligned also when in an array.
37439
37440 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37441
37442         * loader.h, loader.c: add mono_method_get_param_names().
37443         * class.c: 0-init class fields.
37444
37445 2001-11-26  Dick Porter  <dick@ximian.com>
37446
37447         * icall.c:
37448         * threads-types.h:
37449         * threads.c: New file that handles System.Threading on all platforms
37450
37451         * object.c: 
37452         * object.h: Remove the synchronisation struct from MonoObject,
37453         replace it with a pointer that gets initialised on demand
37454
37455         * Makefile.am: Replace all the system-specific threading code with
37456         a single file that uses the new wrapper library
37457
37458 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37459
37460         * class.c, class.h: add mono_install_trampoline() so that the runtime
37461         can register a function to create a trampoline: removes the ugly
37462         requirement that a runtime needed to export arch_create_jit_trampoline.
37463         * object.h, object.c: added mono_install_handler() so that the runtime
37464         can install an handler for exceptions generated in C code (with
37465         mono_raise_exception()). Added C struct for System.Delegate.
37466         * pedump.c: removed arch_create_jit_trampoline.
37467         * reflection.c: some cleanups to allow registering user strings and
37468         later getting a token for methodrefs and fieldrefs before the assembly
37469         is built.
37470         * row-indexes.h: updates and fixes from the new ECMA specs.
37471
37472 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37473
37474         * class.h, class.c: add enum_basetype field to MonoClass.
37475         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37476         to get index in the constant table reated to a field, param or
37477         property.
37478         * reflection.h, reflection.c: handle constructors. Set public-key and
37479         version number of the built assembly to 0.
37480         * row-indexes.h: update from new ECMA spec.
37481
37482 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37483
37484         * class.h, class.c: add a max_interface_id to MonoClass.
37485         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37486         since it's used to do that. Added mono_type_type_from_obj().
37487         Make GetType() return NULL instead of segfaulting if the type was not
37488         found. Handle simple arrays in assQualifiedName.
37489         * object.h: add a struct to represent an Exception.
37490         * reflection.c: output call convention in method signature.
37491         Add code to support P/Invoke methods and fixed offsets for fields.
37492
37493 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37494
37495         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37496         the value.
37497         * icall.c: use mono_array_addr instead of array->vector: fixes the
37498         reflection image writing.
37499         * reflection.c: init call convention byte to 0 in method signature.
37500         Encode the property signature. Don't output property-related methods
37501         twice. Really process the properties for a type (don't cast a field to
37502         a property, my mom always told me that).
37503         Fix 64 bit issues in pointer alignment in a different and more
37504         readable way.
37505
37506 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37507
37508         * loader.h: Removed type class from MonoDefaults, added monotype
37509
37510         * loader.c: Loaded MonoType, removed loading of Type
37511
37512         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37513         and fills in System.Type._impl with a RuntimeTypeHandle rather
37514         than the actual MonoClass *
37515
37516         (ves_icall_type_from_handle): change from type_class to
37517         monotype_class
37518
37519         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37520         implemented
37521
37522         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37523         implemented
37524
37525         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37526
37527         (ves_icall_System_Reflection_Assembly_GetType): implemented
37528
37529         (ves_icall_System_MonoType_assQualifiedName): implemented
37530
37531         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37532
37533 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37534
37535         * assembly.c (mono_assembly_open): Implement a cache for the
37536         assemblies. 
37537
37538         (mono_assembly_close): only destroy the assembly when the last
37539         reference is gone.
37540         
37541 2001-11-09  Dick Porter  <dick@ximian.com>
37542
37543         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37544
37545 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37546
37547         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37548
37549 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37550
37551         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37552         from Martin Weindel.
37553         * object.h: add mono_string_chars ().
37554
37555 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37556
37557         * reflection.c (build_compressed_metadata): Eliminates warnings
37558         and uses 64-bit clean code.
37559
37560         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37561         (mono_type_equal): Change signature to eliminate warnings.
37562
37563 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37564
37565         * icall.c, loader.c: remove the internalcall array constructors.
37566         Changes to match the new MonoArray structure.
37567         * object.h, object.c: an array object doesn't allocate an extra
37568         vector. Add mono_array_new_full () to create jagged arrays easily.
37569
37570 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37571
37572         * metadata.h, metadata.c: add mono_metadata_field_info () to
37573         retreive all the info about a field from vairous tables.
37574         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37575         * class.h, class.c: augment MonoClassField with more info.
37576         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37577         policy and load a field's RVA if needed.
37578
37579 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37580
37581         * class.c (mono_class_metadata_init): create a trampoline for all
37582         virtual functions instead of actually compiling them.
37583
37584 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37585
37586         * class.h, class.c: include name in MonoClassField.
37587         * class.c: fix fundamental type of System.Object and System.String.
37588         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37589         tokens in ldtoken.
37590         * icall.c: remove internalcalls for the Reflection stuff that is now
37591         done in C# code.
37592         * loader.c: mono_field_from_memberref () implementation.
37593         * mono-endian.c: thinko (s/struct/union/g).
37594         * object.c, object.h: make the mono_string_* prototypes actually use
37595         MonoString instead of MonoObject.
37596         * reflection.c, reflection.h: updates for changes in the reflection
37597         code in corlib: we use C structures that map to the actual C# classes.
37598         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37599         fat method header if needed and use the info from the ILGenerator for
37600         methods. Handle fields in types. Misc fixes.
37601
37602 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37603
37604         * class.c (mono_class_metadata_init): bug fix: always allocate
37605         space for static class data
37606
37607 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37608
37609         * class.c (mono_compute_relative_numbering): use relative
37610         numbering to support fast runtime type checks.
37611
37612 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37613
37614         * class.c (mono_class_create_from_typeref): added debugging output
37615         to print class name when MonoDummy is returned instead of real class
37616
37617 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37618
37619         * class.c (mono_class_metadata_init): interface offset table now
37620         contains pointers into the vtable - this is more efficient for the jit
37621
37622 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37623
37624         * class.c (mono_class_metadata_init): use a temporary vtable (the
37625         old algorithm only worked for the interpreter, but not for the jit)
37626
37627 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37628
37629         * loader.c (method_from_memberref): use mono_class_get to get the
37630         class of an array instead of using System.Array directly.
37631         (mono_get_method): also add MEMBERREF methods to the method cache
37632         which usefull for arrays.
37633
37634 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37635
37636         * pedump.c (arch_compile_method): added to compute vtable entry
37637
37638         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37639         number of interfaces.
37640         
37641         * class.h: merged MonoArrayClass into MonoClass
37642
37643         * class.c (mono_class_create_from_typedef): compute the vtable size and
37644         allocate space to include the vtable inside MonoClass
37645         (mono_class_metadata_init): initialize the vtable
37646
37647 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37648
37649         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37650         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37651         * image.c: endian fixes by Laurent Rioux.
37652         * object.h, object.c: rename MonoStringObject to MonoString and
37653         MonoArrayObject to MonoArray. Change some function names to conform to
37654         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37655         guint16* as first argument, so don't use char*.
37656         Provide macros to do the interesting things on arrays in a portable way.
37657         * threads-pthread.c: updates for the API changes and #include <sched.h>
37658         (required for sched_yield()).
37659         * icall.c: updates for the API changes above.
37660         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37661         platforms that need them.
37662
37663 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37664
37665         * class.c: set the correct type for all the fundamental
37666         type when loading the class.
37667
37668 2001-10-05  Dick Porter  <dick@ximian.com>
37669
37670         * threads-pthread.c (pthread_mutex_timedlock): Simple
37671         compatibility version for C libraries that lack this call.
37672
37673 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37674
37675         * class.c: MonoTypes stored in MonoClass are stored as
37676         fundamental MonoTypes when the class represents a
37677         fundamental type (System.Int32, ...).
37678         The TypeHandle return by ldtoken is a MonoType*.
37679         * icall.c: ves_icall_get_data_chunk () write out all the
37680         PE/COFF stuff. Implement ves_icall_define_method (),
37681         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37682         * image.c: properly skip unknown streams.
37683         * loader.h, loader.c: add type_class to mono_defaults.
37684         * metadata.c, metadata.h: export compute_size () as
37685         mono_metadata_compute_size () with a better interface.
37686         Typo and C&P fixes.
37687         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37688         * reflection.c, reflection.h: many cleanups, fixes, output method
37689         signatures and headers, typedef and typeref info, compress the metadata
37690         tables, output all the heap streams, cli header etc.
37691         * row-indexes.h: typo fixes.
37692
37693 2001-10-04  Dick Porter  <dick@ximian.com>
37694
37695         * object.h: Add a synchronisation mutex struct to MonoObject
37696
37697         * object.c (mono_new_object): Initialise the object
37698         synchronisation mutexes
37699
37700         * icall.c: System.Threading.Monitor internal calls
37701         
37702         * threads-pthread.h:
37703         * threads-pthread.c: System.Threading.Monitor internal calls
37704
37705         * threads-types.h: New file, includes the system-specific thread
37706         structures
37707         
37708         * threads-pthread-types.h:
37709         * threads-pthread-types.c: New files, handle pthread-specific
37710         synchronisation types
37711
37712         * threads-dummy-types.h: 
37713         * threads-dummy-types.c: New files of dummy support for
37714         thread-specific types
37715
37716         * metadata.c:
37717         * image.c:
37718         * pedump.c: include mono-endian.h not endian.h
37719         
37720         * Makefile.am: More threads files.
37721         Name mono-endian.h not endian.h
37722
37723 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37724
37725         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37726         stuff and implement a few more bits.
37727         * icall.c: a field needs to be dereferenced twice. Do not use the same
37728         name for two variables in the same scope.
37729         * image.c, image.h: cleanups.
37730
37731 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37732
37733         * class.c (mono_class_metadata_init): bug fix: compute the right size
37734
37735 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37736
37737         * icall.c: implemented some of the Reflection internalcalls.
37738         * image.c, image.h: start writing out the PE/COFF image.
37739         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37740         that does the reverse than decode_blob_size ().
37741         * object.c: use mono_metadata_encode_value (). Move here
37742         temporary implementation of mono_string_to_utf8 ().
37743         * rawbuffer.c: make malloc_map static.
37744
37745 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37746
37747         * metadata.c: fix type comparison for arrays.
37748         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37749         Added a couple of new classes to monodefaults.
37750         * icall.c: added a couple of Reflection-related internalcalls.
37751         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37752         Added a byval_arg MonoType to MonoClass.
37753
37754 2001-09-28  Dick Porter  <dick@ximian.com>
37755
37756         * icall.c:
37757         * threads-pthread.h: 
37758         * threads-pthread.c: Implemented internal calls for
37759         LocalDataStoreSlot operations.  Applied mutexes around all shared
37760         data.  Reworked the thread creation and Start() operations to
37761         avoid a race condition.
37762         
37763         * threads-dummy.h:
37764         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37765
37766 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37767
37768         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37769
37770 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37771
37772         * class.c, loader.c: warn and return NULL instead of erroring out.
37773         * icall.c: added System.AppDomain::getCurDomain().
37774         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37775
37776 2001-09-25  Dick Porter  <dick@ximian.com>
37777
37778         * threads-pthread.h:
37779         * threads-pthread.c: Implemented timed thread joining and added
37780         System.Threading.Thread::Join_internal internal call
37781
37782         * icall.c: Added System.Threading.Thread::Join_internal internal call
37783
37784         * threads-dummy.h:
37785         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37786
37787 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37788
37789         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37790         mono_string_intern () to implement the semantics of the ldstr opcode
37791         and the interning of System.Strings.
37792         * icall.c: provide hooks to make String::IsIntern and String::Intern
37793         internalcalls.
37794
37795 2001-09-23  Dick Porter  <dick@ximian.com>
37796
37797         * threads-dummy.c: 
37798         * threads-dummy.h: New files of dummy threading routines
37799
37800         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37801         support code based on system specifics
37802
37803         Rename PTHREAD_LIBS to THREAD_LIBS
37804         
37805 2001-09-23  Dick Porter  <dick@ximian.com>
37806
37807         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37808         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37809         internal calls.
37810         (mono_thread_init): Set up a Thread object instance to return when
37811         the main thread calls Thread.CurrentThread
37812         (mono_thread_cleanup): Wait for all subthreads to exit
37813
37814         * icall.c: New internal calls for System.Threading.Thread::Sleep
37815         (including Schedule) and CurrentThread
37816
37817         * threads.h: New file, to insulate thread-specific stuff from the
37818         rest of the code
37819
37820 2001-09-21  Dick Porter  <dick@ximian.com>
37821
37822         * threads-pthread.h: 
37823         * threads-pthread.c: New file, for handling pthreads-style
37824         threading support.  Start() now starts a new thread and executes
37825         the ThreadStart delegate instance.
37826
37827         * icall.c: Added the internalcall for
37828         System.Threading.Thread::Start_internal
37829
37830         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37831
37832 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37833
37834         * loader.c: work around the different signatures for delegates
37835         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37836
37837 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37838
37839         * class.h, class.c: add mono_class_get_field_from_name ().
37840         * *: Fix C comments and other ANSI C issues.
37841
37842 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37843
37844         * endian.h, assembly.c: fix some endianness issues.
37845
37846 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37847
37848         * loader.h, load.c: add delegate_class to mono_defaults.
37849         Handle runtime provided methods in mono_get_method ().
37850
37851 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37852
37853         * loader.c (mono_get_method): use pinvoke for internal call
37854
37855         * icall.c: use pinvoke for internal call
37856
37857         * loader.c (method_from_memberref): set the method name
37858
37859 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37860
37861         * metadata.c: help the compiler generate better code for
37862         mono_class_from_mono_type ().
37863
37864 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37865
37866         * class.c (mono_class_metadata_init): delayed computing of the
37867         class size to mono_class_metadata_init ()
37868
37869 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37870
37871         * class.c, class.h: add an interfaces member to MonoClass.
37872         * image.c, image.h: add assembly_name field to MonoImage
37873         from the assembly table.
37874         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37875
37876 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37877
37878         * class.c: Handle Array in mono_class_from_mono_type ().
37879         * metadata.c, pedump.c: some endian fixes.
37880
37881 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37882
37883         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37884         * metadata.c: fix small problem introduced with the latest commit.
37885
37886 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37887
37888         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37889         We don't need a MonoMetadata pointer anymore to compare signatures in
37890         mono_metadata_signature_equal (), update callers.
37891         Reduced memory usage an number of allocations for MonoMethodHeader and
37892         MonoMethodSignature.
37893
37894 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37895
37896         * metadata.c: added compare for szarray.
37897
37898 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37899
37900         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37901         and add a couple more types to it and mono_defaults. Give an hint on
37902         classes that need implementing in our corlib and are referenced
37903         in mscorlib.
37904
37905 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37906
37907         * class.h, class.c: keep track if a class is also an Enum.
37908         * loader.c: Implement a couple more types for use in libffi
37909         marshalling. Gives better diagnostics when failing to dlopen
37910         a library. Set method->klass for P/Invoke methods, too.
37911
37912 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37913
37914         * class.c, class.h: add a MonoType this_arg to MonoClass that
37915         represents a pointer to an object of the class' type that
37916         can be used by the interpreter and later the type cache.
37917         Add best guess alignment info for valuetype objects.
37918
37919 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37920
37921         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37922         into MonoType: one less level of indirection and allocation and
37923         simplifies quite a bit of code. Added cache for MonoTypes that are
37924         used frequently, so that we don't need to allocate them all the time.
37925
37926 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37927
37928         * class.c (mono_class_create_from_typedef): System.Enum is also a
37929         value type, although it does not derive from System.ValueType
37930         (maybe a bug in the ms compiler?)
37931
37932         * metadata.c (mono_type_size): return the right size for value types
37933
37934         * loader.c (mono_get_method): only initialize method header if not abstract
37935
37936         * class.c (mono_class_from_mono_type): use mono_default values. 
37937
37938 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37939
37940         * *: use MonoClass pointers instead of <type_tokens>
37941         
37942         * class.h: new flag: metadata_inited.
37943
37944         * class.c (mono_class_metadata_init): impl.
37945         (mono_class_instance_size): impl.
37946         (mono_class_data_size): impl.
37947
37948 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37949
37950         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37951         MonoClass now has the name and name_space fields. 
37952         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37953         mono_get_method () takes and optional MonoClass as argument.
37954         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37955         instead that takes advantage of a map from class names to typedef
37956         tokens in MonoImage.
37957
37958 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37959
37960         * metadata.c: zero is not a valid alignment boundary.
37961         Merge MONO_TYPE_VOID in default decoding code.
37962
37963 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37964
37965         * image.h: merged MonoMetadata into MonoImage
37966
37967         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37968         identify the type of elements.
37969
37970 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37971
37972         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37973         * cil-coff.h: split MonoMSDOSHeader and add size info.
37974         * image.c: add some consistency checks.
37975         * metadata.c: fix row size computation: one programmer
37976         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37977         add explanation for the locator routine.
37978         Fix decoding of size in method header.
37979         
37980 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37981
37982         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37983         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37984         function from gnome-libs.  This uses the right path separator
37985         based on the OS, and also works around a bug in some systems where
37986         a double slash is not allowed. 
37987         (default_assembly_name_resolver): Use g_concat_dir_and_file
37988         (mono_assembly_open): ditto.
37989
37990 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37991
37992         * metadata.c (mono_metadata_signature_equal): impl.
37993
37994         * *: void is now a realy MonoType (instead of using NULL)
37995         
37996         * metadata.c (do_mono_metadata_parse_type): use
37997         mono_metadata_parse_type to parse void value.
37998
37999 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
38000
38001         * metadata.c, metadata.h: in the signature and method header store
38002         only the space required for holding the loca vars and incoming arguments.
38003
38004 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
38005
38006         * metadata.c (do_mono_metadata_parse_type): treat void like any
38007         other type (instead of assigning NULL);
38008
38009 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
38010
38011         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
38012
38013 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
38014
38015         * image.c (do_mono_image_open): added a cache for arrays.
38016
38017 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38018
38019         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
38020         decode a single column from a row in a metadata table and changes
38021         to take advantage of it in the typedef locator (gives a nice speed up).
38022         Store offset info for function params.
38023
38024 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
38025
38026         * image.h (MONO_IMAGE_IS_CORLIB): removed 
38027
38028 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
38029
38030         * assembly.c: how could mono_assembly_close () had ever worked?
38031         * metadata.c, metadata.h: provide offset info for local vars.
38032         Implement mono_type_size () to take care of alignment as well
38033         as size (it was mono_field_type_size in cli/class.c before).
38034
38035 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
38036
38037         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
38038
38039         * assembly.h (CORLIB_NAME): set to corlib.dll
38040
38041         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
38042
38043 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38044
38045         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
38046         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
38047         tokentype.h: massive namespace cleanup.
38048
38049 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
38050
38051         * metadata.h, metadata.c: decode exception clauses when parsing method header.
38052
38053 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
38054
38055         * metadata.c (mono_metadata_free_type): added check for type !=
38056         NULL (void) before calling mono_metadata_free_type()
38057
38058 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
38059
38060         * metadata.h, row_indexes.h: added header with enumerations to use
38061         to index in the columns from tables in metadata and to decode coded
38062         tokens: we should start using this instead of embedding magic numbers
38063         all over the code.
38064
38065 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
38066
38067         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
38068         Move metadata_t info from cli_image_info_t to MonoImage, where
38069         it's easily accessible. Changed all the uses accordingly.
38070         Added the method and class caches to MonoImage.
38071         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
38072         and mono_metadata_decode_value () signature to be more consistent
38073         with the other parse functions (and simplify code). Taken advantage
38074         of zero-length array allocation with GCC. Removed reduntant (and
38075         wrong) MonoFieldType struct and use MonoParam instead. Changed
38076         mono_metadata_parse_field_type () to use common code for parsing.
38077         Added mono_metadata_typedef_from_field () and
38078         mono_metadata_typedef_from_method () to lookup a typedef index from a
38079         field or method token.
38080         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
38081
38082 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
38083
38084         * metadata.c (mono_metadata_parse_field_type): Implement. 
38085         (do_mono_metadata_parse_type): Split engine from
38086         mono_metadata_parse_type, so that we can create smaller structures
38087         for things that just have one pointer to the MonoType (look at
38088         the MonoFieldType)
38089
38090 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
38091
38092         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
38093         as Jan Gray found out, it is incorrect. 
38094
38095 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
38096
38097         * assembly.c: Implement asssembly loading.  This loads an image
38098         and loads all the referenced assemblies.  Come to think of it, we
38099         could always do lazy loading of the assemblies. 
38100
38101         * image.c (mono_image_open): Keep loaded images in a hashtable.
38102
38103         * image.h (MonoImage): Add reference count.
38104
38105 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
38106
38107         * assembly.c (mono_assembly_open): Keep track of the file name in
38108         case the assembly has no ASSEMBLY table.
38109
38110         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
38111         from get.c here.
38112
38113 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
38114
38115         * metadata.c, metadata.h: decode local vars in method header
38116         parse function. Change callers accordingly.
38117
38118 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
38119
38120         * metadata.h, cil-coff.h: protect against multiple inclusion.
38121         Added some new structures to hold information decoded from metadata:
38122         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
38123         and relevant decoding/free functions.
38124         * metadata.c: implement decoding functions. Add warning for out of bounds
38125         index in mono_metadata_locate(). Implement mono_get_method () to retreive
38126         all the info about a method signature and invocation. Remove check on
38127         uninitialized local var in parse_mh() and fix memory leak.
38128
38129 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
38130
38131         * metadata.h: More macros.
38132
38133         * tokentype.h: New file.
38134
38135 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
38136
38137         * assembly.c: added a consistency check and initialize
38138         some structures with g_new0().
38139         * metadata.c: fixed a couple more bugs in table size computation
38140         and add other checks for out-of bound access to metadata.
38141
38142 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
38143
38144         * metatada.c: fix bugs computing table sizes. Spew a
38145         warning when index in string heap is out of bounds.
38146
38147 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
38148
38149         * metadata.h: Add a couple of macros to manipulate tokens. 
38150
38151 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
38152
38153         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
38154         cli_section_tables).
38155
38156 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
38157
38158         * metadata.c (mono_metadata_user_string): New function, provides
38159         access to the UserString heap. 
38160
38161 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
38162
38163         * metadata.c: Add inline documentation.
38164
38165 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
38166
38167         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
38168         files. 
38169
38170 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
38171
38172         * typeattr.h: New file, TypeAttribute flags. 
38173
38174 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
38175
38176         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
38177         mono_assembly_ensure_section): Section loading code.
38178         (load_section_tables): Load the sections.
38179
38180         * mono/metadata/metadata.c (mono_metadata_locate_token,
38181         mono_metadata_locate): Functions to locate the information
38182         definition given a token or a table and an index.
38183         (mono_metadata_compute_table_bases): New.
38184         (compute_size): New function to compute the sizes of the various
38185         tables.
38186
38187         * mono/metadata/metadata.h: Finish listing the different index
38188         types. 
38189
38190         * mono/metadata/pedump.c: Improve to dump new information.
38191
38192 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
38193
38194         * mono/metadata/metadata.c: Entered all the tables matching
38195         Beta2. 
38196
38197         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2