2010-07-25 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
2
3         * loader.c (mono_loader_lock_if_inited): New helper function which can be called
4         during startup before the loader lock is initialized.
5         (mono_loader_unlock_if_inited): Ditto.
6
7 2010-07-21  Geoff Norton  <gnorton@novell.com>
8
9         * sgen-archdep.h: Fix the build on amd64-darwin.
10
11 2010-07-16  Zoltan Varga  <vargaz@gmail.com>
12
13         * object.c (mono_print_unhandled_exception): Fix a warning.
14
15 2010-07-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
16
17         * threadpool.c: use a monitor thread to start up new ones when needed.
18         Fixes bug #622398.
19
20 Thu Jul 15 18:44:44 CEST 2010 Paolo Molaro <lupus@ximian.com>
21
22         * reflection.c, class-internals.h, class.c, icall.c: support
23         reflection of default constant value for Re.Emit properties.
24
25 2010-07-14  Miguel de Icaza  <miguel@novell.com>
26
27         * reflection.c (load_cattr_value): Add support for encoding
28         DateTime constants into the blob.    Turns out that this is
29         required by .NET, it was only documented post 1.0.
30
31         * icall.c (ves_icall_type_GetTypeCodeInternal): Guard test for
32         System.Decimal and System.DateTime inside a mono_is_corlib_image
33         call.   A sample program showed that we could return the wrong
34         TypeCode just by creating a class with those names. 
35
36         * class.c (mono_is_corlib_image): Exposed this to other metadata/
37         code.
38
39 2010-07-14  Sebastien Pouliot  <sebastien@ximian.com>
40
41         * security-core-clr.c: Don't abort (only warn) if we cannot find 
42         a caller for relfecting code (transparent is assumed). Fix
43         get_method_access_exception to accept a NULL caller.
44
45 2010-07-14  Mark Probst  <mark.probst@gmail.com>
46
47         * sgen-gc.c: Heavy statistics on the internal allocator.
48
49 2010-07-13  Mark Probst  <mark.probst@gmail.com>
50
51         * sgen-marksweep.c, sgen-gc.h: Keep track of num_empty_blocks
52         properly and in a thread-safe way.
53
54 2010-07-13  Mark Probst  <mark.probst@gmail.com>
55
56         * sgen-gc.c, sgen-marksweep.c: Make object marking thread-safe.
57
58 2010-07-13  Mark Probst  <mark.probst@gmail.com>
59
60         * sgen-gc.c: Versions of safe_object_get_size() and
61         copy_object_no_checks() that work without the object's vtable
62         intact, by passing the correct vtable as an argument.
63
64 2010-07-13  Mark Probst  <mark.probst@gmail.com>
65
66         * sgen-marksweep.c: Make allocation of major sections thread-safe.
67
68 2010-07-13  Mark Probst  <mark.probst@gmail.com>
69
70         * sgen-gc.c, sgen-gc.h, sgen-los.c, sgen-major-copying.c,
71         sgen-marksweep.c: Update the heap boundaries thread-safe and lock
72         free if parallel mark is enabled.
73
74 2010-07-13  Mark Probst  <mark.probst@gmail.com>
75
76         * sgen-gc.c, sgen-gc.h, sgen-major-copying.c: Lock the internal
77         allocator if parallel mark (not committed yet) is enabled.
78
79 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
80
81         * reflection.c (inflate_mono_method): Handle dynamic
82         generic instances that have method.count set but
83         methods not. Fixes another crash from boo's test suite.
84
85 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
86
87         * icall.c (ves_icall_MonoMethod_get_base_method): If
88         the method slot is bigger than the class vtable, return
89         the original method. Makes booc work again.
90
91 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
92
93         * verify.c (mono_generic_param_is_constraint_compatible):
94         The candidate type itself might satisty the required
95         constraints.
96
97         Fixes #621599.
98
99 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
100
101         * reflection.c (fix_partial_generic_class): Inflate the
102         generic instance parent in case it was changed after
103         MonoGenericClass was instantiated.
104
105         Fixes one of the issues from #389886.
106
107 2010-07-10  Mark Probst  <mark.probst@gmail.com>
108
109         * sgen-gray.c: Store only a pointer to one end of the gray queue.
110
111 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
112
113         * loader.c (mono_method_signature_checked): Release the domain
114         lock on failure.
115
116 2010-07-10  Mark Probst  <mark.probst@gmail.com>
117
118         * sgen-gc.c: Store the forwarding address in the first word of an
119         object, where the forwarding bit is stored.
120
121 2010-07-10  Mark Probst  <mark.probst@gmail.com>
122
123         * gc.c, gc-internal.h, sgen-gc.c, sgen-gc.h, sgen-os-mach.c: An
124         interface to register our Mach exception thread which will not be
125         suspended by stop-the-world.
126
127 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
128
129         * loader.c (mono_get_method_constrained): Properly unlock the
130         domain lock on failure. Use checked variant of
131         inflate_generic_signature.
132
133 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
134
135         * loader.c (mono_method_signature_checked): Use checked
136         variant of inflate_generic_signature.
137
138         Fixes #606353.
139
140 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
141
142         * metadata.c (mono_metadata_parse_type_internal): Don't use
143         cannonical types when a transient type was requested.
144
145         Fixes #608626.
146
147 2010-07-10  Mark Probst  <mark.probst@gmail.com>
148
149         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
150         All functions that touch the gray queue directly or indirectly now
151         take it as an argument.
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         Put the gray queue data into a struct and pass it around.
157
158 2010-07-09 Rodrigo Kumpera  <rkumpera@novell.com>
159
160         * class.c (mono_method_can_access_method_full): Handle type
161         accessibility with very deep nested types.
162
163         * class.c (mono_method_can_access_field_full): Ditto.
164
165         Fixes #619300.
166
167 2010-07-10  Mark Probst  <mark.probst@gmail.com>
168
169         * sgen-gc.c, sgen-los.c, sgen-major-copying.c, sgen-marksweep.c,
170         sgen-scan-object.h: Use a macro for rounding up sizes and
171         addresses to ALLOC_ALIGN.
172
173 2010-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
174
175         * file-io.c: fix GetFileSystemEntries for patterns containing
176         directories.
177
178 2010-07-09  Mark Probst  <mark.probst@gmail.com>
179
180         * sgen-marksweep.c (major_finish_major_collection): Don't free
181         major heap blocks on 32 bit platforms because it can lead to
182         address space fragmentation.  We'll figure this out later.
183
184 2010-07-09  Mark Probst  <mark.probst@gmail.com>
185
186         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c: Free major
187         heap blocks for mark&sweep eventually.
188
189 2010-07-09  Mark Probst  <mark.probst@gmail.com>
190
191         * sgen-protocol.c: Fix build when binary protocol is disabled.
192
193 2010-07-09  Mark Probst  <mark.probst@gmail.com>
194
195         * sgen-protocol.c, sgen-gc.c: Make binary protocol lock-freely
196         thread-safe.
197
198 2010-07-08 Neale Ferguson <neale@sinenomine.net>
199
200         * sgen-archdep.h: Add support for s390x
201         * domain.c: Use gsize so that 64-bit big endian systems produce 
202         bitmap.
203
204 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
205
206         * pedump.c (verify_image_file): Initialize the vtable as well.
207
208 2010-07-07  Geoff Norton  <gnorton@novell.com>
209
210         * sgen-gc.h:  Not every system has sys/signal.h.  Prefer the posix
211         header.
212
213 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
214
215         * assembly.c (mono_assembly_load_reference): Replace a g_warning
216         with a mono_trace calls. This makes compiling MD a lot less scary.
217
218 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
219
220         * verify.c (do_stobj): Improve error message.
221
222 2010-07-08  Mark Probst  <mark.probst@gmail.com>
223
224         * sgen-gc.c (OBJ_COMPLEX_ARR_FOREACH_PTR): Don't load the vtable
225         from the object because it might have pinned/forwarding bits set.
226
227 2010-07-06  Zoltan Varga  <vargaz@gmail.com>
228
229         * Makefile.am (sgen_sources): Add missing sgen files.
230
231 2010-06-07  Martin Baulig  <martin@ximian.com>
232
233         * mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
234         New helper function since mono_thread_get_abort_signal() is now
235         internal.
236
237 2010-06-07  Martin Baulig  <martin@ximian.com>
238
239         * mono-debug.h, debug-mono-symfile.h: Kill glib dependencies.
240
241 2010-07-02  Michael Hutchinson  <mhutchinson@novell.com>
242
243         * object-internals.h, object.h: Make mono_string_to_utf_8_checked 
244         public, as mono_string_to_utf_8 is deprecated.
245
246         * object.(c|h): Added mono_object_to_string, a public helper function 
247         that calls ToString on a MonoObject and returns a MonoString.
248
249         * object.c (mono_print_unhandled_exception): Use mono_object_to_string.
250
251 2010-07-01  Zoltan Varga  <vargaz@gmail.com>
252
253         * filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
254         from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
255         match their declarations and vice-versa.
256
257
258 Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com>
259
260         * class-internals.h, domain-internals.h: mark functions that are
261         needed by the llvm module.
262
263 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
264
265         * assembly.c (framework_assemblies): Add 3.5 assemblies.
266
267         * domain-internals.h (MonoRuntimeInfo): Increase version_sets
268         by one to have room to remap 3.5 assemblies.
269
270         * domain.c (supported_runtimes): Add 3.5 remapping information.
271
272 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
273
274         * reflection.c (mono_image_create_token): Handle a
275         FieldBuilder from a different assembly.
276
277         Fixes #611836.
278
279 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
280
281         * verify.c (do_store_static_field): Improve error
282         message.
283
284 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
285
286         * assembly.c: Revert r159692 since it breaks loading 3.5
287         assemblies under 2.0.
288
289 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
290
291         * icall.c (ves_icall_Type_make_array_type): Raise a TLE if a
292         TypedByRef is passed.
293
294         * icall.c (ves_icall_Type_make_byref_type): Ditto.
295
296         * icall.c (ves_icall_Type_MakePointerType): Ditto.
297
298         Fixes #612780.
299
300 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
301
302         * assembly.c: Add a few more assemblies to the list of framework
303         assemblies.
304
305         Fixes #617714.
306
307 2010-06-28  Zoltan Varga  <vargaz@gmail.com>
308
309         * class.c (mono_class_get_vtable_entry): Avoid a crash if mono_class_setup_vtable ()
310         fails.
311
312 2010-06-25  Mark Probst  <mark.probst@gmail.com>
313
314         * class.c (mono_class_inflate_generic_method_full_checked): Added
315         a comment regarding a hack in mini-trampolines.c.
316
317 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
318
319         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Use SIZEOF_VOID_P instead of
320         sizeof(SIZEOF_VOID_P) which is 4.
321
322         * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c.
323
324 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
325
326         * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these
327         GCs too.
328
329         * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs.
330
331         * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move
332         objects.
333
334         * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in
335         desktop mode.
336
337 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
338
339         * *-gc.c (mono_gc_get_description): New function returning a human readable
340         description of the current GC.
341
342 2010-06-24  Miguel de Icaza  <miguel@novell.com>
343
344         * mono-hash.c: Moved here from mono/utils as this file is
345         GC-aware, and the utils directory is not.
346
347 2010-06-23  Miguel de Icaza  <miguel@novell.com>
348
349         * Makefile.am: Add support for building a sgen-aware versions of
350         the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la,
351         they share all the components of the default, but use a differen
352         set of CFLAGS to enable SGEN instead.
353
354         Put the BOEHM defines in the CFLAGS definition. 
355
356         * domain-internals.h (MonoJitInfo): this structure used to have
357         different sizes depending on the GC that was configured (Boehm vs
358         SGen).   I have removed this difference for the sake of avoiding
359         the complexity of dealing with the mono/arch directory requiring
360         GC-specific changes to their Makefiles.
361
362 2010-06-23  Mark Probst  <mark.probst@gmail.com>
363
364         * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.
365
366 2010-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
367
368         * metadata.c (mono_metadata_type_hash): Don't hash
369         the type kind for dynamic types since it can change.
370
371 2010-06-22 Geoff Norton  <gnorton@novell.com>
372
373         * sgen-os-mach.c: We cannot call malloc from the gc, so we need to use
374         alloca instead to prevent a deadlock.
375
376 2010-06-22  Geoff Norton  <gnorton@novell.com>
377
378         * domain.c: Allow gettings the tls key, since we need it for
379         cross thread tls poking in sgen-mach
380         * sgen-gc.(c|h), gc-internal.h: Rework sgen into having some functions
381         in external files for platform specific STW support.
382         * sgen-os-mach.c: Add a new mach kernel backend implementation of STW.
383         * sgen-os-posix.c: Move the existing posix signal based STW here.
384
385 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
386
387         * marshal.c (mono_array_to_lparray): Allow MONO_TYPE_PTR. Fixes #615952.
388
389 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
390
391         * object-internals.h: Map new PropertyBuilder fields.
392
393         * reflection.c (property_encode_signature): Emit an instance
394         signature if property's callconv is hasthis.
395
396         * appdomain.c: Bump corlib version.
397
398 2010-06-20  Jb Evain  <jbevain@novell.com>
399
400         * metadata-verify.c: do not consider the assembly invalid if it
401         doesn't have a #Blob stream as resource assemblies don't
402         necessarily have one.
403
404 2010-06-17  Geoff Norton  <gnorton@novell.com>
405
406         * sgen-archdep.h: sgen support for arm linux and darwin.
407
408 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
409
410         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
411         has a faulty header.
412
413 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
414
415         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
416         way to mono_gc_wbarrier_value_copy but takes a bitmap that
417         indicates which slots need a write barrier.
418
419 2010-06-14  Jonathan Pryor <jpryor@novell.com>
420
421         * Makefile.am (EXTRA_DIST): Add runtime.h.
422
423 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
424
425         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
426
427 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
428
429         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
430         IMT slot which is passed to callbacks.get_imt_trampoline.
431
432 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
433
434         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
435         imt trampoline per imt slot when using LLVM.
436
437 2010-06-10  Jonathan Pryor <jpryor@novell.com>
438
439         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
440           runtime.c:mono_runtime_shutdown().
441         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
442           AppDomain.ProcessExit event in all AppDomains.
443
444 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
445
446         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
447         done by the caller.
448
449 2010-06-05  Mark Probst  <mark.probst@gmail.com>
450
451         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
452         up freeing.
453
454 2010-06-05  Mark Probst  <mark.probst@gmail.com>
455
456         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
457         segments of memory at once, to reduce the number of mmap/munmap
458         calls.
459
460 2010-06-05  Mark Probst  <mark.probst@gmail.com>
461
462         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
463         allocations and distinguish between normal, degraded and pinned
464         allocations.
465
466 2010-06-05  Mark Probst  <mark.probst@gmail.com>
467
468         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
469         allocations count toward major collections and trigger major
470         collections from degraded allocations if appropriate.
471
472 2010-06-05  Mark Probst  <mark.probst@gmail.com>
473
474         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
475
476 2010-06-05  Mark Probst  <mark.probst@gmail.com>
477
478         * sgen-gc.c: Enable mark&sweep again.
479
480 2010-06-05  Mark Probst  <mark.probst@gmail.com>
481
482         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
483
484 2010-06-05  Mark Probst  <mark.probst@gmail.com>
485
486         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
487         major heap allowance for minor collections, instead of two
488         separate ones for small and large objects.  This reduces the
489         number of major collections.
490
491 2010-06-04  Marek Habersack  <mhabersack@novell.com>
492
493         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
494         the BFLAGS_IgnoreCase is raised
495
496 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
497
498         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
499         all information in a single structure. Return information about scopes as well.
500
501         * mono-debug.c (mono_debug_lookup_locals): Ditto.
502
503 2010-06-02  Geoff Norton  <gnorton@novell.com>
504
505         * appdomain.c: If we are running with IOMAP we might
506         have been provided a string that isn't case-aware for our file-
507         system, so we need to use io-portability to check if the file 
508         exists, rather than a simple glib test.
509
510         Fixes #608849
511
512 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
513
514         * verify.c (verify_generic_parameters): Verify if
515         there are not loops in constraints.
516
517 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
518
519         * verify.c (is_compatible_boxed_valuetype): Constaints
520         must be recursively checked if one generic argument
521         has a constraint on another.
522
523         Fixes #610625.
524
525 2010-05-31  Miguel de Icaza  <miguel@novell.com>
526
527         * console-unix.c (terminal_get_dimensions): Fix my previous
528         botched commit and return the actual value obtained from the ioctl.
529
530 2010-05-29  Mark Probst  <mark.probst@gmail.com>
531
532         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
533         references so that we don't have to do the cache-cold fetch of the
534         class in copy_object_no_checks().
535
536 2010-05-29  Robert Jordan  <robertj@gmx.net>
537
538         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
539         mono_marshal_string_to_utf16_copy () to avoid memory allocation
540         mismatches under Windows. Fixes pinvoke2:test_0_asany.
541
542 2010-05-28  Mark Probst  <mark.probst@gmail.com>
543
544         * sgen-gc.c: Change default nursery size to 4MB, because it
545         improves performance on many applications and benchmarks.
546
547 2010-05-28  Mark Probst  <mark.probst@gmail.com>
548
549         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
550         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
551         the GC descriptor by one bit, and don't encode the size for value
552         types not containing references.  Also get rid of
553         DESC_TYPE_STRING.
554
555 2010-05-28  Mark Probst  <mark.probst@gmail.com>
556
557         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
558         other than for remset processing.
559
560 2010-05-28  Mark Probst  <mark.probst@gmail.com>
561
562         * sgen-gc.c: More and better remset consistency checks.
563
564 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
565
566         * sgen-gc.c: Add a note about the int[] trick to avoid some
567         memset.
568
569 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
570
571         * sgen-gc.c (sort_addresses): Use heap sort since it has better
572         performance.
573
574         This helps programs with lots of threads or thread with big stacks
575         since the bottleneck the pin queue can get quite big.
576
577 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
578
579         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
580         a separate function called setup_fragment.
581
582         * sgen-gc.c (search_fragment_for_size_range): Variant of
583         search_fragment_for_size that does search for a secondary smaller
584         size.
585
586         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
587         for tlab allocation so small fragments are used.
588
589         This patch uses small fragments for tlab allocation when possible in order
590         to improve nursery utilization. With a fixed size tlab this patch is not very
591         usefull but once size gets dynamically adjusted, this will be invaluable.
592
593         Performance under pystone 500k is unchanged. Nursery utilization improves by
594         3.5% and 18 more fragments are used per minor GC.
595
596         Performance under modified binary-tree is unchanged. Nursery utilization
597         improves by 0.5% and 3 more fragments are used per minor GC.
598
599         These numbers make sense since as more pinning happens, more fragments are
600         created and so are the chances of having a bunch of small ones.
601
602 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
603         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
604         the current fragment when allocating a TLAB.
605
606         Reduces number of pystone 500k minor collections by 7%.
607
608 2010-05-25  Martin Baulig  <martin@ximian.com>
609
610         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
611
612         * debug-mono-symfile.c: Release memory from symfiles that were
613         loaded from memory.
614
615 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
616
617         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
618         during shutdown.
619
620 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
621
622         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
623         target class and remove some dead code.
624
625 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
626
627         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
628         the MonoTypes inside method headers can be freed when the header is freed.
629
630 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
631
632         * threadpool.c: Fix the DISABLE_SOCKETS build.
633
634 2010-05-19 Martin Baulig  <martin@novell.com>
635
636         Fix #604911.
637
638         * threads.c (wait_for_tids_or_state_change): Use an
639         alertable WaitForMultipleObjectsEx().
640         (wait_for_tids): Likewise.
641
642 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
643
644         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
645         icall.
646
647         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
648         gc tracked memory.
649
650         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
651         argument from a gchandle.
652
653         * marshal.c: Get rid of the delegate_target_locations hash table.
654
655         Fixes #605295.
656
657 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
658
659         * sgen-gc.c: Use _fast variants for string and array length.
660
661 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
662
663         * sgen-gc.c: Fix counters to be 64 bits.
664
665         * sgen-gc.c (dump_heap): Fix formating strings.
666
667 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
668
669         * sgen-gc.c (global_remset_location_was_not_added): New
670         function that implements a 2 element LRU cache for just
671         added remsets. It is used to avoid adding duplicate ones.
672
673         * sgen-gc.c (add_to_global_remset): Check cache before
674         adding new entry.
675
676         * sgen-gc.c (scan_from_remsets): Don't process global remsets
677         that fail the cache test.
678
679         * sgen-gc.c (scan_from_remsets): Simplify the global remset
680         loop removing one condtion that is not possible.
681
682         A 2 element LRU cache was chosen by profiling IronPython 2.6
683         pytones with 1M passes and corlib compilation.
684
685         For the ipy test duplication was originally 940.92, measured
686         by "Store remsets" divided by "Unique store remsets".
687
688         With a 2-element LRU, duplication went to 1.007. Without the
689         check in scan_from_remsets 1.438.
690
691         With a 16-elements LRU, duplication reduction was negligibe.
692         A single element cache was basically of no use.
693
694         With corlib compilation duplication went from  1.4 to 1.02.
695
696         Performance results is a 20% time decrease for ipy and 2%
697         with corlib.
698 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
699
700         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
701
702 2010-05-15  Geoff Norton  <gnorton@novell.com>
703
704         * mono-debug.c: Fix a leak of the global table on shutdown.
705
706 2010-05-15  Geoff Norton  <gnorton@novell.com>
707
708         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
709         to clean up MonoDebugSourceLocation's.
710
711 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
712
713         * class.c (mono_class_create_from_typedef): Fail a class
714         if there is a loop with its parent.
715
716         Fixes #598239.
717
718 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
719
720         * loader.c (mono_loader_set_error_type_load): Convert
721         a g_warninig to mono_trace_warning.
722
723 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
724
725         * class.c (mono_class_get_full): Release strings on failure
726         to avoid leaking them.
727
728 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
729
730         * class.c (mono_class_create_from_typedef): Only return
731         the class if no exceptions were detected.
732
733         * class.c (mono_class_create_from_typedef): Don't remove
734         broken classes from class_cache. Just set failure and
735         bail out.
736
737         This fixes a memory a memory leak where resolving the same
738         broken class multiple times resulted in a memory leak.
739
740         The right behavior would be to actually return the class
741         a let the caller figure it out.
742
743 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
744
745         * mono-ptr-array.h: Add mono_ptr_array_sort.
746
747         * reflection.c (mono_image_build_metadata): Replace that ugly
748         qsort call with mono_ptr_array_sort.
749
750 2010-05-13  Mark Probst  <mark.probst@gmail.com>
751
752         * sgen-gc.c: Switch to the copying major collector, because
753         Mark&Sweep is still buggy.
754
755 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
756
757         * reflection.c (mono_image_build_metadata): Don't put managed
758         references on non-tracked memory.
759
760 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
761
762         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
763
764 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
765
766         * icall.c: Switch to mono-ptr-array.h.
767
768 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
769
770         * Makefile.am: Add mono-ptr-array.h.
771
772         * mono-ptr-array.h: New header that implements
773         a GC tracked equivalent of g_ptr_array. 
774
775 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
776
777         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
778         method to avoid initializing the class.
779
780         Fixes #605115.
781
782 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
783
784         * icall.c (ves_icall_System_MonoType_getFullName): It
785         doesn't require to init the class.
786
787 2010-05-11  Miguel de Icaza  <miguel@novell.com>
788
789         * console-unix.c: Signal handlers now save and restore errno.   We
790         have never had a bug report about this, ioctl does change errno. 
791
792         Hide the unused method.   
793
794         Remove internal declarations from public headers.
795
796         Document what the signal handler is doing
797
798 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
799
800         * sgen-gc.c (clear_unreachable_ephemerons): Clear
801         unreachable keys with a tombstone.
802
803         * sgen-gc.c (mark_ephemerons_in_range): Ignore
804         tombstone keys.
805
806 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
807
808         * icall-def.h:
809         * gc-internals.h:
810         * gc.c: New GC:get_ephemeron_tombstone.
811
812 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
813
814         * appdomain.c (create_exceptions): Rename to
815         create_domain_objects. Create the ephemeron tombstone object.
816
817         * domains-internals.h (MonoDomain): Add new field for the
818         ephemeron tombstone.
819
820         * domain.c (mono_domain_free): Set ephemeron_tombstone to
821         NULL.
822
823 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
824
825         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
826         and dislinks must be processed before LOS since they
827         could end up with pointers to memory returned to the
828         OS.
829
830 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
831
832         * class.c (mono_class_alloc): New helper function to centralize memory allocation
833         for classes, allocates either from the image mempool or from the heap.
834
835         * class.c: Use mono_class_alloc to allocate memory owned by classes.
836
837         * metadata.c (free_generic_class_dependents): Free more items belonging to
838         generic classes.
839
840 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
841
842         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
843         as well. Fixes #604054.
844
845 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
846
847         * metadata-verify.c: MS doesn't mind duplicates in the
848         typeref table. Move it to full verification.
849
850         Fixes #600508.
851
852 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
853
854         * image.c (do_mono_image_load): Report verification
855         errors when loading an image fails.
856
857 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
858
859         * reflection.c (mono_type_get_object): Remove chunk of code
860         no longer in use.
861
862 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
863
864         * icall-def.h
865         * icall.c: Delete some unused icalls.
866
867 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
868
869         * appdomain.c (mono_domain_has_type_resolve): Check for
870         NULL domain objects to make pedump happy.
871
872         * object.c (mono_field_get_value): Assert on NULL object.
873         It's the caller resposibility to check for this.
874
875         * object.c (mono_field_get_value_object): Ditto.
876
877         Fixes #601384.
878
879 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
880
881         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
882         checks can avoid doing a mono_class_init.
883
884         * icall.c: Remove mono_class_init from a bunch of icalls that
885         don't need it.
886
887         Hopefully we're now lazy enough to fix most victims of #601431.
888
889 2010-05-07  Mark Probst  <mark.probst@gmail.com>
890
891         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
892
893 2010-05-07  Mark Probst  <mark.probst@gmail.com>
894
895         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
896
897 2010-05-07  Marek Habersack  <mhabersack@novell.com>
898
899         * culture-info-tables.h: updated to include en-TT culture. Fixes
900         bug #594035
901
902 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
903
904         Move mono_class_init from mono_type_get_object to icalls.
905         This causes massive memory savings for Assembly::GetTypes () and
906         make it fail a lot less due to missing dependencies.
907
908         This is a conservative, naive change as it doesn't remove some
909         mono_class_init from places that might not need them. Carefull
910         review of those should follow.
911
912         * reflection.c (mono_type_get_object): Don't mono_class_init the
913         returning type.
914
915         * reflection.c:
916         * cominterop.c:
917         * icall.c:
918         * marshal.c: Call mono_class_init in functions receiving a MonoType
919         object.
920
921         First step into fixing #601431.
922
923 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
924
925         * gc-internal.h: Add new functions required for ephemeron support.
926
927         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
928
929         * icall-def.h: Add GC::register_ephemeron_array.
930
931         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
932         under sgen. Its fields must not be marked.
933
934         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
935
936         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
937         handling finalizable objects. Clean dead ones after all finalizable
938         handling.
939
940         * sgen-gc.c (dump_heap): Add new kind of internal memory.
941
942         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
943         arrays from the dead domain.
944
945         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
946
947         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
948         whose keys are reachable.
949
950         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
951         list of live ephemeron arrays.
952
953 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
954
955         * class.c (mono_class_layout_fields): Don't perform alignment
956         if align is zero.
957
958         * class.c (mono_class_layout_fields): Init field related information
959         to sane defaults.
960
961 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
962
963         * verify.c (mono_verifier_verify_class): Verify the constraint
964         of generic type definitions.
965
966 2010-05-04  Mark Probst  <mark.probst@gmail.com>
967
968         * sgen-marksweep.c: Simplify free list maintenance in sweep.
969
970 2010-05-02  Mark Probst  <mark.probst@gmail.com>
971
972         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
973         major_do_collection() across the two major collectors.
974
975 2010-05-02  Mark Probst  <mark.probst@gmail.com>
976
977         * sgen-gc.c: Add heavy statistics counter for re-added global
978         remsets.
979
980 2010-05-02  Mark Probst  <mark.probst@gmail.com>
981
982         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
983         get rid of a division in critical code.
984
985 2010-04-29  Mark Probst  <mark.probst@gmail.com>
986
987         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
988         blocks for objects without references in mark&sweep, to improve
989         performance.
990
991 2010-04-28  Mark Probst  <mark.probst@gmail.com>
992
993         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
994         statistics up-to-date.
995
996 2010-04-27  Mark Probst  <mark.probst@gmail.com>
997
998         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
999         heap-dump for mark&sweep.
1000
1001 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
1002
1003         * loader.c (mono_method_get_header): Move the is_inflated case before the
1004         wrapper case, as a method can be both.
1005
1006 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1007
1008         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
1009         separate pass to scan pinned and large object but use the gray
1010         queue like for regular objects.
1011
1012 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
1013
1014         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
1015         string.h for memmove.
1016
1017         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
1018         ipaddress_to_struct_in6_addr() is only needed when
1019         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
1020
1021 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1022
1023         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
1024         separate copy_object functions for major vs nursery.  Allows us to
1025         get rid of a few checks and the start and end parameters for many
1026         functions.
1027
1028 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1029
1030         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
1031         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
1032         collector.
1033
1034 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
1035
1036         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
1037         calling setup_mono_type () since the nested parent could recursively reference
1038         the nested class using generic constraints. Fixes #599469.
1039
1040 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1041
1042         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
1043         abstraction.
1044
1045 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1046
1047         * sgen-gc.c: Remove more unneeded code.
1048
1049 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1050
1051         * sgen-gc.c: Disable managed allocator and wbarrier when the
1052         binary protocol is enabled.
1053
1054 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1055
1056         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
1057
1058 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1059
1060         * sgen-gc.c: Remove a few commented out and unneeded bits.
1061
1062 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1063
1064         * threadpool.c: patch from Robert Nagy that fixes a nullref and
1065         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
1066
1067 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
1068
1069         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
1070         types.
1071
1072         Fixes #331126
1073
1074 2010-04-21  Mark Probst  <mark.probst@gmail.com>
1075
1076         * sgen-gc.c: Turn off semi-precise stack mark.
1077
1078 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
1079
1080         * reflection.c (mono_custom_attrs_from_index): Use right function
1081         to free 'list' (i.e. g_list_free) if the verifier fails.
1082
1083 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1084
1085                 * verify.c: Handle the case where mono_type_get_underlying_type_any
1086                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
1087                 and MONO_TYPE_VALUETYPE in those case.
1088
1089                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
1090
1091                 Hopefully Fixes #564253.
1092
1093 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
1094
1095         * domain-internals.h: made threadpool_jobs volatile.
1096         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
1097         all local jobs.
1098         * threadpool.c:
1099                 -When two threads try to initialize the socket IO pool,
1100                 the second one waits until the intialization is finished
1101                 instead of continuing right away.
1102                 -Add checks for domain unload: no items added in this case.
1103                 -Only measure the time every 10 elements added to the queue.
1104                 This is an experiment since linux x86 gettimeofday() sucks.
1105                 -Create new thread if there are none waiting for work items.
1106                 -There was a missing decrement of the busy threads.
1107                 -Make sure the local queue is cleaned up before exiting the
1108                 thread when the program ends.
1109
1110 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1111
1112         * reflection.c (mono_type_get_object): Normalize generics types
1113         as to how managed code expect them to be. A generic instance over
1114         the GTD arguments must have the same mirror as the GTD itself.
1115
1116         Fixes #473289.
1117
1118 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
1119
1120         * locales.c: Implement support for DISABLE_NORMALIZATION.
1121
1122 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
1125         since it is not a MonoMethod.
1126
1127 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
1128
1129         * icall-def.h: Add get_RequiresElevatedPermissions icall to
1130         System.Security.SecurityManager - used only by Moonlight
1131         * security-core-clr.c|h: Add Elevated Trust/Permission support
1132         for CoreCLR / Moonlight
1133
1134 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1135
1136         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
1137         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
1138
1139 2010-04-16  Marek Habersack  <mhabersack@novell.com>
1140
1141         * mono-perfcounters.c: added code for the "Mono
1142         Memory/Total Physical Memory" performance counter.
1143
1144         * mono-perfcounters-def.h: added definition of the "Mono
1145         Memory/Total Physical Memory" performance counter.
1146
1147 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1148
1149         * class.c (mono_class_get_method_by_index): Return NULL
1150         on type load failures.
1151
1152 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1153
1154         * class.c (mono_class_from_typeref): Check if the supplied
1155         image has an assembly bound to it.
1156
1157         Fixes #567884.
1158
1159 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1160
1161         * loader.c (mono_method_get_signature_full): Use new function
1162         inflate_generic_signature_checked to check for errors.
1163
1164         Fixes #560839.
1165
1166 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1167
1168         * loader.c (inflate_generic_signature): Add _checked variant
1169         and move this function to use it.
1170
1171 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1172
1173         * class.c (mono_class_setup_vtable_general): Use error checking
1174         version of mono_class_inflate_generic_method_full.
1175
1176         Fixes #596975.
1177
1178 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1179
1180         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
1181         error handling passing MonoError around.
1182
1183         Fixes #560336.
1184
1185 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1186
1187         * socket-io.c: make GetHostByName ("") work on windows.
1188         Fixes bug #456723.
1189
1190 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1191
1192         * object-internals.h:
1193         * threads.c: use a spin lock when accesing the per-thread appdomain
1194         list.
1195
1196 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1197
1198         * threads.c: no need to take the threads lock in push/pop appdomain.
1199
1200 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1201
1202         * reflection.c (_mono_reflection_parse_type): MS supports
1203         non-assembly-qualified types in a generic type parameter list
1204         when enclosed in '[]' (which signals that they should be a fqn).
1205
1206         This breaks ECMA specs for how type names are encoded in cattr
1207         blobs but F# does it.
1208
1209         Fixes #576342.
1210
1211 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1212
1213         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
1214         for instance methods/ctors.
1215
1216         Fixes #422113.
1217
1218 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1219
1220         * reflection.c: Use the new verifier support for checking
1221         custom attributes.
1222
1223         Fixes #595306.
1224
1225 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1226
1227         * metadata-verify.c: Implement structural verification
1228         of custom attributes. This check requires access to the
1229         loader since to resolve the size of an enum we have to
1230         look it up.
1231         We don't check if named argumenments are encoded in a
1232         compatible fashion to their underlying field/prop.
1233         Maybe we should?
1234
1235         * verify-internals.h: Add two new cattr verification API.
1236
1237 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1238
1239         * metadata-verify.c (decode_signature_header): Fix signature.
1240
1241 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1242
1243         * verify.c (mono_verifier_is_enabled_for_method): Handle
1244         assembly less images.
1245
1246         * verify.c (mono_verifier_is_class_full_trust): Ditto.
1247
1248 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1249
1250         * loader.c (mono_method_signature_checked): Properly
1251         init MonoError.
1252
1253         * loader.c (mono_method_signature): It's the calee
1254         resposibility to init the error object.
1255
1256 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1257
1258         * metadata-verify.c (decode_signature_header): Do proper
1259         overflow checking.
1260
1261 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
1262
1263         * reflection.c: maintain the invariants required by
1264         mono_class_layout_fields() also in typebuilder_setup_fields ().
1265
1266 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
1267
1268         * security-core-clr.c: Call mono_class_setup_methods in 
1269         get_default_ctor before checking klass->methods. Fix typo in
1270         comment
1271
1272 2010-04-10  Jb Evain  <jbevain@novell.com>
1273
1274         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
1275         add .net 4.0 RTM version.
1276
1277 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1278
1279         * reflection.c (resolve_object): Properly inflate generic
1280         methods when a context is supplied.
1281
1282         Fixes #591226.
1283
1284 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1285
1286         * verify.c (mono_method_verify): A switch op don't empty
1287         the stack for the next one. Fixes a bug when running fsi
1288         under --verify-all.
1289
1290 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1291
1292         * metadata-verify.c (is_valid_standalonesig_blob): Accept
1293         fields as valid standalone sig too. F# does generate them.
1294
1295         * metadata-verify.c (verify_typedef_table_full): Ignore
1296         what <module> extends.
1297
1298 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1299
1300         * verify.c (do_invoke_method): It's ok to do use call with
1301         virtual, non-final methods if their class is sealed.
1302
1303 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1304
1305         * icall.c (ves_icall_MonoField_GetValueInternal): This function
1306         is a near identical copy of mono_field_get_value_object. So simply
1307         call it.
1308
1309         * object.c (mono_field_get_value_object): Handle literal fields
1310         on open generic classes.
1311
1312         Fixes #594942.
1313
1314 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1315
1316         * reflection.c (mono_reflection_create_runtime_class): Setup
1317         parent/supertype information again since it can be changed
1318         without notice.
1319
1320 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1321
1322         * verify.c (verify_type_compatibility_full): Properly handle
1323         stores between arrays of primitives.
1324
1325         Fixes the verifier side of #555950.
1326
1327 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1328
1329         class.c (mono_bounded_array_class_get): Properly init
1330         cast_class to take the fact that uint[] and int[] can be
1331         casted between each other.
1332
1333         Fixes #555950.
1334
1335 2010-04-07  Geoff Norton  <gnorton@novell.com>
1336
1337         * domain.c: Avoid a deadlock on osx.  Fixes #565765
1338
1339 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1340
1341         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
1342         builders. Fixes #594464.
1343
1344 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1345
1346         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
1347         waiting for all threads to suspend, as those threads can't be suspended.
1348
1349 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1350
1351         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
1352         to avoid crashes on newly created threads.
1353
1354 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1355
1356         * file-io.c: reset the MonoIOStat structure in case of error.
1357         Fixes bug #582667.
1358
1359 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
1360
1361         * class.c (print_implemented_interfaces): Print proper type name.
1362
1363         * class.c (mono_class_setup_vtable): Don't try that hard to produce
1364         the override map for generic instances since it later ignored.
1365
1366         * class.c (mono_class_implement_interface_slow): Don't break for
1367         dynamic generic instances.
1368
1369         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
1370
1371         * reflection.c (mono_reflection_method_get_handle): New method that
1372         resolves a method handle.
1373
1374         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
1375         case when we override methods from a dynamic generic instance interface.
1376
1377         Fixes #575941.
1378
1379 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1380
1381         * threadpool.c: don't attempt to close the pipe when it has not been
1382         created.
1383
1384 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1385
1386         * threadpool.c: if there are no waiting threads, try to start a new
1387         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1388         No need to use InterlockedCompareExchange to read volatile variables.
1389
1390 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1391
1392         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1393         and reference types that point to the same class.
1394
1395         Fixes #565598.
1396
1397 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1398
1399         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1400         when verifying compatibility between a generic instance and a generic
1401         parameter.
1402
1403         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1404
1405         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1406         name.
1407
1408         Fixes #587849.
1409
1410 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1411
1412         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1413
1414 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1415
1416         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1417
1418 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1419
1420         * process.c: when cross-compiling with MinGW, force GetProcessId
1421         lookup using GetProcAddress.
1422
1423 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1424
1425         * sgen-gc.c: parse_environment_string_extract_number() must be
1426         static.
1427
1428 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1429
1430         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1431         gray_object_dequeue(), to make sure they're inlined.
1432
1433 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1434
1435         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1436         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1437
1438 2010-04-02  Jb Evain  <jbevain@novell.com>
1439
1440         * exception.c: remove dead code.
1441
1442 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1443
1444         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1445         with mono-gc.h.
1446
1447 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1448
1449         * sgen-gc.c: Make the nursery size adjustable by the
1450         MONO_GC_PARAMS environment variable.
1451
1452         Code is contributed under MIT/X11 license.
1453
1454 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1455
1456         * threadpool.c: threadpool threads wait is alertable.
1457         Fixes bug #592964.
1458         Reduced the stack size of the *poll_wait thread.
1459
1460 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1461
1462         * exception.c|metadata-internals.h: Add new mono_get_exception_
1463         field_access_msg and mono_get_exception_method_access_msg 
1464         functions that accept a const char* parameter to provide more 
1465         details when the exception is thrown.
1466         * security-core-clr.c|h: Rework code to allow logging exceptions
1467         (export MONO_LOG_MASK="security") and to supply more details in
1468         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1469         mono_security_core_clr_is_field_access_allowed and 
1470         mono_security_core_clr_is_call_allowed to return an exception,
1471         with messages and logging, that can be emitted by method-to-ir.c
1472
1473 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1474
1475         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1476         pinned object.
1477
1478 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1479
1480         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1481         the assembly name is not well formed utf8. Fixes #567882.
1482
1483 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1484
1485         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1486         the generic parameters from the builder. Fixes #473298.
1487
1488 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1489
1490         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1491
1492         * marshal.c (emit_marshal_boolean): Eliminate possible
1493         uninitialized local warning. 
1494
1495 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1496
1497         * class.c (mono_class_init): Postpone coreclr inheritance check
1498         until the end of the initialization (so we can check up the 
1499         default ctor manually for the core-clr inheritance rules).
1500         * security-core-clr.c: Add the missing (undocumented) checks on
1501         default constructors when verifying inheritance rules.
1502
1503 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1504
1505         * domain-internals.h (MonoJitExceptionInfo): Add new field
1506         handler_end to the data union. To be used to point the end
1507         of a finally block.
1508
1509 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1510
1511         * reflection.c: Add support for new v4 type
1512         System.Reflection.MonoModule that is the concrete version
1513         of Module which is abstract unver v4.
1514
1515 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1516
1517         * class.c (mono_class_init): Don't set class failure after
1518         inited = 1 is set. It must be done before.
1519
1520 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1521
1522         * mono-config.c: Add support for OS "haiku"
1523         * ChangeLog: Fix UTF-8 encoding
1524
1525         Code is contributed under MIT/X11 license.
1526
1527 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1528
1529         * console-unix.c: fixed include logic for sys/ioctl.h.
1530
1531 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1532
1533         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1534         systems.
1535
1536 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1537
1538         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1539         unfinished/broken typebuilders.
1540
1541 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1542
1543         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1544         for the minor section allowance.
1545
1546 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1547
1548         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1549         "NoOptimization".
1550
1551 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1552
1553         * sgen-gc.c: Count bytes allocated with heavy statistics.
1554
1555 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1556
1557         * sgen-gc.c: More detailed time statistics.
1558
1559 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1560
1561         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1562         fix the user defined mark interface to pass a pointer
1563         to the object location and not the object itself.
1564
1565 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1566
1567         * reflection.c (mono_method_body_get_object): Release
1568         the method header before the call to CACHE_OBJECT since
1569         this is a macro that returns.
1570
1571 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1572
1573         * class.c (inflate_generic_type): mono_metadata_type_dup
1574         already dupes array information, the g_memdup was just
1575         leaking memory.
1576
1577 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1578
1579         * verify.c: Add stack_peek function. Fix CEE_DUP
1580         to not read from invalid memory if push did expand
1581         the stack.
1582
1583 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1584
1585         * verify.c: Remove old table verification code that has
1586         been superseeded by the new metadata verifier.
1587
1588         * verify.h: Remove mono_image_verify_tables from the public
1589         API.
1590
1591         * pedump.c: Fix for removed bits.
1592
1593 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1594
1595         * verify.c: Allocate stack slows lazily to reduce stack usage
1596         in case of methods with huge stacks. Reduces memory consumption
1597         for mcs yyparse from 459Mb to 1.8Mb.
1598
1599 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1600
1601         * threadpool.c: don't try executing items from domains being
1602         unloaded. Fixes appdomain-async-invoke test.
1603
1604 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1605
1606         * threadpool.c: spin while the threadpool initializes.
1607         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1608         down, don't do anything.
1609
1610 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1611
1612         * threads.c (mono_thread_create_internal): Set the GC type of the
1613         threads_starting_up hash table.
1614
1615 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1616
1617         * threadpool.c: reset 'state' to avoid returning non-null when the
1618         event type is not found.
1619
1620 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1621
1622         * sgen-gc.c: make copy_object () take the address of the
1623         slot holding the reference. This allows saving memory stores
1624         when not needed and it allows keeping track of oldspace->nursery
1625         references for the card table code.
1626
1627 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1628
1629         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1630
1631         Code is contributed under MIT/X11 license.
1632
1633 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1634
1635         * object.c, threads.c, threads-types.h, threads.h: make the
1636         managed thread local storage references precisely tracked.
1637
1638 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1639
1640         * threadpool.[ch]: reworked the threadpool:
1641                 -Threadpool threads use a work-stealing queue. Adding a work
1642                 item from a threadpool thread will queue it in the thread
1643                 local queue without locking (in most cases).
1644                 -epoll events are coalesced before being added to the IO
1645                 queue.
1646                 -Dynamically change the number of active threads
1647                 -Changed the global queue to be more GC friendly
1648
1649         * class-internals.h: add 2 new performance counters for the number of
1650         threads in the threadpool and the IO threadpool.
1651
1652         * object-internals.h: new field in MonoAsyncResult.
1653         * icall-def.h: new internal call for queueing work items.
1654
1655         * Makefile.am: add 2 new files.
1656
1657         * appdomain.c: bump up corlib version.
1658
1659         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1660
1661         * mono-perfcounters-def.h:
1662         * mono-perfcounters.c: added 2 new performance counters.
1663
1664 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1665
1666         * sgen-gc.c: More FIXME/TODO updates.
1667
1668 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1669
1670         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1671         function mono_gc_invoke_with_gc_lock() which invokes a function
1672         with the guarantee that no collection will occur during its execution.
1673
1674 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1675
1676         * sgen-gc.c: Update a few comments.
1677
1678 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1679
1680         * reflection.c: Add support for new v4 type
1681         System.Reflection.MonoAssembly that is the concrete version
1682         of Assembly which is abstract unver v4.
1683
1684 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1685
1686         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1687         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1688
1689         Expose a few macros that are needed for SR but not SRE to the
1690         world (previous inside the SRE ifdef)
1691
1692 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1693
1694         * sgen-gc.c (gc_register_current_thread): We need
1695         stack_start_limit as well in the non-attribute pthread case.
1696
1697 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1698
1699         * threads.c: Fix windows build.
1700
1701 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1702
1703         * thread-types.h: Add mono_thread_resume_interruption.
1704
1705         * threads.c: Add mono_thread_resume_interruption, this
1706         function should be called after the last protected handler
1707         found at interruption time has finished.
1708
1709 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1710
1711         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1712         Check MonoInternalThread's ::state instead of ::abort_exc
1713         since the later can be lazily created.
1714
1715         This is specially problematic when running a finally block
1716         under AbortRequested state. ResetAbort must work, but the
1717         abort_exc object has not been created because interruption
1718         has not began.
1719
1720 2010-03-22  Geoff Norton  <gnorton@novell.com>
1721
1722         * locales.c: Its possible for CFStringGetCStringPtr
1723         to return null and not convert encodings.  Use
1724         CFStringGetCString instead.
1725
1726 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1727
1728         * class-internals.h, class.c, object.c: introduce compressed
1729         interface bitmaps (for now only under small config): this saves
1730         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1731         startups.
1732
1733 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1734
1735         * mono-debug.c: don't try to get the method header, it causes a
1736         deadlock and it is not used for anything anymore.
1737
1738 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1739
1740         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1741         broken by the last change.
1742
1743 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1744
1745         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1746         SOCK_RDM.
1747         
1748         Code is contributed under MIT/X11 license.
1749
1750 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1751
1752         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1753         nursery.
1754
1755         Code is contributed under MIT/X11 license.
1756
1757 2010-03-19  Martin Baulig  <martin@ximian.com>
1758
1759         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1760         dummy field, containing an empty string.
1761         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1762
1763
1764 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1765
1766         * class.c: setup_interface_offsets() refactor to not call
1767         mono_class_get_implemented_interfaces () more times than needed and
1768         to reduce the runtime memory requirements to be O(num_interfaces)
1769         instead of O(max_interface_id).
1770
1771 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1772
1773         * mono-mlist.[ch]: add mono_mlist_set_next ().
1774
1775 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1776
1777         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1778         associated changes to support holes in the protected range of a
1779         try block.
1780
1781         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1782         retrieves the holes table from a given MonoJitInfo.
1783
1784 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1785
1786         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1787         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1788         hide the contents of the MonoString and MonoArray structs from the
1789         public API. Change the accessor macros to accessors functions where
1790         needed. Adjusted the array API to allow for pointer-sized lengths and
1791         starting positions, so 64 bit arrays can be optionally provided in an
1792         API compatible way if needed on 64 bit systems.
1793
1794 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1795
1796         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1797         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1798
1799 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1800
1801         * class-internals.h: remove the method header from MonoMethod since
1802         from now on it will be transient. We have a header pointer for method
1803         wrappers, since in that case we need to keep track of it. For this
1804         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1805         structs now. The same happens with MonoMethodInflated.
1806         * class.c: reset the sre_method flag for inflated method structures:
1807         this makes the code that cares look at the header in the MonoMethodInflated
1808         structure.
1809         * loader.c: lookup the method header in the appropriate field now that
1810         it is removed from MonoMethod.
1811         * metadata-internals.h: add a flag to the method header to know if it
1812         can be freed inside mono_metadata_free_mh ().
1813         * method-builder.c: updates after moving the header field from
1814         MonoMethod to MonoMethodWrapper.
1815         * reflection.c: MonoMethods generated from Reflection.Emit use
1816         MonoMethodWrapper structs if they need a method header now (later take
1817         advantage of this and remove all the current unsafe uses of method_aux_hash).
1818         * metadata.c: make method header parsing not leak when verification
1819         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1820         These changes save a few hundred KB of runtime memory in a mcs
1821         bootstrap or a monodevelop startup.
1822
1823 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1824
1825         * verify.c: Improve error message.
1826
1827 2010-03-12  Jb Evain  <jbevain@novell.com>
1828
1829         * reflection.c (add_exported_type): populate the exported
1830         table with the type's nested type.
1831
1832 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1833
1834         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1835         can't read parentheses.
1836
1837 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1838
1839         * threads.c (thread_cleanup): Add a guard to dereferencing
1840         "thread" to avoid an unlikely race condition.
1841
1842 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1843
1844         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1845         instead of an empty string.
1846
1847 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1848
1849         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1850         convert to a boolean, recent gcc versions compile this differently.
1851
1852 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1853
1854        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1855        inlined.
1856
1857 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1858
1859         * sgen-gc.c (STRING_SIZE): Off by one.
1860
1861 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1862
1863         * sgen-archdep.h: Fix the signal context register access for
1864         AMD64.
1865
1866 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1867
1868         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1869
1870 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1871
1872         * verify.c: Store the initial basic block returned by mono_basic_block_split
1873         so we can release the whole list and not just the first one.
1874
1875 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1876
1877         * verify.c, debug-helpers.c, profiler.c, loader.c,
1878         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1879         MonoMethodHeader a transient entity.
1880
1881 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1882
1883         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1884         uncontrolled growth of the gray stack.
1885
1886         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1887         added items are removed first, improving cache locality. Avoid freeing queue
1888         segments in the fast path, use the list of segments as the free list, truncate
1889         it to its max size at the start of collection.
1890
1891 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1892
1893         * metadata-internals.h: more memory savings, both with small config and without.
1894
1895
1896 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1897
1898         * appdomain.c, domain-internals.h, domain.c, object.c:
1899         make class_vtable_hash into an array to reduce memory usage.
1900
1901 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1902
1903         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1904         object-internals.h, object.c, reflection.c, threadpool.c:
1905         reduce resource usage when the small config is selected.
1906         In particular, up to 64K of methods/fields/properties/events
1907         are allowed and "other" methods in events are ignored.
1908
1909 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1910
1911         * threads.c: reduce resource usage when compiled for a small config.
1912
1913 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1914
1915         * sgen-gc.c: Also collect number of degraded-alloced objects with
1916         heavy statistics.
1917
1918 2010-03-04  Geoff Norton  <gnorton@novell.com>
1919
1920         * assembly.c: Only support OSX bundling if the bundle is 
1921         actually detectable.
1922
1923 2010-03-04  Geoff Norton  <gnorton@novell.com>
1924
1925         * loader.c: The marshal specs are freed at the end of the call
1926         but it explicitly frees the strings as well as the container,
1927         so we need to dup them too to avoid referencing free'd memory.
1928
1929 2010-03-04  Geoff Norton  <gnorton@novell.com>
1930
1931         * icall-def.h:
1932         * icall.c: Add a new private internal icall to construct
1933         an object from its type without running the ctor.
1934
1935 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1936
1937         * profiler.c: allow multiple profiler engines to be loaded
1938         at the same time.
1939
1940 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1941
1942         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1943         profiler event to track object moves.
1944
1945 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1946
1947         * object.c, profiler.c, profiler.h, string-icalls.c:
1948         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1949
1950 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1951
1952         * decimal.c (mono_double2decimal): Add support for reducing the
1953         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1954         expected.
1955
1956 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1957
1958         * icall-def.h:
1959         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1960
1961 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1962
1963         * mono-config.c (mono_config_parse_assembly_bindings): added -
1964         parses assembly binding redirections from appdomain's config
1965         file.
1966
1967         * metadata-internals.h: added definition of a new function -
1968         mono_config_parse_assembly_bindings - to support parsing assembly
1969         binding redirections defined in appdomain's config file.
1970
1971         * domain-internals.h: added two new fields to _MonoDomain - a list
1972         of assembly bindings and a flag to parse the config file only
1973         once.
1974
1975         * assembly.c (assembly_binding_maps_name): empty culture name and
1976         NULL culture name are considered equal.
1977         (mono_assembly_apply_binding): added support for domain specific
1978         assembly binding redirections, read from the appdomain's
1979         configuration file. Fixes bug #580185
1980
1981 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1982
1983         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1984         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1985         support.
1986
1987 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1988
1989         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1990         from this function. The new function receive the parent token instead of a type.
1991
1992         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1993         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1994         typebuilders. This make it possible to properly encode generic type builders since
1995         their unmanaged type don't have generics data while unfinished.
1996
1997         Fixes #583655.
1998
1999 2010-03-02  Mark Probst  <mark.probst@gmail.com>
2000
2001         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
2002         writing binary log files (can be enabled by #define'ing
2003         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
2004         bugs in longer running programs.
2005
2006 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
2007
2008         * metadata.c: added some API documentation.
2009
2010 2010-03-01  Robert Jordan  <robertj@gmx.net>
2011
2012         * filewatcher.h: Include glib.h to fix the MSVC build.
2013
2014 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
2015
2016         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
2017         a GC handle instead. This is a bit slower to access, but avoids burdening the
2018         GC with 100s of individual roots.
2019
2020         * reflection.c (mono_class_get_ref_info):
2021         (mono_class_set_ref_info):
2022         (mono_class_free_ref_info): New internal helper fuctions.
2023
2024         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
2025         of accessing klass->reflection_info directly.
2026
2027         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
2028         words.
2029
2030         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
2031         the previous array.
2032
2033 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
2034
2035         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
2036         needs an indirection.
2037
2038 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2039
2040         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
2041         so all generic sharing code is in one place.
2042
2043         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
2044         we don't call setup_interface_offsets () for unfinished types.
2045
2046 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2047
2048         * class.c (mono_class_generic_sharing_enabled): Move this to
2049         generic-sharing.c.
2050
2051         * image.c: Add an unload hook which is called before an image is unloaded.
2052
2053         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
2054         metadata.c having to depend on generic sharing.
2055
2056 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2057
2058         * class.c: reduce size of ridiculously large cache.
2059
2060 2010-02-26  Martin Baulig  <martin@ximian.com>
2061
2062         * mono-debug.h
2063         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
2064
2065         * threads.c (mono_thread_internal_reset_abort): New method; resets
2066         the abort, but doesn't throw any exception if no abort was requested.
2067
2068 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2069
2070         * class.c (get_implicit_generic_array_interfaces): Call
2071         mono_class_setup_interface_offsets () before accessing
2072         eclass->interface_offsets_count. This only shows up on platforms without IMT for
2073         some reason.
2074
2075 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
2076
2077         * environment.c, environment.h, icall.c: make the GetOSVersionString()
2078         icall internal.
2079
2080 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
2081
2082         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
2083         direct access to the MonoType fields.
2084
2085 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
2086
2087         * threads.h: Move some internal functions which were added to this header by
2088         mistake to threads-types.h.
2089
2090         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
2091
2092 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
2093
2094         * class-internals.h, class.h, object.h: make MonoRemoteClass
2095         and mono_remote_class() internal.
2096
2097 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2098
2099         * metadata-internals.h, class-internals.h, metadata.h: make the
2100         MonoType guts internal as well.
2101
2102 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
2103
2104         * reflection.h: the MonoTypeNameParse guts are internal now.
2105         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
2106         are internal now, provide accessors as needed.
2107         * metadata.h, metadata-internals.h: the MonoMethodSignature
2108         guts are internal now.
2109         * Makefile.am: mempool.h is an internal header now.
2110         * *.h, *.c: remove glib.h usage from the public headers.
2111
2112 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
2113
2114         * culture-info-table.h : regenerated.
2115
2116 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
2117
2118         * metadata.c: Add mono_method_get_header_summary which returns minimal
2119         information about the header of a method. This is the information used
2120         by the inline oracle to reject methods.
2121
2122         This method doesn't decode local variables and doesn't cache it's result,
2123         so it should cause a minimal reduction in memory usage.
2124
2125         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
2126         mono_method_get_header_summary.
2127
2128 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
2129
2130         * threads.c (mono_thread_exit): Make sure that the main thread is
2131         non-null before dereferencing it.
2132
2133 2010-02-21  Geoff Norton  <gnorton@novell.com>
2134
2135         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
2136         locale.
2137         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
2138         before falling back to the posix lookup.
2139
2140 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
2141
2142         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
2143         the DONT_MANAGE flag set.
2144
2145 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2146
2147         * domain.c: Remove old v1 version strings. Let the runtime
2148         default to 2.0 instead of failing because it can't find a
2149         working 1.0 instalation.
2150
2151 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2152
2153         * domain.c: Add v4 RC version string.
2154
2155 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2156
2157         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
2158         of overflow checking function.
2159
2160 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
2161
2162         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
2163         generic methods.
2164
2165         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
2166         cases for ParameterInfo.
2167
2168         Fixes #579493.
2169
2170 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
2171
2172         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
2173         have has_cctor set. Fixes #575946.
2174
2175 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
2176
2177         * appdomain.c: display a warning if the parsing the config file
2178         produces any error.
2179         Skip the BOM in UTF-8 files.
2180         Copy the AppDomainSetup before setting the privateBinPath so that the
2181         correct configuration file is read.
2182
2183 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
2184
2185         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
2186         vtable trampoline per vtable slot index. Not used yet.
2187
2188 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2189
2190         * icall-def.h:
2191         * icall.c: add internal call that returns the system page size.
2192
2193 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
2194
2195         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
2196         'int' for system classes.
2197
2198 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
2199
2200         * icall.c, icall-def.h: new icall to check for sufficient
2201         stack space.
2202
2203 2010-02-12  Mark Probst  <mark.probst@gmail.com>
2204
2205         * reflection.c (ensure_complete_type): Check that reflection_info
2206         is set, too.  Fixes crash of corlib testsuite with -O=-all.
2207
2208 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
2209
2210         * attrdefs.h:
2211         * tabledefs.h: Add NoOptimization flag.
2212
2213 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2214
2215         * sgen-gc.c: Don't consider it a missing remset if the target
2216         object is pinned - we might have done the store but not added the
2217         remset yet.
2218
2219 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2220
2221         * sgen-gc.c: When checking for missing remsets, don't assert on
2222         the first one, but print them all and then assert.
2223
2224 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2225
2226         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
2227
2228 2010-02-09  Miguel de Icaza  <miguel@novell.com>
2229
2230         * console-unix.c: On OSX Control-Y is assigned to
2231         VDSUSP (non-Posix), the
2232         suspend-program-next-time-it-tries-to-read-input command (this is
2233         different than C-z, which suspends immediately).
2234
2235         Do the same thing that bash does and ignore this setting,
2236         making our repl/getline support pasting.
2237
2238 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2239
2240         * sgen-gc.c: Simple plausibility check for scan_starts.
2241
2242 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2243
2244         * sgen-gc.c: Round up when calculating the number of scan starts.
2245
2246 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2247
2248         * reflection.c: Export mono_get_object_from_blob.
2249
2250         * object-internals.h: Ditto.
2251
2252         * icall.c: New icall property_info_get_default_value to get the default
2253         value of a property. Since using this is not common, no caching is done.
2254
2255         * icall-def.h: Add new icall.
2256
2257 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2258
2259         * class.c: Add mono_class_get_property_default_value.
2260
2261         * class-internal.h: Export mono_class_get_property_default_value.
2262
2263 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2264
2265         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
2266
2267 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
2268
2269         * sgen-gc.c: introduced critical regions to allow some lockless
2270         operations and increase scalability.
2271
2272 2010-02-10  Geoff Norton  <gnorton@novell.com>
2273
2274         * reflection.c: Support building with DISABLE_REFLECTION
2275
2276 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
2277
2278         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
2279         Closes bug #566057.
2280
2281         * exception.c: fix typo in comment.
2282
2283 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
2284
2285         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
2286         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
2287
2288         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
2289
2290         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
2291         the internal API.
2292
2293         Fixes #574434.
2294
2295 2010-02-09  Mark Probst  <mark.probst@gmail.com>
2296
2297         * threads.c: Removed two assertions that were too strict.  Added a
2298         clarifying comment.  Fixes #577090.
2299
2300 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
2301
2302         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
2303         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
2304
2305         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
2306
2307         * verify.c (mono_type_get_stack_name): Fix a warning.
2308
2309 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
2310
2311         * marshal.c (mono_marshal_get_wrapper_info): Rename from
2312         mono_marshal_wrapper_info_from_wrapper.
2313
2314         * marshal.c (mono_marshal_set_wrapper_info): Rename from
2315         mono_marshal_method_set_wrapper_data, and export.
2316
2317         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
2318         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
2319         by calling mono_marshal_get_wrapper_info ().
2320
2321         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
2322         small objects which does no size checks.
2323
2324 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
2325
2326         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
2327
2328 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2329
2330         * verify.c (mono_method_verify): Use the new basic block formation pass
2331         to avoid verifying dead basic blocks. This is the same behavior as the
2332         runtime MS verifier.
2333
2334 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2335
2336         * mono-basic-block.c:
2337         * mono-basic-block.h: New implementation of a basic block formation pass.
2338         The formation pass does static liveness analysis as well to detect dead
2339         basic blocks.
2340
2341 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2342
2343         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
2344         'this' argument in icalls.
2345
2346 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2347
2348         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
2349
2350 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2351
2352         * object.c, domain.c: When using SGen, we must register
2353         vtable->type as a root if it's not a MonoType, because then it
2354         wasn't pin-alloced.
2355
2356 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2357
2358         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
2359         at the start of nursery collections, because we might have had
2360         degraded allocations which changed next_data.
2361
2362 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2363
2364         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
2365         custom attr so this function works in cross-compiling mode.
2366
2367 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2368
2369         * class.c (make_generic_param_class): Initialize interface offsets since we
2370         set klass->inited. Fixes #574819.
2371
2372 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2373
2374         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
2375         calling the JIT domain cleanup hook.
2376
2377 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2378
2379         * pedump.c (main): Properly set the verifier mode when running the metadata
2380         verifier.
2381
2382 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2383
2384         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
2385         overlapping fields now that we're called before has_references is set.
2386
2387         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2388         method. Otherwise all sort of weird stuff happens.
2389
2390 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2391
2392         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2393         Fixes #572874.
2394
2395 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2396
2397         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2398         Fixes #573322.
2399
2400 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2401
2402         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2403         pin_staging_area_index is greater than 0.
2404
2405 2010-01-22 Miguel de Icaza (miguel@novell.com)
2406
2407         * loader.c: Since we do nothing with the error returned, pass NULL
2408         to ignore the error.
2409
2410 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2411
2412         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2413         happened before starting to encode the actual fields. This avoid ciclic
2414         dependencies and eventual crashes.
2415
2416         Fixes #572660.
2417
2418 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2419
2420         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2421         atomic and remove the half-constructed hack in SGen.
2422
2423 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2424
2425         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2426         has a recursive reference to itself.
2427
2428         Fixes #571863.
2429
2430 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2431
2432         * loader.c (mono_method_signature): Fix error message.
2433
2434 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2435
2436         * sgen-gc.c: Reuse to-space sections between nursery collections.
2437
2438 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2439
2440         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2441         from the current assembly or mscorlib. Fixes bug #322957.
2442
2443 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2444
2445         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2446         get_wrapper_target_class.
2447
2448 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2449
2450         * sgen-gc.c: Fix warnings.
2451
2452 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2453
2454         * verify.c (store_local): Better error message.
2455
2456 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2457
2458         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2459         arguments.
2460
2461 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2462
2463         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2464         function is generics variance aware.
2465
2466 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2467
2468         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2469         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2470
2471 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2472
2473         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2474           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2475
2476         Code is contributed under MIT/X11 license.
2477
2478 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2479
2480         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2481         on a GTD.
2482
2483 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2484
2485         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2486         return a point to a wrapper specific info structure describing the wrapper.
2487         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2488  
2489 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2490  
2491         * sgen-gc.c: Make minor collection section allowance adaptive,
2492         depending on the amount of memory reclaimed in the last major
2493         collection.  If more memory was reclaimed (i.e. more garbage
2494         produced), do the next collection earlier.
2495
2496 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2497
2498         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2499         to itself.
2500
2501         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2502         the token as parameter.
2503
2504         * verify-internals.h: Ditto.
2505
2506         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2507
2508         Fixes #571460.
2509
2510 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2511
2512         * sgen-gc.c: Make store_remset_buffer_index long.
2513
2514 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2515
2516         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2517
2518         Fixes #569579.
2519
2520 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2521
2522         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2523         off precise marking if it is available.
2524         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2525
2526 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2527
2528         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2529
2530         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2531         pinned objects.
2532
2533         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2534         to the array allocator.
2535
2536 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2537
2538         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2539         result of mono_compile_method (), it already includes an ftnptr.
2540
2541 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2542
2543         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2544
2545 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2546
2547         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2548         hash value which doesn't depend on glib/eglib versions.
2549         (mono_metadata_type_hash): Use it.
2550
2551         * object.c (mono_method_get_imt_slot): Ditto.
2552
2553 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2554
2555         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2556         independently of the GTD.
2557
2558         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2559
2560         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2561         to the upper limit since instance_size includes this amount.
2562
2563         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2564
2565         Fixes #569544.
2566
2567 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2568
2569         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2570         with static methods.
2571
2572         * object.c (build_imt_slots): Avoid asserting when static methods are
2573         encountered in an interface.
2574
2575 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2576
2577         * sgen-gc.c (to_space_expand): Fix assertion.
2578
2579 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2580
2581         * string-icalls.c: missing declaration fixes.
2582         * sgen-gc.c: portability fixes.
2583
2584 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2585
2586         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2587
2588         * class.c:
2589         * cominterop.c:
2590         * icall.c:
2591         * object.c: 
2592         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2593
2594 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2595
2596         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2597         it can fail loading the type.
2598
2599         * class.c: Add mono_class_inflate_generic_class_checked.
2600
2601         * class.c:
2602         * verify.c:
2603         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2604
2605 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2606
2607         * loader.c (mono_method_signature_checked): New internal function taking an
2608         MonoError argument.
2609
2610         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2611         Fixes build on rh 7.3.
2612
2613 2010-01-10  Aaron Bockover  <abockover@novell.com>
2614
2615         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2616         at runtime in the same way as on Windows, which yields a relocatable
2617         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2618         of the running mono process.
2619
2620         On TARGET_ARM, fallback () will always be executed.
2621
2622 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2623
2624         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2625
2626 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2627
2628         * class.c (mono_class_is_assignable_from_slow): Support variant
2629         generic delegates.
2630
2631         * class.c (mono_class_implement_interface_slow): Support types with
2632         variant generic arguments.
2633
2634 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2635
2636         * verify.c: Remove some code duplication.
2637
2638 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2639
2640         * object.c: Update docs.
2641
2642 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2643
2644         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2645
2646         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2647         fallback trampoline as well.
2648
2649         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2650         out argument that is set to TRUE if the match was direct. 
2651
2652         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2653
2654         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2655
2656 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2657
2658         * class.c: Add mono_class_interface_offset_with_variance function that does same
2659         as mono_class_interface_offset but takes variance into account.
2660
2661         * class-internal.h: Export mono_class_interface_offset_with_variance.
2662
2663         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2664
2665 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2666
2667         * object.c:
2668         * icall.c:
2669         * class.c: Add some FIXME for due to variant generic arguments.
2670
2671         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2672         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2673         the bitfield check fails.
2674
2675 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2676
2677         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2678         to be easier to read and fix bugs in the case a non generic type implements a variant
2679         interface.
2680
2681         * class.c (mono_class_has_variant_generic_params): Make non static.
2682
2683         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2684         the private API.
2685
2686 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2687
2688         * assembly.c: fix MONO_PATH debug output.
2689
2690 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2691
2692         * culture-info-table.h : regenerated.
2693
2694 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2695
2696         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2697         types that are meant to not have a parent.
2698
2699 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2700
2701         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2702         from the image mempool, so it is not leaked.
2703
2704 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2705
2706         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2707
2708 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2709
2710         * verify.c (verify_valuetype_layout_with_target): Fix case
2711         that can lead to infinite recursion. Fix bug #567861
2712
2713 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2714
2715         * pedump.c: Run code verifier even if image verification fails
2716         due to a failed type we. This allows more errors to be shown.
2717
2718 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2719
2720         * class.c (count_virtual_methods): Remove the assert and now
2721         fail properly.
2722         
2723         * class.c (setup_interface_offsets): This can fail now.
2724
2725         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2726         errors. Check setup_interface_offsets errors.
2727
2728         * class.c (setup_interface_offsets): Simplify the return error logic
2729         and remove class_init_ok.
2730
2731         Fixes #560327.
2732
2733 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2734
2735         * class.c (mono_class_init): Do class verification at the beginning. Add
2736         some asserts to avoid tripping into invalid memory.
2737
2738         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2739         g_error and a decent message.
2740
2741         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2742
2743         Fixes #567548.
2744
2745 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2746
2747         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2748         as inline functions instead of defining them in mempool.c.
2749
2750         * metadata-internals.h (MonoImageSet): New structure representing a set of
2751         MonoImages, which own a collection of generic instances.
2752
2753         * metadata.c: Get rid of the global generic caches, instead assign each generic
2754         instance to the image set which consists of all the images referenced by the
2755         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2756         the memory used by generic instances to be allocated from a per image-set mempool
2757         later.
2758
2759 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2760
2761         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2762
2763 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2764
2765         * appdomain.c (zero_static_data): Fix a warning.
2766
2767         * locales.c (construct_culture_from_specific_name): Applied patch from
2768         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2769         not found. Fixes #567900.
2770
2771 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2772
2773         * loader.c (mono_method_get_signature_full): Remove two asserts.
2774         Return NULL instead so that the verifier can handle both cases 
2775         gracefully.
2776
2777 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2778
2779         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2780         so we can properly fail types instead of crashing.
2781
2782         Fixes #567676.
2783
2784 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2785
2786         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2787         generic method.
2788
2789 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2790
2791         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2792
2793 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2794
2795         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2796         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2797         we can't remove it from it since we don't hold the lock.
2798         (mon_new): Free the orphaned events here when a mon structure is added to the
2799         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2800         this down.
2801
2802 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2803
2804         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2805         as max stack might be zero.
2806
2807         Fixes #562320.
2808
2809 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2810
2811         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2812
2813         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2814         instances if the GTD did.
2815
2816         * class.c (mono_class_setup_properties): Ditto.
2817
2818         * class.c (mono_class_setup_events): Ditto.
2819
2820         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2821
2822         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2823         error setting.
2824
2825         * class.c (mono_class_init): Fail if GTD did.
2826
2827         * cominterop.c:
2828         * generic-sharing.c:
2829         * icall.c:
2830         * loader.c:
2831         * object.c:
2832         * verify.c: Properly handle failure of mono_class_setup_methods.
2833
2834 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2835
2836         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2837         mono_class_inflate_generic_method_full internal.
2838
2839         * class.c (inflate_generic_context): Now takes a MonoError argument.
2840
2841         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2842         errors.
2843
2844 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2845
2846         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2847         they cannot be patched. Partly fixes #564408.
2848
2849 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2850
2851         * metadata-internals.h, reflection.c: Use the
2852         MonoDynamicImage.handleref hash table only with unmanaged keys,
2853         and add a managed hash table handleref_managed for managed keys.
2854
2855 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2856
2857         * sgen-gc.c: Unset to-space bumper between collections.  It might
2858         become invalid due to degraded allocations.
2859
2860 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2861
2862         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2863         with the one from the original method.
2864
2865         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2866         compatibility.
2867
2868         * verify-internals.h: Add new function to the internal API.
2869
2870 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2871
2872         * culture-info-tables.h: regenerated it to include the Georgian culture.
2873
2874 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2875
2876         * sgen-gc.c: Include mono/utils/memcheck.h.
2877
2878         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2879         instead of the current domain, since the two might not match if this is called
2880         from the debugger.
2881
2882         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2883         domain which created this assembly.
2884
2885 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2886
2887         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2888
2889 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2890
2891         * sgen-gc.c: Managed implementation of the specialized generic
2892         store write barrier.
2893
2894 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2895
2896         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2897         A private virtual newslot method is used to implement an interface method without exposing
2898         it to users. When querying for public instance methods, such method would hide a public one
2899         on a parent type.
2900
2901         Fixes #564379.
2902
2903 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2906         conventions.
2907
2908 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2909
2910         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2911
2912 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2913
2914         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2915         as they are no longer used.
2916         
2917          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2918
2919         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2920
2921 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2922
2923         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2924         if the owner class has not been finished before returning reflection_info.      
2925
2926         Fixes #565127.
2927
2928 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2929
2930         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2931         param doesn't have custom attributes. Fixes #565117.
2932
2933         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2934         #565120.
2935
2936 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2937
2938         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2939
2940 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2941
2942         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2943         same amount done by a core-clr enabled runtime.
2944
2945 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2946
2947         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2948         the target files is reset to writable by owner and readable by
2949         everyone else to prevent problems when updating shadow copies of
2950         files whose source is read-only. Fixes bug #556884
2951
2952 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2953
2954         * class.c (mono_generic_class_get_class): Allocate the generic
2955         class via malloc again, so that it can be freed when any one of
2956         the images of its constituent types is closed.
2957
2958         * metadata.c: When closing an image, don't free generic insts and
2959         generic classes right away, but put them into a list for later
2960         freeing.
2961
2962         * image.c, metadata-internals.h: Store the free list and in the
2963         second pass of closing an image, free it.
2964
2965 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2966
2967         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2968
2969         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2970         types in type_hash.
2971
2972         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2973
2974 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2975
2976         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2977         user type.
2978
2979         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2980         is used.
2981
2982 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2983
2984         * verify.c (mono_method_verify): The Unused opcodes produce an
2985         InvalidProgramException on .NET
2986
2987 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2988
2989         * loader.c (mono_method_get_header): Move assert after the verifier
2990         has been called on the method header.
2991
2992 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2993
2994         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2995
2996         * appdomain.c: Bump corlib version.
2997
2998 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2999
3000         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
3001         types as well since otherwise generic instances would not return UT as arguments but
3002         their undelying system type.
3003
3004         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
3005         to reflect the fact that they can have now multiple different types.
3006
3007         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
3008
3009         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
3010
3011         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
3012
3013         * reflection.c (mono_reflection_register_with_runtime): Init super types
3014         if the image is not dynamic.
3015
3016         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
3017         check if the generic type definition is a TypeBuilder.
3018
3019         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
3020         doesn't belong to a dynamic image, skip initialization.
3021
3022         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
3023         base definition is not a dynamic type.
3024
3025 2009-12-11  Marek Habersack  <mhabersack@novell.com>
3026
3027         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
3028         mono_profiler_string_allocation
3029
3030         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
3031         if string profiling is enabled, call
3032         mono_profiler_string_allocation
3033
3034         * profiler.h: added two MonoProfileFlags -
3035         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
3036         installation functions for the hooks below.
3037
3038         * profiler-private.h, profiler.c: added two hooks:
3039         mono_profiler_string_allocation called whenever a string is
3040         allocated by InternalAllocateStr and mono_profiler_iomap called
3041         whenever IOMAP code performs an adjustement on a file path.
3042
3043 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
3044
3045         * boehm-gc.c: fixed race condition while getting the target of a
3046         disappearing link (bug #522233).
3047
3048 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3049
3050         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
3051         the error.
3052
3053 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3054
3055         * reflection.c: Add mono_reflection_register_with_runtime icall to
3056         allow a MonoGenericClass to register itself as the managed mirror of
3057         a given generic instance.
3058         This is a temporary workaround until all MGC instantiation happens in
3059         managed code.
3060
3061         * object-internals.h: Ditto.
3062
3063         * icall-def.h: Ditto.
3064
3065 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3066
3067         * sgen-gc.c (find_in_remsets): Also search the generic store
3068         remsets.
3069
3070 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3071
3072         * sgen-gc.c: Don't access class names in debugging code when
3073         unloading a domain, because they might not be valid anymore.
3074
3075 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3076
3077         * domain.c, domain-internals.h: New function mono_domain_unset().
3078
3079         * appdomain.c (unload_thread_main): Detach the thread again at the
3080         end.
3081
3082         * threads.c: When a thread exists or is detached, unset its domain
3083         so that it's NULL when, for example, a pthread destructor runs.
3084
3085         * sgen-gc.c: Assert that there is no domain set after a thread is
3086         done.
3087
3088 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3089
3090         * class.c (mono_generic_class_get_class),
3091         metadata.c (free_generic_class): Allocate generic MonoClass's from
3092         the image mempool, not via malloc.  The problem with malloc is
3093         that when unloading a domain those classes are freed before
3094         clearing the heap and SGen needs the classes.  Rewriting the
3095         unloading code to do the free later would be more work and there's
3096         no point in using malloc anyway.
3097
3098 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
3099
3100         * loader.c (mono_method_signature): Always call mono_loader_unlock 
3101         before returning.
3102
3103 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3104
3105         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
3106         user string blobs.
3107
3108         * verify-internals.h: Add new function to the internal API.
3109
3110         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
3111         check if it's a valid string.
3112
3113         * object.c (mono_ldstr): Ditto.
3114
3115         Fixes #561943.
3116
3117 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3118
3119         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
3120         from a method before returning it. This is the expected behavior.
3121
3122 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3123
3124         * reflection.c (inflate_method): Handle the case of a regular system type.
3125
3126 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3127
3128         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
3129         gathering code.
3130
3131         * mempool.c, mempool-internals.h: New function
3132         mono_mempool_get_bytes_allocated().
3133
3134         * Makefile.am: sgen-pinning-stats.c added.
3135
3136 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3137
3138         * sgen-gc.c (create_allocator): Only use the fast path if the
3139         object size is within the small object size limit.
3140
3141 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3142
3143         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
3144         possibly adding padding to sizeof (GCMemSection).
3145
3146 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3147
3148         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
3149         reference is not in the nursery.
3150
3151 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
3152
3153         * class.c (mono_class_from_typeref): Bounds check idx against the 
3154         assemblyref table.
3155
3156 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3157
3158         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
3159         through the potential roots, then sort the results and find the
3160         pinned objects from there.
3161
3162         * Makefile.am: sgen-pinning.c added.
3163
3164 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3165
3166         * sgen-gc.c: Record generic stores in specialized remset buffers.
3167
3168 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3169
3170         * sgen-gc.c: Make pinned chunks the same size as major heap
3171         sections, and align them as well, so that we can check whether an
3172         object is in a pinned chunk or a major section in constant time.
3173
3174 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3175
3176         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
3177
3178 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3179
3180         * sgen-gc.c: Make all major heap sections the same size (currently
3181         128k) and allocate them on aligned addresses.  Small heap sections
3182         give us better granularity with pinned objects - we can free up
3183         much more memory.
3184
3185 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3186
3187         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
3188         output removed.
3189
3190 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3191
3192         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
3193
3194         * mono/metadata/assembly.c: When opening an assembly image, pass the real
3195         names in addition to the runtime generated one.
3196
3197         * mono/metadata/image.h: Add a function to take the real name of the assembly
3198         image.
3199
3200         * mono/metadata/image.c: If a real name has been passed to load an assembly,
3201         use it instead of the runtime generated one.
3202
3203         Code is contributed under MIT/X11 license.
3204
3205 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3206
3207         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
3208         before the other checks to prevent problems if the DateTime class is blittable.
3209         Hopefully fixes #559600.
3210
3211 2009-12-05  Mark Probst  <mark.probst@gmail.com>
3212
3213         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
3214         returns the largest string length that will not be put into the
3215         LOS.
3216
3217         * sgen-gc.c, gc-internal.h: New function that returns the largest
3218         object size that will not be put into the LOS.
3219
3220         * appdomain.c: Bump corlib version.
3221
3222 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3223
3224         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3225
3226         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3227
3228 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3229
3230         * reflection.c (inflate_method): Fix signature.
3231
3232         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
3233         in managed code.
3234
3235 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3236
3237         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
3238
3239 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3240
3241         * sgen-gc.c: Abstract to-space handling.
3242
3243 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
3244
3245         * loader.c (find_method_in_class): Ignore methods with broken signatures.
3246
3247         Fixes #559906.
3248
3249 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3250
3251         * sgen-gc.c: Only add references from outside the nursery to
3252         within the nursery to the global remset list.
3253
3254 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3255
3256         * appdomain.c (create_exceptions): Set the domain temporarily if
3257         necessary to avoid cross-domain references.
3258
3259 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3260
3261         * verify.c (get_stack_type): Return that the type is invalid instead of
3262         asserting.
3263
3264         * verify.c (mono_method_verify): Verify that all locals and arguments
3265         have valid stack types.
3266
3267         Fixes #559913.
3268
3269 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3270
3271         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
3272         bounds checking overflow aware.
3273
3274         Fixes #559910.
3275
3276 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3277
3278         * verify.c (do_invoke_method): Check for invalid method signatures.
3279
3280         Fixes #553450.
3281
3282 2009-12-02  Jb Evain  <jbevain@novell.com>
3283
3284         * appdomain.c (MONO_CORLIB_VERSION): bump.
3285         * icall-def.h (get_base_definition): renamed to get_base_method
3286         and add a boolean argument indicating we want the original
3287         method definition, or the immediate base method.
3288         * icall.c: apply the get_base_definition to get_base_method change.
3289
3290 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3291
3292         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
3293
3294         Fixes #558042.
3295
3296 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
3297
3298         * class.c: remove asserts for invalid type token in
3299         mono_class_name_from_token(), mono_assembly_name_from_token() and
3300         mono_class_create_from_typedef () (fixes bug #553318).
3301
3302 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
3303
3304         * metadata.c, class.c, loader.c: remove assert after bsearch() for
3305         incorrect assemblies (bug #553322).
3306
3307 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3308
3309         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
3310
3311         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
3312
3313         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
3314
3315         * class.c (inflate_generic_context): Ditto.
3316
3317         * loader.c (method_from_methodspec): Ditto.
3318
3319         Fixes #558230.
3320
3321 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3322
3323         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
3324
3325         * class.c (mono_class_create_from_typespec): Ditto.
3326
3327         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
3328
3329         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
3330
3331         Fixes #558184.
3332
3333 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3334
3335         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
3336
3337         * verify.c (verify_delegate_compatibility): Ditto.
3338
3339         * verify.c (do_newobj): Ditto.
3340
3341         Fixes #558046.
3342
3343 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3344
3345         * sgen-gc.c: Use a gray queue instead of requiring that gray
3346         objects are in a contiguous region.
3347
3348         * sgen-gray.c: The gray queue implementation.
3349
3350         * Makefile.am: sgen-gray.c added.
3351
3352 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3353
3354         * appdomain.c: When unloading a domain, zero its static data and
3355         perform a minor collection when using SGen.  That will get rid of
3356         all the remsets pointing into that domain's static data.
3357
3358         * sgen-gc.c: Allow remsets into static data.  By doing this we
3359         need less checks so we're more efficient.
3360
3361 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3362
3363         * verify.c (mono_method_verify): Check for catch clauses with broken
3364         types.
3365
3366         Fixes #558465.
3367
3368 2009-12-01  Jb Evain  <jbevain@novell.com>
3369
3370         * class.c (make_generic_param_class): set the namespace of
3371         the generic parameter class from its owner, if available.
3372
3373 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3374
3375         * verify.c (code_bounds_check): Do proper overflow checking.
3376
3377         * verify.c (mono_method_verify): The number of switch entries is
3378         an unsigned int. Properly bounds check it.
3379
3380         Fixes #558594.
3381
3382 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3383
3384         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
3385         mono_metadata_method_has_param_attrs which only checks if a given param
3386         list has a non zero flags entry.
3387
3388         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3389         to inform how many params should we expect to decode.
3390
3391         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3392         as it's faster than mono_metadata_get_param_attrs.
3393
3394         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3395         add mono_metadata_method_has_param_attrs.
3396
3397 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3398
3399         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3400         failures.
3401
3402         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3403         is -1 but its class is broken.
3404
3405         Fixes #558522.
3406
3407 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3408
3409         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3410         for parameter overflow.
3411
3412         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3413         of mono_metadata_get_param_attrs.
3414
3415         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3416         API.
3417
3418         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3419
3420 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3421
3422         * class.c (mono_class_setup_fields): Check for fields with broken types.
3423
3424         Fixes #558741.
3425
3426 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3427
3428         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3429         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3430         its TypeBuilder::CreateType ().
3431
3432         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3433         if not needed.
3434
3435         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3436         to make setup_interface_offsets happy.
3437
3438         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3439         compilation now works.
3440
3441 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3442
3443         * appdomain.c (create_exceptions): New helper function extracted from
3444         mono_runtime_init () to precreate objects used during exception handling.
3445         (mono_runtime_init): Call it.
3446         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3447
3448 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3449
3450         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3451         compilation until the proper one is found.
3452
3453 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3454
3455         * class.c (mono_class_setup_vtable_general): Cache the result of
3456         get_virtual_methods () since it can be slow because of the metadata
3457         optimization.
3458
3459         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3460         from a MonoValueHashTable for now, since the later is based on an earlier
3461         version of hpj's internal probing code and seems to have serious collision
3462         issues.
3463
3464         * loader.c (mono_get_method_full): Update after the change above.
3465
3466 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3469
3470 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3471
3472         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3473         the GTD instead of the DGC instead of crashing.
3474
3475         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3476         required. Inflate fields if needed.
3477
3478         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3479         finished. Renamed.
3480
3481 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3482
3483         * class.c (check_interface_method_override): Check for NULL signatures and fail
3484         the type.
3485
3486         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3487
3488         Fixes #553428.
3489
3490 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3491
3492         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3493         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3494
3495 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3496
3497         * loader.c (field_from_memberref): Resolve the class first then the field
3498         signature. Remove a lot of duplicated code and make sure we don't pass valid
3499         values to mono_loader_set_error_field_load.
3500
3501         Fixes #553306.
3502
3503 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3504
3505         * class.c (inflate_generic_type): Change code to use new signature of
3506         mono_error_set_bad_image.
3507
3508         Fixes #558124.
3509
3510 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3511
3512         * verify.c (mono_method_verify): Don't free ctx.params items if 
3513         we aborted while inflating the ctx.locals. Complete previous fix
3514
3515 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3516
3517         * verify.c (mono_method_verify): Use the uninflated type name, 
3518         when the inflated is null, to report errors. Also take care when
3519         freeing, not to free everything since, in case of an error, some
3520         stuff would be copies (i.e. not allocated by the function itself)
3521         Fix bug #558145
3522
3523 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3524
3525         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3526         or overflow. The caller must have done this check explicitly. This guard us
3527         from accessing invalid memory.
3528
3529         * verify.c (do_push_static_field): Check for stack overflow.
3530
3531         Fixes #553333.
3532
3533 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3534
3535         * loader.c (find_method_in_class): Don't crash if the signature cannot
3536         be resolved.
3537
3538         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3539         of asserting for the case of invalid params.
3540
3541         Fixes #553304.
3542
3543 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3544
3545         * image.c (mono_image_load_module): Fix crash when a bad assembly
3546         has no module at all (fix bug #553412) and also replace the 
3547         g_assert with a return NULL (documented return value for failure)
3548
3549 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3550
3551         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3552
3553 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3554
3555         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3556         file attribute to managed code and avoid doing the mask/attribute
3557         checks here. 
3558
3559 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3560
3561         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3562         the managed world.
3563
3564         * icall-def.h: New entry points.
3565         
3566 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3567
3568         * process.c: Don't put references to managed objects into a
3569         g_ptr_array.
3570
3571 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3572
3573         * class.c (can_access_internals): Allow CoreCLR to participate in
3574         allowing (or not) [InternalsVisibleTo] between assemblies.
3575         * security-core-clr.c|h: Make sure that only trusted code (a 
3576         superset of platform code) can access the internals of platform
3577         code.
3578
3579 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3580
3581         * reflection.c: use the correct base class to get the virtual method
3582         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3583
3584 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3585
3586         * security-core-clr.c (get_caller_no_reflection_related): 
3587         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3588         it's still reflection and must be filtered correctly.
3589
3590 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3591
3592         * object.c (compute_class_bitmap): Fix for large bitmaps.
3593
3594 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3595
3596         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3597
3598         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3599         koush@koushikdutta.com). Disable GC_no_dls on android.
3600
3601 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3602
3603         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3604         tlab_next points outside the TLAB because the allocator was
3605         interrupted.
3606
3607 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3608
3609         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3610
3611 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3612
3613         * object-internals.h: Change signature for mono_string_to_utf8_image.
3614
3615         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3616         argument.
3617
3618         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3619         exceptions due to mono_string_to_utf8.
3620
3621 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3622
3623         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3624
3625         * object.c (mono_remote_class): Make sure all resources are released before
3626         raising an exception.
3627
3628         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3629
3630 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3631
3632         * mono-perfcounters.c (network_get_impl): Change variable initialization
3633         ordering to fix potential memory leak in case of exceptions.
3634
3635         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3636         encoded strings.
3637         
3638 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3639
3640         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3641         variable initialization ordering to fix potential memory leak in case
3642         of exceptions.
3643
3644 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3645
3646         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3647         needed.
3648
3649 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3650
3651         * appdomain.c: Fix shadow path code to better deal with exceptions.
3652
3653 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3654
3655         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3656         exception in the middle of the runtime code.
3657
3658 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3659
3660         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3661         leak memory with broken envvar value.
3662
3663 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3664
3665         * reflection.c (mono_reflection_setup_internal_class): Because
3666         nested classes are not added to the name cache, we must put them
3667         in the reflection_info_unregister_classes list.
3668
3669 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3670
3671         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3672         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3673         platform (trusted) code. Instead we return a TypeLoadException to
3674         be thrown later. This is the exception thrown by Silverlight 2 if
3675         a type, inside application (user) code is marked with [ComImport]
3676
3677 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3678
3679         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3680         mono_is_debugger_attached () too.
3681
3682         * mono-debug.c (mono_is_debugger_attached): New helper function.
3683         (mono_set_is_debugger_attached): Ditto.
3684
3685 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3686
3687         * object-internals.h: Add mono_string_to_utf8_checked.
3688
3689         * object.c: Implement mono_string_to_utf8_checked.
3690
3691 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3692
3693         * class.c: Add missing check for load errors after every
3694         call to mono_class_setup_fields
3695
3696         Fixes #552282.
3697
3698 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3699
3700         metadata-verify.c (verify_tables_schema): Fix the error message.
3701
3702 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3703
3704         * metadata.c: Change event table schema to use TDOR for event type
3705         as this is what it's meant to be.
3706
3707         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3708         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3709         entry.
3710
3711         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3712         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3713         rows in MONO_TABLE_GENERICPARAM.
3714
3715         Fixes #552289.
3716
3717 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3718
3719         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3720         insertion.
3721
3722         * reflection.c (mono_reflection_setup_internal_class): Avoid
3723         registering a gc root the same MonoClass multiple times.
3724         Don't register nested types on the global scope as they should
3725         not be available there.
3726
3727 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3728
3729         * culture-info-tables.h: regenerated.
3730
3731 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3732
3733         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3734
3735 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3736
3737         * string-icalls.c|h: Remove string internal calls that are not 
3738         used anymore by the class libraries.
3739         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3740         which is not used in the class librairies.
3741         * icall-def.h: Update tables.
3742
3743 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3744
3745         * class.h: Move mono_class_inflate_generic_type_checked...
3746
3747         * class-internals.h: to here and make it internal. We don't want to
3748         further expose MonoGenericContext. 
3749
3750 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3751
3752         * verify.c (mono_method_verify): Improve error message.
3753
3754 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3755
3756         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3757         the token is already properly encoded. Fixs 4.0 build.
3758
3759 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3760
3761         * locales.c (construct_number_format): Check if the number index is
3762         valid before trying to use it, if not, just return.
3763         
3764 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3765
3766         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3767         since that loses the abort state. Fixes #539394.
3768
3769 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3770
3771         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3772         explicit this argument to the call signature.
3773         (mono_marshal_get_icall_wrapper): Ditto.
3774
3775 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3776
3777         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3778         to indicate which assembly to use when resolving a custom-mod.
3779
3780         Fixes handling of volatile fields used across assemblies as reported in #551513.
3781
3782 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3783
3784         * loader.c: Improve error messages.
3785
3786 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3787
3788         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3789         of interfaces. Fixes IKVM.
3790
3791         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3792
3793 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3794
3795         * verify.c (verifier_inflate_type): Return the inflated type on success.
3796
3797 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3798
3799         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3800
3801         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3802
3803         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3804
3805         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3806         flag set.
3807
3808         * profiler.c: Add new profiler callbacks for runtime invoke.
3809
3810         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3811
3812 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3813
3814         * sgen-gc.c: Keep track of the reason for a major collection and
3815         write it to the heap-dump file.
3816
3817 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3818
3819         * threads.c: refactor the code that initializes the
3820         thread_start_args into a reusable function and use this in the two
3821         methods that start up threads.
3822
3823 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3824
3825         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3826         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3827
3828 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3829
3830         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3831         Until now, we only had the per-cpu(core) counters.
3832
3833 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3834
3835         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3836         mono_gc_get_suspend_signal(), which returns the suspend signal
3837         number used by the GC.
3838
3839 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3840
3841         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3842
3843         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3844         signalling start_notify.
3845
3846 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3847
3848         * appdomain.c: do not test the st_mode field for shadow-copies.
3849         Fixes bug #545276.
3850
3851 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3852
3853         * threadpool.[ch]: added hooks for thread start/finish and item
3854         processing begin/end. For monotouch use only.
3855
3856 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3857
3858         * threads.c (mono_thread_get_name): New helper function.
3859
3860         * reflection.c (resolve_object): Set handle_class for strings too.
3861         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3862         a cattr blob into a set of arrays and structures without creating the custom
3863         attributes themselves.
3864         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3865
3866         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3867
3868         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3869         function.
3870
3871 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3872
3873         * verify.c: Replace calls to mono_class_inflate_generic_type with
3874         mono_class_inflate_generic_type_checked. Fixes #480005.
3875
3876 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3877
3878         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3879         object since not all paths lead to callees initing it.
3880
3881 2009-10-23  Alp Toker  <alp@nuanti.com>
3882
3883         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3884         header and should not be shipped:
3885
3886         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3887         which is specific to the mono build. Not going to work.
3888
3889 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3890
3891         * security-manager.c: Report if core-clr is active from
3892         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3893         to allow Moonlight BCL to behave appropriately (both in browser
3894         and outside, e.g. smcs)
3895
3896 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3897
3898         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3899         Fixes bug #549108.
3900
3901 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3902
3903         * class.c: fix typo.
3904
3905 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3906
3907         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3908         a MonoError parameter.
3909
3910         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3911         version that can does proper error handling.
3912
3913         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3914
3915         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3916
3917         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3918
3919 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3920
3921         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3922         NO_UNALIGNED_ACCESS is defined.
3923
3924 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3925
3926         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3927         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3928         Fixes #549173.
3929
3930 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3931
3932         * sgen-gc.c: Shorten sections whenever possible.
3933
3934 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3935
3936         * sgen-gc.c: Use our portable semaphore #defines.
3937
3938 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3939
3940         * sgen-gc.c: A debug option for dumping the heap layout to a file
3941         after each collection.
3942
3943 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3944
3945         * sgen-gc.c: Make managed write barriers atomic via
3946         thread-restarts.
3947
3948 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3949
3950         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3951         methods. Fixes #543021.
3952
3953 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3954
3955         * socket-io.[ch]: fix VS build.
3956
3957 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3958
3959         * icall-def.h:
3960         * socket-io.[ch]: implemented SendFile.
3961
3962 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3963
3964         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3965         before the interfaces to avoid crashes later if class initialization fails.
3966         Fixes #548417.
3967
3968         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3969         Fixes #548276.
3970
3971 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3972
3973         * domain.c: Bump 4.0 version.
3974
3975 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3976
3977         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3978         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3979         check since 'pubkey' can't be NULL at this stage
3980         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3981         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3982         initialization of 'iter'
3983
3984 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3985
3986         * cominterop.c : Search the interface parts of vtable to find 
3987           method matches.  Fixes 547030.
3988
3989         Code is contributed under MIT/X11 license.
3990
3991 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3992
3993         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3994         multiple targets. Fixes bug #574426.
3995
3996 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3997
3998         * profiler.h: Put here the definition of
3999         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
4000         (and fix the build...).
4001
4002 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4003
4004         * profiler.c, profiler.h, profiler-private.h:
4005         Added support for different ways of getting call chains in stat mode.
4006
4007 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4008
4009         * object.c, object-internals.h: New function for computing the
4010         size of an array, factored out of mono_array_new_full().  Use
4011         SGen's functions for allocating arrays and vectors.
4012
4013         * sgen-gc.c, gc-internal.h: Special functions for allocating
4014         arrays and vectors without race conditions.  A managed array
4015         allocator method.
4016
4017         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
4018
4019 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4020
4021         * object.c, object.h, icall.c: Write barriers do the copying now,
4022         as well, so no need for an additional memcpy.
4023
4024         * sgen-gc.c: Lock when storing remsets.  Do the memory
4025         copying/moving in the write barriers.
4026
4027         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
4028
4029         * reflection.c: Added an assert.
4030
4031 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4032
4033         * threads.c, process.c: A few missing write barriers.
4034
4035 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
4036
4037         * mono-perfcounters.c, mono-perfcounters-def.h: Add
4038         network performance counters for bytes sent per second, bytes
4039         received per second, and bytes total per second.
4040
4041         Code is contributed under MIT/X11 license.
4042
4043 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4044
4045         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4046         Fix warning.
4047
4048 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4049
4050         * threads.c, object-internals.h, object.c: Move code for
4051         transferring an object to a different domain (via
4052         serialization/remoting) to object.c.
4053
4054         * object.c (call_unhandled_exception_delegate): If the exception
4055         is in a different domain than the delegate, transfer the exception
4056         to that domain.
4057
4058 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
4059
4060         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
4061         Fixes #322934.
4062
4063 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
4064
4065         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
4066
4067 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4068
4069         * object.c (mono_method_return_message_restore): Handle the case
4070         where the argument is an instance of a generic type.  Fixes
4071         #544446.
4072
4073 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4074
4075         * object.c (set_value): Write barrier fix - we must pass the
4076         count, not the size.
4077
4078 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
4079
4080         * domain.c (mono_init_internal): Print a useful error message when encountering
4081         an old mscorlib, instead of crashing. Fixes #544307.
4082
4083 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
4084
4085         * appdomain.c (copy_app_domain_setup): Fix a warning.
4086
4087         * debug-helpers.c (dis_one): Ditto.
4088
4089 2009-10-04  Mark Probst  <mark.probst@gmail.com>
4090
4091         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
4092         into the new domain, instead of referencing the original one.
4093
4094         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
4095         non-static.
4096
4097         * appdomain.c: Corlib version bump.
4098
4099 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4100
4101         * threadpool.c: one more...
4102
4103 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4104
4105         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
4106         threads to die because we're shutting down. delgate5.exe works again.
4107
4108 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
4109
4110         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
4111           ccw_interface_hash table when a ccw is finalized.
4112
4113         Code is contributed under MIT/X11 license.
4114
4115 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4116
4117         * assembly.c, domain.c, image.c, metadata-internals.h: Split
4118         domain and image unloading into two steps.  We must do this
4119         because clearing the domain in SGen requires the class metadata to
4120         be intact, but we need to free the mono_g_hash_tables in case a
4121         collection occurs during domain unloading and the roots would trip
4122         up the GC.
4123
4124 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4125
4126         * object-internals.h: Remove serialized culture fields from
4127         MonoInternalThread.
4128
4129         * icall-def.h, thread-types.h, threads.c: Remove serialized
4130         culture icalls.
4131
4132         * appdomain.c: Corlib version bump.
4133
4134 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
4135
4136         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
4137         Fixes #543133.
4138
4139 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4140
4141         * sgen-gc.c: Try to shorten the new section after a major
4142         allocation to avoid ever-growing sections.
4143
4144 2009-10-13  Martin Baulig  <martin@ximian.com>
4145
4146         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
4147         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
4148         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
4149         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4150
4151         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
4152
4153 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
4154
4155         * threadpool.c: fixed the order in which 'completed' and the wait
4156         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
4157         No need to use the wait_handle field of ASyncCall. Make sure the
4158         threadpool is active when adding a job or queueing an idle thread.
4159
4160 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
4161
4162         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
4163
4164         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
4165         when using --compile-all.
4166
4167 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4168
4169         * metadata.c (free_generic_class): Unregister the field_objects
4170         roots if we're using SGen.
4171
4172 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4173
4174         * reflection.c (mono_dynamic_image_free): Deregister the GC root
4175         for GenericParamTableEntry.gparam.
4176
4177 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4178
4179         * marshal.c: don't create the handle when calling. It is created later
4180         if needed.
4181
4182 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4183
4184         * sgen-gc.c: Warning fixes.
4185
4186 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4187
4188         * sgen-gc.c: New debug option "xdomain-checks", which scans the
4189         whole heap for cross-domain references before each collection.
4190
4191         * sgen-scan-object.h: The scan action can now use SCAN to scan the
4192         object.
4193
4194         * threadpool-internals.h, threadpool.c: New function
4195         mono_thread_pool_is_queue_array() for checking whether a given
4196         array is used as a (cross-domain) queue by the thread pool code.
4197
4198 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4199
4200         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
4201         searches the whole heap for objects containing a specific
4202         reference.  Only for debugging.
4203
4204 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4205
4206         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
4207
4208         * icall-def.h, threads.c, threads-types.h: New icalls for copying
4209         byte arrays between domains.
4210
4211 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4212
4213         * threadpool.c:
4214         * class-internals.h:
4215         * mono-perfcounters-def.h:
4216         * mono-perfcounters.c:
4217         -There is a list of idle threads
4218         -Each of those idle threads wait on their own WaitHandle instead
4219         of all of them using the same semaphore. When a new work item is
4220         added, the job is assigned directly to an idle thread or a newly
4221         created one if possible and then the handle for that thread is
4222         signaled. Compare that to the current approach where all the
4223         threads in the pool compete to dequeue a job from the same
4224         queue.
4225         -New struct ThreadPool that brings together the bunch of static
4226         variable for each threadpool (IO and regular).
4227         -New performance counters: # of items added and its rate per
4228         threadpool. The rate will be used later, perhaps together with
4229         other perf. counters, to decide when idle threads should exit.
4230
4231 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
4232
4233         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
4234         Fix typo on Windows build.      
4235         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
4236         
4237         Code is contributed under MIT/X11 license.
4238
4239 2009-09-25  Mark Probst  <mark.probst@gmail.com>
4240
4241         * object-internals.h: The Thread class is split up into Thread and
4242         InternalThread now.  We have exactly one InternalThread per
4243         thread, and at most one Thread per appdomain per thread.  Most
4244         data is stored in InternalThread.  All InternalThread objects live
4245         in the root domain.
4246
4247         * class-internals.h: Add internal_thread_class to MonoDefaults.
4248
4249         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
4250         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
4251         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
4252         resulting from the split of the Thread class.
4253
4254         * gc-internal.h: Prototype for new function for checking whether a
4255         thread is the finalizer thread.
4256
4257         * appdomain.c: Corlib version bump.
4258
4259 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4260
4261         * appdomain.c|h: Add a mono_domain_try_unload method which is
4262         equivalent to mono_domain_unload, except that it returns an exception
4263         instead of throwing it. Make mono_domain_unload use the
4264         mono_domain_try_unload method to avoid code-duplication.
4265
4266 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
4267
4268         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
4269         a problem.
4270
4271 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
4272
4273         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
4274         aborting when a conversion is not implemented.
4275
4276 2009-09-23  Miguel de Icaza  <miguel@novell.com>
4277
4278         * verify.c: when comparing culture strings, use g_ascii_strcmp
4279
4280         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
4281         when comparing public key tokens to use memcmp on 16 bytes.   I do
4282         not believe this ever worked as advertised in the past.
4283
4284         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
4285         which would have always failed earlier.
4286
4287 2009-06-25  Miguel de Icaza  <miguel@novell.com>
4288
4289         * gc.c: Raise a NullArgumentException if the object passed is
4290         null.
4291
4292 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
4293
4294         * image.c (mono_image_close): Atomically decrement the reference count and
4295         remove the image from the hash tables, to prevent another thread from seeing a
4296         dying MonoImage. Fixes #541194.
4297
4298 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4299
4300         * threadpool.c: actually use the minimum number of 'completion ports'
4301         (for us is just a potential worker thread).
4302
4303 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4304
4305         * threadpool.c: remove ares_htable. It does not make sense any more
4306         since the same objects are now stored in GC-tracked arrays while they are
4307         in the queue.
4308
4309 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4310
4311         * threadpool.c: increase the minimum length of the queues to 128.
4312         Remove warning.
4313
4314 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
4315
4316         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
4317         return the modified signature used by string ctors.
4318
4319 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
4320
4321         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
4322         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
4323         method, to be used by full-aot.
4324
4325 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
4326
4327         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
4328         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
4329         be known to be good.
4330
4331         * class.c (mono_class_init): Fail array types if their element type fails initialization
4332         as well.
4333
4334         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
4335         initialization, additionally we request the element_type vtable to be initialized as well.
4336
4337         This is fine and should not increase the working set in any meaningful way since it's reasonable
4338         to assume       that most code will create an array and eventually populate it, which will require the
4339         type's vtable to be initialized.
4340
4341         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
4342
4343 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
4344
4345         * normalization-tables.h : regenerated.
4346
4347 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4348
4349         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
4350         a leb128 encoding can take up to 5 bytes.
4351
4352 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4353
4354         * class.c (verify_class_overrides): Remove useless argument.
4355
4356         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
4357         before interface enumeration as this is no longer required.
4358
4359 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4360
4361         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
4362         used under mono_class_init context. This functions avoid any code path that
4363         calls mono_class_init, which leads it to be slow as some things like the interface
4364         bitmap are not available.
4365
4366         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
4367         of it's own broken version. Fixes the verifier part of #538588.
4368
4369         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
4370         API.
4371
4372 2009-09-15  Mark Probst  <mark.probst@gmail.com>
4373
4374         * class.c (mono_class_init): Always set an exception in a class if
4375         vtable setup fails.  Fixes #538577.
4376
4377         * generic-sharing.c: Raise an exception if mono_class_vtable()
4378         returns NULL.
4379
4380 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
4381
4382         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
4383         methods of vtypes, as they could be incorrectly shared with static methods
4384         taking an IntPtr argument.
4385
4386 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4387
4388         * domain.c:
4389         * object.c:
4390         * class-internals.h: renamed waithandle_class to
4391         manualresetevent_class.
4392         * marshal.c: propagate the exception if a remoting BeginInvoke call
4393         fails.
4394
4395 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4396
4397         * object.c: Properly handle vtable failures.
4398
4399 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4400
4401         * socket-io.c: Assert on vtable failure.
4402
4403         * mono-mlist.c: Assert on vtable failure.
4404
4405 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4406
4407         * marshal.c: Assert on vtable failure.
4408
4409 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4410
4411         * icall.c: Properly handle vtable failures.
4412
4413 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4414
4415         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4416
4417 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4418
4419         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4420
4421         * console-unix.c (do_console_cancel_event): Same.
4422
4423 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4424
4425         * class-internals.h: Add mono_class_vtable_full function that allows control
4426         if an exception should be raised or not.
4427
4428         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4429         to do what its documentation say, that is to return NULL and set exception_type on
4430         failure.
4431
4432         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4433         and change the code to honor it.
4434
4435 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4436
4437         * verify.c: Fix typo in error message.
4438
4439 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4440
4441         * security-core-clr.c: Fix default_platform_check so it can run
4442         the runtime coreclr tests (without an infinite recursion when
4443         throwing an exception).
4444
4445 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4446
4447         object.c (mono_delegate_ctor_with_method): Guard against null method.
4448
4449 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4450
4451         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4452         that should be replaced with error handling later.
4453
4454 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4455
4456         * marshal.c (mono_delegate_end_invoke): Fix warning.
4457
4458 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4459
4460         * loader.c (mono_field_from_token): Properly handle invalid
4461         dynamic tokens.
4462
4463 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4464
4465         * pedump.c (verify_image_file): Skip types that can't be
4466         decoded.
4467
4468 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4469
4470         * verify.c: Look for recursive valuetypes only against the
4471         type been initialized as this is a lot simpler and works.
4472
4473 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4474
4475         * verify.c: Ensure that fields are properly loaded before
4476         checking them.
4477
4478 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4479
4480         * object.c (mono_object_get_virtual_method) : Call 
4481           mono_cominterop_get_invoke if the object is a COM object.
4482
4483         Code is contributed under MIT/X11 license.
4484
4485 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4486
4487         * verify.c: Check for recursive valuetype definitions.
4488
4489 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4490
4491         Use inheritance-aware interface offsets. Inherited types use the same offsets
4492         of their parents. This reduce offset duplication in case more than one type in
4493         the inheritance tree explicitly implements the same interface.
4494
4495         This also removes a source of vtable bubbles found in #532409. An abstract type
4496         isn't required to provide abstract methods to all interfaces it implements, which
4497         resulted in a bubble with the previous scheme as the child would get a non-full
4498         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4499         should be fixed.
4500
4501         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4502         it's expected to not cause any significant increase beyond that.
4503
4504         * class.c (setup_interface_offsets): Compute super class iface offsets
4505         first to force sharing.
4506
4507         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4508         dumping only the relevant ones.
4509
4510         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4511         methods a new slot regardless if they belong to an interface or not. This allows
4512         an inherited type to override the iface method separately from the class one.
4513
4514 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4515
4516         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4517         applications that take less than 2s to execute.
4518         Bug #524984 fixed.
4519
4520 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4521
4522         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4523
4524         * object.c (mono_get_runtime_callbacks): New helper function to return
4525         the runtime callbacks.
4526
4527         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4528         mono_get_runtime_build_info () as the display name.
4529         
4530 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4531
4532         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4533         argument, since NEWARR expects a native int. Fixes #481559.
4534
4535 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4536
4537         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4538         against broken SRE methods.
4539
4540 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4541
4542         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4543         a NULL variable. Abort early on failure.
4544
4545 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4546
4547         * class.c (can_access_type): Fail visibility test for non nested
4548         types with nested visibility.
4549
4550 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4551
4552         * assembly.c (parse_public_key): Avoid allocating (and not 
4553         freeing) the public key array when it's not requested by the 
4554         caller.
4555         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4556         ves_icall_System_Threading_Thread_Thread_internal): Free 
4557         allocated memory on error.
4558
4559 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4560
4561         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4562
4563 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4564
4565         * class.c (mono_class_setup_fields): Remove duplicated local variable
4566         named gklass.
4567         Rename gklass to gtd to reflect the fact that it points to the generic
4568         type definition.
4569         Remove the duplicated call to mono_class_setup_fields on gtd and move
4570         the error check to the beginning.
4571
4572 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4573
4574         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4575         Remove cruft of the previous patch.
4576
4577 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4578
4579         * metadata-verify.c (verify_method_table): Check for abstract + final.
4580         Fixes #534175.
4581
4582 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4583
4584         * verify.c (verify_class_fields): Check for duplicate fields.
4585
4586 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4587
4588         * metadata-verify.c: Verify the typeref table for duplicates.
4589
4590 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4591
4592         This reverts r140936 and properly handles interfaces with static methods. The
4593         right fix is to ensure vtables without bubles which is an easier to verify
4594         constraint. We should avoid such special cases as of the reverted patch as those
4595         only make the runtime more brittle.
4596
4597         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4598         static methods on interfaces.
4599
4600         * class.c (setup_interface_offsets): Use the number of virtual methods when
4601         calculating interface offsets instead of the number of methods. This way we
4602         avoid bubles on the layout.
4603
4604 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4605
4606         * metadata-verify.c (verify_metadata_header): Some very smart
4607         obfuscators like to add extra stream headers. Ignore them.
4608
4609 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4610
4611         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4612         methods correctly.
4613
4614 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4615
4616         * metadata-verify.c: Verify for duplicated types.
4617
4618 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4619
4620         * metadata-verify.c (verify_typedef_table): Verify for nested types
4621         without an entry on the nested class table.
4622
4623 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4624
4625         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4626         <tom_hindle@sil.org>. Add locking around hash table accesses.
4627
4628 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4629
4630         * verify.c (mono_verifier_verify_class): Verify all interface if
4631         really are interfaces. Fixes #534184.
4632
4633 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4634
4635         * pedump.c: Initialize all types during metadata validation so we report
4636         errors only detected as part of class initialization.
4637
4638 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4639
4640         * metadata-verify.c (verify_method_table): PInvoke requires method to
4641         be static. Fixes #534189
4642
4643 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4644
4645         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4646         being NULL.
4647
4648 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4649
4650         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4651         for holes or bad methods. Fixes #525314.
4652
4653 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4654
4655         * class.c (setup_interface_offsets): Don't allocate slot
4656         for the same interface multiple times. This creates bubbles
4657         that waster space and make vtable verification harder.
4658
4659         The same interface get a slot multiple times since we need
4660         to get the closure of all implemented interfaces, which means
4661         the same interface is reported multiple times.
4662
4663 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4664
4665         * verify.c (mono_verifier_verify_class): Don't check the fields
4666         of generic instances since the context on which they got expanded
4667         might lead to false positives.
4668
4669         Such thing happens when a generic type is inflated in the context
4670         of a generic method and the inflated type of a field turns into a
4671         generic method argument, which causes the checking code to think
4672         it's an invalid class when it's not.
4673
4674 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4675
4676         * verify.c (mono_type_is_valid_in_context): Verify if type
4677         is NULL and remove duplicate test.
4678
4679 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4680
4681         * verify.c (mono_verifier_verify_class): Check fields for
4682         invalid generic arguments.
4683
4684 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4685
4686         * class.c (verify_class_overrides): Verify if for static
4687         and non virtual methods.
4688
4689 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4690
4691         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4692         Check for errors after retrieving the vtable.
4693
4694 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4695
4696         * class.c (mono_class_setup_vtable_general): Verify
4697         if method overrides are valid before processing them.
4698
4699 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4700
4701         * marshal.c (mono_array_to_lparray): Fix minimal build with
4702         cominterop disabled.
4703
4704         * marshal.c (mono_free_lparray): Same.
4705
4706 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4707
4708         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4709         the hash function for the ares_htable.
4710
4711 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4712
4713         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4714         bit for assembly flags. MS is ok with it but there is no spec anywhere
4715         on its mean
4716
4717 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4718
4719         * class.c (mono_class_create_from_typedef): Emit profiler events
4720         in all cases.
4721
4722 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4723
4724         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4725         Release memory on failure.
4726
4727 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4728
4729         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4730         to the internal API.
4731
4732         * metadata.c (get_constraints): Use a single-linked table as we don't
4733         traverse it backward. Fail and return FALSE if only of the contraint types
4734         is not found.
4735
4736         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4737         to mono_metadata_load_generic_param_constraints except for having a return value.
4738         This has to be done since the later is part of the public API.
4739
4740         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4741         and fail the type.
4742
4743         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4744         and fail the method.
4745
4746 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4747
4748         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4749         with MS broken behavior of emmitting EH section sizes without the
4750         header size added.
4751
4752 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4753
4754         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4755         memory until we're sure that we'll need it. This avoids leaking for
4756         broken types or duplicated instantiation.
4757
4758 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4759
4760         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4761         mistake.
4762
4763 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4764
4765         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4766         and expected size calculation.
4767
4768 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4769
4770         * class.c (mono_class_get_field_idx): Add fixme for broken
4771         behavior for types with multiple fields with the same name.
4772         I would rather fix it, but have no idea on how to generate
4773         such artifact for testing.
4774
4775 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4776
4777         * verify.c (verifier_load_field): We should allow references to
4778         fields to be made using the generic type definition. It's up to
4779         the loader system to fail invalid ops.
4780
4781         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4782         are invalid.
4783
4784 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4785
4786         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4787
4788         * metadata-internals.h: Fix declaration of 
4789         mono_metadata_interfaces_from_typedef_full.
4790
4791         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4792         heap_alloc_result parameter that controls if the result should be
4793         g_malloc'd.
4794
4795         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4796         array be g_malloc'd and properly document this public API function.
4797
4798 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4799
4800         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4801         remove METHOD_HEADER_TINY_FORMAT1.
4802
4803         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4804
4805         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4806
4807         Both spec and MS uses only 2 bits to enumerate the kind of header.
4808         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4809         is superfluous, only used for tiny headers with odd code lengths.
4810
4811         This change also make sure that mono doesn't wronly interpret bit 2
4812         of fat header flags, which is currently reserved.
4813
4814 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4815
4816         * metadata.c (do_mono_metadata_parse_type): Do error
4817         checking for element types. Don't abort if presented
4818         with a broken type kind.
4819
4820 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4821
4822         * metadata.c (mono_metadata_parse_method_signature_full):
4823         Gracefully fail bad vararg signatures.
4824
4825 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4826
4827         * profiler.c:
4828         * class.c: Fix warnings for uninitialized variables.
4829
4830 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4831
4832         * icall.c: Fix _NSGetEnviron method declaration warning.
4833
4834 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4835
4836         * icall.c:
4837         * reflection.c: Make bitwise checks explicit.
4838
4839 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4840
4841         * debug-helpers.c:
4842         * marshal.c: Fix printf warnings.
4843
4844 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4845
4846         * reflection.c (encode_cattr_value): Fix a warning.
4847
4848 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4849
4850         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4851         of array bounds.
4852
4853 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4854
4855         * loader.c (mono_method_signature): Don't assert on broken
4856         signature. Print a more useful error message.
4857
4858 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4859
4860         * loader.c (mono_method_get_marshal_info): Assert if
4861         signature is invalid. Bounds check stores to the
4862         mspecs array;
4863
4864 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4865
4866         * loader.c (field_from_memberref): Fix warning.
4867
4868 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4869
4870         * loader.c (mono_method_get_param_names): Check if signature
4871         is null. Don't store beyond the size of the name array.
4872
4873 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4874
4875         * loader.c (mono_get_method_constrained): Check if signature
4876         is null.
4877
4878 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4879
4880         * loader.c (mono_loader_set_error_bad_image): Improve
4881         error messages.
4882
4883 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4884
4885         * loader.c (mono_get_method_full): Convert an assertion
4886         into a loader error.
4887
4888 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4889
4890         * class-internals.h, class.c: Better naming and documentation.
4891
4892 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4893
4894         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4895         obj is NULL.
4896
4897 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4898
4899         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4900         parsing fails.
4901
4902 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4903
4904         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4905         errors with no class set.
4906
4907         * loader.c (field_from_memberref): If the field signature is of the wrong
4908         type fail with a MissingFieldException instead of a BadImageException as
4909         this is the behavior observed on MS. 
4910
4911 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4912
4913         * loader.c (field_from_memberref): Don't crash if either the field
4914         signature or the typespec class are invalid.
4915
4916 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4917
4918         * verify.c (verifier_load_field): Don't allow field related
4919         ops to reference fields on generic type definition.
4920
4921 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4922
4923         * metadata-verify.c: Add new warning level for errors specified
4924         by ECMA 335 but that MS ignores.
4925
4926         * metadata-verify.c (verify_method_table): Make compiler controled
4927         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4928         this check is safe because the end result will only be some visibility
4929         exceptions been thrown.
4930
4931 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4932
4933         * verify.c (get_boxable_mono_type): Don't allow the
4934         use of the generic type definition on boxed type positions.
4935
4936         Fixes #531237.
4937
4938 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4939
4940         * threadpool.c: Make sure no cross-domain references remain in
4941         ares_htable or the arrays that are thrown away when resizing.
4942
4943 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4944
4945         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4946         list of classes for which we have to unregister reflection_info
4947         with the GC and which are not in the namespace cache.
4948
4949         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4950         the class to the list.
4951
4952 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4953
4954         * domain.c (mono_domain_free): Unregister the GC roots in
4955         MonoDomain.
4956
4957 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4958
4959         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4960
4961 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4962
4963         * class.c: Add mono_class_get_field_from_name_full which does
4964         the same as mono_class_get_field_from_name but does check field
4965         signature as well.
4966
4967         * class-internals.h: Export mono_class_get_field_from_name_full as
4968         part of the internal API.
4969
4970         * loader.c (field_from_memberref): Search fields by name and signature
4971         as it's valid to have two fields with same name but different types.
4972
4973         Fixes #528055.
4974
4975 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4976
4977         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4978
4979         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4980
4981         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4982         System.Type.
4983
4984 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4985
4986         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4987
4988         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4989
4990 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4991
4992         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4993         to sgen-scan-object.h, which can be included and parameterized via
4994         macros.
4995
4996         * Makefile.am: sgen-scan-object.h added.
4997
4998 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4999
5000         * gc.c: #define GC_dont_gc if we're compiling with SGen.
5001
5002 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5003
5004         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
5005         before clearing a domain in the GC.
5006
5007 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5008
5009         * exception.c (mono_exception_from_name_domain): Actually create
5010         the exception in the specified domain.
5011
5012         * appdomain.c (mono_domain_create_appdomain_internal): Create the
5013         OutOfMemoryException a bit later so that the domain is inialized
5014         "enough" that it works.
5015
5016 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5017
5018         * threads.c (thread_cleanup): Clean up the cached_culture_info
5019         array to prevent cross-domain references.
5020
5021 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
5022
5023         * metadata.c: more documentation for MonoType accessors.
5024
5025 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
5026
5027         Fix incorrect size definitions where the tail array isn't a list
5028         of pointers
5029         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
5030         define size.
5031         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
5032         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
5033         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
5034
5035 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5036
5037         * reflection.h:
5038         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
5039
5040 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5041
5042         * metadata.c:
5043         * loader.c:
5044         * metadata-internals.h:
5045         * method-builder.c:
5046         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
5047
5048 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5049
5050         * cominterop.c:
5051         * metadata.c:
5052         * metadata.h:
5053         * loader.c:
5054         * marshal.c:
5055         * reflection.c: #define for sizeof in MonoType and
5056         MonoMethodSignature.
5057
5058 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5059
5060         * domain.c:
5061         * domain-internals.h: add and use #define's instead of sizeof()
5062         for MonoJitInfo and MonoJitInfoTable.
5063
5064 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5065
5066         * object.c:
5067         * class.h: use #define instead of sizeof() for MonoRemoteClass.
5068
5069 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5070
5071         * metadata.c:
5072         * metadata.h:
5073         * object.c:
5074         * class-internals.h:
5075         * generic-sharing.c:
5076         * marshal.c: use a #define instead of sizeof() for a few
5077         structures that use a zero-length array.
5078
5079 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5080
5081         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
5082         to handle inflated generic methods.
5083
5084         * appdomain.c: Bump corlib version.
5085
5086         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
5087         instances.
5088
5089         * reflection.c (fixup_method): Same
5090
5091         * reflection.c (resolve_object): Same.
5092
5093         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
5094         g_error and a decent message.
5095
5096 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
5097
5098         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
5099         from the object because it could not yet be available globally
5100         (it happens if the profiler tries to create a gchandle on the
5101         MonoThread object of a thread that is still registering itself
5102         with the runtime).
5103
5104 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
5105
5106         * reflection.c (mono_generic_class_get_object): Initialized the
5107         managed type arguments array.
5108
5109         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
5110
5111         * appdomain.c: Bump corlib version.
5112
5113 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
5114
5115         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
5116         #527902.
5117
5118 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
5119
5120         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5121         Avoid a crash if synch_cs is not set.
5122         
5123         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5124         Handle the case when the handle is 0.
5125
5126         * appdomain.c: Bump corlib version.
5127
5128 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
5129
5130         * reflection.c (mono_type_get_object): Fix a warning.
5131
5132 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5133
5134         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
5135         descriptor here.  We assume it's already been computed.
5136
5137         * generic-sharing.c (instantiate_other_info): Compute the GC
5138         descriptor for info type MONO_RGCTX_INFO_KLASS.
5139
5140 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5141
5142         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
5143         type, so don't use MONO_OBJECT_SETREF to set a field.
5144
5145 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5146
5147         * gc.c: We were missing one case where invoking a finalizer would
5148         not reset the domain.  Also, in the finalizer thread loop, assert
5149         that we're in the root domain.
5150
5151 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5152
5153         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
5154         if the type is not an array.
5155
5156 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5157
5158         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
5159         method bound to the declaring type of the method. Raise an exception
5160         if the type is not a generic param.
5161
5162 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5163
5164         * class.c (print_unimplemented_interface_method_info): Print the
5165         full type name.
5166
5167         * class.c (mono_class_setup_vtable_general): When dealing with a
5168         generic instance first check if the generic type definition is
5169         not broken.
5170
5171 2009-02-11 Tom Hindke <tom_hindle@sil.org>
5172
5173         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
5174
5175         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
5176
5177         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
5178
5179         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
5180
5181         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
5182
5183         Code is contributed under MIT/X11 license
5184
5185 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
5186
5187         * verify.c: Fix naming of stelem and ldelem.
5188
5189 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5190
5191         * generic-sharing.c: Replace the templates lock with the loader
5192         lock because of very hard to resolve deadlock issues.
5193
5194 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
5195
5196         * icall.c (ves_icall_Type_GetMethodsByName): Use 
5197         mono_class_get_vtable_size () instead of accessing klass->vtable_size
5198         directly. Fixes #525338.
5199
5200         * class.c (mono_class_get_vtable_size): New helper function.
5201
5202         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
5203         the field belongs to the type. Fixes #525733.
5204
5205 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5206
5207         * sgen-gc.c: When we stop a thread and its stack top is not within
5208         its allocated stack (because it's in an altstack signal handler),
5209         restart it and stop it again, until it is.
5210
5211 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5212
5213         * sgen-gc.c: Take a thread's stack top and registers from the
5214         sigcontext in the suspend signal handler.
5215
5216         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
5217         stuff to sgen-archdep.h.
5218
5219         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
5220         caller, because have code in sgen-archdep.h to acquire that data.
5221
5222 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
5223
5224         * profiler.c, profiler.h, profiler-private.h:
5225         Added support for keeping track of code chunks and buffers.
5226
5227 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
5228
5229         * metadata-verify.c: Fix endianness problems on decoding functions.
5230         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
5231
5232 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5233
5234         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
5235         schema for vectors and one dimension SZARRAY.
5236
5237 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5238
5239         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
5240         schema for vectors and one dimension SZARRAY.
5241
5242 2009-07-27  Mark Probst  <mark.probst@gmail.com>
5243
5244         * icall-def.h, thread-types.h, threads.c: New separate icalls for
5245         Interlocked.(Compare)Exchange with object arguments, which invoke
5246         write barriers.
5247
5248 2009-07-26  Miguel de Icaza  <miguel@novell.com>
5249
5250         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
5251         passed invalid arguments.   Fixes another crasher in the
5252         Silverlight test suite.
5253
5254         * class.c (mono_class_array_element_size): Return 0 for the size
5255         of the class;  This fixes the crasher exposed by :
5256
5257         typeof (void).MakeArrayType ();
5258
5259         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
5260         if there is no method to dereference.    Put all the code that
5261         depends on this inside the if (method) block.
5262
5263         This fixes the crasher exposed by Microsoft's Silvelright CLR test
5264         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
5265
5266         With this change, we pass the test.
5267         
5268         * reflection.c (mono_reflection_sighelper_get_signature_local):
5269         Only dereference the assembly if it has been set.    Fixes a
5270         crasher exposed by #525328
5271
5272 2009-07-25  Mark Probst  <mark.probst@gmail.com>
5273
5274         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
5275         don't perform the store in mono_gc_wbarrier_generic_nostore().
5276         Remove the second argument (value), which is not needed.
5277
5278 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
5279
5280         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
5281         the build.
5282
5283         * boehm-gc.c: Ditto.
5284         
5285 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5286
5287         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
5288         not perform the store itself.  Introduce
5289         mono_gc_wbarrier_generic_nostore(), which is the same as
5290         mono_gc_wbarrier_generic_store(), except it doesn't perform the
5291         store.
5292
5293 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5294
5295         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
5296         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
5297         we still need the memcpy().
5298
5299 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5300
5301         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
5302         so that big arrays are handled correctly.  Always use
5303         safe_object_get_size() to calculate array object sizes, which
5304         takes bounds into account.
5305
5306 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5307
5308         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
5309         GC descriptor is computed before we use it.
5310
5311 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5312
5313         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
5314         write barrier if necessary.
5315
5316 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5317
5318         * icall-def.h, icall.c, thread-types.h: New separate icall for
5319         VolatileWrite(object&,object) that uses a write barrier.
5320
5321         * console-unix.c, file-io.c, icall.c, threads.c: Use write
5322         barriers in icalls which write to "ref" or "out" arguments.
5323
5324 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
5325
5326         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
5327         handler in a separate icall, to reduce the size of the wrappers.
5328
5329 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5330
5331         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
5332
5333 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5334
5335         * metadata-verify.c (parse_field): Allow byref field.
5336
5337         * metadata-verify.c (parse_locals_signature): Allow byref locals.
5338
5339         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
5340
5341 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5342
5343         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
5344         Fixes #522784.
5345
5346 2009-07-20  Robert Jordan  <robertj@gmx.net>
5347
5348         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
5349         Fix invalid IL in valuetype handling (STOBJ must push the
5350         corresponding class). Fixes bug #523149.
5351
5352         Code is contributed under MIT/X11 license.
5353
5354 2009-07-20  Geoff Norton  <gnorton@novell.com>
5355
5356         * gc.c: Use proper semaphores where available on posix and darwin.
5357
5358 2009-07-19  Geoff Norton  <gnorton@novell.com>
5359
5360         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
5361
5362 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
5363
5364         * refletion.c (is_sre_usertype): Change name to is_usertype and
5365         invert it's result so it returns true if the type is an user type
5366         and not the opposite.
5367
5368         * reflection.c (is_*_type): Change all of those to use new macro
5369         check_corlib_type_cached that cached the type lookup so we don't
5370         need to do string comparisons all the type. Changed the signature
5371         to take a MonoClass instead.
5372
5373         * reflection.c: Change mono_image_create_token and resolve_object
5374         to use is_sre_* functions.
5375
5376 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5377
5378         * sgen-gc.c: Check for writes to the stack in the managed
5379         wbarrier as well.
5380
5381 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5382
5383         * sgen-gc.c: When a thread is unregistered, don't free its remsets
5384         but put them on a list which is processed with the other thread's
5385         remsets.
5386
5387 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5388
5389         * sgen-gc.c: Fix and enable the internal allocator instead of
5390         using malloc/free (which causes deadlocks).
5391
5392 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5393
5394         * refletion.c: Fix builds with SRE disabled by adding a minimal
5395         implementation of mono_reflection_type_get_handle.
5396
5397 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5398
5399         * refletion.c: Make mono_reflection_type_get_handle non static.
5400
5401         * object-internals.h: Export mono_reflection_type_get_handle.
5402
5403         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5404         unmanaged handle using mono_reflection_type_get_handle.
5405
5406 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5407
5408         * refletion.c: Replace all reads of MonoReflectionType::type with
5409         calls to mono_reflection_type_get_handle. Only the functions that
5410         deal with constructing TypeBuilder::type have not been changed
5411         because they have to deal with NULL values.
5412
5413         This is a first step into supporting reflection types that don't
5414         map directly into their unmanaged counterpart.
5415
5416 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5417
5418         * metadata-verify.c (parse_locals_signature): Don't complain
5419         on signature with zero locals since MS generates it and doesn't
5420         bother with.
5421
5422 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5423
5424         * reflection.c (mono_image_get_array_token): Resolve return
5425         type using mono_reflection_type_get_handle.
5426
5427         * reflection.c (mono_image_get_array_token): Resolve array method
5428         parent type using mono_reflection_type_get_handle.
5429
5430 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5431
5432         * reflection.c (mono_image_basic_init): Applied patch from
5433         <Dax@daxxfiles.net>. Set the public key token from the assembly
5434         builder. Fixes #518909.
5435
5436         * appdomain.c: Bump corlib version.
5437
5438 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5439
5440         * class.c (mono_class_needs_cctor_run): Make this return false if
5441         the class has no cctor.
5442
5443 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5444
5445         * sgen-gc.c: When the minor GC needs to allocate a new section,
5446         invoke the major GC afterwards.
5447
5448 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5449
5450         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5451           Applying the window_style field to the SHELLEXECUTEINFO struct.
5452
5453         Code is contributed under MIT/X11 license.
5454
5455 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5456
5457         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5458         locking earlier.  Fix it in the managed allocator by making sure
5459         that no thread is stopped there before the GC runs.  If we do stop
5460         a thread there, we restart it and let it run a but, until it stops
5461         somewhere else.
5462
5463         * gc-internal.h, gc.c: Function for getting the IP from a signal
5464         context via a function registered by mini.
5465
5466 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5467
5468         * object-internals.h (MonoIntPtr): New structure describing a boxed
5469         IntPtr.
5470
5471         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5472         returns. Fixes #519953.
5473
5474         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5475
5476 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5477
5478         * class-internals.h, generic-sharing.c: New RGCTX info type for
5479         getting a remoting invoke with check wrapper.
5480
5481 2009-07-07  Geoff Norton  <gnorton@novell.com>
5482
5483         * icall-def.h: Fix the enable-minimal build.
5484
5485 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5486
5487         * object-internals.h: Add MonoReflectionDerivedType.
5488
5489         * reflection.c: Implement support for PointerType.
5490         Fixed tons of warnings.
5491
5492 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5493
5494         * object-internals.h: Add MonoReflectionByRefType.
5495
5496         * reflection.c: Implement support for ByRefType.
5497
5498 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5499
5500         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5501
5502         * object-internals.h: Add MonoReflectionArrayType and
5503         mono_reflection_create_unmanaged_type.
5504
5505         * reflection.c: Implement support for ArrayType.
5506
5507 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5508
5509         * metadata-verify.c (is_valid_method_header): Parse EH block
5510         flags correctly.
5511
5512 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5513
5514         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5515         processing the disappearing links, and process disappearing links
5516         in a loop until no new objects are copied.
5517
5518 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5519
5520         * object.c (handle_enum): Invoke the write barrier when copying
5521         value type instances.
5522
5523         * sgen-gc.c: Register remsets for unmanaged write barriers only
5524         when the address written to is actually on the heap.  This makes
5525         set_value() in object.c work without requiring that the result be
5526         on the heap.
5527
5528 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5529
5530         The runtime wrappers are all bound to a given type that must
5531         exist in the same image. For regular images we use the <Module>
5532         type, which is required to exist for all images.
5533
5534         The <Module> type can't be used for dynamic images because it
5535         might not exist at the time the wrapper is required, so we create
5536         a synthetic type to use instead.
5537
5538         The current code works because of the 2 stage setup of MonoClass,
5539         but once this is gone it will no longer work.
5540
5541         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5542
5543         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5544
5545         * object-internals.h: Export mono_image_set_wrappers_type icall
5546         as part of the internal API.
5547
5548         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5549         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5550
5551         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5552         image wrappers_type to the provided value.
5553
5554 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5555
5556         * appdomain.c (deregister_reflection_info_roots): No need
5557         to use the image lock here.
5558
5559 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5560
5561         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5562
5563 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5564
5565         * threads.c: Store the thread start argument in a hash table instead of
5566         registering it as a root, as libgc doesn't support unregistering roots
5567         under windows, leading to 'too many root sets' errors when many threads
5568         are created.
5569
5570         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5571         shutdown, they can still be referenced by the other dying objects.
5572         Fixes #514506.
5573
5574 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5575
5576         * socket-io.c: DontLinger does not allow LingerOptions.
5577
5578 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5579
5580         * metadata-verify.c: The spec doesn't mention that it's possible to add
5581         custom attribute to a generic parameter. Fixed.
5582
5583 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5584
5585         * class.c (inflate_generic_type): Don't crash while trying to output a message
5586         on why we're aborting.
5587
5588 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5589
5590         * socket-io.c: DontLinger can take an int or a boolean too.
5591
5592 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5593
5594         * gc.c: check for a null argument to SuppressFinalize () and
5595         ReRegisterForFinalize ().
5596
5597 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5598
5599         * loader.c (method_from_methodspec): Call into the verifier to check
5600         the signature.
5601
5602         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5603
5604         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5605         part of the internal API.
5606
5607 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5608
5609         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5610         the signature.
5611
5612         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5613
5614         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5615         part of the internal API.
5616
5617 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5618
5619         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5620         the signature.
5621
5622         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5623         blob verification.
5624
5625         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5626         part of the internal API.
5627
5628 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5629
5630         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5631         when doing basic verification. 
5632
5633         This check must be done since the runtime peeks into signatures in much
5634         more places than it does decoding so it makes sense to ensure that all
5635         pointers to blob objects are well formed.
5636
5637 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5638
5639         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5640         Use proper overflow dectection. Fix usage of it.
5641
5642 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5643
5644         * loader.c (field_from_memberref): Call into the verifier to check
5645         the signature.
5646
5647         * loader.c (mono_method_get_signature_full): Same.
5648
5649         * loader.c (method_from_memberref): Same.
5650
5651         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5652
5653         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5654         part of the internal API.
5655
5656 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5657
5658         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5659         or unloaded, still return an AsyncResult, but don't add it to the
5660         threadpool.
5661
5662 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5663
5664         * threads.c: fix missing colon when DEBUG is defined.
5665
5666 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5667
5668         * threadpool.c: Don't add new calls to a threadpool if the domain
5669         of the call is unloading or unloaded.  When dequeuing a job, null
5670         the reference in the queue.
5671
5672 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5673
5674         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5675         generation if an object was moved.
5676
5677 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5678
5679         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5680           parameters of type SAFEARRAY[VARIANT].
5681
5682         * reflection.c (encode_marshal_blob): Properly generate element type
5683           (SafeArraySubType marshal attribute option).
5684
5685         Code is contributed under MIT/X11 license.
5686
5687 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5688
5689         * reflection.c: in mono_method_clear_object () really ensure all the
5690         objects are removed.
5691
5692 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5693
5694         * loader.c (mono_method_signature): Call into the verifier to check
5695         the method signature.
5696
5697         * metadata-verify.c (verify_method_table): Move signature verification
5698         to verify_method_table_full.
5699
5700         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5701
5702         * verify-internals.h: Export mono_verifier_verify_method_signature as
5703         part of the internal API.
5704
5705 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5706
5707         * loader.c (mono_method_get_header): Call into the verifier to
5708         check the method header.
5709
5710         * metadata-verify.c: Add mono_verifier_verify_method_header.
5711
5712         * verify-internals.h: Export mono_verifier_verify_method_header as
5713         part of the internal API.
5714
5715 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5716
5717         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5718         check the field signature. Replace an assert with an explicit check.
5719
5720         * class.c (mono_class_setup_fields): Call into the verifier to check
5721         the field signature.
5722
5723         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5724
5725         * verify-internals.h: Export mono_verifier_verify_field_signature as
5726         part of the internal API.
5727
5728 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5729
5730         * class.c (mono_class_find_enum_basetype): Simplify this function
5731         by moving code outside of the loop and not decoding static fields.
5732
5733 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5734
5735         * metadata-verify.c (verify_typedef_table): Check the extends
5736         token here. Move to here a flags check from verify_typedef_table_full.
5737
5738 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5739
5740         * metadata-verify.c (is_valid_method_header): Fix a warning.
5741
5742         * metadata-internals.h (MonoImage): Remove the unused 
5743         static_rgctx_invoke_wrapper_cache.
5744
5745         * image.c marshal.c: Ditto.
5746
5747 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5748
5749         * image.c (do_mono_image_load): Enable table data verification.
5750
5751 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5752
5753         * metadata-verify.c (is_valid_constant): Fix nullref check.
5754
5755 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5756
5757         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5758
5759 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5760
5761         * sgen-gc.c: Managed allocation with pthreads TLS.
5762
5763         * threads.c, threads-types.h: Functions for the JIT to tell the
5764         runtime whether it supports the MONO_TLS opcode.
5765
5766 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5767
5768         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5769         without methods.
5770
5771 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5772
5773         * metadata-verify.c (is_valid_constant): Fix the string length check.
5774         Use safe overflow checking. Add decent error messages.
5775
5776 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5777
5778         * metadata-verify.c: Move remaininh blob checks to the offline
5779         verification path.
5780
5781 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5782
5783         * metadata-verify.c: Move more blob checks to the offline verification
5784         path.
5785
5786 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5787
5788         * object-internals.h : Adding interrupt_on_stop field.
5789
5790         * threads.c (mono_thread_request_interruption) : On Windows exit the
5791           thread if interrupt_on_stop is set.
5792
5793         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5794          Removing old interrupt logic and setting the interrupt_on_stop for the
5795          thread when calling accept.
5796
5797         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5798          setting the interrupt_on_stop for the thread when calling accept.
5799
5800         Contributed under MIT/X11 license.
5801
5802 2009-06-20  Martin Baulig  <martin@ximian.com>
5803
5804         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5805
5806 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5807
5808         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5809         running in no-exec mode.
5810
5811 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5812
5813         * metadata-verify.c (verify_method_table): Move header
5814         checking to verify_method_table_full.
5815
5816         * metata-verify.c (mono_verifier_verify_full_table_data):
5817         Call verify_method_table_full.
5818
5819 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5820
5821         * metadata-verify.c (verify_field_table): Move signature
5822         checking to verify_field_table_full.
5823
5824         * metata-verify.c (mono_verifier_verify_full_table_data):
5825         Call verify_field_table_full.
5826
5827 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5828
5829         * metadata-verify.c (verify_typedef_table): Move remaining
5830         stuff to verify_typedef_table_full.
5831
5832 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5833
5834         * metadata-verify.c: Kill is_corlib from VerifyContext.
5835         It is only used by the offline mode.
5836         So we better remove it from the runtime path.
5837
5838 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5839
5840         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5841         function that perform the offline metadata verification steps.
5842
5843         * metadata-verify.c (verify_typedef_table): Move some checks to
5844         verify_typedef_table_full and make it been called by new function
5845         mono_verifier_verify_full_table_data.
5846
5847         * pedump.c: Call mono_verifier_verify_full_table_data.
5848
5849         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5850         part of the internal API.
5851
5852 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5853
5854         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5855         check.
5856
5857         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5858         flags bits. SupportLastError was confused as bit 7 instead of 6.
5859
5860         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5861         to check against the module ref table instead of module.
5862
5863         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5864
5865         * pedump.c: Call mono_image_load_names.
5866
5867 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5868
5869         * image.c: Extract mono_image_load_names from do_mono_image_load.
5870
5871         * metadata-internals.h: Export mono_image_load_names as part of
5872         the internal API.
5873         
5874 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5875
5876         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5877         first, as it could reference data in the other caches.
5878
5879 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5880
5881         * metadata-verify.c: Finished with method header verification.
5882
5883 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5884
5885         * metadata-verify.c: Added more header verification code.
5886         Now only EH clauses are missing.
5887
5888 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5889
5890         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5891         for return values.
5892
5893 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5894
5895         * metadata-verify.c: Initial method header verification.
5896
5897 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5898
5899         * metadata-verify.c (verify_import_table): The IAT contents
5900         might end been patched by the windows DL when running with
5901         coree enabled.
5902
5903 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5904
5905         * class.c (mono_class_from_typeref): If the enclosing type is not
5906         found return null instead of crashing. Fixes #508487.
5907
5908 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5909
5910         * normalization-tables.h : updated to the latest unicode charcter
5911           data.
5912         * appdomain.c : bump corlib version.
5913
5914 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5915
5916         * class.c (mono_class_from_name): Fix support for assembly references
5917         in the EXPORTEDTYPE table. Fixes #511704.
5918
5919 2009-06-13  Geoff Norton  <gnorton@novell.com>
5920
5921         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5922         assembly in the target domain.
5923
5924 2009-06-12  Robert Jordan  <robertj@gmx.net>
5925
5926         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5927         because "this" of the managed signature has become an
5928         ordinary parameter in the unmanaged signature.
5929
5930 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5931
5932         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5933         field for owner-less generic containers.
5934
5935         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5936         image field of the owner-less generic containers created here.
5937
5938         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5939         contain is ownerless until the caller sets its owner.
5940
5941         * metadata.c (type_in_image): Handle owner-less generic containers
5942         correctly.
5943         
5944 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5945
5946         * image.c (mono_image_close): Support debug_assembly_unload for
5947         dynamic images too.
5948
5949 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5950
5951         * class.c: Fix some typos in comments.
5952
5953 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5954
5955         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5956
5957         * threads.c (mono_thread_execute_interruption): Avoid creating the
5958         abort exception object while holding the synch_cs lock.
5959
5960 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5961
5962         * metadata-verify.c: Verify basic cattr content.
5963
5964 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5965
5966         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5967         nested types.
5968         
5969         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5970         support for nested types. Fixes #511704.
5971
5972 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5973
5974         * metadata-verify.c: Verify methodspec signatures.
5975
5976 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5977
5978         * metadata-verify.c: Verify typespec signatures.
5979
5980 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5981
5982         * metadata.c (free_inflated_method): Call 
5983         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5984
5985 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5986
5987         * mono-config.c: Small change to report the PPC64/ILP32 model.
5988
5989 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5990
5991         * metadata-verify.c (parse_type): Check szarray.
5992
5993 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5994
5995         * metadata-verify.c (parse_type): Check fnptr.
5996
5997 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5998
5999         * metadata-verify.c (parse_type): Check generic instances.
6000
6001 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6002
6003         * metadata-verify.c (parse_type): Check array shape.
6004
6005 2009-06-05  Robert Jordan  <robertj@gmx.net>
6006
6007         * class.c (mono_class_create_from_typedef): Check only for
6008         mscorlib's System.Array.
6009
6010 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6011
6012         * metadata-verify.c (parse_type): Check pointer, class/valuetype
6013         and generic params. 
6014
6015         * metadata-verify.c (parse_field): Check the signature.
6016
6017 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6018
6019         * metadata-verify.c: Implement locals signature check.
6020
6021 2009-06-04  Marek Safar  <marek.safar@gmail.com>
6022
6023         * domain.c: Add .NET 4.0 Beta 1 version.
6024
6025 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
6026
6027         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
6028           For QueryInterface on CCWs consider the base class
6029           interfaces as well.
6030
6031         Code is contributed under MIT/X11 license.
6032
6033 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6034
6035         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
6036
6037         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
6038         used.
6039
6040         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6041         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
6042
6043         * generic-sharing.c (inflate_other_data): Ditto.
6044         
6045 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
6046
6047         * metadata-verify.c: Implement property signature check.
6048
6049 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6050
6051         * sgen-gc.h: Register saving support for PPC.
6052
6053 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6054
6055         * sgen-gc.c: Fixed a pthread TLS screwup.
6056
6057 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6058
6059         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
6060         supported.
6061
6062 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6063
6064         * sgen-gc.c: Disable TLA and managed allocation if the __thread
6065         keyword is not supported.
6066
6067 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6068
6069         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
6070         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
6071         the inflated method is freed. Fixes #508389.
6072
6073         The code is contributed under the MIT/X11 license.
6074         
6075 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
6076
6077         * marshal.c (get_wrapper_target_class): New helper function.
6078         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
6079         the <Module> class of the image. Fixes #509049.
6080
6081 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6082
6083         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
6084         Check if the thread was interrupted and proccess it straight away.
6085         Makes abortion much more responsive.
6086
6087 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6088
6089         * threads.c (mono_thread_execute_interruption): Use atomic cas with
6090         MonoThread::interruption_requested to match it's counterpart.
6091
6092         Fixes a hang in abort-stress-1 on a 2 core x86.
6093
6094         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
6095         Fix warning.
6096
6097 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6098
6099         Change MonoImage::name_cache to be protected by the image lock
6100         instead of the loader lock.
6101
6102         * appdomain.c (deregister_reflection_info_roots): Protect access
6103         to name_cache.
6104
6105         * class.c (mono_image_init_name_cache): Change from the loader lock
6106         to the image lock. Check if the cache wasn't already created.
6107
6108         * class.c: Change from the loader to the image lock.
6109
6110         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
6111         the code to hold the image lock while iterating over name_cache and
6112         not go into mono_array_new holding it.
6113
6114         * metadata-internals.h: Add a comment about this change.
6115
6116 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6117
6118         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
6119         Under the 2.0 profile raise the loader error.
6120
6121         Fixes #508532.
6122
6123 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6124
6125         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
6126         of ldind opcode for generic instances so we don't fail for direct wrappers.
6127         This only affect direct calls.
6128
6129 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
6130
6131         * reflection.c (create_dynamic_mono_image): Fix warnings.
6132
6133         * generic-sharing.c (other_info_equal): Ditto.
6134         
6135 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6136
6137         * metadata-verify.c: Implement field signature check.
6138
6139 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6140
6141         * metadata-verify.c: Implement standalone signature check.
6142
6143 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
6144
6145         * metadata-verify.c: Implement methodref signature check.
6146
6147 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
6148
6149         * object-internals.h (MonoRuntimeCallbacks): New structure containing
6150         callbacks supplied by the runtime.
6151
6152         * object.c (mono_install_callbacks): New internal function to install
6153         the callbacks.
6154
6155         * object.c (mono_create_ftnptr): Move the implementation of this to
6156         mini/.
6157
6158         * object.c (mono_get_addr_from_ftnptr): Ditto.  
6159
6160 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6161
6162         * metadata-verify.c (parse_return_type): Proper byref check.
6163         * metadata-verify.c (is_valid_method_signature): Check for zero arity
6164         generic signatures and method params.
6165
6166 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6167
6168         * metadata-verify.c (decode_signature_header): Fix bounds check.
6169
6170         * metadata-verify.c (parse_custom_mods): Check custom mods.
6171
6172         * metadata-verify.c (parse_type): Do initial basic verification
6173         of valid values.
6174         
6175         * metadata-verify.c (is_valid_method_signature): Parse the generic
6176         param count.
6177
6178 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
6179
6180         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
6181         discarded based on their most specific definition so we set the method_slots
6182         array before checking if the method is acceptable or not.
6183
6184         Fixes #506757.
6185
6186 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6187
6188         * icall.c: Free the old array when resizing a mono_ptr_array.
6189
6190 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6191
6192         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
6193         for the hashes whose keys are managed objects.
6194
6195 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6196
6197         * object-internals.h, threads.c: Set the execution context on
6198         thread start here, not in corlib.
6199
6200         * appdomain.c: Bump corlib version.
6201
6202 2009-05-27  Martin Baulig  <martin@ximian.com>
6203
6204         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
6205         if `_mono_debug_using_mono_debugger' is set to make things work
6206         properly when embedding Mono.
6207
6208 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6209
6210         * class.c (mono_class_setup_fields): Don't mark simd types as having
6211         16 bytes alignment as the whole runtime doesn't support.
6212
6213 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6214
6215         * metadata-verify.c (safe_read): Use endian safe read macros.
6216
6217 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
6218
6219         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
6220         it is read-only when using full aot.
6221
6222 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6223
6224         * metadata-verify.c (is_valid_method_signature): Verify parts
6225         of the return type. Provide an error message in case of failure.
6226
6227 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6228
6229         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
6230
6231 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6232
6233         * metadata-verify.c: Include the size prefix in the bounds check.
6234
6235 2009-05-22  Miguel de Icaza  <miguel@novell.com>
6236
6237         * icall.c: Remove warnings.
6238
6239         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
6240         prevent auto-detection based on GCC defines.
6241
6242         Add PS3
6243
6244         * metadata-verify.c: Do not include signal.h
6245
6246         * generic-sharing.c, marshal.c: Add returns to avoid some warning
6247         messages.  Not sure why the g_assert_not_reached is not enough to
6248         quiet the compiler.
6249         
6250
6251         * appdomain.c: Remove code that is not used when
6252         DISABLE_SHADOW_COPY is set.
6253
6254         * image.c: use g_getenv
6255
6256 2009-05-21  Miguel de Icaza  <miguel@novell.com>
6257
6258         * reflection.c: Remove code that it not used with
6259         DISABLE_REFLECTION_EMIT is defined.
6260
6261 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
6262
6263         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
6264         invoke wrappers.
6265
6266 2009-05-20  Miguel de Icaza  <miguel@novell.com>
6267
6268         * socket-io.c
6269         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
6270         the ifdef here and instead put that on io-layer
6271
6272 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6273
6274         * metadata-verify.c: Verify the generic param constraint table.
6275
6276 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6277
6278         * metadata-verify.c (verify_generic_param_table): Fix
6279         thinko on the valid flags bits for generic params.
6280
6281 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6282
6283         * metadata-verify.c: Verify the methodspec table.
6284
6285 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6286
6287         * metadata-verify.c: Verify the generic param table.
6288
6289 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6290
6291         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
6292
6293 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6294
6295         * sgen-gc.c: Use generation enum more consistently and use the
6296         correct generation in mono_gc_register_for_finalization().
6297
6298 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6299
6300         * metadata-verify.c: Verify the nested class table.
6301
6302 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6303
6304         * metadata-verify.c: Verify the manifest resource table.
6305
6306 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
6307
6308         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
6309
6310 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
6311
6312         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
6313         wrappers, this is now done in the JIT.
6314         
6315         * class.c (mono_set_generic_sharing_supported): New internal function.
6316         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
6317
6318 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6319
6320         * metadata-verify.c: Verify the exported type table.
6321
6322 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6323
6324         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
6325
6326 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6327
6328         * metadata-verify.c: Verify the file table.
6329
6330 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6331
6332         * metadata-verify.c (verify_assembly_table): Fix an error message.
6333
6334         * metadata-verify.c: Verify the assemblyref table.
6335
6336 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6337
6338         * metadata-verify.c (verify_assembly_table): Fix the valid
6339         bits mask for flags.
6340
6341 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
6342
6343         * debug-helpers.c (mono_method_full_name): Print generic parameters of
6344         generic methods as well.
6345
6346 2009-05-15  Geoff Norton  <gnorton@novell.com>
6347
6348         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
6349         use-case and is significantly more performant than the wapi layer.
6350
6351 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6352
6353         * metadata-verify.c: Verify the assembly table.
6354
6355 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6356
6357         * metadata-verify.c: Fix rows limit check.
6358
6359 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6360
6361         * metadata-verify.c: Verify the fieldrva table.
6362
6363 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6364
6365         * sgen.c: Speed up weak links and finalizers by grouping them by
6366         generation.
6367
6368 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6369
6370         * marshal.c (delegate_hash_table_add): When overwriting an entry,
6371         free the old GCHandle (only applies to SGen).
6372
6373 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
6374
6375         * loader.c (mono_get_method_from_token): Avoid the expensive call to
6376         mono_metadata_load_generic_params () for non-generic methods.
6377
6378 2009-05-12  Mark Probst  <mark.probst@gmail.com>
6379
6380         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
6381         New function for returning a monitor's weak link if it has one.
6382
6383         * sgen-gc.c: Remove an object's monitor's weak link (if it has
6384         one) when clearing a domain.  These can still be around because
6385         the object might not have been collected.
6386
6387 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6388
6389         * gc.c: Fix a warning.
6390
6391 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6392
6393         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6394         prevous wait that resulted in a deadlock on Windows when initializing
6395         the runtime form DllMain. Also results in improved startup time.
6396         (finalizer_thread): Get rid of thread_started_event.
6397         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6398         resulting MonoThread.
6399
6400         Contributed under MIT/X11 license.
6401
6402 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6403
6404         * metadata-verify.c: Verify the implmap table.
6405         Don't require that #US and #Strings be present.
6406
6407 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6408
6409         * security-core-clr.c: Delegate checks are done at creation time,
6410         not a invocation time. Fix exception for Telerik Silverlight demo
6411
6412 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6413
6414         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6415         case for the Thread class.
6416
6417         * threads.c: Do clean-up of abort exception/state in
6418         thread_cleanup() instead of Thread.free_internal().  Also clean up
6419         current_appcontext.  The reason we have to do that is because
6420         those references might point into another domain and if that
6421         domain is unloaded before the thread is finalized, they point to
6422         invalid data.
6423
6424 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6425
6426         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6427         stub signatures.
6428         
6429         Contributed unter MIT/X11 license.
6430
6431 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6432
6433         * verify.c, metadata-verifier.c: Add support for disabling the
6434         verifier in some builds.
6435
6436         [ Sorry, my previous commit accidentally commited some work in
6437         progress ]
6438
6439 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6440
6441         * class.c (mono_class_setup_fields): Set class->field.first for
6442         generic instances.
6443
6444 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6445
6446         * metadata-verify.c: Verify the typespec table.
6447
6448 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6449
6450         * metadata-verify.c: Verify the module table.
6451
6452 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6453
6454         * metadata-verify.c: Verify the methodimpl table.
6455
6456 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6457
6458         * metadata-verify.c: Verify the property table.
6459
6460 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6461
6462         * debug-helpers.c (mono_method_desc_match): Add support for generic
6463         glob patterns.
6464
6465 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6466
6467         * metadata-verify.c: Verify the propertymap table.
6468
6469 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6470
6471         * metadata-verify.c: Verify the event table.
6472
6473         * metadata-verify.c (search_sorted_table): Fix offset
6474         calculation.
6475
6476 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6477
6478         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6479
6480 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6481
6482         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6483         because mono_delegate_free_ftnptr() needs it.
6484
6485 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6486
6487         * metadata-verify.c: Verify the eventmap table.
6488
6489 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6490
6491         * metadata-verify.c: Verify the standalonesig table.
6492
6493 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6494
6495         * metadata-verify.c: Verify the field layout table.
6496
6497 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6498
6499         * class.c (mono_type_get_name_recurse): Don't crash
6500         for ownerless generic params.
6501
6502         * debug-helpers.c (mono_type_get_desc): Correct the format
6503         for ownerless generic params.
6504
6505 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6506
6507         * metadata-verify.c: Verify the class layout table.
6508
6509 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6510
6511         * metadata-verify.c: Verify the decl security table.
6512
6513 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6514
6515         * domain.c (mono_domain_set_internal_with_options): Don't do
6516         anything if the old domain is the same as the old one.  Fixes
6517         #499326.
6518
6519 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6520
6521         * appdomain.c: Deregister the reflection_info roots when unloading
6522         a domain.
6523
6524         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6525         memory allocated by a domain and frees its disappearing links.
6526
6527         * boehm-gc.c, null-gc.c: Empty implementation of
6528         mono_gc_clear_domain().
6529
6530 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6531
6532         * appdomain.c (clear_cached_vtable): Free the static fields memory
6533         block.
6534
6535 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6536
6537         * gc.c: Set the correct domain when invoking finalizers.
6538
6539         * appdomain.c: Set the correct domain when creating threads.
6540
6541 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6542
6543         * sgen-gc.c: Fix skip size for vectors.
6544
6545 2009-05-03  Martin Baulig  <martin@ximian.com>
6546
6547         * mono-debug-debugger.c
6548         (mono_debugger_check_breakpoints): Check class init handlers even
6549         if we don't have any method load handers.
6550
6551 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6552
6553         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6554         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6555
6556 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6557
6558         * metadata-verify.c: Verify the field marshal table.
6559
6560 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6561
6562         * metadata-verify.c: Verify the custom attribute table.
6563
6564 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6565
6566         * metadata-verify.c: Verify the constant table.
6567
6568 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6569
6570         * metadata-verify.c: Verify the memberef table.
6571
6572 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6573
6574         * metadata-verify.c (get_coded_index_token): Remove
6575         dead argument.
6576
6577 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6578
6579         * metadata-verify.c: Verify the interfaceimpl table.
6580
6581 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6582
6583         * verify.c: Improve error message.
6584
6585         * debug-helpers.c (mono_type_get_desc): Harden the code that
6586         deals with VAR and MVAR.
6587
6588 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6589
6590         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6591         part of #498692.
6592
6593 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6594
6595         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6596         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6597
6598 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6599
6600         * security-core-clr.c: Avoid redundant checks for platform code, 
6601         e.g. check for method and for class (very common) and check
6602         for class and outer class (less common)...
6603
6604 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6605
6606         * reflection.c: Avoid returning random cattrs for synthetic methods.
6607         Fixes #498545.
6608
6609 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6610
6611         * assembly.c: assemblies in the GAC should never be shadow-copied.
6612
6613 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6614
6615         * domain.c, domain-internals.h: Disable
6616         track_resurrection_{objects,handles}_hash in MonoDomain if using
6617         SGen.
6618
6619 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6620
6621         * metadata-verify.c: Verify the param table.
6622
6623 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6624
6625         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6626         MethodList.
6627
6628         * metadata-verify.c (verify_method_table): Proper check the ParamList
6629         field.
6630
6631 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6632
6633         * metadata-verify.c (verify_method_table): Check for runtime
6634         implemented functions such as delegate .ctors. Remove spurious
6635         printf.
6636         
6637 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6638
6639         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6640
6641 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6642
6643         Don't allocate MonoGenericInfo for ownerless generic params.
6644         * class-internals.h (MonoGenericParam::info): Move field to ...
6645         (MonoGenericParamFull): ... this.  New struct.
6646         (MonoGenericContainer::type_params): Change type to
6647         MonoGenericParamFull.
6648         (MonoGenericParam, MonoGenericContainer): Update accessors.
6649         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6650         'info' field for ownerless generic param.
6651         (mono_metadata_load_generic_params): Update to changes.
6652         * reflection.c (mono_reflection_create_generic_class): Likewise.
6653         (reflection_methodbuilder_to_mono_method): Likewise.
6654         (mono_reflection_initialize_generic_parameter): Likewise.
6655
6656 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6657
6658         Don't use MonoGenericParamInfo for ownerless generic params.
6659         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6660         use ParamInfo class at all.
6661         (mono_class_from_generic_parameter): Use them.
6662         (make_generic_param_class): Fix a couple of instances where 'pinfo
6663         == NULL' wasn't handle.
6664
6665 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6666
6667         * class.c (make_generic_param_class): Carve out of ...
6668         (mono_class_from_generic_parameter): ... here.
6669
6670 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6671
6672         Simplify mono_class_from_generic_parameter
6673         * class-internals.h (MonoGenericParamInfo::token): New field.
6674         * metadata.c (mono_metadata_load_generic_params): Initialize it
6675         from metadata.
6676         * class.c (mono_class_from_generic_parameter): Use it instead of
6677         searching through metadata.
6678
6679 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6680
6681         * metadata-verify.c: Add verification of the method table.
6682
6683 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6684
6685         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6686         Delegate::Invoke optimization.
6687
6688 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6689
6690         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6691         string returned by get_shadow_assembly_location_base.
6692
6693         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6694         about caller's ownership.
6695
6696 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6697
6698         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6699         reflection memory on domain unload.
6700
6701         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6702         reflection cleanup code do it.
6703
6704         * domain-internals.h: Add mono_reflection_cleanup_domain.
6705
6706         This fixes a memory leak for managed mirrors of reflection objects
6707         on domain unload. 
6708
6709 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6710
6711         * metadata-verify.c: Implement more verification of the field table.
6712
6713 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6714
6715         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6716         doesn't try to parse the input assembly, which can be broken.
6717
6718 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6719
6720         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6721         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6722         by using the lowest bit in the link to store whether the link is
6723         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6724
6725 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6726
6727         * Makefile.am: Split the console support in platform specific code
6728         and put together a framework for making this easy in the future so
6729         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6730
6731 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6732
6733         * pedump.c: Fix a warning.
6734
6735 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6736
6737         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6738         mono_class_from_mono_type to avoid bad interactions with the dual representation
6739         of the generic type definition.
6740
6741 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6742
6743         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6744         get the MonoClass for the call context type as it might be a generic
6745         instance.
6746
6747         Fixes #491483.
6748
6749 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6750
6751         * object-internals.h: The Thread object has no execution_context
6752         member anymore.
6753
6754         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6755         the execution context.
6756
6757         * appdomain.c: Bump corlib version.
6758
6759 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6760
6761         * verify.c (do_newobj): Improve error message.
6762
6763 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6764
6765         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6766         is nested in the filter block.
6767
6768         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6769         block is not fully nested.
6770
6771         Fixes #495656.
6772
6773 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6774
6775         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6776         not MonoType to check for equality of valuetypes as the generic type
6777         definition allows for two different encodings: the generic type definition
6778         class or a generic instance over the GTD arguments.
6779
6780         Fixes #496175.
6781
6782 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6783
6784         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6785
6786         * verify.c (do_initobj): Improve error message.
6787
6788 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6789
6790         * metadata-verify.c: Enable pe verification as the issue with #496453
6791         is that the authenticode data directory have a different unspecified
6792         format. Ignore it for now.
6793
6794         * pedump.c: Run the metadata verifier together with the IL verifier.
6795
6796         Fixes ##496453.
6797
6798 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6799
6800         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6801
6802 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6803
6804         * class.c (can_access_type): Check visibility against
6805         the element type for pointers and arrays.
6806
6807         Fixes #496150.
6808
6809 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6810
6811         * metadata-verify.c: Fix cli and table verification to use information
6812         from the MonoImage. A lot of duplicated code got killed.
6813
6814 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6815
6816
6817         This patch starts to integrate the metadata verifier with the runtime code.
6818
6819         This patch causes major regression in functionality for the metadata verifier
6820         as cli and table verification are disabled since they require to be ported to
6821         use MonoImage information.
6822
6823         * image.c (do_mono_image_load): Split the code in this function
6824         into mono_image_load_pe_data and mono_image_load_cli_data.
6825         Add     care_about_pecoff parameter to not load pecoff data.
6826         Call into the metadata verifier for pecoff and cli verification.
6827
6828         * image.c (mono_image_open_raw): New function that doesn't perform
6829         any parsing of the image contents.
6830         
6831         The reason for the 3 new functions is to give pedump better control
6832         into the interaction with the verifier.
6833
6834         * metadata-internals.h: Add new functions from image.c as part of the
6835         internal mono API.
6836
6837         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6838         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6839         to make those functions work together with the runtime.
6840
6841         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6842         true if the image needs to be verified.
6843
6844         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6845
6846         * pedump.c: Use new metadata verifier API.
6847
6848 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6849
6850         * object.c (mono_install_vtable_trampoline): Make this receive a
6851         trampoline creation function instead of trampoline, allowing the JIT
6852         to use a different trampoline for each vtable.
6853
6854 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6855
6856         * object.c (mono_raise_exception): Don't reset the thread abort
6857         exception state here.
6858
6859 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6860
6861         * icall-def.h: New icall for getting the thread abort exception
6862         state for a thread.
6863
6864         * object.c, thread.c, object-internals.h: A thread's abort
6865         exception state is now a GC handle.  To get the object it stands
6866         for, we must move it into the current app domain, if it's
6867         different than the one where it originated from.
6868
6869         * appdomain.c: Bump corlib version.
6870
6871         * domain.c, domain-internals.h: New function for setting the
6872         domain and migrate the thread abort exception or not.
6873
6874 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6875
6876         * metadata-verify.c: Add initial verification of the
6877         field table.
6878
6879 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6880
6881         * metadata-verify.c: Add a macro to conditionally enable
6882         dumping of verification information. Add  make_coded_token
6883         and search_sorted_table to enable search sorted tables
6884         by a given coded token.
6885
6886 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6887
6888         * metadata-verify.c: Add array mapping from table index
6889         to description offset. Add get_col_offset and get_col_size
6890         functions.
6891
6892 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6893
6894         * metadata-verify.c: Add remaining table descriptions offsets.
6895         Add remaining coded index descriptions.
6896
6897 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6898
6899         * metadata-verify.c: Fixed constant table description.
6900         Fixed calculation of HasCustomAttribute coded index size.
6901         Fixed calculation of size for many table indexes. 
6902
6903 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6904
6905         * pedump.c (dump_metadata): Dump table offset instead
6906         of useless pointer in memory.
6907
6908 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6909
6910         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6911
6912 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6913
6914         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6915         a missing of for interface types.
6916
6917 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6918
6919         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6920         the code is commented.
6921
6922         * metadata-verify.c (verify_resources_table): Remove spurious printf
6923         and don't fail if there are unmanaged resources. Gmcs generates a useless
6924         one     for all assemblies - I bet it's some MS compatibility junk.
6925
6926 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6927
6928         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6929
6930         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6931
6932         * verify-internals.h: Same.
6933
6934         * pedump.c: Fix for mono_image_verify new signature.
6935
6936 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6937
6938         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6939         flags combinations.
6940
6941 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6942
6943         * metadata-verify.c (verify_module_table): Ignore the generation field.
6944
6945 2009-04-15  Martin Baulig  <martin@ximian.com>
6946
6947         * debug-mono-symfile.c
6948         (mono_debug_symfile_lookup_location): Don't print a warning for
6949         unknown extended opcodes if they're within 0x40 and 0x7f.
6950
6951 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6952
6953         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6954         invoke signatures returning an enum. Fixes #494847.
6955
6956 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6957
6958         * metadata-verify.c: Initial code to verify the typedef table.
6959
6960 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6961
6962         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6963         with non empty stack happens before the beginning of a try block.
6964
6965         Fixes #494812.
6966
6967 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6968
6969         * metadata-verify.c: Verify typename and typenamespace fields of
6970         the typeref table.
6971
6972 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6973
6974         * metadata-verify.c: Initial code to verify the typeref table.
6975
6976 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6977
6978         * verify.c (verify_delegate_compatibility): Fix error message.
6979
6980 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6981
6982         * security-core-clr.c: Fix typo
6983
6984 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6985
6986         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6987         a MonoGHashTable to keep its values alive.
6988         (emit_marshal_boolean): Fix a warning.
6989
6990 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6991
6992         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6993         not have any interface configured for IPv4/IPv6.
6994
6995 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6996
6997         * assembly.c: fix typo in error message.
6998
6999 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
7000
7001         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
7002         allocating the location holding the this argument to prevent
7003         'too many root sets' errors.
7004
7005         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
7006         to mark fields as special static.
7007         (mono_field_static_get_value): Handle special static fields.
7008         (mono_field_static_set_value): Ditto.
7009
7010         * class-internals.h (struct _MonoClassField): Document this.
7011
7012 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7013
7014         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
7015           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
7016           case.  This will handle when managed code returns null to native code.
7017
7018         Code is contributed under MIT/X11 license.
7019
7020 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7021
7022         * object.c (build_imt_slots): Changing a free to a g_free to match
7023           the g_malloc0 in add_imt_builder_entry that allocated this memory.
7024
7025         Code is contributed under MIT/X11 license.
7026
7027 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7028
7029         * marshal.c (emit_marshal_boolean): Adding code to ensure that
7030           the correct TRUE value is passed through the marshaling layer.
7031
7032         Code is contributed under MIT/X11 license.
7033
7034 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
7035
7036         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
7037         correctly. Fixes #492330.
7038         
7039         * marshal.c: Fix the embedding of object pointers into JITted code in
7040         the native-to-managed wrappers by allocating some GC tracked memory, and
7041         embedding the address of that.
7042
7043 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
7044
7045         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
7046         pointers into the vtable.
7047
7048 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
7049
7050         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
7051
7052         * verify.c (verify_ldftn_delegate): Improve error message.
7053
7054 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7055
7056         * reflection.c (my_mono_class_from_mono_type): Remove.
7057
7058 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7059
7060         Prepare to reduce memory usage of owner-less generic parameters (1/n)
7061         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
7062         and constraints fields into ...
7063         (MonoGenericParamInfo): ... this.
7064         (mono_generic_param_info, mono_generic_container_get_param_info):
7065         New accessors.
7066         * class.c, debug-helpers.c, icall.c: Update to changes.
7067         * metadata.c, reflection.c, verify.c: Likewise.
7068
7069 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
7070
7071         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
7072
7073         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
7074         
7075         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
7076         booleans with sbytes.
7077
7078 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7079
7080         * class.c (can_access_instantiation): Verify accesibility of element types
7081         for arrays and pointers.
7082
7083         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
7084
7085         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
7086
7087         Fixes #493068.
7088
7089 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7090
7091         * verify.c (do_invoke_method): Improve error messages.
7092
7093 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
7094
7095         * verify.c:  Fixing the MSVC build.
7096
7097         Code is contributed under MIT/X11 license.
7098
7099 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
7100
7101         * security-core-clr.c: Simplify get_reflection_caller not to call
7102         mono_method_get_last_managed (another stack walk) and adjust the
7103         callers to handle a (should not happen) NULL return value.
7104
7105 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7106
7107         Add accessors to some MonoGenericParam fields
7108         * class-internals.h (mono_generic_param_owner): New accessor.
7109         (mono_generic_param_num): Likewise.
7110         (mono_type_get_generic_param_owner): New helper.
7111         (mono_type_get_generic_param_num): New helper.
7112         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
7113
7114 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7115
7116         * class-internals.h (mono_generic_container_get_param): New wrapper.
7117         * class.c, icall.c, metadata.c, verify.c: Use it.
7118
7119 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7120
7121         Fix gtest-252.cs
7122         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
7123         the standard case/loop.  In particular, don't complain about
7124         references to generic type definitions.
7125
7126 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
7127
7128         * debug-helpers.c (dis_one): Decode string arguments.
7129
7130 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7131
7132         * pedump.c (dump_verify_info): Dump type name correctly.
7133
7134 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7135
7136         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
7137         are larger than code size.
7138
7139         This can happen in valid code if the try/catch block is not followed by any instruction
7140         and do a backward branch on the leave instruction.
7141
7142         Fixes #492494.
7143
7144 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
7145
7146         * security-core-clr.c: Fix typo while comparing second method names
7147         in can_avoid_corlib_reflection_delegate_optimization
7148
7149 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7150
7151         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
7152
7153         Fixes #487738.
7154
7155 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7156
7157         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
7158         a MVAR using a class context.
7159
7160         Fixes #490335.
7161
7162 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
7163
7164         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
7165
7166         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
7167
7168         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
7169         functions supplied by the JIT for the SGEN GC.
7170
7171         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
7172         
7173 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7174
7175         monitor.c (mono_monitor_try_enter_internal):
7176         Added calls to profile monitor contentions.
7177         Also duplicated a small piece of code (the "get the monitor" logic)
7178         from the fast path to the slow path, and changed the relevant goto
7179         statements, so that monitor acquisition events can be emitted from the
7180         slow path (this is by Paolo Molaro).
7181
7182 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7183
7184         * profiler.c, profiler.h, profiler-private.h:
7185         Added support for profiling monitor contentions.
7186
7187 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
7188
7189         * metadata-verify.c: Verify the modules table.
7190
7191 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
7192
7193         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
7194         using the context of the method been verifier and not of the method been called.
7195
7196         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
7197         safely inflate generic types. 
7198
7199 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
7200
7201         * security-core-clr.c: Change the strategy for checking the 
7202         "reflection using delegates optimization" to avoid unneeded 
7203         attributes in multiple class libraries.
7204
7205 2009-04-02  Mark Probst  <mark.probst@gmail.com>
7206
7207         * sgen-gc.c: Remove object element in the disappearing link struct
7208         by storing the object pointer in the link.
7209
7210 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7211
7212         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
7213
7214 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7215
7216         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
7217
7218         * verify.c (mono_method_verify): Do proper bounds checking of exception
7219         clause ranges.
7220
7221 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7222
7223         * loader.c (mono_field_from_token): Don't crash if the field parent could
7224         not be decoded.
7225
7226 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7227
7228         * sgen-gc.c: Execute critical finalizers after ordinary
7229         finalizers.
7230
7231         * class-internals.h, domain.c: Add CriticalFinalizerObject to
7232         mono_defaults.
7233
7234 2009-03-31 Jb Evain <jbevain@novell.com>
7235
7236         * verify.c (do_ldstr): don't check if a string is in the user strings
7237         heap if the current image is dynamic.
7238
7239 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7240
7241         * sgen-gc.c: Wait until the last finalizer has executed when
7242         returning from WaitForPendingFinalizers.
7243
7244 2009-03-31  Martin Baulig  <martin@ximian.com>
7245
7246         * mono-debug-debugger.h (MonoDebuggerEvent): Add
7247         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
7248         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
7249         (mono_debugger_event_create_appdomain): New function.
7250         (mono_debugger_event_unload_appdomain): New function.
7251
7252         * appdomain.c (mono_domain_create_appdomain_internal): Call
7253         mono_debugger_event_create_appdomain().
7254
7255 2009-03-31  Martin Baulig  <martin@ximian.com>
7256
7257         * mono-debug-debugger.c
7258         (mono_debugger_register_class_init_callback): Also register the
7259         class init callback if the class is already initialized to make
7260         things work with shadow copied assemblies.
7261
7262 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
7263
7264         * security-core-clr.c
7265         (mono_security_core_clr_ensure_reflection_access_field): Let 
7266         critical code access the field (just like we do for methods). Use
7267         check_field_access helper.
7268         (mono_security_core_clr_ensure_reflection_access_method): Use 
7269         check_field_access helper.
7270
7271 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7272
7273         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
7274         call the run-finalize function directly.
7275
7276         * gc.c, gc-internal.h: Make run_finalize() non-static.
7277
7278 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7279
7280         * sgen-gc.c: Use a separate struct for disappearing links.
7281
7282 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7283
7284         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
7285         * MaxIOVectorLength enabled, just ignore them.
7286         Fixes bug #349688.
7287
7288 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
7289
7290         * metadata-verify.c: Fix eglib build.
7291
7292 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
7293
7294         * threads-types.h: Fix the win32 build.
7295
7296 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7297
7298         * class.c: move coreclr inheritance/override checks to 
7299         security-core.clr.c
7300         * security-core.clr.c|h: add code from class.c with additional
7301         documentation. Fix override check when the method is not critical.
7302
7303 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
7304
7305         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
7306         (match_class): Ditto.
7307
7308 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7309
7310         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
7311
7312         * metadata-verify.c: Implement table layout row size calculation. Verify
7313         the total size of the tables.
7314
7315 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7316
7317         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
7318
7319 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7320
7321         * appdomain.c:
7322         * console-io.[ch]: added new mono_console_init() to make sure that
7323         file descriptors 0, 1 and 2 are opened.
7324         Bug #489019 fixed.
7325
7326 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
7327
7328         * appdomain.h: Export a new callback type and a new function to
7329         set this callback. This allow a mono host to provide it's own
7330         definition for "platform code".
7331         * metadata-internals.h: Add a core_clr_platform_code flag on 
7332         _MonoImage to (cache and) know if it is representing platform 
7333         code.
7334         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
7335         on platform code images.
7336         * security-core-clr.c|h 
7337         (mono_security_set_core_clr_platform_callback): Allow the host
7338         to provide it's own platform check definition.
7339         (mono_security_core_clr_determine_platform_image): Detect if an 
7340         image is platform code (using the specified callback).
7341         (mono_security_core_clr_is_platform_image): Return cached value 
7342         for platform code.
7343
7344 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
7345
7346         * threads.c (mono_create_thread): New helper function to wrap CreateThread
7347         which has different parameter types for the 'tid' argument in windows and
7348         the io-layer.
7349
7350         * appdomain.c attach.c threads.c: Use the new helper.
7351
7352 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7353
7354         * metadata-verify.c: Verify valid table bits.
7355
7356 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7357
7358         * metadata-verify.c (verify_metadata_header): Store size in the size field.
7359
7360         * metadata-verify.c: Add initial table schema verification.
7361
7362 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7363
7364         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
7365         obtain the refclass argument needed by mono_param_get_objects (). Fixes
7366         #488383.
7367
7368         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
7369
7370         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
7371
7372 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
7373
7374         * security-core-clr.c: Add/update documentation
7375
7376 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7377
7378         * marshal.c (emit_marshal_object): Generate code to throw an exception
7379         instead of throwing it. Fixes #488670.
7380
7381 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
7382
7383         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
7384         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
7385         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
7386         and add a call to mono_security_core_clr_ensure_delegate_creation
7387         to do the extra checks required by CoreCLR.
7388         * security-core-clr.c|h: Add function to check delegate creation,
7389         both in the binding and accessibility, under CoreCLR.
7390
7391 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7392
7393         * reflection.c (mono_reflection_create_dynamic_method): when 
7394         coreclr is enabled make sure that every resolved object are
7395         checked (e.g. field and method access).
7396         * security-core-clr.c|h: Add function to check objects resolved
7397         when a dynamic method is created.
7398
7399 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7400
7401         * metadata-verify.c: Cache directory rva translations.
7402
7403         * metadata-verify.c: Add cli-header and streams verification.
7404
7405 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7406
7407         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7408         the wrong offset (8 instead of 6).
7409
7410 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7411
7412         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7413         methods, return the native function address itself. Fixes
7414         #487758.
7415
7416 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7417
7418         * console-io.c: some of the values for control characters might not be
7419         present.
7420
7421 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7422
7423         * exception.c|h: Add helpers to create [Field|Method]AccessException
7424         * icall.c: Add required coreclr check calls for field reflection.
7425         Move the existing (method) check logic into security-core-clr.c
7426         * security-core-clr.c: Add functions to check if the access of a
7427         field or method is allowed when reflecting under coreclr. This is
7428         mostly done using a stack walk to find the "real" caller: i.e. the
7429         code that is calling the reflection
7430
7431 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7432
7433         * gc-internal.h: Change location of gc_wrapper.h
7434
7435 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7436
7437         * class.c: Simplification to coreclr checks for overrides that
7438         makes it easier to set breakpoints.
7439
7440 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7441
7442         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7443         mono_security_core_clr_method_level): Avoid potential 
7444         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7445         user/application code) and make it easier to set breakpoints
7446
7447 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7448
7449         * metadata-verify.c: Reject cli header tables that mono don't handle.
7450
7451 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7452
7453         * pedump.c: Fix CLI header dumping.
7454
7455 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7456
7457         * metadata-verify.c: More CLI header verification.
7458
7459 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7460
7461         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7462
7463 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7464
7465         * metadata-verify.c: Initial verification of the CLI header.
7466
7467 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7468
7469         * metadata-verify.c (verify_resources_table): Fix verification of zero
7470         sized resource section and id entries count.
7471
7472 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7473
7474         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7475
7476 2009-03-17  Jb Evain  <jbevain@novell.com>
7477
7478         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7479
7480 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7481
7482         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7483         (mono_gc_make_descr_for_array): Ditto.
7484
7485 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7486
7487         * verify.c (mono_verifier_is_class_full_trust): Add support for
7488         CoreCLR security mode where trusted assemblies are defined as
7489         "platform code".
7490
7491 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7492
7493         * metadata-verify.c: Add minimal PECOFF resource verification.
7494
7495 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7496
7497         * metadata-verify.c: Be less restrictive with some coff fields.
7498
7499 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7500
7501         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7502         params as boxed values on stack. Fixes #485706.
7503
7504 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7505
7506         * console-io.c: the termios values may vary in different flavors of unix.
7507
7508 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7509
7510         * console-io.[ch]: return the entire set of control characters when
7511         initializing the terminal.
7512         * appdomain.c: bump corlib version.
7513
7514 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7515
7516         * mono-perfcounters.c: added support for in-process custom
7517         performance counters.
7518
7519 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7520
7521         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7522
7523 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7524
7525         * metadata-verify.c: Verify the data pointed by the import table. 
7526
7527 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7528
7529         * metadata-verify.c (load_data_directories): Store data
7530         directory contents.
7531
7532         * metadata-verify.c: Verify the import table. 
7533
7534 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7535
7536         * metadata-verify.c: Verify data directories.
7537
7538 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7539
7540         * metadata-verify.c: Check section header flags.
7541
7542 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7543
7544         * appdomain.c: if the assembly name is a shadow-copied file, return
7545         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7546         in mono_make_shadow_copy.
7547         * icall.c: if the assembly name is a shadow-copied file, replace it
7548         with the original assembly path.
7549
7550         Bug #484244 fixed. NUnit tests for corlib can be run without
7551         --noshadow now.
7552
7553 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7554
7555         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7556         entries when the table is reallocated.
7557
7558         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7559         mono_gc_alloc_fixed () since it contains GC refs.
7560
7561 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7562
7563         * reflection.c (ensure_complete_type): New helper function to call
7564         type resolve handlers for unfinished dynamic types.
7565         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7566
7567 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7568
7569         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7570         #483247.
7571
7572 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7573
7574         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7575
7576 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7577
7578         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7579         between GCHandles of type WeakTrackResurrection and the objects they
7580         point to.
7581
7582         * gc.c: Partly implement the sematics of GCHandles of type 
7583         WeakTrackResurrection: these handles should only be cleared after the
7584         finalizer of the object they are pointing to has ran.
7585
7586 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7587
7588         * icall.c: Partially revert r126631 because using the jump
7589         trampolines for generic shared methods makes it superfluous.
7590
7591 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7592
7593         * threads.c (handle_store): Create the 'threads' hash table with the proper
7594         MONO_HASH_VALUE_GC type.
7595
7596 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7597
7598         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7599         FIRST_GC_TRACKED.
7600
7601         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7602         and LAST_GC_TRACKED as a GC root.
7603
7604         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7605
7606         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7607         the static data even if it consists of 1 reference.
7608
7609         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7610         if there is a GC descriptor.
7611
7612         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7613         instead of through the GC since they contain no object references.
7614
7615 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7616
7617         * generic-sharing.c (instantiate_other_info): Always return a jump
7618         trampoline for method code.
7619
7620 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7621
7622         * culture-info-tables.h: generated to include the en-tt culture.
7623
7624 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7625
7626         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7627         capture the thread context.
7628
7629         * object.c (mono_async_result_new): Cache the invoke wrappers to
7630         ExecutionContext::Capture.
7631
7632 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7633
7634         * marshal.h: Add a prototype for what mono_compile_method returns
7635         for invoke wrappers.
7636
7637         * gc.c: Use the new prototype declaration.
7638
7639 2009-03-04  Geoff Norton  <gnorton@novell.com>
7640
7641         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7642         * gc-internal.h:
7643         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7644
7645 2009-03-04  Martin Baulig  <martin@ximian.com>
7646
7647         * mono-debug.h
7648         (mono_debugger_runtime_invoke): Removed.
7649
7650         * mono-debug-debugger.c
7651         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7652
7653 2009-03-02  Martin Baulig  <martin@ximian.com>
7654
7655         * mono-debug.h
7656         (mono_debugger_unhandled_exception): Removed.
7657         (mono_debugger_handle_exception): Removed.
7658         (mono_debugger_throw_exception): Removed.
7659
7660         * mono-debug.c
7661         (mono_debug_debugger_version): Bump to 5.
7662
7663         * mono-debug-debugger.c: Moved the exception handling code to
7664         ../mini/debug-mini.c
7665
7666 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7667
7668         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7669         finalize_objects_hash.
7670
7671         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7672         
7673         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7674         field.
7675
7676         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7677         cache.
7678
7679         * image.c (mono_image_close): Free it.
7680         
7681         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7682         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7683         on the this argument.
7684
7685         * gc.c (run_finalize): Optimize the calling of the finalizers.
7686
7687 2009-03-03  Martin Baulig  <martin@ximian.com>
7688
7689         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7690         of the `MonoGenericInst' changes.
7691
7692 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7693
7694         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7695         mono_array_class_get_cached to reduce locking contention. Extract
7696         a domain var.
7697
7698         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7699         intermediary managed arrays. Use caching version of mono_array_new
7700         to allocate the result array.
7701
7702         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7703
7704         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7705
7706         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7707         to reduce locking contention.
7708
7709 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7710                 
7711         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7712         thunk builder code for the non-interface case.
7713
7714 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7715
7716         * object.c (get_generic_virtual_entries): New helper function to collect
7717         the virtual generic method instances which need to be added to an IMT
7718         thunk.
7719         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7720         Instead of creating a new IMT thunk, reset the vtable slot to the
7721         trampoline, the thunk will be created the next time the trampoline is called.
7722         (build_imt_slots): Add support for virtual generic methods in interfaces by
7723         adding to the IMT thunk all the methods registered using 
7724         mono_method_add_generic_virtual_invocation ().
7725
7726         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7727         (struct _MonoIMTCheckItem): Ditto.
7728
7729         * object.c (mono_method_add_generic_virtual_invocation): Take a
7730         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7731         the IMT thunk to include all items.
7732         
7733         * object.c (mono_class_create_runtime_vtable): Add a missing
7734         mono_loader_unlock ().
7735
7736 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7737
7738         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7739
7740         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7741
7742 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7743
7744         * object-internals.h: Rename _MonoReflectionEvent to
7745         MonoReflectionMonoEvent so it reflects the right managed type.
7746         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7747
7748         * icall.c:
7749         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7750         type.
7751
7752 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7753
7754         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7755         intermediary managed arrays. Use caching version of mono_array_new
7756         to allocate the result array.
7757
7758 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7759
7760         * reflection.c: Use cached version of mono_array_new alongside
7761         the mono_reflection_get_custom_attrs_by_type call path.
7762
7763 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7764
7765         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7766         intermediary managed arrays. Use caching version of mono_array_new
7767         to allocate the result array.
7768
7769         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7770
7771 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7772
7773         * icall.c: Add small implementation of a growable stack bound array.
7774
7775         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7776
7777         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7778         intermediary managed arrays. Use caching version of mono_array_new
7779         to allocate the result array.
7780
7781 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7782
7783         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7784         helps Enum::CompareTo to be implemented without reboxing all enums
7785         to their underlying type.
7786 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7787
7788         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7789         since it acquires a global lock leading to scalability problems.
7790
7791         * profiler.c: Make the stat profiler work with multiple appdomains, this
7792         currently only works when no appdomains are unloaded.
7793
7794 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7795
7796         * appdomain.c: make the check to avoid copying when the assembly is
7797         already shadow copied actually work.
7798
7799 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7800
7801         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7802
7803         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7804         changes to the managed side.
7805
7806 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7807
7808         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7809         classes + a separate lock for it, as it is used frequently at runtime, not
7810         just during metadata loading/JIT compilation.
7811
7812         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7813         for szarrays.
7814         
7815         * object-internals.h (mono_class_from_name_cached): New macro to cache
7816         the results of the lookup locally without having to declare a static
7817         variable to hold it.
7818         (mono_class_get_field_from_name_cached): Ditto.
7819         (mono_array_class_get_cached): Ditto.
7820
7821         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7822         the new macros.
7823         
7824         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7825         slower search in metadata.
7826
7827         * pedump.c: Fix a warning.
7828
7829 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7830
7831         * reflection.c (encode_locals): Add checks for user types.
7832         (method_encode_clauses): Ditto.
7833         (method_encode_code): Ditto.
7834         (mono_image_create_token): Ditto.
7835
7836         * object-internals.h: Change the type of more fields from MonoReflectionType*
7837         to MonoObject*.
7838
7839 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7840
7841         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7842         the a thread does not suspend within 100ms.
7843
7844         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7845         in addition to StopRequested as well.
7846
7847         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7848
7849         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7850         search the method_hash before inserting a new entry, to avoid crashes when
7851         the same method is inserted multiple times, causing the old 
7852         MonoDebugMethodInfo structure to be freed by the value dtor function.
7853
7854 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7855
7856         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7857         SO_EXLUSIVEADDRUSE where available.
7858
7859 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7860
7861         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7862         runtime invoke wrappers, this time it is string ctor wrappers, which
7863         pass a dummy string as 'this' instead of their obj argument. Fixes
7864         #478473.
7865
7866 2009-02-21  Jb Evain  <jbevain@novell.com>
7867
7868         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7869         only get create_culture once.
7870
7871 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7872
7873         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7874         check before the locking.
7875         
7876         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7877         (mono_reflection_create_runtime_class): Ditto.
7878         (mono_reflection_sighelper_get_signature_local): Ditto.
7879         (mono_reflection_sighelper_get_signature_field): Ditto.
7880
7881         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7882         is a System.MonoType object or similar.
7883         (monotype_cast): New helper function to cast a MonoObject to a 
7884         MonoReflectionType object.
7885
7886         * object-internals.h: Change MonoReflectionType* members in structures to
7887         MonoObject* members to force the usage of the monotype_cast () function.
7888
7889         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7890         structures/arrays. This causes us to assert instead of crashing when 
7891         instances of user defined subclasses of System.Type are encountered.
7892
7893 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7894
7895         * cil-coff.h:
7896         * icall-def.h:
7897         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7898         win32 resource loaded from a PE file.
7899
7900         * image.c: fix mono_image_lookup_resource.
7901
7902 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7903
7904         * icall-def.h:
7905         * threads-types.h:
7906         * threads.c: added internal call for WaitHandle.SignalAndWait.
7907
7908 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7909
7910         * cominterop.c : Adding cominterop_type_from_handle and 
7911           registering it as an icall.  Replacing all references
7912           to type_from_handle.
7913
7914         Code is contributed under MIT/X11 license.
7915
7916 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7917
7918         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7919
7920         * appdomain.c: Call the tracer init function.
7921
7922         * domain-internals.h: Enable the tracer for the domain locks.
7923
7924         * image.c: Enable the tracer for image locks.
7925
7926         * loader.c: Enable the trace for the loader lock.
7927
7928         * lock-tracer.h:
7929         * lock-tracer.c: Initial implementation of the lock trace utility.
7930         The tracer requires a compile time define to be enabled and a env var
7931         to be enabled at runtime.
7932
7933 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7934
7935         * domain.c (mono_domain_code_foreach): Improve documentation.
7936
7937 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7938
7939         * appdomain.c:
7940         * generic-sharing.c:
7941         * object.c:
7942         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7943         comes first.
7944
7945 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7946
7947         * domain.c: Add mono_domain_code_* functions that perform locking
7948         around the domain codeman.
7949
7950         * domain-internals.h: Export those functions.
7951
7952         * object.c: Use new functions instead of acquiring the domain lock.
7953
7954 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7955
7956         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7957         delegate. Fixes #477396.
7958
7959 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7960
7961         * reflection.c (create_custom_attr): Get rid of alloca.
7962
7963 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7964
7965         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7966           Adding exception handling for all CCW calls.
7967
7968         Code is contributed under MIT/X11 license.
7969
7970 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7971
7972         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7973
7974         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7975         native->managed marshalling code. Fixes #476247.
7976
7977 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7978
7979         * class.c (mono_class_get_vtable_entry): Move the addition of
7980         static rgctx invoke wrappers for vtable methods here, this simplifies
7981         a lot of code and causes fewer rgctx wrappers to be created.
7982
7983         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7984         name of the statistics to begin with an uppercase.
7985
7986 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7987
7988         * reflection.c: Revert previous change as it breaks the build.
7989         
7990 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7991
7992         * verify.c: Properly handle SZARRAY element type.
7993
7994         Fixes #474271.
7995
7996 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7997
7998         * reflection.c (mono_image_create_method_token): Correctly encode
7999         MethodDef MemberRefParent token.
8000
8001         Fixes #472845.
8002
8003 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
8004
8005         * image.c (mono_image_close): Delete the critical section before
8006         freeing the memory holding it.
8007
8008 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8009
8010         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
8011         Fixes #476257.
8012
8013 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8014
8015         * pedump.c (main): Call mono_marshal_init so pedump
8016         doesn't crash.
8017
8018 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8019
8020         * loader.c (method_from_memberref): Properly fix #474271 and
8021         don't break the runtime bad.
8022
8023 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8024
8025         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
8026         (mono_domain_alloc0): Ditto.
8027
8028 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8029
8030         * loader.c (method_from_memberref): Don't abort if the array
8031         method is not found. A regular loader failure is more informative
8032         and correct.
8033
8034         Fixes #474271.
8035
8036 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8037
8038         *loader.c: Guard MonoImage::method_cache/methodref_cache
8039         using the image lock instead of the loader lock.
8040
8041         * metadata.h: Add comments about which fields are protected by
8042         the image lock.
8043
8044 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8045
8046         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
8047
8048         * generic-sharing.c (mono_method_construct_object_context): Remove the
8049         wrapper_type == NONE assert, it is not needed.
8050
8051 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
8052
8053         * reflection.c (clear_cached_object): New helper function.
8054         (mono_method_clear_object): New function to clear the cached reflection
8055         objects for a dynamic method.
8056
8057         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
8058         Partly fixes # 463323.
8059         
8060 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8061
8062         * class.c:
8063         * loader.c:
8064         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
8065
8066 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8067
8068         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
8069         take the image lock instead of the loader lock.
8070
8071         * metadata-internals.h: Export new functions.
8072
8073 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8074
8075         * domain.c (app_config_parse): Remove another use of stat that is
8076         not necessary as g_file_get_contents already does the presence
8077         check. 
8078
8079 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8080
8081         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
8082
8083         * marshal.c: Move the bstr handling code to cominterop.c.
8084
8085         * marshal.c: Remove some COM interop code missed previously.
8086
8087 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8088
8089         More Paolo patches from the Wii port:
8090         
8091         * security.c: Remove ves_icall_System_Environment_get_UserName
8092         from here.
8093
8094         * icall.c: And put ves_icall_System_Environment_get_UserName
8095         here. 
8096
8097         * appdomain.c (mono_set_private_bin_path_from_config): Remove
8098         redundant call to stat that was only used to test for the file
8099         existence.   Patch from Paolo.
8100
8101         * gc.c (run_finalize): If COM is disabled, do not link in
8102         mono_marshal_free_ccw.
8103
8104         * generic-sharing.c: Use alloca.h here as well.
8105
8106 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
8107
8108         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
8109
8110 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8111
8112         * cominterop.c cominterop.h: New files.
8113
8114         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
8115         function/typedefs which are needed by cominterop.c global.
8116
8117 2009-02-12  Mark Probst  <mark.probst@gmail.com>
8118
8119         * generic-sharing.c: Don't take the loader lock to guard image
8120         mempool allocs.
8121
8122 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8123
8124         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
8125         called without the loader lock which is required to guard MonoImage:tokens.
8126
8127 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8128
8129         * class.c:
8130         * metadata.c:
8131         * method-builder.c:
8132         * marshal.c:
8133         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
8134
8135 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8136
8137         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8138         Rework the code to use regular mono_image_alloc/0.
8139
8140         * loader.c: Rework the code to use regular mono_image_alloc/0.
8141
8142         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8143
8144 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
8145
8146         * object-internals.h : Fixing a typo in the 
8147           MonoReflectionComVisibleAttribute struct.
8148
8149         * marshal.c (cominterop_com_visible): Check the implemented 
8150           interfaces for ComImport.
8151
8152         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
8153           assume that bools should be treated as VARIANTBOOLs.
8154
8155         * marshal.c (emit_marshal_boolean): Adding cases for 
8156           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
8157
8158         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
8159           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
8160
8161         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
8162           should be treated as VARIANTBOOLs.    
8163
8164         Code is contributed under MIT/X11 license.
8165
8166 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8167
8168         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
8169         allocation with the image lock.
8170
8171 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8172
8173         This patch is the last of a series to remove explicit reference of MonoImage::mempool
8174         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
8175
8176         * object.c: Add mono_string_to_utf8_image.
8177
8178         * object-internals.h: Export mono_string_to_utf8_image.
8179
8180         * reflection.c: Rework all explicit references to the the image mempool to go thought
8181         the mono_image_alloc set of functions.
8182
8183 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8184
8185         This patch is the third of a series to remove explicit reference of MonoImage::mempool
8186         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
8187         and generics-sharing.c.
8188
8189         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
8190         as first argument. Note that this function remains broken as it doesn't perform locking around the
8191         mempool allocation.
8192
8193         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
8194
8195         * image.c: Add g_slist_append_image.
8196
8197         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
8198         the supplied image for allocation. Move code into mono_metadata_field_info_full.
8199
8200         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
8201         Fix all related code to do the same.
8202
8203         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
8204
8205         * metadata-internals.h: Fix the signatures.
8206
8207 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8208
8209         This patch is the second of a series to remove explicit reference of MonoImage::mempool
8210         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
8211         and similar to work using MonoImage.
8212
8213         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
8214         MonoMemPool.
8215
8216         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
8217
8218         * class.c (mono_metadata_signature_deep_dup): Same.
8219
8220         * class.c (inflate_generic_type): Same.
8221
8222         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
8223
8224         * metadata.c (mono_metadata_signature_dup_full): Same.
8225
8226         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
8227         mono_metadata_signature_dup_full.
8228
8229         * metadata.c (mono_metadata_type_dup): Same.
8230
8231         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
8232
8233         * reflection.c: Same.
8234
8235         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
8236
8237         * metadata-internals.h: Fix the signatures.
8238
8239         * class-internals.h: Same.
8240
8241 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8242
8243         This patch is the first of a series to remove explicit reference of MonoImage::mempool
8244         and use mono_image_alloc set of functions instead. 
8245
8246         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
8247         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
8248         of a MonoMemPool.
8249
8250         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
8251
8252         * class.c (g_list_prepend_mempool): Removed.
8253
8254         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
8255
8256         * image.c: Add g_list_prepend_image.
8257
8258         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
8259
8260         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
8261
8262
8263 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8264
8265         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
8266         mono_image_unlock.
8267
8268         * image.c (mono_image_init): Init the lock field.
8269  
8270         * image.c (mono_image_init): Cleanup the lock field.
8271
8272         * image.c: Add mono_image_(un)lock functions.
8273
8274 2009-02-11  Mark Probst  <mark.probst@gmail.com>
8275
8276         * class.c, class-internals.h: mono_method_get_context_general()
8277         combines the functionality of mono_method_get_context() and
8278         mini_method_get_context().
8279
8280         * generic-sharing.c, domain-internals.h:
8281         mono_method_construct_object_context() and
8282         mono_domain_lookup_shared_generic() moved from mini.
8283
8284         * icall.c (ves_icall_InternalInvoke): Handle the case where the
8285         method doesn't have the correct instantiation because it's shared
8286         generic code.  Fixes #473999.
8287
8288 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
8289
8290         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
8291
8292         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
8293         
8294 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8295
8296         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
8297
8298         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
8299
8300         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
8301         and recheck the cache for dups after it.
8302
8303         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
8304
8305         Fixes one of the deadlocks found in #473150.
8306
8307 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
8308
8309         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
8310           For Win32, add additional break conditions for accept.
8311
8312         Code is contributed under MIT/X11 license.
8313
8314 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
8315
8316         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
8317         lazily initialize the native wrapper cache.
8318         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
8319         cache, since they are different from the normal wrappers.
8320
8321         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
8322
8323         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
8324         AOT compiled native wrappers.
8325
8326 2009-02-09  Geoff Norton  <gnorton@novell.com>
8327
8328         * appdomain.h:
8329         * security-core-clr.c: Allow enabling core-clr from the embedding
8330         API.
8331
8332 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8333
8334         * socket-io.c: when requesting all the local ips, if there are no
8335         interfaces up and running, MS returns 127.0.0.1.
8336
8337 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8338
8339         * mono-perfcounters-def.h: processor time is an inverse time.
8340         Fixes bug #468625.
8341
8342 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8343
8344         * socket-io.c: an empty host name returns the list of local IPs.
8345         Fixes bug #386637 part 1/2.
8346
8347 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
8348
8349         * verify.c (mono_class_interface_implements_interface): Call
8350         mono_class_setup_interfaces ().
8351         (merge_stacks): Ditto.
8352
8353 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8354
8355         * class.c (mono_class_setup_interfaces): New function to lazily initalize
8356         klass->interfaces.
8357         (mono_generic_class_get_class): Don't initalize klass->interfaces.
8358         (mono_generic_class_get_class): Ditto.
8359
8360 2009-02-06  U-QUACK\miguel  <miguel@quack>
8361
8362         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
8363         they live in security.c
8364
8365         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
8366         another bit from Paolo's code.
8367
8368 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8369
8370         * object.c (build_imt_slots): Add a small optimization to avoid inflating
8371         methods which will be discarded by add_imt_builder_entry ().
8372
8373         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
8374         need to be boxed.
8375
8376         * loader.c: Add a statistics for the size of the memberref signature cache.
8377         
8378         * loader.c (find_cached_memberref_sig): New helper function.
8379         (cache_memberref_sig): Ditto.
8380
8381         * loader.c: Cache the result of parsing memberref signatures, since otherwise
8382         they will be parsed again for every generic instantiation, leading to unbounded
8383         memory growth.
8384
8385 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8386
8387         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8388         parameters of generic methods.
8389
8390         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8391         after the original method is copied to the inflated method.
8392         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8393
8394         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8395         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8396
8397         * class.c metadata.c: Update after the changes above.
8398
8399 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8400
8401         * metadata-verify.c: Simplified error handling and added
8402         section table validation.
8403
8404 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8405
8406         * class-internals.h (MonoClassExt): New structure containing rarely used
8407         fields of MonoClass.
8408         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8409         through a new 'ext' field.
8410
8411         * class.c (mono_class_alloc_ext): New helper function to allocate 
8412         class->ext.
8413
8414         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8415
8416 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8417
8418         * object.c (mono_object_get_virtual_method): Properly inflate
8419         generic methods.  Fixes #472692.
8420
8421 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8422
8423         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8424         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8425         for the parent type, the created type must be ready to be used on a generic
8426         instantiation.
8427         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8428         we won't have duplicated entries in generic_inst_cache.
8429
8430         Fixes #469553.
8431
8432 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8433
8434         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8435         replace with plain BSD per the comments on the bug MONO77637.
8436
8437 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8438
8439         * class.c (mono_class_get_generic_class): New accessor function.
8440         (mono_class_get_generic_container): Ditto.
8441
8442         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8443         fields, similar to the ones in MonoMethod.
8444
8445         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8446         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8447
8448         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8449         
8450         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8451         the same information as element_class->byval_arg.
8452
8453         * class.c reflection.c: Remove references to class->byval_arg.
8454
8455         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8456         klass->enum_basetype directly.
8457
8458         * verify.c metadata.c object.c icall.c reflection.c: Use 
8459         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8460         directly.
8461
8462 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8463
8464         * icall-def.h: Remove internal calls for sockets when
8465         DISABLE_SOCKET is defined, file system writing features when the
8466         OS only support reading and not writing data and Policy support if
8467         the Policy is disabled.
8468         
8469         * image.c (do_mono_image_open): Apply Paolo's patches for using
8470         mono_file_map_ APIs here.
8471
8472         * assembly.c: Add support for platforms to avoid prefix
8473         auto-detection. 
8474
8475 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8476
8477         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8478         warning.
8479
8480         * class.c (mono_class_inflate_generic_class): New helper function.
8481
8482         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8483         statistics for inflated methods/classes.
8484
8485         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8486
8487         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8488         the call is made from Delegate.CreateDelegate () for the invoke method of
8489         a delegate.
8490
8491         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8492
8493         * metadata.c (mono_metadata_signature_size): New helper function.
8494
8495         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8496         generic instances.
8497
8498         * metadata.c (inflated_method_in_image): Avoid calling 
8499         mono_method_signature () if the method does not already have a signature.
8500
8501 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8502
8503         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8504         valuetype is compatible with target type, check by inheritance as a
8505         VT is not really compatible with System.ValueType, for example.
8506
8507         * verify.c (do_invoke_method): Improve error message.
8508
8509         * verify.c (do_box_value): If boxing a nullable, use the type argument
8510         on stack instead.
8511
8512         * verify.c (do_newobj): Improve error message.  
8513
8514         Fixes #469549.
8515
8516 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8517
8518         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8519
8520 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8521
8522         * generic-sharing.c: Don't hold domain lock when calling
8523         instantiate_other_info().  Fixes #471958.
8524
8525         * domain-internals.h, loader.c: Describe locking policy of domain
8526         lock vs loader lock.
8527
8528 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8529
8530         * verify.c (mono_delegate_signature_equal): Make it possible to check
8531         first-arg-bound delegates to static method.
8532
8533         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8534         static methods with the first arg bound.
8535
8536         Fixes #469529.
8537
8538 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8539
8540         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8541         errors.
8542
8543         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8544         under strict mode. Any type, when boxed can be seen as a reference type.
8545
8546         Fixes #469528.
8547
8548 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8549
8550         * object.h: The lower bound of an array is a signed integer value.
8551         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8552         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8553
8554         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8555         calculate the upper bound.
8556         
8557         Fixes #471252.
8558
8559 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8560
8561         From Paolo's work, refactored, cleared up:
8562         
8563         * threadpool.c, icall.c: ifdef code that requires a working socket
8564         stack.
8565
8566         * metadata.c (mono_metadata_field_info): Do not attempt to return
8567         a value from a function declared as void.
8568
8569         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8570         from the console stack.
8571
8572         * assembly.c: use strrchr instead of rindex.
8573
8574         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8575         alloca.h on systems that have it.
8576
8577         * environment.c: Avoid code that uses stuff from
8578         HAVE_SYS_UTSNAME_H
8579         
8580         * appdomain.c: Include sys/time.h.
8581
8582         * console-io.c: include sys/ioctl.h if it is available.
8583
8584 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8585
8586         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8587
8588         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8589         the method builder.
8590
8591         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8592         after it was created and cached, as the later is not thread safe.
8593         
8594 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8595
8596         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8597         called while the debugging module is not initialized. Fixes #471669.
8598
8599 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8600
8601         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8602
8603         Fixes #471255.
8604
8605 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8606
8607         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8608         loader lock is not taken while the templates lock is held.  Fixes
8609         #471089.
8610
8611 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8612
8613         * metadata.c (type_in_image): Added a check to fix a monodis
8614         crash.
8615
8616 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8617
8618         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8619         nullable arguments.
8620
8621         * object.c (mono_runtime_invoke_array): Ditto.
8622         
8623         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8624         freeing wrappers of dynamic methods.
8625
8626         * loader.c (mono_free_method): Call it. Fixes #463323.
8627         
8628         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8629         methods taking vtype/byref arguments, to fix yet another bug caused by
8630         the sharing of runtime invoke wrappers. Partly fixes #471259.
8631
8632 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8633
8634         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8635         <first file in file table>:1 when the IL offset does not have an associated
8636         line number.
8637
8638 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8639
8640         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8641         variable info for a method.
8642
8643         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8644         
8645 2009-01-30  Jb Evain  <jbevain@novell.com>
8646
8647         * pedump.c: reuse code from monodis to make sure pedump honors
8648         MONO_PATH, which is needed to verify net_2_1 assemblies.
8649
8650 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8651
8652         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8653         there is no line number info.
8654
8655 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8656
8657         Avoid some MonoType allocations
8658         * reflection.c (mono_reflection_initialize_generic_parameter):
8659         Reuse MonoType from param->pklass rather than allocating one.
8660         (mono_dynamic_image_free): Update to changes.
8661
8662 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8663
8664         Rearrange some code to improve consistency
8665         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8666         (mono_reflection_initialize_generic_parameter): ... here.
8667
8668 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8669
8670         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8671         with type constraints as an experiment.
8672
8673         * boehm-gc.c (on_gc_notification): Update mono_stats.
8674
8675 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8676
8677         Avoid some allocations
8678         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8679         pointer to tail array to avoid extra allocation.
8680         * metadata.c (free_generic_inst): Update to changes.
8681         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8682         on-stack struct.
8683
8684 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8685
8686         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8687         return TRUE if the two type objects are the same.
8688
8689 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8690
8691         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8692         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8693         klass->min_align, since klass->min_align contains the managed alignment,
8694         while the native alignment can be different, like for longs on x86.
8695         Fixes #469135.
8696
8697         * class-internals.h (MonoMarshalType): Add a min_align field.
8698
8699 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8700
8701         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8702         the 1.0 format.
8703
8704 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8705
8706         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8707         some comments about the usage of the used_regs field.
8708
8709         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8710         Fixes #469217.
8711
8712 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8713
8714         * appdomain.c: return NULL instead of throwing FileNotFoundException
8715         when LoadAssembly() fails.
8716
8717 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8718
8719         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8720         image if the owner is NULL.  Fixes the AOT failures.
8721
8722 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8723
8724         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8725         MonoGenericParam structure using memset so the image field is initialized
8726         as well.
8727
8728 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8729
8730         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8731         a plain store.
8732
8733 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8734
8735         * class.c (mono_class_setup_vtable_general): In the generic instance
8736         optimization, set method->slot for abstract virtual methods. Fixes part of
8737         #467834.
8738
8739 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8740
8741         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8742         which signals that the unloading has started but all appdomain services must
8743         remain operational.
8744
8745         * appdomain.c (mono_domain_unload): The initial state for unloading now
8746         is unloading_start and we switch to unloading after the managed call to
8747         AppDomain::DomainUnload has finished.
8748
8749         The new unloading state has to be created because managed code in the
8750         DomainUnload event can depend on things like the threadpool still working.
8751         The domain must remain fully functional while the event executes.
8752
8753         This shown as an issue due to Process::WaitForExit, which waits for
8754         async reads of stdout and stderr to complete. Since those are processed
8755         in the threadpool the code deadlocks because the DomainUnload callback 
8756         waits for the async read finished event, which should have been set by a
8757         threadpool job but has been discarded due to the domain been in unload
8758         state.
8759
8760 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8761
8762         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8763         image must match.
8764
8765 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8766
8767         * reflection.c (resolve_object): For fields, inflate the class and
8768         then get the field in the inflated class.
8769
8770 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8771
8772         * object-internals.h (struct _MonoException): Added a comment
8773         explaining the new use of trace_ips.
8774
8775 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8776
8777         * generic-sharing.c (inflate_other_data): Inflate array methods
8778         correctly.
8779
8780         * loader.c, class-internals.h: Rename search_in_array_class() to
8781         mono_method_search_in_array_class() and make it non-static.
8782
8783 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8784
8785         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8786         Hopefully fixes #458168.
8787
8788 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8789
8790         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8791         as it is performed elsewhere.
8792
8793         Code is contributed under MIT/X11 license
8794
8795 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8796
8797         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8798         requests queued.
8799         * object.c (mono_raise_exception): Increment the exceptions total
8800         counter when an exception is thrown.
8801         * class-internals.h: Add a location for storing the total number of
8802         asp.net requests served.
8803         * mono-perfcounters.c: Implement update support for asp.net counters
8804         from the class libraries. Implement read support for asp.net counters
8805         and exceptions total counter.
8806
8807 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8808
8809         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8810         accessing klass->methods. Fixes #467385.
8811
8812 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8813
8814         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8815         for byval arguments without an [Out] attribute. Fixes #467212.
8816
8817         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8818         Fix compilation under android.
8819         
8820         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8821         processed, scan them directly after they are copied, to achieve better locality
8822         and cache usage.
8823
8824         * socket-io.c: Applied patch from Koushik Dutta
8825         (koush@koushikdutta.com). Disable IPV6 when running under android.
8826
8827 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8828
8829         * icall.c (ves_icall_InternalExecute): Add write barriers.
8830
8831         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8832         the GC code.
8833
8834         * sgen-gc.c: Implement write barriers in IL code.
8835
8836 2009-01-17  Geoff Norton  <gnorton@novell.com>
8837
8838         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8839
8840 2009-01-17  Geoff Norton  <gnorton@novell.com>
8841
8842         * image.c: When unloading the image->references table, there can be gaps
8843         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8844         when unloading an appdomain.
8845
8846 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8847
8848         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8849         speed up ptr-in-nursery checks.
8850
8851         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8852         threads_lock () to prevent deadlocks.
8853
8854         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8855         does not need to be scanned during minor collections, since writes to it
8856         must use write barriers.
8857
8858 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8859
8860         * metadata-verify.c: Add pe nt header verification.
8861         
8862 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8863
8864         * gc.c: Fix a few warnings when using SGEN.
8865
8866 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8867
8868         * metadata-verify.c: Add pe optional header verification.
8869
8870 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8871
8872         * sgen-gc.c: Add support for user defined marker functions, used by
8873         MonoGHashTable to avoid registering a GC root for every hash node.
8874
8875 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8876
8877         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8878         non-pinned roots into separate hashes to avoid having to traverse them
8879         in functions which are only interested in one kind.
8880
8881 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8882
8883         * metadata-verify.c: Add pe header machine field verification.
8884         
8885 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8886
8887         * metadata-verify.c: Add pe header size verification.
8888
8889 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8890
8891         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8892         using the GC, they don't contain references.
8893
8894         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8895
8896 2009-01-13  Geoff Norton  <gnorton@novell.com>
8897
8898         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8899         AppDomains created on the native side can be cleaned up on the native side.
8900
8901 2009-01-13  Geoff Norton  <gnorton@novell.com>
8902
8903         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8904         as well as the managed api.
8905
8906 2009-01-13  Geoff Norton  <gnorton@novell.com>
8907
8908         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8909         with a MonoAppDomain initialized against it.
8910
8911 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8912
8913         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8914         
8915         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8916
8917         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8918         into the wrapper caches. Fixes #465700.
8919
8920         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8921         method builder.
8922         (mono_mb_create_method): Set the clauses from the method builder.
8923
8924 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8925
8926         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8927         Patch from Makoto Kishimoto.
8928
8929 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8930
8931         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8932         encoding them as ROOT_DESC_COMPLEX.
8933         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8934
8935 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8936
8937         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8938         no longer point to the nursery.
8939
8940         * sgen-gc.c: Add a few comments/FIXMEs.
8941         
8942         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8943
8944         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8945         initialization of the various _method variables thread safe. Fixes
8946         #465377.
8947
8948 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8949
8950         * domain.c, domain-internals.h: Remove the shared_generics_hash
8951         and its lookup functions.
8952
8953 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8954
8955         * socket-io.c:  Fixing the MSVC build. 
8956
8957         Code is contributed under MIT/X11 license.
8958
8959 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8960
8961         * metadata-verify.c: Add pe header watermark verification.
8962
8963 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8964
8965         * metadata-verify.c: Add lfanew verification.
8966
8967 2009-01-12  Jb Evain  <jbevain@novell.com>
8968
8969         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8970         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8971
8972 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8973
8974         * socket-io.c: Fix the build.
8975
8976         * environment.c: Fix an #ifdef.
8977
8978 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8979
8980         * threadpool.c (async_invoke_thread): Handle the wait function returning
8981         WAIT_IO_COMPLETION as well.
8982         (async_invoke_io_thread): Ditto.
8983
8984 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8985
8986         * threads.c: Fixing the Windows build.
8987
8988         Code is contributed under MIT/X11 license.
8989
8990 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8991  
8992         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8993         interrupt a wait.
8994         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8995         the thread to wait again.
8996
8997 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8998
8999         * metadata-verify.c: Initial skeleton of the metadata verifier.
9000
9001         * pedump.c: Add support for the metadata verifier.
9002
9003         * verify-internal.h: Export the whole assembly metadata verifier function.
9004
9005 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9006
9007         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
9008
9009 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9010
9011         * Makefile.am: Upgrade dtrace-prelink.sh location.
9012
9013 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9014
9015         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
9016         well. Otherwise the shutdown deadlock that happens on unix will can happen
9017         as well.
9018         If the main thread code finishes too fast it's possible that the finalizer
9019         thread won't have executed yet, won't record itself as the finalizer thread
9020         and the shutdown sequence will wait on it forever.
9021
9022 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9023
9024         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
9025         with MSVC.
9026
9027 2009-01-08  Miguel de Icaza  <miguel@novell.com>
9028
9029         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
9030         Robert Jordan for pointing this out.
9031
9032 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
9033
9034         * icall.c
9035         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
9036         ves_icall_System_IO_DriveInfo_GetDriveType.
9037
9038 2009-01-07  Miguel de Icaza  <miguel@novell.com>
9039
9040         * icall.c: Wrap calls to mono_strtod in CriticalSection
9041         invocations when using eglib, to work around #464316.
9042
9043 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9044
9045         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
9046         return value of GetCurrentDirectory to never access unitialized memory.
9047
9048 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9049
9050         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
9051         return value of GetCurrentDirectory and expand the buffer if needed.
9052
9053         Fixes #459094.
9054
9055 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
9056
9057         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
9058           Adding a call to mono_init_com_types.
9059
9060         Code is contributed under MIT/X11 license.
9061
9062 2009-01-07  Geoff Norton  <gnorton@novell.com>
9063
9064         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
9065         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
9066         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
9067         be the value of the ip buffer.
9068
9069 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9070
9071         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
9072         interfaces_packed here.
9073
9074         Fixes part of #463294.
9075
9076 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9077
9078         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
9079
9080         Fixes part of #463294.
9081
9082 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9083
9084         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
9085         is a boxed complex as well.
9086
9087         Fixes part of #463294.
9088
9089 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9090
9091         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
9092         control if a methodspec should be created for the generic method definition from external assemblies.
9093         Caching of methodspec is done using the handleref hash table.
9094
9095         Fixes #462592.
9096
9097 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
9098
9099         * loader.c (find_method): When searching the interfaces of a class
9100         check the transitive closure of implemented interfaces.
9101
9102         Fixes #463303.
9103
9104 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9105
9106         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
9107         
9108 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9109
9110         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
9111         interfaces calculation to fill_valuetype_array_derived_types.
9112
9113         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
9114         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
9115         for example.
9116
9117         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
9118         interfaces for valuetypes if needed.    
9119
9120         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
9121         for their basetype as well. Types are array expanded if rank is > 0.
9122
9123         Fixes #400716.
9124
9125 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
9126
9127         * socket-io.h : Changing the signature of
9128           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
9129           the blocking state.
9130
9131         * icall-def.h :  Changing the signature of
9132           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
9133
9134         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
9135           For Windows only.  Avoid blocking when calling accept by
9136           querying for a connection via select.  The loop also queries
9137           the thread state every 1000 micro seconds for the thread
9138           stop state.  This will avoid the process hanging on shutdown
9139           when using a TcpChannel that is never connected to.
9140
9141         Code is contributed under MIT/X11 license.
9142
9143 2008-12-30  Marek Safar  <marek.safar@gmail.com>
9144
9145         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
9146
9147 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9148
9149         * class.c (get_implicit_generic_array_interfaces): Extract common
9150         code to a helper function making it a lot easier on the eyes.
9151
9152 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9153
9154         * class.c (get_implicit_generic_array_interfaces): If the internal
9155         enumerator is an interface inflate System.Object instead of itself.
9156
9157         Fixes #461261.
9158
9159 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
9160
9161         * object.c (mono_runtime_invoke_array): Don't assert with
9162         byref nullable types.
9163
9164         * marshal.c (mono_marshal_get_runtime_invoke): To handle
9165         byref nullables we unbox the object and store it on the
9166         stack. 
9167         We can't use the boxed object since it is the T of Nullable<T>
9168         and the boxed representation of a nullable it's underlying type
9169         or null.
9170         We could cheat and create a boxed nullable and use the same
9171         machinery of other byref VTs but this feels like a hack and
9172         using the stack has the bonus of reducing heap pressure.
9173
9174         Fixes #461941.
9175
9176 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
9177
9178         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
9179         return value.
9180
9181         Fixes #461867.
9182
9183 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
9184
9185         * icall-def.h : Adding an internal call definition for 
9186           System.Environment.internalBroadcastSettingChange.
9187
9188         * icall.c : Adding a Windows only implementation to broadcast a 
9189           WM_SETTINGCHANGE when an environment variable has changed.
9190
9191         Code is contributed under MIT/X11 license.
9192
9193 2008-12-19  Mark Probst  <mark.probst@gmail.com>
9194
9195         * class.c, class-internals.h: Made
9196         mono_class_has_parent_and_ignore_generics() non-static.
9197
9198 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
9199
9200         * image.c: deal with the mmap failing when loading an image.
9201
9202 2008-12-17  Geoff Norton  <gnorton@novell.com>
9203
9204         * threadpool.c: Ensure that the io_queue_lock is initialized
9205         in all circumstances, as we always attempt to cleanup against it.
9206
9207 2008-12-17  Miguel de Icaza  <miguel@novell.com>
9208
9209         * icall.c (ves_icall_System_Environment_get_Platform): For
9210         compatibility reasons for existing client code we will keep
9211         returning 4 for a while.   
9212
9213         For how long will depend on the documentation being updated, and
9214         for us to give client code a chance to be updated.
9215
9216         This reverts the original decison on #433108 since we did not
9217         catch roughly 33 instances of the broken code in our own source
9218         code base, we did not catch failures on the buildbots, and QA did
9219         not bring this as a problem.
9220
9221         Only today I found some customer's code breaking due to our own
9222         class libraries not being fully updated and tracked it down to
9223         this change.  I am reverting it because if we could not even get
9224         our story straight in our own code base, how can we hope that our
9225         end user code be fixed?
9226
9227         As of this morning, our Wiki page that documents how to detect
9228         Unix had not been fixed.    
9229
9230 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
9231
9232         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
9233
9234         * class.c (mono_class_get_fields): Handle loading errors.
9235
9236 2008-12-12 Mark Mason <mmason@upwardaccess.com>
9237
9238         * 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.
9239         
9240 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
9241
9242         * mono-perfcounters.c: avoid warning.
9243
9244 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9245
9246         * reflection.c (ensure_runtime_vtable): Work on generic instances and
9247         make sure all interfaces have MonoClass::interface_id set.
9248
9249         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
9250         method table is property set.
9251
9252 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9253
9254         * class.c: New function mono_class_setup_interface_id that setup
9255         MonoClass::interface_id if needed.
9256
9257         * class-internals.h: Export new function.
9258
9259 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9260
9261         * class.c: Add code to sanity check the vtable after setup_vtable_general
9262         has done it's work.
9263
9264 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
9265
9266         * icall.c: make Assembly.GetExecutingAssembly work properly when
9267         reflection is used to invoke the method.
9268         Bug #321781 fixed.
9269
9270 2008-12-11  Mark Probst  <mark.probst@gmail.com>
9271
9272         * metadata/generic-sharing.c: Look for constraints in all type
9273         arguments, not just the first one.
9274
9275 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9276
9277         * appdomain.c: return the correct CodeBase for an Assembly instance
9278         that was loaded from the shadow-copy directories.
9279         Bug #458190 fixed.
9280
9281 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
9282
9283         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
9284
9285         * sgen-gc.c (check_object): New debugging helper function.
9286
9287         * object.c: Fix calls to mono_value_copy_array ().
9288
9289 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9290
9291         * class.c (mono_class_setup_fields): If working on an inflated class
9292         first check if the generic definition did init with success.
9293
9294         Fixes #445361.
9295
9296 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9297
9298         pedump.c (main): Fix a warning.
9299
9300 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
9301
9302         * object-internals.h : Adding a definition for 
9303           MonoReflectionComVisibleAttribute.
9304
9305         * marshal.c (cominterop_com_visible) :  Method added to check the 
9306           ComVisible attribute of a class.
9307
9308         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
9309           cominterop_raise_hr_exception added to consolidate common code 
9310           to raise hr exceptions.
9311
9312         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
9313           if a managed class should support IDispatch.
9314
9315         * marshal.c 
9316           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
9317           Added additional checks for managed object when getting 
9318           an IDispatch interface.
9319
9320         Code is contributed under MIT/X11 license.
9321
9322 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9323
9324         pedump.c (main): Handle mono_get_method () returning NULL. 
9325
9326 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9327
9328         * marshal.h: Fix a warning.
9329
9330 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
9331
9332         * marshal.c : Adding cominterop_release_all_rcws to release all
9333           runtime callable wrappers held by the runtime.
9334
9335         * marshal.h : Adding declaration for cominterop_release_all_rcws.
9336           
9337         Code is contributed under MIT/X11 license.
9338
9339 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9340
9341         * metadata.c (mono_image_alloc_lock): New helper function.
9342         (mono_image_alloc0_lock): Ditto.
9343
9344         * metadata.c: Use the alloc_lock () helper functions for allocating
9345         memory from the image mempool.
9346
9347 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
9348
9349         * class.c (mono_class_from_generic_parameter): Document it's
9350         locking behavior. Fix double checked locking here, we stored in
9351         param->pklass a partially initialized MonoClass and no membar was used.
9352
9353 2008-12-05  Marek Habersack  <mhabersack@novell.com>
9354
9355         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
9356         (3) functions are present in the C library use them to do the
9357         job. If they are absent, make sure that the sum of int_part and
9358         dec_part is rounded before returning. This is necessary due to the
9359         division of dec_part by the power of 10 before the final addition
9360         is performed - if the result is not rounded in some cases it will
9361         yield invalid results.
9362
9363 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
9364
9365         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
9366         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
9367         instruction instead of a pointer constant.
9368
9369 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
9370
9371         * loader.c (mono_method_get_header): Do most of the work outside the
9372         loader lock, to avoid assembly load hook deadlocks.
9373
9374         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
9375         (mono_metadata_parse_type_full): Ditto.
9376
9377 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
9378
9379         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
9380         Make the stack depth fixed. Ensure proper argument passing to the backtrace
9381         funtions. Finally, use a lock to produce well ordered output.
9382
9383         The lock looks silly, as all calls to the corlib mempool should be guarded
9384         with the loader lock, but for some reason this fact doesn't help. 
9385
9386         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9387
9388 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9389
9390         * socket-io.c: 64 bit big-endian fixes.
9391
9392 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9393
9394         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9395         targets that require strict compatibility between the types.
9396
9397         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9398         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9399         Kill the strict argument and create a new one valuetype_must_be_boxed.
9400
9401         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9402         state that all valuetypes must be boxed.
9403
9404         Fixes #448560.
9405
9406 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9407
9408         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9409         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9410
9411         Contributed under MIT/X11 license.
9412
9413 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9414
9415         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9416         the inflate_generic_type machinery should handle it.
9417
9418         This avoids a crash when the field's flags is zero and it's type is
9419         a primitive.
9420         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9421         is zero and will return one of the cached built-in primitive types. Since
9422         those types live in read-only memory, the code that copies it crashes.  
9423
9424 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9425
9426         * object.c: Don't put function descriptors into generalized IMT
9427         thunks.
9428
9429 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9430
9431         * class.c: Enable generic code sharing on PPC64.
9432
9433 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9434
9435         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9436         from mini/mini.c.
9437
9438         * generic-sharing.c: Allocate the method template slists from the
9439         image mempool so it doesn't leak.
9440
9441 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9442
9443         * class.c (generic_array_methods): Release the linked list.
9444
9445 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9446
9447         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9448         invocation to g_utf16_to_utf8().
9449
9450 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9451
9452         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9453         arguments on big endian archs.
9454
9455 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9456
9457         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9458         the type name (test added in corlib).
9459
9460 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9461
9462         * pedump.c: initialize perf. counters. Fixes a segv.
9463
9464 2008-11-25  Martin Baulig  <martin@ximian.com>
9465
9466         * mono-debug-debugger.c
9467         (mono_debugger_runtime_invoke): Return the exception object if an
9468         exception was thrown.  Visual Studio displays the exception object
9469         in the locals window.
9470
9471 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9472
9473         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9474         ftnptr.
9475
9476 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9477
9478         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9479         MONO_TYPE_U are sizeof (gpointer), too.
9480
9481 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9482
9483         * marshal.c (mono_type_native_stack_size): Fixed size and
9484         alignment for reference types.
9485
9486 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9487
9488         * class.c (mono_class_generic_sharing_enabled): Disable generic
9489         code sharing for PPC64.
9490
9491 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9492
9493         * icall.c (mono_method_get_equivalent_method): Make sure
9494         method->klass->methods is inited before looping over it.
9495
9496 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9497
9498         * object.c: when calling ExecuteAssembly in a newly created domain,
9499         the configuration file and application base are already set up.
9500         Bug #446353 take 2 fixed.
9501
9502 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9503
9504         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9505         Fixes #444715. Fix a warning.
9506
9507 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9508
9509         * appdomain.c: write the full path of the assembly to the .ini file
9510         created when "shadow-copying"
9511         Bug #446353 fixed.
9512
9513 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9514
9515         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9516         if signature==FALSE.
9517
9518 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9519
9520         * marshal.h : Fix the cygwin build.
9521            marshal.c:12442: undefined reference to `_IID_IMarshal'
9522           
9523         Code is contributed under MIT/X11 license.
9524
9525 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9526
9527         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9528           free threaded marshaler when QueryInterface is called on a COM callable
9529           wrapper requesting the IMarshal interface.
9530           
9531         Code is contributed under MIT/X11 license.
9532
9533 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9534
9535         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9536
9537         * reflection.c (mono_type_get_object): Special case the very common
9538         void type.
9539
9540         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9541         hold typeof(void).
9542
9543 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9544
9545         * process.h : Adding method declaration for
9546           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9547           
9548         * process.c : Adding implementation for
9549           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9550           
9551         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9552           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9553
9554         Code is contributed under MIT/X11 license.
9555
9556 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9557
9558         * appdomain.c (unload_thread_main): Clean up threadpool by
9559         calling mono_thread_pool_remove_domain_jobs.
9560
9561         * domain-internals.h (struct _MonoDomain): Add new fields to
9562         help coordinate the cleanup of the threadpool.
9563
9564         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9565         that cleans up the threadpool of all jobs associated with an appdomain.
9566         It does that by cleaning up the queues and making sure all active
9567         threads are accounted.
9568
9569         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9570         unloaded or in the process of. Take this is such way that there is
9571         no race condition between another thread starting the unload and the
9572         current thread acknowledging it.
9573
9574         * threadpool.c (async_invoke_thread): Same.
9575
9576         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9577         firing the new thread.
9578
9579         * threadpool.c (start_tpthread): Same.
9580
9581         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9582
9583         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9584
9585 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9586
9587         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9588         Add support for DuplicateHandle.
9589         
9590         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9591         Add support for DuplicateHandle.
9592         
9593         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9594         Add support for DuplicateHandle.
9595
9596         Code is contributed under MIT/X11 license.
9597
9598 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9599
9600         * class-internals.h: Make min_align into a whole byte.
9601
9602         * class.c: Set min_align for SIMD types to 16.
9603
9604 2008-11-05  Geoff Norton  <gnorton@novell.com>
9605
9606         * attach.c: Default the attacher to enabled for all cases including
9607         embedded.
9608
9609 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9610
9611         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9612         change r117650.
9613
9614 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9615
9616         * monitor.c, monitor.h: New function for querying offsets of
9617         members of MonoThreadsSync.
9618
9619 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9620
9621         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9622         to speed up this function and to avoid the boundless memory growth caused by
9623         the signature_dup () calls.
9624
9625 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9626
9627         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9628         wrapper.
9629
9630         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9631         by 1 bit.
9632
9633         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9634
9635 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9636
9637         * appdomain.c:
9638         * domain-internals.h: made mono_set_private_bin_path_from_config()
9639         "internal".
9640         * object.c: call the above function after setting the configuration
9641         file path for the root domain.
9642         Fixes bug #314478.
9643
9644 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9645
9646         * assembly.c: when the assembly is loaded from an absolute path, end
9647         basedir with a directory separator.
9648         Bug #440781 fixed.
9649
9650 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9651
9652         * monitor.c (mono_monitor_get_fast_enter_method): If
9653         CompareExchange is not available, don't create the fastpath
9654         instead of asserting.  (The method is missing in the 1.1 profile.)
9655
9656 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9657
9658         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9659
9660         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9661         Monitor.Exit IL fastpaths.
9662
9663 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9664
9665         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9666
9667 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9668
9669         * class.c (mono_class_create_from_typedef): Added Vector2l.
9670
9671 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9672
9673         * class.c (mono_class_create_from_typedef): Added Vector2d.
9674
9675 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9676
9677         * appdomain.c: translate \ into / for cache_path.
9678         * domain-internals.h: new mono_is_shadow_copy_enabled().
9679         * icall.c: (fill_reflection_assembly_name) do the same path
9680         manipulations that get_code_base does.
9681         (get_code_base) use mono_is_shadow_copy_enabled.
9682
9683 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9684
9685         * appdomain.c: shadow-copied assemblies go to CachePath +
9686         ApplicationName when both are set. DynamicBase has nothing to do with
9687         shadow copies.
9688         Bug #406877 fixed.
9689
9690 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9691
9692         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9693         STANDALONESIG table.
9694
9695         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9696         standalone signatures.
9697
9698         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9699         comparison code: instead of comparing the signatures using a custom
9700         equals function, transform them to a common signature and compare that. This
9701         works better with AOT.
9702
9703 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9704
9705         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9706
9707         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9708         call for generic instances.
9709         (mono_class_setup_properties): Call setup_properties () before accessing
9710         gklass->properties.
9711
9712         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9713         over the virtual methods of a class using metadata if possible, avoiding the
9714         creation of MonoMethod's for non-virtual methods.
9715         
9716         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9717         get_virtual_methods () to iterate over the virtual methods of classes.
9718
9719 2008-10-25  Martin Baulig  <martin@ximian.com>
9720
9721         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9722
9723 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9724
9725         * class.c (mono_class_create_from_typedef): Added Vector4i.
9726
9727 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9728
9729         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9730         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9731         special-casing applies to eliminate the call completely.
9732
9733 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9734
9735         * class.c (mono_class_create_from_typedef): Added Vector8s.
9736
9737 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9738
9739         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9740
9741 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9742
9743         * icall.c: get rid of annoying warning.
9744
9745 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9746
9747         * threadpool.c: in 1.x, if you change the background status of the
9748         threadpool thread, it's not reset.
9749         Remove unnecessary calls to SetState.
9750
9751 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9752
9753         * threadpool.c: asynchronously create a set of idle threads upon first
9754         use of the threadpool. SetMinThreads will now start the appropriate
9755         number of idle threads if they are not already running. The default is
9756         1 threadpool thread per CPU. Increased the maximum number of threads
9757         per CPU to 10.
9758
9759 2008-10-22  Martin Baulig  <martin@ximian.com>
9760
9761         Revert r116521 from Zoltan, it breaks the debugger:
9762
9763         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9764         over the virtual methods of a class using metadata if possible, avoiding the
9765         creation of MonoMethod's for non-virtual methods.
9766         
9767         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9768         get_virtual_methods () to iterate over the virtual methods of classes.
9769
9770 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9771
9772         * threads.c: when creating a threadpool thread, set its state to
9773         'background'.
9774         * threadpool.c: reset the background state of a threadpool thread
9775         after finishing each work item
9776         Bug #437888 fixed.
9777
9778 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9779
9780         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9781         
9782         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9783         generic instances which works by inflating the methods in the container
9784         class's vtable.
9785
9786         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9787         variant which doesn't make a copy if no inflation was done.
9788         (mono_class_setup_fields): Use it.
9789
9790         * metadata.c (mono_metadata_get_shared_type): New helper function to
9791         return a shared instance of a given MonoType.
9792
9793         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9794         a copy of most non-generic types.
9795
9796 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9797
9798         * threadpool.c: remove one more GetSystemInfo () call.
9799
9800 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9801
9802         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9803         use the code in mono-proclib.h to get processor information.
9804
9805 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9806
9807         * appdomain.c: fixed the logic that determines whether assemblies in a
9808         directory are "shadow-copied" or not. Bug #433483 fixed.
9809
9810 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9811
9812         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9813         warning.
9814
9815 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9816
9817         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9818         returning a vtype.
9819
9820         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9821         reflection.c: Use mono_field_get_name () for accessing a field's name.
9822
9823         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9824         class.c
9825
9826         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9827         field.
9828
9829         * loader.c (find_method_in_class): Reenable the metadata optimization by
9830         not using it for generic instances.
9831
9832         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9833         data/def_type fields from MonoClassField into a separate structure.
9834         (struct MonoClassField): Remove data/def_type fields.
9835         (struct _MonoClass): Add a 'field_def_values' array to store the default
9836         values/RVA for fields.
9837
9838         * class.c reflection.c: Update after the changes.
9839         
9840         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9841         for accessing field->data.
9842
9843         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9844
9845         * loader.c (find_method_in_class): Revert the last change for now as
9846         it breaks Mono.C5 unit tests.
9847
9848         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9849         'field_generic_types' and 'field_objects' which contain the information
9850         previously stored in MonoInflatedField.
9851         (MonoInflatedField): Delete.
9852         (struct _MonoClassField): Delete 'generic_info' field.
9853
9854         * reflection.c: Store the information which was previously in 
9855         field->generic_info in MonoDynamicGenericClass instead.
9856
9857         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9858         MonoClassField changes.
9859
9860 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9861
9862         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9863         store the value inside the data array of the MonoMethodWrapper.
9864         This saves memory, is faster and fixes the lifetime issues (methods
9865         were never removed from the hash previously). May also fix bug#436996.
9866
9867 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9868
9869         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9870         generic instances, compute the type from the generic definition instead of
9871         looking in field->generic_info.
9872
9873         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9874         for inflated fields, the only user was get_fieldref_token () which no
9875         longer needs it.
9876
9877         * class.c (mono_class_init): Revert the last change as it seems to cause
9878         crashes.
9879
9880         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9881         bytes on 64 bit platforms.
9882
9883         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9884         
9885         * object.c (mono_class_create_runtime_vtable): Don't initalize
9886         field->data/field->def_type here, it is done lazily by 
9887         mono_class_get_field_default_value ().
9888
9889         * icall.c (ves_icall_get_enum_info): Call 
9890         mono_class_get_field_default_value () instead of directly accessing
9891         field->data and field->def_type.
9892
9893         * object.c (get_default_field_value): Ditto.
9894
9895         * class.c (mono_field_get_data): Ditto.
9896         
9897         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9898         call for generic instances.
9899
9900         * loader.c (find_method_in_class): If klass != from_class, then inflate
9901         the method with the context of from_class, since the caller assumes this.
9902
9903 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9904
9905         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9906         for accessing method->slot.
9907
9908 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9909
9910         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9911
9912 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9913
9914         * class.c (mono_method_get_vtable_index): Use
9915         mono_method_get_vtable_slot () for accessing method->slot.
9916
9917         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9918         accessing klass->methods.
9919
9920         * class.c (mono_method_get_vtable_slot): New helper function.
9921         (mono_class_get_vtable_entry): Ditto.
9922         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9923         accessing method->slot.
9924
9925         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9926         method to get_inflated_method ().
9927
9928         * class.c (mono_class_get_inflated_method): New helper method to obtain
9929         a method of an inflated class without calling setup_methods ().
9930         (mono_class_get_cctor): Use get_inflated_method.
9931
9932         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9933         
9934         * marshal.c image.c: Lazily create all the marshal caches.
9935
9936         * image.c (mono_image_init): Move initialization of runtime_invoke
9937         caches to marshal.c.
9938
9939         * marshal.c (get_cache): New helper function to lazily initialize a 
9940         wrapper cache.
9941         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9942
9943         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9944
9945 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9946
9947         * loader.c: fixed check for interface type.
9948
9949 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9950
9951         * appdomain.c: check for NULL setup before it's referenced.
9952
9953 p
9954 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9955
9956         * class.c: remove the unused old vtable setup code.
9957
9958 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9959
9960         * class.c: don't depend on interface order in
9961         setup_interface_offsets (bug #435777).
9962         * reflection.c: sort the InterfaceImpl table (patch from
9963         Jb Evain  <jbevain@novell.com>).
9964
9965 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9966
9967         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9968         the low level assemblies lock.
9969
9970 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9971
9972         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9973         object.c, reflection.c, socket-io.c, threads.c: introduced
9974         mono_framework_version () to return the major framewrok version,
9975         changed the code that was using more complex patterns to use it.
9976         Return the correct value for PlatformID for OSX.
9977
9978 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9979
9980         * icall-def.h, process.h, process.c: added an icall to get info about
9981         processes using mono-proclib.
9982
9983 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9984
9985         * mono-perfcounters.c: use the mono-proclib functions to
9986         access process information.
9987
9988 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9989
9990         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9991         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9992         reflection.c: remove rawbuffer usage: mmap support is more sanely
9993         provided by utils/mono-mmap.
9994
9995 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9996
9997         * gc.c: use posix semaphores when possible so that
9998         mono_gc_finalize_notify() is signal safe.
9999
10000 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
10001
10002         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
10003         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
10004         be #ifdef-ed out, the linker will remove the rest.
10005
10006         * marshal.c: Implement DISABLE_COM.
10007
10008         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
10009
10010 2008-10-11  Miguel de Icaza  <miguel@novell.com>
10011
10012         * locales.c (string_invariant_compare_char): Optimization: do not
10013         call g_unichar_type unless we actually need the information.
10014
10015 2008-10-10  Mark Probst  <mark.probst@gmail.com>
10016
10017         * object.c, class-internals.h: Also create remoting trampolines
10018         for generic methods.  Pass the domain to the remoting trampoline
10019         creation function, too.
10020
10021 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
10022
10023         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
10024
10025 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10026
10027         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
10028         Vector4ui.
10029
10030 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
10031
10032         * assembly.c:
10033         * locales.c: remove the use of g_strdown. Fixes bug #322313.
10034
10035 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10036
10037         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
10038         for the least possible amount of time (extending the fix in r113458).
10039
10040 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10041
10042         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
10043
10044 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10045
10046         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
10047         as possible simd intrinsic types.
10048         Optimized the test to check for the common prefix first.
10049
10050 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
10051
10052         * class.c: back out part of a broken optimization committed on
10053         May 23th (bug #433908).
10054
10055 2008-10-09  Mark Probst  <mark.probst@gmail.com>
10056
10057         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
10058         Win32.  Should fix #432388 for most cases until we have the new
10059         profiler on Win32.
10060
10061 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
10062
10063         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
10064         instead of using inst->id so the hash is stable for AOT.
10065
10066 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
10067
10068         * appdomain.c:
10069         * icall.c: create a .ini file for shadow-copied assemblies that
10070         contains the location of the original assembly. Use this to return the
10071         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
10072         Also fix the number of '/' for windows when returning the CodeBase.
10073         Fixes bug #430920.
10074
10075 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10076
10077         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
10078
10079         Code is contributed under MIT/X11 license.
10080
10081 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10082
10083         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
10084           if if the class vtable needs initialized.
10085
10086         Code is contributed under MIT/X11 license.
10087
10088 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10089
10090         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
10091           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
10092           STRING->BSTR, and CLASS->INTERFACE.
10093
10094         Code is contributed under MIT/X11 license.
10095
10096 2008-10-07  Marek Habersack  <mhabersack@novell.com>
10097
10098         * sysmath.h: changed the declaration of the
10099         ves_icall_System_Math_Round2 icall by adding an extra
10100         away_from_zero parameter.
10101
10102         * sysmath.c (ves_icall_System_Math_Round2): added support for
10103         away from zero rounding. The icall now takes an extra boolean
10104         parameter to signal that away from zero operation is requested.
10105
10106 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
10107
10108         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
10109         the delegate klass so it can work with full-aot.
10110         (mono_marshal_get_delegate_end_invoke): Ditto.
10111         (mono_marshal_get_delegate_invoke): Ditto.
10112
10113 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
10114
10115         * gc.c, attach.h, attach.c: remove a bad pattern:
10116         add_finalizer_callback () is not implemented correctly, it can't
10117         without adding more overhead to the finalizer loop and it's not
10118         even needed, since we know exactly what we need to call, so there is
10119         no need to do so through an expensive function pointer.
10120
10121 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
10122
10123         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
10124         for the no-gc case.
10125         * attach.c (mono_attach_init): Remove the #ifdef.
10126
10127 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
10128
10129         * attach.c (mono_attach_init): Don't use
10130         mono_gc_add_finalizer_thread_callback when compiling without GC.
10131         Fixes #432306.
10132         
10133         Code is contributed under MIT/X11 license.
10134
10135 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10136
10137         * class.c (mono_class_create_from_typedef): Remove the 
10138         #ifndef DISABLE_SIMD stuff.
10139
10140 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10141
10142         * class-internals.h (MonoClass): Added simd_type bit field.
10143
10144         * class.c (mono_class_create_from_typedef): Check if type is a simd
10145         intrinsic.
10146
10147 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10148
10149         * object.c (mono_method_add_generic_virtual_invocation): Only add
10150         instantiations to the thunk whose count is at least as large as
10151         the threshold.
10152
10153 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
10154
10155         * icall.c: changed the Type of the exception thrown when trying to
10156         invoke a constructor on an abstract class. Part of the fix for bug
10157         #324185.
10158
10159 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10160
10161         * class.c, class-internals.h (mono_method_get_vtable_index): New
10162         function which returns the index into the vtable and properly
10163         handles inflated virtual generic methods.
10164
10165 2008-10-01  Mark Probst  <mark.probst@gmail.com>
10166
10167         * object.c, domain.c, object-internals.h, domain-internals.h:
10168         Generalize IMT thunk machinery to also handle thunks for virtual
10169         generic method invokes.  When a virtual generic method is invoked
10170         more than a number of times we insert it into the thunk so that it
10171         can be called without lookup in unmanaged code.
10172
10173         * generic-sharing.c, class-internals.h: Fetching a
10174         MonoGenericInst* for a method from an (M)RGCTX.
10175
10176 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
10177
10178         * marshal.c (emit_marshal_string): Applied a variant of a patch by
10179         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
10180         marshalling. Fixes #431304.
10181
10182 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
10183
10184         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10185           handle when ref is specified without In or Out.
10186
10187         Code is contributed under MIT/X11 license.
10188
10189 2008-09-30  Mark Probst  <mark.probst@gmail.com>
10190
10191         * loader.c (mono_get_method_constrained): Don't expand method with
10192         the class's context, because it's already a method of that class.
10193
10194 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
10195
10196         * attach.c : should be correct build fix.
10197
10198 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
10199
10200         * attach.c: Fix the previous change.
10201
10202 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
10203
10204         * attach.c : quick w32 build fix.
10205
10206 2008-09-27  Miguel de Icaza  <miguel@novell.com>
10207
10208         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
10209         crashes MonoDevelop: #430455.
10210
10211 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
10212
10213         * domain-internals.h (struct _MonoDomain): Move most fields used only by
10214         the JIT do MonoJitDomainInfo in ../mini/mini.h.
10215
10216         * domain.c: Remove initialization/cleanup of the removed fields.
10217
10218 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10219
10220         * class.c (mono_class_generic_sharing_enabled): Enable generic
10221         code sharing for PPC.
10222
10223 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
10224
10225         * attach.c : Fixing the Windows builds.
10226
10227         Code is contributed under MIT/X11 license.
10228
10229 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10230
10231         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
10232         the default generic sharing mode to 'all'.
10233
10234 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10235
10236         * generic-sharing.c, class-internals.h: New function for checking
10237         whether a method needs a static RGCTX invoke wrapper.  A few
10238         funtions moved from mini/generic-sharing.c.
10239
10240         * icall.c: New function used.
10241
10242 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10243
10244         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10245         Static RGCTX invoke wrapping applies to value type methods, too.
10246
10247         * class.c (mono_class_setup_vtable_general): In generic-shared
10248         value types, wrap methods with a static RGCTX invoke wrapper.
10249
10250 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10251
10252         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
10253         osx build.
10254
10255 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10256
10257         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
10258         register a callback which is called when the finalizer thread is woken
10259         up.
10260         (finalizer_thread): Call the callback if it exists.
10261
10262         * attach.h attach.c: New files, implementing the attach mechanism.
10263
10264         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
10265         
10266         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
10267         by the previous change.
10268
10269 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
10270
10271         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
10272         loader.c, marshal.c, metadata-internals.h, metadata.c,
10273         method-builder.c, object.c, reflection.c: introduced specific functions
10274         to allocate from the domain and image mempools and cleaned up most of
10275         the code to use them (still missing a few in reflection.c).
10276         Keep the loader bytes counter updated.
10277
10278 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
10279
10280         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
10281         loader-related counters.
10282
10283 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
10284
10285         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
10286         added more MS-compatible counters.
10287
10288 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10289
10290         * class.c (mono_class_setup_fields): Call setup_fields before accessing
10291         class->blittable. Fixes #428217.
10292
10293 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
10294
10295         * reflection.c (mono_image_get_field_on_inst_token): Call 
10296         field_encode_signature () since that handles custom modifiers too.
10297         Fixes #424663.
10298
10299 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
10300
10301         * reflection.c (add_custom_modifiers): New helper function to merge custom
10302         modifiers stored in objects to a MonoType.
10303         (fieldref_encode_signature): Encode custom modifiers.
10304         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
10305         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
10306
10307 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
10308
10309         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
10310         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
10311         64-bit IL only images because imports are not resolved for IL only images.
10312         Special thanks to Bill Holmes for finding this bug and testing the patch.
10313         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
10314
10315         Contributed under MIT/X11 license.
10316
10317 2008-09-19  Miguel de Icaza  <miguel@novell.com>
10318
10319         * mono-config.c (dllmap_start): Add support for the bits keyword
10320         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
10321
10322 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10323
10324         * reflection.c (inflate_mono_method): When the class the method is
10325         to be inflated for is itself not inflated, just return the method.
10326
10327 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
10328
10329         * mono-perfcounters.c: use more user friendly process instance names.
10330
10331 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
10332
10333         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10334           handle "[in] ref" and "[in][out] ref" cases.
10335
10336         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
10337           to mono_mb_create_method.  This was causing problems calling native to
10338           managed passing Variants by value.
10339
10340         Code is contributed under MIT/X11 license.
10341
10342 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
10343
10344         * class.c (can_access_internals): Call mono_assembly_load_friends ()
10345         before accessing the friend_assembly_names field.
10346
10347         * assembly.c (mono_assembly_load_friends): Make this callable multiple
10348         times.
10349         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
10350         called lazily when it is needed.
10351
10352         * metadata-internals.h (struct _MonoAssembly): Add 
10353         'friend_assembly_names_inited' flag.
10354
10355 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
10356
10357         * mono-perfcounters-def.h: fix the types of a few counters.
10358         * mono-perfcounters.c: implemented the instance names getter
10359         and a few bugfixes.
10360
10361 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
10362
10363         * culture-info-table.h : regenerated.
10364
10365 2008-09-17  Robert Jordan  <robertj@gmx.net>
10366
10367         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
10368         context bound objects. Fixes #415577.
10369
10370         Code is contributed under MIT/X11 license.
10371
10372 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
10373
10374         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
10375         implementation (bug #423582).
10376
10377 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
10378
10379         * object.c (mono_object_get_virtual_method): Handle the case method->slot
10380         is not set. Fixes #426309.
10381
10382 2008-09-16  Jb Evain  <jbevain@novell.com>
10383
10384         * class.c (mono_class_from_name): fix the exported type look up
10385         when the type is defined in a referenced assembly.
10386
10387 2008-09-16  Jb Evain  <jbevain@novell.com>
10388
10389         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10390         increment the next index counter on each iteration to make that work
10391         for more than one type forwarder. Unmanaged part to fix #422929.
10392
10393 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10394
10395         * object-internals.h: enum ComInterfaceType in
10396         MonoInterfaceTypeAttribute is guint32, not guint16.
10397
10398 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10399
10400         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10401         writing code.
10402
10403 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10404
10405         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10406         not gboolean.
10407
10408 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10409
10410         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10411         Endianness fixes for MonoSymbolFileOffsetTable.
10412
10413 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10414
10415         * process.c (complete_path) : Removing quotes from the 
10416           input path.  The glib file routines do not handle file paths
10417           that have quotes around them.
10418
10419         Code is contributed under MIT/X11 license.
10420
10421 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10422
10423         * socket-io.h : Adding a comment to provide locations where 
10424           changes to MonoSocketAsyncResult need to be synced.
10425
10426         Code is contributed under MIT/X11 license.
10427
10428 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10429
10430         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10431         parameters as well. Fixes #425001.
10432
10433 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10434
10435         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10436         windows build.
10437
10438 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10439
10440         * console-io.c: Add support for tracking the window size if it
10441         changes.
10442
10443         The setup is very simple: the TtySetup function will now return a
10444         pointer to a location in memory that tracks the current console
10445         size.  The managed code checks its current value every time its
10446         queried against the last value set, and updates accordingly.
10447
10448         With this setup we can work with multiple consoles, and we do not
10449         require to poke into managed code from a signal handler.
10450
10451         Additionally, the environment for COLUMNS and LINES is now handled
10452         in unmanaged code.
10453
10454         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10455
10456 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10457
10458         * marshal.c (mono_type_native_stack_size): Treat
10459         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10460
10461 2008-09-04  Jb Evain  <jbevain@novell.com>
10462
10463         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10464         to nullables.
10465
10466 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10467
10468         * verify.c (verify_type_compatibility_full): Revert change
10469         to allow converting a native int to unmanaged pointer be verifiable
10470         under non-strict mode.
10471         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10472
10473         * verify.c: Added some TODOs.
10474
10475 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10476
10477         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10478           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10479           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10480
10481         Code is contributed under MIT/X11 license.
10482
10483 2008-09-02  Jb Evain  <jbevain@novell.com>
10484
10485         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10486
10487 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10488
10489         reflection.c (typebuilder_setup_fields): Handle classes with
10490         explicit size.
10491
10492 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10493
10494         class.c (mono_class_setup_events): Add memory barrier due to
10495         double checked locking.
10496         
10497         class.c (mono_class_setup_properties): Same.
10498
10499 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10500
10501         * class.c (mono_class_is_assignable_from): Fix the build.
10502         
10503         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10504         before accessing klass->interface_bitmap. Fixes #421744.
10505
10506 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10507
10508         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10509         the runtime into no-exec mode, useful when running the AOT compiler.
10510
10511         * appdomain.c gc.c object.c: Avoid executing managed code when running
10512         in no-exec mode.
10513         
10514         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10515
10516         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10517         special case when the mono_assembly_loaded () returns NULL because the 
10518         search hook is not installed.
10519
10520 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10521
10522         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10523         crashes in bstr marshalling on linux.
10524
10525 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10526
10527         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10528         with more than one parameter.
10529
10530 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10531
10532         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10533         start/stop flow control as well when turning off ICANON (allows
10534         C-s and C-q to be read by Console.ReadKey).
10535
10536 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10537
10538         * class.c (mono_class_init): Move the initialization of nested classes
10539         into mono_class_get_nested_types (). Fixes #418433.
10540
10541         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10542         flag.
10543
10544         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10545         iterating tough the nested classes of a class.
10546
10547 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10548
10549         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10550         on arm.
10551
10552 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10553
10554         * console-io.c (sigcont_handler): Support signal chaining for
10555         SIGCONT.
10556
10557         (console_set_signal_handlers): Use best practices with sigaction,
10558         clear the structure before using it. 
10559
10560 2008-08-22  Robert Jordan  <robertj@gmx.net>
10561
10562         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10563         Fix the Windows build.
10564
10565 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10566
10567         * class.c (mono_class_generic_sharing_enabled): Make the default
10568         sharing mode 'corlib'.
10569
10570 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10571
10572         * console-io.c (console_set_signal_handlers): Fix a warning.
10573
10574         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10575         method normally, the JIT will take care of avoiding recursion.
10576
10577 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10578
10579         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10580
10581         Code is contributed under MIT/X11 license.
10582
10583 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10584
10585         * console-io.c (sigcont_handler): We need to restore the entire
10586         termios state, not only the original settings, as things like echo
10587         can be controlled after this (Booish exposes this issue with its
10588         own ReadLine implementation).
10589
10590         Additionally, we need to set the terminal back into keypad_xmit
10591         mode.
10592         
10593         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10594         string as a paramter as well.   Otherwise we get different
10595         keyboard sequences.
10596
10597 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10598
10599         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10600         delegates with byref out parameter passing. Fixes #351520.
10601
10602         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10603         a generic context.
10604         (mono_type_get_desc): Add the type arguments for GENERICINST.
10605         (mono_method_full_name): Stringify the class name using mono_type_full_name
10606         so it picks up generic arguments.
10607
10608 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10609
10610         * console-io.c: Removed debug output.
10611
10612 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10613
10614         reflection.c (mono_reflection_create_runtime_class): Alloc
10615         the nested classes linked list using the dynamic image mempool.
10616         Fixes leak in corlib compilation.
10617
10618 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10619
10620         * console-io.c: Fix incredibly annoying behavior on the console
10621         after resuming execution after control-z.   This affected every
10622         console application.
10623
10624 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10625
10626         * mempool-internals.h: Header for mono private mempool functions. The first
10627         two function are for allocating glib linked lists using pools.
10628
10629         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10630
10631         * Makefile.am: Added mempool-internals.h.
10632
10633 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10634
10635         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10636         (mono_domain_free): Ditto.
10637
10638         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10639         be used by the JIT to store its domain-specific information, instead of putting
10640         it directly into MonoDomain.
10641
10642         * domain.c (mono_install_create_domain_hook): New helper function to install
10643         a hook which initializes domain->runtime_info.
10644
10645         * domain.c (mono_install_free_domain_hook): Ditto.
10646         
10647 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10648
10649         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10650         asserting if the ares parameter is null.
10651
10652         * mono-perfcounters.c: Fix warnings.
10653
10654         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10655         is not needed, don't check for interruptions either.
10656         (mono_marshal_get_delegate_end_invoke): Ditto.
10657
10658 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10659
10660         * mono-perfcounters.c (predef_readonly_counter): added support for
10661         reading the ASP.NET Requests Queued counter from another process.
10662
10663 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10664
10665         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10666         MonoImage to simplify the AOT code.
10667
10668 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10669
10670         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10671         marshalling. Fixes #416078.
10672
10673 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10674         
10675         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10676         it is set, looking up the icall address is deferred to the JIT, since 
10677         in embedded scenarios, the icall might not be registered in the runtime
10678         doing the AOT compilation. Backported from the 2.0 branch.
10679
10680 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10681
10682         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10683         Fixes #415621.
10684
10685 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10686
10687         * Makefile.am: added support for cross-compilation.
10688
10689 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10690
10691         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10692
10693 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10694
10695         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10696
10697 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10698
10699         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10700         mono-perfcounters.c: performance counters implementation.
10701
10702 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10703
10704         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10705         to gpointer, letting the AOT code decide what to store in it.
10706
10707 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10708
10709         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10710           mono_class_setup_methods if the methods are not initialized.
10711
10712         Code is contributed under MIT/X11 license.
10713
10714 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10715
10716         * verify.c: Remove some debug code I commited by accident.
10717
10718         * verify.c (mono_method_is_valid_in_context): Change the return value
10719         to make possible to distinguish between invalid and unverifiable.
10720
10721         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10722         methods.
10723
10724 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10725
10726         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10727         constraints. Fixes regression in gtest-253.
10728
10729 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10730
10731         * verify.c (mono_verifier_verify_class): Don't allow generic types
10732         with explicit layout.
10733
10734         * verify.c (mono_method_verify): Check locals and argument types.
10735
10736 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10737
10738         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10739         wait if the thread is in StopRequested state.
10740
10741         * class.c (mono_class_from_name): Refactor the module searching code into
10742         a separate function so it can be reused in the AOT case too.
10743
10744 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10745
10746         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10747         Check both the type and it's generic type definition for loader errors.
10748         
10749         * verify.c (mono_method_is_valid_in_context): Don't generate another
10750         error when a type errors occur, this leads to the wrong exception been
10751         thrown.
10752
10753 2008-07-28  Dick Porter  <dick@ximian.com>
10754
10755         * icall-def.h
10756         * process.c
10757         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10758         New internal calls to duplicate and close a process handle.
10759
10760 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10761
10762         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10763
10764 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10765
10766         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10767
10768 2008-07-27  Robert Jordan  <robertj@gmx.net>
10769
10770         * class.c (mono_class_init): Don't compute class.has_finalize for
10771         valuetypes. Fixes #412477.
10772
10773 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10774
10775         * verify.c: Implement constraint equivalence checking.
10776         This is required when a generic parameter is used as
10777         argument to a constrained one.
10778
10779         Fixes #410637.
10780
10781 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10782
10783         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10784
10785         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10786
10787         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10788         synch with managed object layout.
10789
10790 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10791
10792         * verify.c (do_branch_op): Handle valuetypes and generic
10793         arguments properly.
10794
10795         * verify.c (do_cmp_op): Same.
10796
10797         Fixes #410383.
10798
10799 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10800
10801         * generic-sharing.c: Fix memory leaks.
10802
10803         * class.c, class-internals.h: Make
10804         mono_class_inflate_generic_type_with_mempool() non-static.
10805
10806 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10807
10808         * pedump.c (dump_verify_info): Dump full class name.
10809
10810 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10811
10812         * generic-sharing.c: Removed some old code that didn't do anything.
10813
10814 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10815         * profiler.c: Added runtime_initialized_event,
10816         mono_profiler_install_runtime_initialized and
10817         mono_profiler_runtime_initialized. This new hook tells the profiler
10818         when the runtime is sufficiently initialized to be able to call
10819         mono_thread_attach on the root appdomain.
10820         * profiler.h, profiler-private.h: Likewise.
10821
10822 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10823
10824         * verify.c (do_cast): Do boxing for generic arguments as well.
10825
10826         * class.c (is_nesting_type): Drop generic instantiations before
10827         checking for nesting.
10828
10829         * class.c (can_access_instantiation): Allow access to generic
10830         arguments.
10831
10832 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10833
10834         * verify.c (verify_class_for_overlapping_reference_fields):
10835         On some cases, the field size might be zero, guard against that.
10836         Fix the explicit layout check to work as expected.
10837
10838 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10839
10840         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10841         mono_thread_resume () during shutdown, since the thread we want to abort
10842         might be suspended.
10843
10844 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10845
10846         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10847         warning.
10848
10849         * debug-mono-symfile.c: Fix a warning.
10850
10851         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10852
10853         * object.c (mono_class_vtable): Check if exception_type is set, and return
10854         NULL as defined by the function comments.
10855
10856 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10857
10858         * mempool.c: Use malloc for every single mempool allocation if the
10859         configure option is set.  This makes it easier to track mempool
10860         allocations with tools like Valgrind.
10861
10862 2008-07-22  Jb Evain  <jbevain@novell.com>
10863
10864         * reflection.c (create_dynamic_mono_image): emit the same
10865         metadata version that SL2 does when creating a SL2 image.
10866
10867 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10868
10869         * icall-def.h:
10870         * icall.c: New icall System.Enum:get_hashcode. This function
10871         avoids the overhead of boxing the enum to the underlying type.
10872
10873 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10874
10875         * reflection.c (mono_method_get_object): Don't let static RGCTX
10876         invoke wrappers get into MonoReflectionMethods.
10877
10878 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10879
10880         * object-internals.h:
10881         * object.c: New mono_runtime_class_init_full function
10882         that makes throwing the exception optinal.
10883
10884         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10885         for the case where the exception object is supplied.
10886
10887 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10888
10889         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10890         old ld versions.
10891
10892         Contributed under MIT/X11 license.
10893
10894 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10895
10896         * string-icalls.c (ves_icall_System_String_InternalSplit):
10897         Optimize array allocation by caching the MonoClass of the
10898         array type.
10899
10900         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10901
10902         * reflection.c (mono_param_get_objects): Same.
10903
10904 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10905
10906         * icall-def.h:
10907         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10908         It inflates the given type using the class context.
10909
10910 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10911
10912         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10913         the vtable if it already exists.
10914
10915         * object-internals.h: Add mono_class_try_get_vtable as part of the
10916         internal API.
10917
10918         * reflection.c (mono_type_get_object): Use the MonoObject from the
10919         vtable when possible. Reduces locking contention on reflection heavy
10920         code.
10921
10922 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10923
10924         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10925         g_bit_nth_msf () since that macro is not implemented in eglib.
10926
10927 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10928
10929         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10930         on platforms which do not support it.
10931
10932 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10933
10934         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10935
10936 2008-07-11  Martin Baulig  <martin@ximian.com>
10937
10938         * mono-debug-debugger.h
10939         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10940
10941         * mono-debug-debugger.c
10942         (_mono_debugger_interruption_request): New global volatile variable.
10943         (mono_debugger_check_interruption): New public function.
10944
10945         * threads.c
10946         (mono_thread_current_check_pending_interrupt): Call
10947         mono_debugger_check_interruption().
10948         (mono_thread_interruption_checkpoint_request): Likewise.
10949
10950 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10951
10952         * verify.c: Add more type checks for loaded types. Verify the result
10953         handle from ldtoken.
10954
10955 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10956
10957         * loader.c (field_from_memberref): Don't crash if the field
10958         wasn't found.
10959
10960 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10961
10962         * verify.c: Verify if type and method instantiations
10963         don't have invalid VAR or MVAR arguments.
10964
10965 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10966
10967         * verify.c: Fix double free of function pointer list.
10968
10969 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10970
10971         * object.c (mono_string_to_utf8): Comment the new code as it
10972         breaks under eglib.
10973
10974 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10975
10976         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10977
10978 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10979
10980         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10981           is not throw too many times.
10982
10983         Code is contributed under MIT/X11 license.
10984
10985 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10986
10987         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10988         debugging is turned off.
10989
10990 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10991
10992         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10993
10994 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10995
10996         * class-internals.h, class.c: Added new generic sharing option:
10997         Share only stuff in System.Collections.Generic, which is now the
10998         default.
10999
11000 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11001
11002         * generic-sharing.c, class-internals.h: New function for getting a
11003         generic method in a generic class given the corresponding method
11004         for a different instantiation of the class.  Partly refactored
11005         from mini-trampolines.c.
11006
11007         * class.c: Make sure generic methods have a class_inst if they are
11008         part of a generic class.
11009
11010         * metadata.c (mono_type_stack_size_internal): Handle type
11011         variables.
11012
11013 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11014
11015         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
11016         Signifies whether information on the this/vtable/mrgctx variable
11017         is available.
11018
11019 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11020
11021         * object.c, object-internals.h, icall.c: New function
11022         mono_delegate_ctor_with_method(), which does the same as
11023         mono_delegate_ctor(), but takes an explicit method argument
11024         instead of taking the method from the jit info.
11025
11026         * marshal.c: When creating a delegate with an inflated method take
11027         the "this" argument as the target class for the castclass.
11028
11029 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11030
11031         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
11032         mono_jit_info_table_find() to perform very badly in some cases.
11033
11034 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
11035
11036         * icall.c (type_from_typename): Handle 'string'.
11037
11038         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
11039         wrappers into the wrapper_hash, since the key is not a MonoMethod.
11040
11041 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11042
11043         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
11044
11045         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
11046         number of available managed allocator types.
11047
11048         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
11049         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
11050
11051 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11052
11053         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
11054         which is a low level lock protecting just the 'jit_code_hash' hash table.
11055
11056         * domain.c: Initialize+cleanup jit_code_hash_lock.
11057         
11058 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11059
11060         * coree.c (mono_load_coree): Set coree_module_handle global variable only
11061         after initialization.
11062
11063         * coree.h: Make MonoFixupExe internal.
11064
11065         Contributed under MIT/X11 license.
11066
11067 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11068
11069         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
11070         because that is platform independent. Check NumberOfRvaAndSizes in PE32
11071         as well.
11072         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
11073         image being loaded is a CLI image and _CorValidateImage gets called.
11074
11075         * coree.h: Add MonoLoadImage.
11076
11077         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
11078         instead of LoadLibrary.
11079
11080         Contributed under MIT/X11 license.
11081
11082 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
11083
11084         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
11085         for any primitive type.
11086
11087 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11088
11089         * object.c (mono_array_new_specific): Optimize this and the other allocation
11090         functions a bit.
11091         
11092         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
11093         domains too if mono_dont_free_domains is set.
11094
11095         * domain-internals.h (mono_dont_free_domains): New internal option controlling
11096         whenever to free appdomain data after it has been unloaded.
11097
11098         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
11099         
11100 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
11101
11102         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
11103         (mono_method_get_equivalent_method): Fix a warning.
11104
11105         * object.c (mono_message_init): Avoid looking up array types for each call.
11106
11107 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11108
11109         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
11110         call.
11111
11112         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
11113         even more.
11114
11115         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
11116         each iteration.
11117
11118         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
11119         fields of an enum.
11120
11121 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
11122
11123         * object.c (mono_value_box): Fix boxing of nullables.
11124
11125 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
11126
11127         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
11128         mono_module_handle that is defined by the linker; no initialization required.
11129         * coree.h: Remove mono_module_handle, add __ImageBase, update
11130         mono_image_open_from_module_handle.
11131         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
11132         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
11133         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
11134         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
11135         to 4 GB away from image base address. IA64 version is not tested but was very
11136         easy to implement and should work if we ever need it.
11137         * domain.c (mono_init_internal): Avoid system error message boxes.
11138         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
11139         with has_entry_point. Handle do_mono_image_load fauilre correctly.
11140         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
11141         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
11142         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
11143
11144         Contributed under MIT/X11 license.
11145
11146 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11147
11148         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
11149         as part of the private mono API.
11150         
11151         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
11152         Do proper argument checking for methods that belong to generic classes.
11153         Do proper type resolution for GMFH/2.
11154         Fixes #377324.
11155         
11156 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11157
11158         * verify.c (do_switch): Fix a memory corruption bug with
11159         the jump index is out of bound.
11160
11161 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11162
11163         * verify.c: Disable debug code.
11164
11165 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11166
11167         * reflection.c (mono_image_get_methodbuilder_token): Use
11168         mono_image_get_methodspec_token_for_generic_method_definition
11169         instead of mono_image_get_memberref_token. We cache more memberef
11170         entries now.
11171
11172 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11173
11174         * verify.c: Inflate exception clause types.
11175         Fixes #402606.
11176         
11177 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11178
11179         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
11180         name.
11181
11182         * reflection.c (mono_image_get_ctorbuilder_token): Same.
11183
11184         * reflection.c (mono_image_create_method_token): Same.
11185
11186 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11187
11188         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
11189         It does the same as mono_image_get_methodref_token but works on
11190         MethodBuilder.
11191
11192         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
11193         and always generate a methodspec. This follows the old behavior and fixes
11194         the regressions in System.Core. 
11195
11196 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11197
11198         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
11199         don't event mono_class_get () succeeds. Fixes #402182.
11200
11201 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11202
11203         * metadata-internals.h: Added MonoDynamicImage::methodspec
11204         hashtable to store methodspec tokens created for MethodBuilders.
11205
11206         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
11207         MethodBuilders as open instantiations if a methodspec was requested.
11208
11209         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
11210
11211         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
11212
11213         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
11214
11215         Fixes bug #349190.
11216
11217 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11218
11219         * loader.c (method_from_methodspec): Avoid crashing if the
11220         method lookup fails.
11221
11222 2008-06-20  Dick Porter  <dick@ximian.com>
11223
11224         * socket-io.c (get_socket_assembly): Cope with Moonlight network
11225         classes being in a different assembly.  Fixes bug 399184.
11226
11227 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
11228
11229         * loader.c (mono_loader_init): Make this callable multiple times.
11230         (mono_dllmap_insert): Call mono_loader_init () so this works even before
11231         the runtime is initialized. Fixes #401755.
11232
11233 2008-06-19  Dick Porter  <dick@ximian.com>
11234
11235         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
11236         Fixes bug 349688.
11237
11238 2008-06-19  Dick Porter  <dick@ximian.com>
11239
11240         * socket-io.c:
11241         * icall-def.h: Implement Socket generic Send() and Receive()
11242         methods.  Fixes bug 395168.
11243
11244 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
11245
11246         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
11247
11248         Contributed under MIT/X11 license.
11249
11250 2008-06-18  Martin Baulig  <martin@ximian.com>
11251
11252         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
11253         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
11254         set to 80.0.  The debugger <-> runtime interface is now frozen as
11255         well.   
11256
11257         * mono-debug.c
11258         (mono_debug_debugger_version): Bump to 4.
11259
11260 2008-06-18  Martin Baulig  <martin@ximian.com>
11261
11262         * debug-mono-symfile.c
11263         (load_symfile): Don't check the minor version.
11264
11265         * debug-mono-symfile.h: Bump the version number to 50.0.
11266
11267 2008-06-18  Martin Baulig  <martin@ximian.com>
11268
11269         * debug-mono-symfile.c
11270         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
11271         minimum required version.
11272
11273 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11274
11275         * reflection.c (mono_custom_attrs_from_property): Fix support for
11276         retriveving cattrs of dynamic inflated generic types.
11277
11278         * reflection.c (mono_custom_attrs_from_event): Same.
11279
11280         * reflection.c (mono_custom_attrs_from_field): Same;
11281
11282         * reflection.c (typebuilder_setup_events): Same cattrs of events.
11283
11284         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
11285         Moved to metadata.c.
11286
11287         * metadata.c: New functions to retrive the equivalent field, event
11288         of property from the generic type definition.
11289
11290         * metadata-internals.h: Added new functions from metadata.c.
11291
11292 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11293
11294         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
11295         to cached in a mempool is used.
11296
11297         * metadata.c (free_generic_class): In some situations field generic_info type
11298         is not properly dup'ed and leads to double free'ing.
11299
11300         Fixes #400643.
11301
11302 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11303
11304         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
11305         this arguments (will be needed later for generic methods).
11306         Collect stats.
11307
11308 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11309
11310         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
11311         Create a static RGCTX invoke wrapper for methods which require it.
11312
11313 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11314
11315         * object.c, class-internals.h: New function for checking whether
11316         an individual field is special static.
11317
11318 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11319
11320         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
11321         linear search since the table is sorted.
11322
11323         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
11324         Fixes #324180.
11325
11326 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11327
11328         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
11329         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
11330
11331         * gc.c (mono_domain_finalize): Allow an infinite timeout.
11332
11333         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
11334         
11335         * threads.c (mono_thread_request_interruption): Get rid of locking, use
11336         InterlockedCompareExchange to query and modify 
11337         thread->interruption_requested.
11338
11339         * object-internals.h (struct _MonoThread): Change interruption_requested
11340         to a gint32 so it can be modified by atomic operations. Add 
11341         'critical_region_level' from the managed side, change small_id to a guint32,
11342         add new set of 'unused' fields.
11343
11344         * appdomain.c: Bump corlib version.
11345
11346 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11347
11348         * class.c (mono_class_from_name): Search modules as well. Fixes
11349         #322332.
11350
11351 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11352
11353         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
11354         templates.  Templates are generalized with an additional type_argc
11355         argument.  RGCTX templates have type_argc==0, MRGCTX templates
11356         have type_argc>0.
11357
11358         * domain-internals.h, domain.c: New hash table for looking up
11359         MRGCTXs.
11360
11361         * metadata.c, metadata-internals.h: Rename hash and equal
11362         functions for MonoGenericInst's and make them public.
11363
11364         * class-internals.h: New data structures for the MRGCTX.  Macros
11365         for distinguishing slots in the RGCTX and the MRGCTX.
11366
11367 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11368
11369         * object.c (mono_method_get_imt_slot): Put the same methods of
11370         different instantiations of the same generic interface in the same
11371         IMT slots, to make generic sharing simpler.
11372
11373 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11374
11375         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
11376
11377         * metadata.c (mono_metadata_field_info_with_mempool): Added.
11378         This function works just like mono_metadata_field_info, but
11379         accept a mempool as argument to be used allocating memory.
11380
11381         * marshal.c (mono_marshal_load_type_info): Use new function
11382         to load marshal data into image mempool.
11383
11384 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11385
11386         * class.c (mono_class_inflate_generic_type_with_mempool):
11387         This function allows to inflate a generic type using
11388         a mempool.
11389
11390         * class.c (inflate_generic_type): Take a mempool as argument
11391         and use it to do type dup'ing.
11392
11393         * class.c (mono_class_setup_fields): Field type for generic
11394         generic classes are allocated from the image mempool.
11395
11396         * metadata.c (free_generic_class): Inflated field type is
11397         now allocated in the image mempool.
11398
11399 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11400
11401         * threads.c (thread_cleanup): Free MonoThread::name.
11402
11403 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11404
11405         * appdomain.c (ensure_directory_exists): avoid unnecessary
11406         mkdir(2) calls when the shadow directory already exists.
11407         (mono_make_shadow_copy): copy also satellite assemblies from the
11408         private bin directories.
11409
11410 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11411
11412         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11413         
11414         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11415         a page boundary. Fixes #396219.
11416
11417 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11418
11419         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11420         due to double-checked locking.
11421
11422 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11423
11424         * assembly.c (build_assembly_name): Release memory on failure.
11425
11426         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11427
11428 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11429
11430         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11431         memory on failure.
11432
11433 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11434
11435         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11436         memory on failure.
11437
11438 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11439
11440         * loader.c (field_from_memberref): Check if field signature type is equal
11441         to the non-inflated type of the field. Fixes #398980.
11442
11443 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11444
11445         * assembly.c (mono_assembly_load_from_full): Call 
11446         mono_assembly_load_friends () outside the assemblies lock, since it can
11447         acquire the loader lock. Fixes #323696.
11448
11449         * reflection.c (resolve_object): Inflate the inst with the context for
11450         FieldOnTypeBuilderInst. Fixes #399010.
11451
11452 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11453
11454         * reflection.c (mono_image_get_field_on_inst_token): Don't
11455         inflate the field to encode it's signature. If it's a
11456         VAR or MVAR it should stay that way in the signature.
11457         Fixes #399047.
11458
11459 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11460
11461         * reflection.c (resolve_object): Release memory of inflated types.
11462
11463 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11464
11465         * loader.c (mono_method_get_signature_full): Remove assert about
11466         loading a methodspec to a generic method. We have such methods, such as
11467         System.Threading.Interlocked::CompareExchange<T>.
11468         This assert was removed since it crashes the verifier when it checks
11469         methods calling CompareExchange<T>.
11470
11471 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11472
11473         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11474         of Type array and not MonoType.
11475
11476 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11477
11478         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11479         <lupus@ximian.com>
11480
11481 2008-06-10  Martin Baulig  <martin@ximian.com>
11482
11483         * debug-mono-symfile.h
11484         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11485         changes to the file format, but we were generating incorrect
11486         source file indices in the line number table due to a bug, which
11487         made backtraces report an incorrect source file.
11488
11489 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11490
11491         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11492         mini/debug-mini.c to here.
11493
11494         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11495
11496         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11497         use it to release structs returned by mono_debug_find_method.
11498
11499 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11500
11501         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11502         since it needs to set method->slot for all interface methods.
11503
11504 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11505
11506         * class-internals.h: Forgot to add.
11507
11508 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11509
11510         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11511
11512         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11513         Lookup the custom attributes from property_hash.
11514
11515         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11516         in property_hash. Allocate all data using the image mempool.
11517
11518         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11519         for dynamic_custom_attrs to checks if the image is dynamic.
11520
11521 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11522
11523         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11524         assemblies array.
11525         
11526         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11527         runtime functions while holding the domain assemblies lock.
11528
11529 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11530
11531         * verify.c: Reapplied the last bit of the reverted changes.
11532
11533 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11534
11535         * verify.c: Reapplied more of the reverted changes.
11536
11537 2008-06-09  Martin Baulig  <martin@ximian.com>
11538
11539         * debug-mono-symfile.c (load_symfile): Check the major version
11540         first; if it's wrong, don't print the minor version in the error message.
11541
11542 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11543
11544         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11545         lock instead of the domain lock to avoid deadlocks, since the thread might
11546         already hold the loader lock.
11547
11548         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11549         (mono_thread_attach): Ditto.
11550
11551         * monitor.c: Use a TLS variable for holding the current thread id instead
11552         of calling pthread_self ().
11553         (mono_monitor_init_tls): New internal function to initialize the TLS
11554         variable.
11555         (mono_monitor_try_enter_internal): Put the owner == id check after the
11556         owner == 0 check.
11557
11558         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11559         missed optimizations when using gcc-4.3.
11560
11561 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11562
11563         * reflection.c (mono_dynamic_image_free): Free the memory
11564         used by MonoGenericParam in MonoDynamicImage::gen_param.
11565
11566         * reflection.c (mono_reflection_setup_generic_class): Allocate
11567         container from mempool.
11568
11569         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11570         container from mempool.
11571
11572 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11573
11574         * threads.c (mono_set_pending_exception): New internal function to set the
11575         pending exception of the current thread.
11576         (mono_thread_get_and_clear_pending_exception): Check for 
11577         thread->pending_exception as well.
11578
11579         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11580
11581         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11582         it can trigger a collection.
11583
11584 2008-06-06  Martin Baulig  <martin@ximian.com>
11585
11586         Merged the `debugger-kahalo' branch.
11587
11588         * mono-debug.h
11589         (MONO_DEBUGGER_VERSION): Bumped to 72.
11590
11591         * debug-mono-symfile.h
11592         (MonoSymbolFileMethodIndexEntry): Removed.
11593         (MonoSymbolFileMethodEntry): New public typedef.
11594         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11595         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11596         `data_offset'.
11597         (MonoSymbolFileMethodEntry): Removed.
11598         (MonoSymbolFileLexicalBlockEntry): Removed.
11599         (MonoSymbolFileLineNumberEntry): Removed.
11600         (MonoDebugLexicalBlockEntry): Removed.
11601         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11602         removed `num_il_offsets' and `il_offsets'.
11603         (MonoSymbolFile): Replace `version' with `major_version' and
11604         `minor_version'.
11605         (MONO_SYMBOL_FILE_VERSION): Replace with
11606         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11607         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11608
11609         * debug-mono-symfile.c
11610         (mono_debug_symfile_lookup_location): Add support for the new line
11611         number table format.
11612
11613 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11614
11615         * metadata.c (free_generic_class): Release the inflated
11616         MonoClass of dynamic generic classes if it's not a generic
11617         type definition.
11618
11619 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11620
11621         * verify.c: Reapplied more of the reverted changes.
11622
11623 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11624
11625         * reflection.c (lookup_custom_attr): Clean the cached flag or
11626         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11627         for SRE types.
11628
11629 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11630
11631         * verify.c: Reapplied a small part of the reverted changes.
11632
11633 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11634
11635         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11636
11637         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11638         previously in managed code.
11639         (mono_monitor_exit): Ditto.
11640         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11641
11642         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11643         the managed definition.
11644
11645 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11646
11647         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11648
11649 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11650
11651         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11652         
11653         * monitor.c: Add some micro optimizations.
11654
11655         * icall.c (type_from_typename): Handle 'bool'.
11656
11657 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11658
11659         * verify.c: Implement constructor verification per P III 1.8.1.4.
11660         Fixes #396716.
11661
11662 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11663
11664         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11665         holding the assemblies lock here too.
11666
11667 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11668
11669         * verify.c: Kill stack_top function.
11670
11671 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11672
11673         * verify.c: Kill stack_get function.
11674
11675 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11676
11677         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11678
11679 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11680
11681         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11682         more reliable.
11683
11684         * verify.c (mono_method_verify): Inflate params and locals to avoid
11685         mismatch when checking for compatibility.
11686
11687 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11688
11689         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11690         Length prefix should be size in bytes. Fix bug #339530.
11691         
11692         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11693         Length prefix should be size in bytes. Fix bug #339530.
11694
11695         Code is contributed under MIT/X11 license.
11696
11697 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11698
11699         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11700
11701         Contributed under MIT/X11 license.
11702
11703 2008-06-05  Martin Baulig  <martin@ximian.com>
11704
11705         * mono-debug-debugger.c
11706         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11707
11708 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11709
11710         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11711         while holding the assemblies lock to prevent deadlocks. Handle the case
11712         where the search hook returns NULL but the assembly was still loaded.
11713         Fixes #323696.
11714
11715         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11716         modify domain state.
11717
11718 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11719
11720         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11721         * Makefile.am (pedump_LDADD): Post-process object files and
11722         add dtrace-generated object file, if necessary.
11723
11724         Code is contributed under MIT/X11 license.
11725
11726 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11727
11728         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11729
11730 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11731
11732         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11733
11734 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11735
11736         * threads.c: Try to free everything from the delayed free table
11737         when shutting down threads, and set the variable to NULL after the
11738         table is freed so that calling
11739         mono_thread_hazardous_try_free_all() when shutting down the root
11740         domain doesn't crash.
11741
11742 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11743
11744         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11745         the caller if resulting type was inflated.
11746
11747         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11748         was inflated.
11749
11750         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11751
11752
11753 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11754
11755         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11756         class library tests.
11757
11758         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11759         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11760         #396989.
11761
11762 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11763
11764         * domain.c, domain-internals.h: The JIT infos are now freed by the
11765         JIT info table code.  They are freed immediately if there only a
11766         single JIT info table in circulation.  If there is more, the free
11767         is delayed via a queue.
11768
11769         * threads.c, threads-types.h: New hazard pointer function for
11770         freeing all freeable delayed items in one sitting.
11771
11772 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11773
11774         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11775
11776         * reflection.c (typebuilder_setup_properties): Same.
11777
11778         * reflection.c (typebuilder_setup_events): Same.
11779
11780 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11781
11782         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11783         and use it for allocating memory.
11784
11785         * reflection.c (mono_marshal_spec_from_builder): Same.
11786
11787         * reflection.c: Change code to use new signatures.
11788
11789         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11790
11791 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11792
11793         * decimal.c (rescale128): Put back one line which was accidently commented
11794         out.
11795         
11796         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11797         to cause crashes.
11798
11799 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11800
11801         * reflection.c (mono_reflection_generic_class_initialize): Name must
11802         be always malloc'ed so we can free it later on. Do this for field, property
11803         and event.
11804
11805         * metadata.c (free_generic_class): Free field, property and event names.
11806
11807 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11808
11809         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11810         instead of g_memdup.
11811
11812         * reflection.c (typebuilder_setup_fields): Same.
11813
11814 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11815
11816         * decimal.c (rescale128): Optimize this function a bit more.
11817
11818 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11819
11820         * metadata.c (free_generic_class): Release some memory from
11821         SRE generic classes.
11822
11823 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11824
11825         * reflection.c (mono_image_get_generic_field_token): No reference
11826         to name is kept, free it.
11827
11828         * reflection.c (mono_reflection_generic_class_initialize): Free
11829         more memory of the inflated field.
11830
11831 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11832
11833         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11834         code.
11835
11836 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11837
11838         * reflection.c (mono_dynamic_image_free): Release memory used by
11839         MonoDynamicImage::array_methods elements.
11840
11841         * reflection.c (assembly_add_win32_resources): Release memory after
11842         encoding.
11843
11844 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11845
11846         * decimal.c (log2_32): Use an optimized version for this function too.
11847         
11848         * decimal.c (log2_64): Fix this on 32 bit machines.
11849
11850 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11851
11852         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11853
11854         * class.c (mono_metadata_signature_deep_dup): Same.
11855
11856         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11857         a mempool.
11858
11859         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11860
11861         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11862
11863         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11864
11865         * class-internals.h: Update signatures to take a MonoMemPool.
11866
11867 2008-06-02  Dick Porter  <dick@ximian.com>
11868
11869         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11870         * icall-def.h: Add
11871         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11872         FormatMessage API to get the error text.  Fixes bug 321827.
11873
11874 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11875
11876         * decimal.c: Add some micro optimizations to make decimal operations faster.
11877
11878 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11879
11880         * reflection.c (method_encode_clauses): Take a mempool
11881         as parameter and use it to allocate the clause array.
11882
11883         * reflection.c (mono_image_get_field_on_inst_token): Free
11884         the inflated type after encoding it.
11885
11886         * reflection.c (mono_dynamic_image_free): Free each element
11887         of MonoDynamicImage::gen_params.
11888
11889         * reflection.c (reflection_methodbuilder_to_mono_method):
11890         Allocate the generic param array from the mempool.
11891         Allocate signature params from the mempool.
11892
11893         * reflection.c (mono_reflection_generic_class_initialize):
11894         Free inflated fields after been used.
11895
11896 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11897
11898         * icall.c: Reapply the memory leak fixes as they no
11899         longer make mono crash.
11900
11901 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11902
11903         * reflection.c (mono_type_get_object): Don't store the suplied
11904         MonoType with type_hash. A caller which pass a type that
11905         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11906         might end with a pointer to freed memory.
11907         The solution is to use byval_arg or this_arg from the associated
11908         MonoClass of the supplied type.
11909
11910 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11911
11912         * icall.c: Revert the rest of the last change as it breaks the build too.
11913
11914 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11915
11916         * icall.c: Revert a leak fix as it's breaking the build.
11917
11918 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11919
11920         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11921
11922 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11923
11924         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11925
11926 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11927
11928         * icall.c: Fix some memory leaks.
11929
11930 2008-05-29  Dick Porter  <dick@ximian.com>
11931
11932         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11933         async socket operations from the pending list when a socket
11934         closes.  Leaving it until the threadpool services the event
11935         exposes a race condition when a socket descriptor is reused.
11936         Fixes bug 377589.
11937
11938 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11939
11940         * object.c: Fix negative index check for array alocation.
11941
11942 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11943
11944         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11945         This check is performed by the verifier for IL created delegates
11946         and by Delegate::CreateDelegate for programatically created ones.
11947         Fixes #372406.
11948
11949 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11950
11951         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11952         Fix code to use mono_array_size_t instead of int.
11953
11954         Based on patch by Luis F. Ortiz.
11955         Contributed under X11 license.
11956         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11957
11958 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11959
11960         * icall.c: Added ves_icall_System_Array_GetLongLength and
11961         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11962         arrays.
11963
11964         * icall.h: Export both new functions.
11965
11966         Based on patch by Luis F. Ortiz.
11967         Contributed under X11 license.
11968         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11969
11970 2008-05-28  Martin Baulig  <martin@ximian.com>
11971
11972         The debugger now requires exactly r103463.
11973
11974         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11975         This version is not supported by the debugger, wait for 72.
11976
11977 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11978
11979         * object.h: Changed array related functions to use
11980         mono_array_size_t instead of guint32. Forgot to commit this file.
11981
11982         Patch by Luis F. Ortiz.
11983         Contributed under X11 license.
11984         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11985
11986
11987 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11988
11989         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11990         don't define it. Use the number literal instead.
11991
11992 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11993
11994         * icall.c: Changed array related functions to use
11995         mono_array_size_t instead of guint32.
11996
11997         * icall.c (ves_icall_System_Array_GetLength): Check for length
11998         overflow under MONO_BIG_ARRAYS.
11999
12000         Based on patch by Luis F. Ortiz.
12001         Contributed under X11 license.
12002         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12003
12004 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12005
12006         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
12007
12008         Based on patch by Luis F. Ortiz.
12009         Contributed under X11 license.
12010         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12011
12012 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12013
12014         * object.c, object.h: Changed array related functions to use
12015         mono_array_size_t instead of guint32.
12016
12017         Patch by Luis F. Ortiz.
12018         Contributed under X11 license.
12019         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12020
12021 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12022
12023         * object.h: Introduced mono_array_size_t typedef. This must be used
12024         in all places an array length is expected. This is 64bits wide if
12025         MONO_BIG_ARRAYS is enabled.
12026
12027         Patch by Luis F. Ortiz.
12028         Contributed under X11 license.
12029         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12030
12031 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12032
12033         * security-manager.c class.c: Set the class exception info by calling
12034         mono_class_set_failure ().
12035
12036         * class.c (mono_class_get_exception_data): New accessor function.
12037         (mono_class_set_failure): Store exception_data in the property hash.
12038
12039         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
12040         the struct as a property.
12041
12042         * loader.c (mono_get_method_full): Store the lookup result for method
12043         tokens in method_cache, the others in methodref_cache to decrease the memory
12044         usage of hash tables.
12045
12046         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
12047         (mono_image_init): method_cache is lazy inited now.
12048
12049         * metadata-internals.h (struct _MonoImage): Change method_cache to
12050         a MonoValueHashTable, add a separate methodref_cache.
12051
12052 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
12053
12054         * number-formatter.h: Fix tables to avoid arithemtic overflow in
12055           Double.ToString as exposed by Bug #383531.
12056
12057 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12058
12059         * number-formatter.h: Make some tables static.
12060
12061         * class.c (mono_method_set_generic_container): New accessor function.
12062         (mono_method_get_generic_container): Ditto.
12063
12064         * class-internals.h (struct _MonoMethod): Remove rarely used 
12065         'generic_container' field, store it in the property hash instead. Add 
12066         'is_generic' boolean field instead.
12067
12068         * image.c (mono_image_init): Initialize property_hash.
12069         (mono_image_close): Destroy property_hash.
12070
12071         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
12072         hold rarely used fields of runtime structures belonging to this image.
12073
12074         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
12075         to get/set method->generic_container.
12076
12077         * loader.c (mono_get_method_from_token): Avoid loading the method header for
12078         generic methods.
12079
12080 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
12081
12082         * class.c (mono_class_inflate_generic_method_full): Don't increase
12083         mono_stats.inflated_method_count for methods found in the cache.
12084
12085         * threads.c (mono_thread_request_interruption): Add a comment about 
12086         QueueUserAPC ().
12087
12088 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12089
12090         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
12091         interface_offsets_packed table.
12092         
12093         * class.c (mono_class_init): Remove some dead code.
12094
12095         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
12096         mono_class_setup_vtable () when CAS is active to detect security problems.
12097
12098 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
12099
12100         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
12101
12102         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
12103         parameters as it's irrelevant for delegate checking.
12104
12105 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12106
12107         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
12108
12109         * class.c (mono_class_init): Control the creation of a generic vtable using
12110         a global which is true by default, but set to false by the runtime startup code.
12111         
12112         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
12113         Disabled for now since it breaks the embedding API.
12114         Move the setup of class->methods for arrays to mono_class_setup_methods ().
12115         (mono_class_setup_methods): Add a memory barrier.
12116
12117         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
12118         when mono_class_init () doesn't compute the generic vtable.
12119         
12120 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12121         * profiler.c: Added mono_profiler_install_statistical_call_chain,
12122         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
12123         to support call chains (backtrace) in the stat profiler.
12124         * profiler.c, profiler-private.h: Likewise.
12125
12126 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12127
12128         * generic-sharing.c: Init generic class when a method of it is
12129         requested via a runtime generic context.
12130
12131 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12132
12133         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
12134
12135         * reflection.c (mono_type_get_object): Add a FIXME.
12136
12137         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
12138
12139         * class.c (mono_class_get_method_by_index): New helper function, returning an
12140         entry in the class->methods array.
12141
12142 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12143
12144         * class.c (mono_class_init): Only do the array optimization for szarrays. 
12145         Avoid creating a generic vtable for generic instances as well.
12146         (mono_class_get_method_from_name_flags): Don't search in the metadata for
12147         generic instances.
12148
12149 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
12150
12151         * loader.c (mono_get_method_constrained): Inflate the signature
12152         with class context. Fix #325283.
12153
12154 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12155
12156         * object.c (mono_class_create_runtime_vtable): Add a comment.
12157
12158         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
12159         where needed.
12160         (setup_interface_offsets): Handle the case when this is called twice for arrays.
12161         (mono_class_setup_vtable_general): Add an assert.
12162         (mono_class_init): Avoid creating a generic vtable for arrays.
12163
12164         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
12165         here, let mono_class_init () do that.
12166
12167         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
12168         interfaces in mscorlib.
12169
12170         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
12171         interfaces. Add some comments.
12172         (mono_class_init): Call mono_class_setup_methods () here since it is no
12173         longer called by mono_class_setup_vtable ().
12174
12175         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
12176         not set in class->vtable.
12177         (mono_class_create_runtime_vtable): Reenable the disabled code.
12178
12179         * object.c (mono_class_create_runtime_vtable): Disable the last change for
12180         now as it causes some test failures.
12181
12182         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
12183         if using the vtable trampoline. Also remove some strange code which put the
12184         generic methods themselves into the vtable slots. Remove the AOT init_vtable
12185         stuff as it is no longer needed.
12186
12187 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
12188
12189         * pedump.c: Give make --verify all option check code as well.
12190         Using --verify code won't check for metadata now.
12191
12192 2008-05-19  Martin Baulig  <martin@ximian.com>
12193
12194         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
12195
12196         * mono-debug.c
12197         (_mono_debug_using_mono_debugger): New global variable; it's set
12198         directly by the debugger, so mono_debug_using_mono_debugger() also
12199         works after attaching.
12200
12201 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
12202
12203         * object.c (mono_class_create_runtime_vtable): Use memory barriers
12204         as we do double checked locking on MonoClass::runtime_info and
12205         MonoClassRuntimeInfo::domain_vtables.
12206
12207 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
12208
12209         * debug-helpers.c (print_field_value): Fix a warning.
12210
12211 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
12212
12213         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
12214         set in the AOT case.
12215
12216 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12217
12218         * class.c (mono_class_setup_vtable_general): Use memory barriers
12219         as we do double checked locking on MonoClass::vtable.
12220
12221 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12222
12223         * reflection.c (resolve_object): Inflate only if the generic context
12224         is not null. Fixes #389886.
12225
12226 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
12227
12228         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
12229         instead of g_free.
12230
12231         Code is contributed under MIT/X11 license.
12232
12233 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12234
12235         * class.c: Revert unrelated change.
12236
12237 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12238
12239         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
12240         a generic instantiation, use mono_class_from_mono_type instead of playing
12241         with MonoType directly.
12242
12243 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12244
12245         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
12246         checks must ignore generic instantiations, so mono_class_has_parent is not
12247         suitable. Fixes #390128.
12248
12249 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
12250
12251         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
12252         it to avoid registering tokens during metadata generation. Fixes #390023.
12253
12254 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12255
12256         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
12257         consistent.
12258
12259         Contributed under MIT/X11 license.
12260
12261 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12262
12263         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
12264         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
12265         to fixup the EXE image.
12266         (mono_cleanup): Use mono_close_exe_image.
12267         (mono_close_exe_image): New function.
12268         * image.c: Include "marshal.h".
12269         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
12270         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
12271         counting when the image is loaded outside of mono_image_open_full. Set status
12272         based on GetLastError.
12273         * coree.c: Include required headers. Add init_from_coree.
12274         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
12275         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
12276         (_CorExeMain): Set init_from_coree.
12277         (CorExitProcess): Only call ExitProcess for now.
12278         (CorBindToRuntimeEx): New stub implementation.
12279         (CorBindToRuntime): New function.
12280         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
12281         (MonoFixupExe): ILONLY executables require no fixups.
12282         (mono_set_act_ctx): New function to set activation context.
12283         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
12284         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
12285         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
12286         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
12287         as MONO_INTERNAL.
12288         * domain-internals.h: Add mono_close_exe_image.
12289
12290         Contributed under MIT/X11 license.
12291
12292 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
12293
12294         * metadata.c (mono_metadata_compute_size): Correctly calculate field
12295         size for generic param and event tables. Fixes #388977.
12296
12297 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
12298
12299         * loader.c (mono_method_signature): Use memory barriers because of the double
12300         checked locking pattern.
12301
12302         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
12303         aborting or aborted as well. Fixes #376391.
12304         
12305         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
12306         existing runtime state in the Suspend handler during shutdown.
12307
12308 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
12309
12310         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
12311
12312         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
12313         which are starting up or shutting down.
12314
12315         * threads.c (mono_threads_set_shutting_down): Don't return a value since
12316         this function never returns if the runtime is already shutting down.
12317
12318         * icall.c (ves_icall_System_Environment_Exit): Update after 
12319         mono_threads_set_shutting_down () signature change.
12320         
12321 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
12322
12323         * class.c: Added can_access_instantiation to verify if the instantiation
12324         is visible. Fix access check for nested types as they returned TRUE
12325         before doing type and generic instantiation visibility checks.
12326
12327 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12328
12329         * reflection.c (mono_reflection_create_generic_class): The created type
12330         must have a different container from its TypeBuilder. Otherwise they
12331         will end sharing generic arguments, which is wrong.
12332
12333         Due to the sharing, making a generic instance of the created type using
12334         the TypeBuider generic arguments resulted in the generic type definition
12335         been returned, which is wrong as well.
12336
12337         As a bonus the code was leaking the type_params array. This memory should
12338         be allocated from the image mempool.
12339
12340         This fixes bug #354047.
12341
12342 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12343
12344         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
12345         to here         as they are now used in assembly.c new code.
12346         Added a skipverification flag to MonoAssembly.
12347         New internal function mono_assembly_has_skip_verification.
12348
12349         * assembly.c: New function mono_assembly_has_skip_verification. It checks
12350         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
12351         part of #387274.
12352
12353 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12354
12355         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
12356         needed. Fixes #387034.
12357
12358         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
12359
12360 2008-05-06  Miguel de Icaza  <miguel@novell.com>
12361
12362         * assembly.c (mono_assembly_load_reference): Prevent crash while
12363         disassembling Silverlight 2.0 executables while we still do not
12364         have GACed libraries.
12365
12366 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12367
12368         * reflection.c: Special case generic type definitions as well. Fixes #383444.
12369
12370 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
12371
12372         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
12373         of the dynamic case. Fixes #387404.
12374
12375 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12376
12377         *verify.c (mono_verifier_is_class_full_trust): If under
12378         verify_all and the verifier mode was not set, only
12379         gac and corlib types are fulltrust. This makes --verify-all
12380         usable to detect unverifiable code, which is the expected
12381         use case.
12382
12383 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12384
12385         * verify.h: Ops, commited the header with debug
12386         enabled.
12387
12388 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12389
12390         * verify.c (merge_stack): Use the new value on unverifiable
12391         stack merges.
12392
12393         * verify.c (verify_type_compatibility_full): Comparison
12394         of nullable types can't use mono_class_is_assignable_from.
12395
12396         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12397         that makes all verification errors be reported.
12398
12399         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12400         mono_method_verify.
12401
12402 2008-05-05  Robert Jordan  <robertj@gmx.net>
12403
12404         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12405         support for value types. See #386415.
12406
12407         * object.c: comments.
12408
12409         Code is contributed under MIT/X11 license.
12410
12411 2008-05-05  Martin Baulig  <martin@ximian.com>
12412
12413         * debug-mono-symfile.h
12414         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12415         for old pre-terrania symbol files.
12416
12417 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12418
12419         * mono-config.c: Add ppc64 architecture.
12420
12421         Code is contributed under MIT/X11 license.
12422
12423 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12424
12425         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12426           PPC64 uses function descriptors as well.
12427
12428         Code is contributed under MIT/X11 license.
12429
12430 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12431
12432         * object.c (compute_class_bitmap): Ignore literal static fields.
12433
12434         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12435         var has an invalid format.
12436         (describe_ptr): Add some sanity checks for the vtable.
12437         (add_nursery_frag): Clear unused nursery fragments.
12438         (major_collection): Clear all remaining nursery fragments.
12439
12440 2008-05-03  Robert Jordan  <robertj@gmx.net>
12441
12442         * image.c, metadata-internals.h: add thunk_invoke_cache.
12443
12444         * marshal.c, marshal.h: implement
12445         mono_marshal_get_thunk_invoke_wrapper ().
12446
12447         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12448
12449         Code is contributed under MIT/X11 license.
12450
12451 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12452
12453         * verify.c (do_leave): Empty the stack.
12454
12455 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12456
12457         * class.c (mono_class_is_assignable_from): Variance
12458         doesn't work between reference and value types. For example,
12459         given type C<T+>, C<int32> is not assignable to C<object>.
12460         Break the argument checking loop on first error. 
12461
12462 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12463
12464         * icall.c : base64_to_byte_array() needs some more strict
12465           check for sequence of '=' characters. Patch by Santa
12466           Marta (http://deee.g.hatena.ne.jp/santamarta).
12467
12468           Contributed under MIT/X11 license.
12469           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12470
12471 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12472
12473         * domain.c: Disable LoadLibrary support to fix Win32 build.
12474
12475         Code is contributed under MIT/X11 license.
12476
12477 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12478
12479         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12480         to help with cache behaviour.
12481
12482 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12483
12484         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12485         method. 
12486
12487 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12488
12489         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12490
12491 2008-05-01  Dick Porter  <dick@ximian.com>
12492
12493         * process.c (process_get_fileversion): Only pass 16 bits of
12494         language ID to VerLanguageName.  Fixes bug 381204.
12495
12496 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12497
12498         * verify.c (mono_method_verify): Fix the comparison
12499         operator for code bounds check.
12500
12501 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12502
12503         * verify.c (mono_method_verify): Check the bounds of
12504         all access of the code array.
12505
12506 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12507
12508         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12509
12510 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12511
12512         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12513         not valid.
12514
12515 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12516
12517         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12518         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12519         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12520         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12521         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12522         mono_runtime_load.
12523         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12524         runtime initialization from metadata.
12525         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12526         (mono_set_rootdir): Use mono_get_module_file_name.
12527         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12528         handles.
12529         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12530         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12531         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12532         MonoCLIImageInfo. Add support for module handles.
12533         (load_cli_header): Update mono_cli_rva_image_map signature.
12534         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12535         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12536         (mono_image_rva_map): Add support for module handles.
12537         (mono_image_ensure_section_idx): Add support for module handles.
12538         (mono_image_close): Add support for module handles.
12539         (do_load_header): Add support for module handles.
12540         (mono_image_open_from_module_handle): New function for internal use.
12541         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12542         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12543         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12544         handles.
12545         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12546         * image.h: Add mono_image_fixup_vtable.
12547         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12548         support.
12549         * coree.h: New file.
12550         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12551         unsupported native code.
12552         (mono_marshal_set_callconv_from_modopt): New function splitted from
12553         mono_marshal_get_managed_wrapper.
12554         (mono_marshal_get_managed_wrapper): Use
12555         mono_marshal_set_callconv_from_modopt.
12556         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12557         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12558         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12559         that results in a deadlock when the runtime is loaded in _CorDllMain.
12560         * Makefile.am: Add coree.c and coree.h.
12561
12562         Contributed under MIT/X11 license.
12563
12564 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12565
12566         * generic-sharing.c: Search for type arguments in array element
12567         types as well.
12568
12569 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12570
12571         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12572
12573         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12574
12575         * object.c: Don't setup the RGCTX when the vtable is created,
12576         because we're setting it up lazily now.
12577
12578 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12579
12580         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12581         64 bit support.
12582
12583 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12584
12585         * verify.c (verify_class_for_overlapping_reference_fields): 
12586         If class is under fulltrust allow reference types to overllap
12587         if they have the same RVA.
12588
12589 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12590
12591         * pedump.c: Added new flag valid-only, that makes the verifier
12592         behaves just like --security=validil. It won't fail type load
12593         due to unverifiable restrictions.
12594
12595 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12596
12597         * class-internals.h (struct MonoMethod): Added a verification_success
12598         field to cache verifier executions. Reduced MonoMethod:slot size by
12599         one bit.
12600
12601 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12602
12603         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12604         instead of a 'vt' argument to save an indirection and to allow these to be used
12605         for valuetypes.
12606         (scan_vtype): New helper function to scan an area using a gc descriptor.
12607         (mono_gc_wbarrier_value_copy): Implement this.
12608         (handle_remset): Add support for REMSET_VTYPE.
12609         (find_in_remset_loc): Ditto.
12610         (mono_gc_base_init): Allow some debugging options to be controlled through the
12611         use of the MONO_GC_DEBUG env variable.
12612         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12613         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12614
12615 2008-04-23  Martin Baulig  <martin@ximian.com>
12616
12617         * domain.c (mono_domain_create): Move the call to
12618         mono_debug_domain_create() down, after allocating the domain id.
12619
12620 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12621
12622         verify.c (verify_class_for_overlapping_reference_fields): Skip
12623         static fields while verifying for overlapping fields as they
12624         don't matter at all.
12625
12626 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12627
12628         * domain-internals.h: added a declaration of
12629         mono_make_shadow_copy.
12630
12631         * assembly.c (mono_assembly_open_full): shadow copying of
12632         assemblies moved to here, so that all the assemblies within the
12633         application domain's private binary directories can be
12634         processed. Fixes bug #380546
12635
12636         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12637         mono_make_shadow_copy and made non-static. The decision whether
12638         to shadow-copy an assembly is made based on its location - it's
12639         copied if it's in one of the private application domain binary
12640         directories and its different to the target file in the shadow
12641         directory. Fixes bug #380546
12642
12643 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12644
12645         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12646
12647         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12648         types.
12649
12650         * reflection.c (mono_image_create_token): Handle 
12651         Method/ConstructorOnTypeBuilderInst.
12652         (resolve_object): Ditto.
12653         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12654         so it can be called from resolve_object. Also handle the case when the inflated
12655         class already has its methods setup.
12656
12657 2008-04-21  Martin Baulig  <martin@ximian.com>
12658
12659         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12660
12661 2008-04-20  Geoff Norton  <gnorton@novell.com>
12662
12663         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12664         pointer dereference.
12665
12666 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12667
12668         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12669         portability API to look up the assembly file. Fixes behavior in
12670         situations when the application has a bin/ directory, but the
12671         assembly search patch refers to Bin/ (and thus the requested file
12672         name is Bin/SomeLibrary.dll). Fixes bug #379888
12673
12674 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12675
12676         verify.c (mono_type_is_generic_argument): Extracted this check
12677         from a dozen places to here.
12678
12679         verify.c: Fixed all issues related to boxing generic arguments
12680         and their constraints.
12681
12682 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12683
12684         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12685
12686 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12687
12688         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12689         isn't finished yet. Fixes #363447.
12690
12691 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12692
12693         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12694         Fixes #346419.
12695
12696 2008-04-13  Jb Evain  <jbevain@novell.com>
12697
12698         * domain.c: update the 2.1 profile versions.
12699         Merged from the Moonlight 2 branch.
12700
12701 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12702
12703         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12704         mscorlibs for the non-refonly case as well.
12705
12706         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12707         in mono_assembly_load_from_full (). Fixes #378924.
12708
12709 2008-04-11  Geoff Norton  <gnorton@novell.com>
12710
12711         * icall.c: The global extern environ doesn't exist on Mac.  We
12712         need to call NSGetEnviron instead.
12713
12714 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12715
12716         verify.c: Add generic method constraint verification.
12717
12718 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12719
12720         class.c (mono_class_inflate_generic_method_full): Add a long
12721         explanation to the is_mb_open hack. Remove the FIXME.
12722
12723 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12724
12725         * verify.c (mono_method_verify): Mark all unknown opcodes
12726         as invalid. Mark jmp as unverifiable.
12727
12728 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12729
12730         * verify.c: Add code to do type constraint verification on class instances.
12731
12732         * verify.c (mono_verifier_verify_class): Use the type constraint 
12733         verification code.
12734
12735 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12736
12737         * class.c (mono_class_get_field_default_value): Don't pass cindex
12738         as hint to mono_metadata_get_constant_index. The local is not initialized
12739         and should contain garbage most of the time. This could only work
12740         with a lot of luck.
12741
12742 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12743
12744         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12745
12746 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12747
12748         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12749
12750         * class.c (mono_class_from_generic_parameter): Save the token of the
12751         generic param in MonoClass::sizes.generic_param_token.
12752
12753         * reflection.c (mono_custom_attrs_from_class): If the class type is
12754         VAR or MVAR retrieve the attributes of the generic param.
12755
12756 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12757
12758         * class.c (mono_class_init): Do class verification if the verifier
12759         is enabled.
12760
12761 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12762
12763         * verify-internal.h: Added mono_verifier_verify_class.
12764
12765         * verify.c: Added mono_verifier_verify_class. It checks for
12766         classes with explicit layout that have overlapping reference fields.
12767
12768         * pedump.c: Init the verifier state prior to verification. Fixed
12769         command line arguments.
12770
12771 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12772
12773         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12774
12775 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12776
12777         * verify-internals.h: Fix a warning.
12778
12779 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12780
12781         * verify-internals.h: New header with the verifier configuration
12782         extracted from mini.c.
12783
12784         * verify.c: Implemented the new functions exported by verify-internals.h.
12785
12786 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12787
12788         * verify.c: Add proper verification of ckfinite.
12789
12790 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12791
12792         * verify.c (do_conversion): Improved error message to something
12793         more meanfull.
12794
12795         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12796         with primitive types.
12797
12798 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12799
12800         * verify.c: Added tail prefix checking. Marked icall
12801         as unverifible.
12802
12803 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12804
12805         * verify.c: Fix the detection of branches to the middle
12806         of an instruction.
12807
12808 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12809
12810         * verify.c: Implemented verification of volatile. and
12811         unaligned. prefix. Check if a type is valid after retrieving it.
12812
12813 2008-04-01  Dick Porter  <dick@ximian.com>
12814
12815         * process.c (process_get_fileversion): If there's no string block,
12816         set the file language to en_US.  Fixes the other new part of bug
12817         374600.
12818
12819 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12820
12821         * class.c: New functions mono_method_can_access_field_full and
12822         mono_method_can_access_method_full. They perform type visibility
12823         and type site check.
12824
12825         * class-internal.h: Added exported functions.
12826
12827         * verify.c: Use new functions to implement proper visibility checks.
12828
12829 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12830
12831         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12832
12833 2008-03-28  Dick Porter  <dick@ximian.com>
12834
12835         * process.c (process_get_fileversion): Use the first language ID
12836         we see, rather than insisting on an invariant language.  Fixes bug
12837         374600.
12838
12839 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12840
12841         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12842         the streams to fix reading of invalid memory later.
12843
12844         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12845         to ease debugging.
12846
12847 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12848
12849         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12850         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12851
12852 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12853         * threads.h: Added MonoThreadManageCallback type and
12854         mono_thread_set_manage_callback prototype
12855         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12856         (used to store the mono_thread_manage callback).
12857         * threads.c: Added mono_thread_set_manage_callback, and handle
12858         "MonoThread->manage_callback" in build_wait_tids.
12859
12860 2008-03-26  Dick Porter  <dick@ximian.com>
12861
12862         * process.c (process_get_fileversion): Set FileVersionInfo strings
12863         to Empty when the resource doesn't have the particular info.
12864         Fixes bug 355717.
12865
12866 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12867
12868         * verify.c (mono_method_verify): Proper prefix validation.
12869
12870 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12871
12872         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12873         itself in a separate argument instead of throwing them. Fixes #373448.
12874
12875         * appdomain.c: Bump corlib version.
12876
12877 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12878
12879         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12880
12881 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12882
12883         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12884         version macros.
12885
12886 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12887
12888         * generic-sharing.c, class-internals.h: Code for putting
12889         reflection types into the runtime generic context.
12890
12891 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12892
12893         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12894         Fixes #340662. 
12895
12896
12897 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12898
12899         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12900
12901         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12902
12903         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12904
12905         * verify.c (do_cast): Let the result value keep the boxed status.
12906
12907         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12908
12909 2008-03-17  Jb Evain  <jbevain@novell.com>
12910
12911         * reflection.c: when running on a 2.0 runtime, emit
12912         unconditionally the #~ header version as 2.0, and the
12913         CLI header version as 2.5, for symmetry's sake with csc.
12914
12915 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12916
12917         * class.c: Remove the unused cache_interface_offsets stuff.
12918
12919         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12920         profiler.c: Fix warnings.
12921
12922 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12923
12924         * generic-sharing.c, class-internals.h: Support for putting
12925         methods into the runtime generic context.
12926
12927 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12928
12929         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12930         classes which are generic instances of not-yet finished typebuilders. Fixes
12931         #351172.
12932
12933         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12934
12935 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12936
12937         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12938
12939         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12940         field, replace it with a hash table in MonoDynamicImage.
12941
12942         * reflection.c (inflate_mono_method): Access the generic definition object from
12943         image->generic_def_objects instead of imethod->reflection_info.
12944
12945         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12946
12947         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12948         
12949         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12950         function in reflection.c so it is easier to keep in sync with the dynamic image
12951         creation code.
12952
12953         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12954         mono_image_close ().
12955
12956 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12957
12958         * class.c (mono_class_generic_sharing_enabled): Disable generic
12959         sharing for all architectures except AMD64 and x86 to fix build.
12960
12961 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12962
12963         * verify.c: Use the generic definition MonoGenericContext when available.
12964         Remove code for checking generics instance compatibility in favor of
12965         mono_class_is_assignable_from.
12966
12967 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12968
12969         * marshal.c, marshal.h, metadata-internals.h, image.c,
12970         wrapper-types.h: New wrapper for invoking a shared static method
12971         without having to pass the runtime generic context argument.
12972
12973 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12974
12975         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12976
12977 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12978
12979         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12980         
12981         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12982         create a token from a FieldOnTypeBuilderInst.
12983         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12984         (resolve_object): Ditto.
12985
12986         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12987         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12988
12989 2008-03-14  Martin Baulig  <martin@ximian.com>
12990
12991         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12992
12993         * debug-mono-symfile.h
12994         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12995         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12996
12997 2008-03-10  Martin Baulig  <martin@ximian.com>
12998
12999         * debug-mono-symfile.h
13000         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
13001         `lexical_block_table_offset'.
13002         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
13003         `lexical_blocks'.
13004         (MonoSymbolFile): Added `version'.
13005
13006         * mono-debug.h
13007         (MonoDebugLexicalBlockEntry): Removed.
13008         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
13009         `lexical_blocks'.
13010
13011         * mono-debug.c (mono_debug_add_method): Don't compute lexical
13012         blocks here; the debugger now does this internally.
13013
13014 2008-02-27  Martin Baulig  <martin@ximian.com>
13015
13016         * object.c (mono_runtime_exec_main): Call
13017         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
13018         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
13019
13020 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13021
13022         * verify.c (verify_type_compatibility_full): Allow native int to be converted
13023         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
13024
13025 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13026
13027         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
13028         ldftn with a virtual method.
13029
13030 2008-03-13  Geoff Norton  <gnorton@novell.com>
13031
13032         * decimal.c:  Only include memory.h if the platform has it.
13033
13034 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
13035
13036         * assembly.c, class.c, metadata-internals.h: make sure public key
13037         tokesns are compared in a case-insensitive way. Also, all
13038         the lookups in the GAC use a lowercase public key token
13039         (gaacutil already does the lowercasing on install). Fixes
13040         bug #369541.
13041
13042 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
13043
13044         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
13045         and return value.
13046
13047 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
13048
13049         * image.c: when someone loads a mscorlib from a file, return the
13050         currently loaded mscorlib (fixes bug #369253).
13051
13052 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13053
13054         * class.c: handle types with no parents by forcing them to have
13055         System.Object as a parent and marking them as broken (this currently
13056         allows the first part of bug #369173 to work as well, likely because
13057         we don't check for typeload exceptions everywhere yet).
13058
13059 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
13060
13061         * class.c: more complete check that types belong to corlib
13062         (fixes second part of bug #369173).
13063
13064 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
13065
13066         * generic-sharing.c:  Including glib.h for the MSVC builds to define
13067           "inline" to "__inline" before including mono-membar.h.
13068           
13069         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
13070           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
13071           MSVC builds.
13072
13073         Contributed under MIT/X11 license.
13074
13075 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13076
13077         * verify.c (do_invoke_method): Remove return type validation.
13078
13079         * verify.c (do_ret): Do return type validation at return site instead of
13080         call site.
13081
13082 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13083
13084         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
13085
13086         * verify.c: Some todos cleaned and improved a few error messages.
13087
13088 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
13089
13090         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
13091
13092 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13093
13094         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
13095         system types correctly.
13096
13097         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
13098         function.
13099
13100 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13101
13102         * assembly.c (build_assembly_name): Fix a warning.
13103
13104 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
13105
13106         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
13107         the called function takes an object type argument. Fixes storing or
13108         valuetypes across remoting as well as reducing memory usage.
13109         * image.c, metadata-internals.h: remove now unused ldfld_remote and
13110         stfld_remote wrapper caches.
13111
13112 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13113
13114         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
13115         is not found.
13116
13117         * reflection.c (mono_image_register_token): New helper function to save
13118         a token->object mapping.        
13119
13120         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
13121         managed code.
13122
13123         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
13124         one dimension arrays. Fixes #367670.
13125         (mono_reflection_get_type_internal): Ditto.
13126
13127 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
13128
13129         * marshal.c: mono_load_remote_field_new() always returns object.
13130         so use the proper signature (fixes bug #366445).
13131
13132 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13133         
13134         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
13135         add an 'inline_failure' flag instead.
13136
13137 2008-03-04  Mark Probst  <mark.probst@gmail.com>
13138
13139         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
13140         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
13141         contains the location of "this", used for exception handling.
13142
13143 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13144
13145         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
13146         their size on all platforms for perf reasons.
13147
13148 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13149
13150         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
13151         object-internal.h
13152
13153         * object-internal.h: Same.
13154
13155 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13156
13157         * reflection.h: Fix the build I just broke.
13158
13159 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13160
13161         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
13162         Test if a token is valid, this remove explicit usage of 
13163         MonoDynamicImage::tokens from the verifier code.
13164
13165         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
13166
13167         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
13168         instead of direct access to MonoDynamicImage::tokens.
13169
13170 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13171
13172         * verify.c (token_bounds_check): Fix the build I just broke.
13173
13174 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13175
13176         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
13177
13178         * verify.c (verifier_load_method): Fixed the errors message.
13179
13180         * verify.c (mono_method_verify): Fixed a debug message.
13181
13182 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
13183
13184         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
13185         mono-perfcounters.h, class-internals.h: support for predefined
13186         writable counters, query of categories and counters, bugfixes.
13187
13188 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13189
13190         * verify.c (do_refanytype): Verify the refanytype opcode.
13191
13192         * verify.c (mono_method_verify): Use do_refanytype.
13193
13194 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13195
13196         * verify.c (do_mkrefany): Verify the mkrefany opcode.
13197
13198         * verify.c (mono_method_verify): Use do_mkrefany.
13199
13200 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
13201
13202         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
13203         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
13204         implementation.
13205
13206 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13207
13208         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
13209         the type load exception.
13210
13211 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
13212
13213         * verify.c: Added a few FIXME for method signatures
13214
13215         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
13216         of mono_method_get_signature and get vararg call working. Removed unused
13217         checks for return value.
13218
13219         * verify.c (do_refanyval): Verify the refanyval opcode.
13220
13221         * verify.c (mono_method_verify): Implemented verification of arglist and
13222         use do_refanyval.
13223
13224 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13225
13226         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
13227         vtypes to marshal.c.
13228
13229         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
13230         it works for AOT as well.
13231
13232 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13233
13234         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
13235         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
13236         the system time is adjusted.
13237
13238 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
13239
13240         * icall.c, icall-def.h: use the new time functions (fixes the
13241         non-monotonic behaviour of TickCount).
13242
13243 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
13244
13245         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
13246         it breaks the build.
13247         
13248         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
13249         cattr is not finished yet.
13250
13251 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13252
13253         * verify.c: Proper token validation for field, method and type.
13254
13255 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13256
13257         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
13258
13259         * loader.c (method_from_memberref): Generate type load error instead of method missing
13260         if the type is not found.
13261
13262 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
13263
13264         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
13265         some of the conversions caused the generation of a marshal directive exception.
13266
13267 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13268
13269         verify.c: Report which exception should be thrown by the JIT.
13270         Added a lot of FIXME notes.
13271
13272 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13273
13274         * generic-sharing.c: Runtime generic context slots are not
13275         instantiated on init anymore.  Instead, provide function to do the
13276         instantiating on demand.
13277
13278         * class-internals.h: Added vtable to runtime generic context.
13279         Macros for encoding direct and indirect slot offsets in one
13280         guint32.
13281
13282 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13283
13284         * object.c, generic-sharing.c: Moved some generic sharing code
13285         from object.c to generic-sharing.c.
13286
13287         * generic-sharing.c: Added support for extensible runtime generic
13288         context.
13289
13290         * metadata-internals.h: Two new hash tables in MonoImage for
13291         extensible runtime generic context support.
13292
13293         * domain.c: Unregister generic vtables upon domain unloading.
13294
13295         * image.c: Destroy new hash tables upon image unloading.
13296
13297         * metadata.c: Unregister generic subclasses upon image unloading.
13298
13299         * class-internals.h: New data structure for runtime generic
13300         context template.  New fields in the runtime generic context for
13301         extensible part.
13302
13303         * Makefile.am: Added generic-sharing.c.
13304
13305 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13306
13307         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
13308         there is a pending loader exception, raise it.
13309
13310         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13311         same.
13312
13313         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
13314         same.
13315
13316         Fixes #363450.
13317
13318 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13319
13320         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
13321
13322         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
13323         
13324         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
13325         ref-only requests for compatibility with MS.
13326
13327 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13328
13329         * reflection.c (mono_custom_attrs_from_method): Don't silently
13330         return an empty list for generic method instances.
13331         (mono_custom_attrs_from_param): Likewise.
13332
13333 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
13334             Raja R Harinath  <harinath@hurrynot.org>
13335
13336         Fix #354757
13337         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
13338         * class.c (mono_class_inflate_generic_method_full): Initialize it
13339         when a fully-open method is instantiated.
13340         * metadata.c (inflated_method_equal, inflated_method_hash): Update
13341         to new field.
13342         * reflection.c (inflate_mono_method): Don't create a temporary context.
13343
13344 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13345
13346         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13347         Compute correct value, to prepare for imethod->reflection_info going away.
13348
13349 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13350
13351         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
13352
13353 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13354
13355         * verify.c: Implement skip visibility flag.
13356
13357 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13358
13359         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
13360         which contains an extra field to tell the kind of exception that should be thrown.
13361
13362         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
13363
13364 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
13365
13366         * loader.c (mono_method_get_param_names): Initialize 'klass' after
13367         'method' is updated.
13368
13369 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
13370
13371         * class.c (mono_class_layout_fields): Set class->min_align for classes using
13372         explicit layout as well. Fixes #360375.
13373
13374 2008-02-11  Geoff Norton  <gnorton@novell.com>
13375
13376         * loader.c: Guard and dereference against inflated generic methods
13377
13378 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
13379
13380         * class.c: Include Retargetable spec in assembly name.
13381         * assembly.c: Always include PublicKeyToken spec in assembly name
13382         (with value "null" if assembly is not signed), and include
13383         Retargetable spec.
13384         * icall-def.h: Added icall for Assembly.get_fullname.
13385         * icall.c: Added icall returning the fullname of an assembly.
13386
13387 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13388
13389         * class.c (mono_class_setup_vtable_general): Add a missing call to
13390         mono_class_setup_methods () which is needed in the AOT case.
13391
13392 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13393
13394         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13395         stack type of the given MonoType.
13396
13397         * verify.c (verify_type_compatibility_full): Handle the void type.
13398
13399         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13400         way stack merging works.
13401
13402         * verify.c (store_local): Improved verification message.
13403
13404         * verify.c (do_branch_op): If the merging is invalid, the method
13405         is unverifiable and not invalid. Improved error message.
13406
13407         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13408         a reference type diferent than System.Object. Improved error
13409         message.
13410
13411 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13412
13413         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13414
13415         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13416         type of an enum even if the argument is byref.
13417
13418         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13419         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13420
13421         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13422
13423         *verify.c (verify_type_compatibility_full): Make enum types
13424         compatible with their base types.
13425
13426         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13427         types are compatible for the special case of a boxed valuetype and
13428         System.Object.
13429
13430         * verify.c (verify_stack_type_compatibility): The function
13431         is_compatible_boxed_valuetype was extracted from here.
13432
13433         * verify.c (push_arg): Only set ctx->has_this_store if the method
13434         is not static.
13435
13436         * verify.c (do_ldelem): Fixed a typo in an error message and added
13437         strict check for mixing int32 and native int as the array type
13438         and ldelem type.
13439
13440         * verify.c (merge_stacks): Consider boxed valuetypes in the
13441         compatibility checks.
13442
13443 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13444         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13445
13446 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13447         *class.c: use_new_interface_vtable_code: renamed the env var to have
13448         a "MONO_" prefix, and fix the logic to enable it by default.
13449
13450 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13451         *class.c:
13452         mono_class_setup_vtable_general: rewrote the way in which interface
13453         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13454         makes the code more maintainable.
13455         For now the old code is still there, and can be activated setting
13456         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13457
13458 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13459
13460         * verify.c: guarded some debug functions around and #ifdef.
13461
13462         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13463
13464 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13465
13466         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13467         changes for now since they seem to break too many things.
13468
13469 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13470
13471         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13472         mono_marshal_find_nonzero_bit_offset): Added macro and function
13473         for finding the byte- and bit-offset of a bitfield within a
13474         struct.
13475
13476 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13477
13478         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13479         (mono_marshal_get_struct_to_ptr): Ditto.
13480
13481         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13482         cctor_signature.
13483
13484 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13485
13486         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13487         between methods for non-corlib types.
13488
13489 2008-02-02  Geoff Norton  <gnorton@novell.com>
13490
13491         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13492         generic parameters as well. (Fixes #342536)
13493
13494 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13495
13496         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13497
13498         * verify.c (do_invoke_method): Fix for calling with byref structs.
13499
13500         * verify.c (do_cast): push a boxed value type based on the type token and not
13501         the type of stack.
13502
13503 2008-01-31  William Holmes  <billholmes54@gmail.com>
13504
13505         * process.c (process_module_string_read): Check the size returned form 
13506           VerQueryValue to avoid out of memory exception. 
13507
13508 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13509
13510         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13511         Handle properly modules which are not in the moduleref table. Fixes
13512         #356938.
13513
13514 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13515
13516         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13517         the dynamic case which is now in managed code.
13518         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13519
13520         * marshal.c (mono_string_to_bstr): Fix a warning.
13521         (init_com_provider_ms): Ditto.
13522
13523         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13524
13525         * exception.c (mono_get_exception_out_of_memory): New helper function.
13526
13527 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13528
13529         * marshal.c: Add support for BSTR marshalling
13530         using other COM systems.
13531
13532         Code is contributed under MIT/X11 license.
13533
13534 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13535
13536         * object.c (mono_runtime_invoke_array): reverted previous
13537         commit as it breaks the build.
13538
13539 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13540
13541         * object.c (mono_runtime_invoke_array): Verify arguments for
13542         invalid types. Fixes #348522.
13543
13544 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13545
13546         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13547         non-final virtual calls using call. 
13548
13549         * verify.c (do_invoke): fixed some TODOs.
13550
13551         * verify.c (push_arg): set has_this_store for "ldarga 0".
13552
13553 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13554
13555         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13556         which belong to an inflated class. Fixes #356531.
13557
13558 2008-01-26  Robert Jordan  <robertj@gmx.net>
13559
13560         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13561         which resort to FindFirstFile when a certain error condition
13562         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13563         Code is contributed under MIT/X11 license.
13564
13565 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13566
13567         * marshal.c (emit_marshal_string): Fix out string marshalling
13568         to use specified encoding. Fixes #323900.
13569
13570         Code is contributed under MIT/X11 license.
13571
13572 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13573
13574         * class.c (mono_class_inflate_generic_method_full): Don't modify
13575         iresult->context after cache check.
13576
13577 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13578
13579         * class.c (mono_class_inflate_generic_method_full): Change the
13580         struct assignments to memcpy for better visibility and add some comments.
13581
13582 2008-01-23  Dick Porter  <dick@ximian.com>
13583
13584         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13585         procedure, and make it work on windows.
13586
13587 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13588
13589         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13590         a MonoReflectionTypeBuilder since it is always of that type.
13591
13592         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13593
13594         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13595
13596         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13597         
13598         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13599
13600         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13601
13602         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13603         instantiations from the type cache.
13604
13605 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13606
13607         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13608
13609         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13610
13611 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13612
13613         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13614
13615         * verify.c (mono_method_verify): removed old TODO
13616
13617 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13618
13619         * verify.c (do_newobj): add visibility check.
13620
13621 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13622
13623         * verify.c (do_load_function_ptr): add visibility check.
13624
13625 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13626         *class.c:
13627         mono_generic_class_get_class: hook profiler events.
13628         mono_field_get_offset: added to support heap-shot in the new profiler.
13629         *class.h: exported mono_field_get_offset.
13630         * reflection.c:
13631         mono_reflection_setup_internal_class: hook profiler events.
13632
13633 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13634
13635         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13636         argument here too and use it to avoid checking for pending exceptions if 
13637         possible.
13638
13639 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13640
13641         * assembly.c (build_assembly_name): add arg for passing the assembly
13642         flags. Do not consider a PublicKey with value "null" valid.
13643         (mono_assembly_name_parse_full): added boolean argument that will be
13644         set if the assembly name contains a PublicKeyToken spec. Added support
13645         for the Retargetable spec for which only Yes or No are allowed as valid
13646         value. Consider assembly name invalid if Retargetable spec is set, but
13647         either version, culture or public key (token) are not specified.
13648         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13649         with implementation in assembly.c.
13650         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13651         from MonoAssemblyName.
13652         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13653         introduced argument for mono_assembly_name_parse_full to know if the
13654         assembly name has a PublicKeyToken spec, and if it has instruct
13655         fill_reflection_assembly_name to use default value for keyToken (if
13656         PublicKeyToken is null).
13657
13658 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13659
13660         * verify.c (mono_method_verify): fixed ovf ops with
13661         float values. They are unverifiable now.
13662
13663 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13664
13665         * class.c (set_failure_from_loader_error): add BadImageException to the
13666         list of exceptions that can cause a type to fail to load.
13667
13668         * class.c (mono_class_get_exception_for_failure): same.
13669
13670 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13671
13672         * verify.c (in_any_exception_block): added, check if offset
13673         is part of any exception handling clause.
13674
13675         * verify.c (get_stack_type): added VAR and MVAR types.
13676
13677         * verify.c (do_stobj): better error messages.
13678
13679         * verify.c (do_cpobj): added, check cpobj.
13680
13681         * verify.c (do_initobj): added, check initobj.
13682
13683         * verify.c (do_sizeof): added, check sizeof.
13684
13685         * verify.c (do_localloc): added, check localloc.
13686
13687         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13688
13689 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13690
13691         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13692         save_lmf/restore_lmf opcodes.
13693
13694         * threads.c (mono_threads_install_notify_pending_exc): New function to
13695         install a callback notifying the JIT there is a pending exception on a thread.
13696         (mono_thread_request_interruption): Call the new callback.
13697         (mono_thread_get_and_clear_pending_exception): New function to return the
13698         exception pending on a thread.
13699
13700         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13701         to turn off checking for pending exceptions.
13702         (mono_marshal_get_native_wrapper): Ditto.
13703
13704 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13705
13706         * threads-types.h: Get rid of the unnecessary extern declarations.
13707
13708 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13709
13710         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13711         return field from parent class if not private.
13712         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13713         returns fields from parent class if they are not private.
13714         (method_nonpublic): added function to determine if a given method
13715         should be considered non-public. Returns false for private methods
13716         on parent class, and internal methods from parent on the 1.0 profile.
13717         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13718         use method_nonpublic function to determine whether method should be
13719         returned.
13720         (property_accessor_public): use newly introduced method_nonpublic
13721         function to determine whether accessor is non-public. 
13722         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13723         event from parent class if not private. Only return static event if
13724         Static flag is set, and only return static event from parent class if
13725         FlattenHierarchy flag is set.
13726         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13727         include non-private events from parent class.
13728
13729 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13730
13731         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13732         warning.
13733
13734 2008-01-16  Wade Berrier <wberrier@novell.com>
13735
13736         * security.c: Add assembly.h header to appease some warnings
13737
13738 2008-01-16  Dick Porter  <dick@ximian.com>
13739
13740         * process.c (process_module_string_read): Remove trailing null
13741         when saving string.
13742
13743 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13744
13745         * class-internals.h: A new data structure describing the layout of
13746         a runtime generic context (MonoRuntimeGenericContextTemplate).
13747
13748         * metadata-internals.h: Added a hash table to MonoDomain that maps
13749         from open generic classes to their runtime generic context
13750         templates.
13751
13752         * object.c: Building of the runtime generic context, including
13753         proper handling of generic type arguments of superclasses.
13754         Building of the runtime generic context according to the template.
13755
13756 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13757
13758         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13759         Fixes #350856.
13760
13761         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13762         mono_portability_find_file (). Fixes #325466.
13763         (mono_image_get_public_key): Fix a warning.
13764
13765 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13766
13767         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13768         Fixes #353550.
13769         (mono_class_from_name_case): Ditto.
13770
13771 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13772
13773         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13774           common storage for the tables used in the System/NumberFormatter class.
13775
13776 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13777
13778         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13779
13780 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13781
13782         * verify.c (get_boxable_mono_type): check if the token is valid.
13783
13784         * verify.c (set_stack_value): changed to add an error if an
13785         invalid type is set on stack. Changed all callers due to signature change.
13786
13787         * verify.c (do_stobj): implement stobj validation.
13788
13789 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13790
13791         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13792         set container->is_method, it was set earlier.
13793
13794         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13795         generic methods.
13796
13797         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13798         is_method of the generic container to TRUE for methods.
13799
13800 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13801
13802         * metadata.c (type_in_image): Handle type parameters properly.
13803
13804         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13805         memory ownership of this structure.
13806
13807 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13808
13809         * verify.c (get_boxable_mono_type): make typedref types been just
13810         unverifiable. check for void type.
13811
13812         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13813
13814         * verify.c (do_load_function_ptr): accept method spec tokens.
13815
13816 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13817
13818         * marshal.c (mono_class_native_size): Always set *align even if this is called
13819         recursively.
13820
13821 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13822
13823         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13824         out-of-date.
13825
13826 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13827
13828         * verify.c: removed some old unused tables. A huge bunch of small fixes
13829         to things found while testing the verifier with mono basic.
13830
13831         * verify.c (dump_stack_value): dump null literal flag to.
13832
13833         * verify.c (verify_type_compatibility_full): fix comparison
13834         for types that have a generic super type.
13835
13836         * verify.c (verify_stack_type_compatibility): fix compatibility
13837         between null literals and reference types. fix compatibility between
13838         boxed valuetypes and object. fix corner case test for enums.
13839
13840         * verify.c (do_cmp_op): proper verification of cgt.un in case
13841         of reference types.
13842
13843         * verify.c (do_invoke_method): fix error message.
13844
13845         * verify.c (do_store_indirect
13846
13847         * verify.c (check_is_valid_type_for_field_ops): proper verification
13848         of managed pointers to valuetypes and boxed valuetypes. proper verification
13849         of null literals.
13850
13851         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13852         allow token to be a reference type.
13853
13854         * verify.c (do_cast): proper handling of boxes valuetypes.
13855
13856         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13857         in object[].
13858
13859         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13860         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13861         fixed the decoding of unbox_any
13862
13863 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13864
13865         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13866
13867 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13868
13869         * verify.c (do_newobj): do delegate verification.
13870
13871         * verify.c (verify_delegate_compatibility): perform delegate
13872         verification.
13873
13874         * verify.c (verify_ldftn_delegate): perform tests related to
13875         ldftn delegates.
13876
13877         * verify.c (mono_delegate_signature_equal): perform the
13878         slightly diferent signature comparison required by delegates.
13879
13880         * metadata.c (mono_metadata_type_equal_full): added and exported
13881         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13882         allows signature only comparison.
13883
13884         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13885         as MONO_INTERNAL.
13886
13887 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13888
13889         * verify.c: added a bunch of stack_slot_* functions to
13890         make access to stack slot type easier. This is required to
13891         allow optional flags, like null literal, boxed value and
13892         this pointer.
13893         All access paths to IlStackDesc::stype have been changed 
13894         to use these new funcions.
13895         Removed a bunch of unused functions and cleared all warnings.
13896         This patch introduces the usage of the this pointer and 
13897         boxed value flags.
13898
13899 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13900
13901         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13902
13903 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13904
13905         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13906         match managed version.
13907
13908         * appdomain.c: Bump corlib version.
13909         
13910         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13911         argument.
13912
13913 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13914
13915         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13916         Set public key token to zero-length byte array if assembly is not
13917         strongnamed.
13918
13919 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13920
13921         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13922         writing a vtype array elem.
13923
13924 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13925
13926         * assembly.c (build_assembly_name): return FALSE if length of token is
13927         not 16 (if not "null").
13928         (mono_assembly_name_parse_full): return FALSE if value of version,
13929         culture, token or key is 0.
13930         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13931         specify whether public key and public key token must be set to default
13932         value (zero-length byte array) if not available. Set versioncompat to
13933         SameMachine. If public key is available or the default is set, then
13934         set PublicKey flag.
13935         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13936         is available, use empty byte array as default value. On the 2.0
13937         profile, use default value for public key token if not set.
13938         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13939         profile, use default value for public key if not set. On the 2.0
13940         profile, use default value for public key token if not set.
13941         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13942         default values for public key and public key token.
13943
13944 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13945
13946         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13947         field to keep it in synch with the managed object.
13948
13949         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13950         delegates. Fixes #351520.
13951
13952         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13953         contains defined memory.
13954         
13955         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13956
13957         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13958         
13959         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13960         of the GC data structures.
13961
13962         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13963
13964         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13965         
13966         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13967         barrier.
13968         (mono_array_clone_in_domain): Ditto.
13969         (mono_array_clone_in_domain): Ditto.
13970
13971         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13972         (cache_culture): Use a write barrier.
13973
13974         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13975         (ves_icall_get_property_info): Ditto.
13976
13977         * object.h (MONO_STRUCT_SETREF): New macro.
13978
13979         * class-internals.h (MonoStats): Add some GC statistics.
13980
13981         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13982
13983 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13984
13985         * exception.c (mono_exception_from_name_two_strings):
13986         Break from loop after method is found.
13987
13988 2008-01-04  Dick Porter  <dick@ximian.com>
13989
13990         * process.c (process_module_string_read): Rename variable to
13991         reflect correct usage, after fixing bug 345972.
13992
13993 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13994
13995         * verify.c (mono_type_create_fnptr_from_mono_method): 
13996         created a MonoType function pointer instance to be used during
13997         verification. The verifier releases this memory at end.
13998
13999         * verify.c (mono_method_is_constructor): extracted repeated
14000         checks for constructor into a single class.
14001
14002         * verify.c (do_push_field): use new extracted method
14003         for constructor check.
14004
14005         * verify.c (do_newobj): same.
14006
14007         * verify.c (do_ldftn): renamed to do_load_function_ptr
14008         and make it verify ldvirtftn too.
14009
14010         * verify.c (mono_method_verify: proper verification
14011         of ldvirtftn. release created MonoMethod instances.
14012
14013 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14014
14015         * verify.c (token_bounds_check): added.
14016
14017         * verify.c (do_ldftn): added.
14018
14019         * verify.c (mono_method_verify): proper verificartion of ldftn.
14020
14021 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14022
14023         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
14024         than the table row count. It's the resposibility of the caller to
14025         make the bounds check and raise the correct error.
14026
14027         * metadata.c (mono_metadata_decode_row_col): Same.
14028
14029         * loader.c (mono_get_method_from_token): perform bounds check
14030         on token for methoddef table.
14031
14032 2007-12-29  Miguel de Icaza  <miguel@novell.com>
14033
14034         * icall.c
14035         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
14036         assert into a negative result, the managed code already coped with
14037         that.
14038
14039         Some folks on Windows reported this error. 
14040
14041 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
14042
14043         * appdomain.c: Bump corlib version.
14044         * icall.c:
14045         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
14046         CultureInfo.CreateCulture to create CultureInfo for name.
14047         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
14048         create CultureInfo for name. Fixes bug #347174.
14049
14050 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14051
14052         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
14053         flags.
14054
14055         * verify.c (is_valid_branch_instruction): allow branching to the
14056         first instruction of the protected block.
14057
14058         * verify.c (is_valid_cmp_branch_instruction): same.
14059
14060         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
14061         avoid double initialization.
14062
14063         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
14064         detect which cases the eval stack should just be copied.
14065
14066         * verify.c (mono_method_verify): check if the eval stack
14067         is empty when entering a protected block.
14068
14069 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14070
14071         * verify.c: added is_clause_in_range, is_clause_inside_range,
14072         is_clause_nested and verify_clause_relationship. They perform
14073         the verifications stated in P1 12.4.2.7.
14074
14075         * verify.c (mono_method_verify): remove some unused variables,
14076         add the new exception clause checks, add instruction border
14077         checks for protected block start/end, improved some error 
14078         messages and fixed a bug in the way invalid instruction access
14079         is detected.
14080
14081 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
14082
14083         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
14084         from GC 7.0 if available.
14085
14086         * object.c: Remove an unused define.
14087         
14088         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
14089
14090         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
14091
14092         * null-gc.c (mono_gc_make_descr_for_array): Implement.
14093
14094         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
14095
14096         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
14097         to take the same arguments as the other make_descr functions.
14098
14099         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
14100
14101         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
14102         directly.
14103
14104         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
14105         mini.c.
14106
14107         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
14108         call to boehm-gc.c.
14109
14110         * boehm-gc.c (mono_gc_register_root): Fix a warning.
14111
14112         * null-gc.c (mono_gc_register_root): Fix a warning.
14113
14114         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
14115
14116         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
14117         (mono_gc_base_init): Call GC_init ().
14118
14119         * null-gc.c: Define mono_gc_register_root () as a no-op.
14120
14121         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
14122
14123 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
14124
14125         * verify.c: add prototype for merge_stacks at top
14126
14127         * verify.c (do_switch): added.
14128
14129         * verify.c (merge_stacks): on some cases the stack merging
14130         was not happening properly. Unequal stack sizes at merge
14131         points should be invalid.
14132
14133         * verify.c (mono_method_verify): added more debug info on stack state.
14134         verify switch properly.
14135
14136 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
14137
14138         * method-builder.h: New file, moved the mono_mb_ declarations here from 
14139         marshal.h.
14140
14141         * boehm-gc.c marshal.c: Include method-builder.h.
14142
14143         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
14144
14145         * marshal.c: Remove some code which is now in method-builder.c.
14146
14147 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
14148
14149         * method-builder.c: New file, extraction of the method builder functionality 
14150         from marshal.c.
14151
14152         * marshal.c: Move the mb functions into method-builder.c.
14153
14154         * marshal.h marshal.c: Export some mono_mb_... functions.
14155
14156         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
14157
14158         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
14159         the caller.
14160
14161         * class.c (mono_class_get_full): Check the token type in the dynamic case.
14162
14163         * loader.c (mono_field_from_token): Ditto.      
14164
14165         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
14166         type as well.
14167         
14168         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
14169         Fixes #342565.
14170
14171         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
14172         a helper function for setting it.
14173
14174         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
14175
14176         
14177         * assembly.c: Significally simplify code now that referenced assemblies are 
14178         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
14179
14180         * threads.h: Don't include  the internal threads-types.h header file. Fixes
14181         #349952.
14182
14183 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
14184
14185         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
14186         instructions that were target of branches or are at protected block boundaries.
14187
14188         * verify.c (in_same_block): handle filter clauses.
14189
14190         * verify.c (is_valid_branch_instruction): added. checks the target of
14191         instructions br or brtrue/false.
14192
14193         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
14194         binary branch instructions such as beq and bge.
14195
14196         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
14197         and made it pin the instruction as been part of the exception block.
14198
14199         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
14200         of in_same_block.
14201
14202         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
14203         of in_same_block.
14204
14205         * verify.c (do_ret): ret from a protected block is unverifiable and
14206         not invalid.
14207
14208         * verify.c (do_static_branch): verify br and br.s instructions.
14209
14210         * verify.c (merge_stacks): add extra param to support detection
14211         of branches in the middle of instructions.
14212         
14213         * verify.c (mono_method_verify): verify branches and exception blocks
14214         that target the middle of instructions. Proper verification of br and br.s.
14215
14216 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
14217
14218         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
14219         skip_visibility field.
14220         (reflection_methodbuilder_from_dynamic_method): Ditto.
14221
14222         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
14223         registrations. Fixes #348193.
14224
14225         * threads.h: Move the internal mono_thread_get_pending_exception () to
14226         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
14227
14228 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
14229
14230         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
14231         icall registration. Fixes #348193.
14232
14233         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
14234         for corlib classes into object. Fixes #349621.
14235
14236 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
14237
14238         * icall.c (property_accessor_nonpublic): new function to determine
14239         whether an accessor allows a property to be considered non-public.
14240         Returns false for private accessor(s) from parent class, and internal
14241         accessor(s) from parent on 2.0 profile (and higher).
14242         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
14243         to determine whether property should be included if NonPublic flag
14244         is set. Fixes bug #349078.
14245
14246 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
14247
14248         * verify.c (init_stack_with_value): added.
14249
14250         * verify.c (mono_method_verify): extracted common
14251         code for exception initialization into init_stack_with_value.
14252
14253         * verify.c (mono_method_verify): initialize the exception
14254         for handler clauses as well.
14255
14256         * verify.c (mono_method_verify): fix the exception clause
14257         ordering rules, it should use handler end offset and not
14258         start offset.
14259
14260 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
14261
14262         * rawbuffer.c: remove useless warning.
14263
14264 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
14265
14266         * threads.h, threads-types.h: move functions to the correct header
14267         (fixes bug#349952).
14268
14269 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14270
14271         * verify.c (mono_method_verify): proper verification
14272         of exception handling clauses ranges and fallthru in
14273         and out of protected blocks.
14274
14275 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14276
14277         * verify.c (mono_method_verify): fixed compilation issue.
14278
14279 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14280
14281         * verify.c (mono_method_verify): a printf slipped in, changed
14282         to use verifier debug macro.
14283
14284 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
14285
14286         * verify.c (is_correct_leave): check for filter clauses.
14287
14288         * verify.c (do_filter): added.
14289
14290         * verify.c (mono_method_verify): property verification of leave.
14291
14292
14293 2007-12-18  Mark Probst  <mark.probst@gmail.com>
14294
14295         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
14296         Win32 build, until we figure out how to do the proper thing on
14297         Win32.
14298
14299 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
14300
14301         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
14302         by the previous patch.
14303         
14304         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
14305         the assembly resolve handler for refonly assemblies.
14306
14307 2007-12-17  Mark Probst  <mark.probst@gmail.com>
14308
14309         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
14310         Make sure only one thread is allowed to commence shutdown, and
14311         don't allow new threads to be started once shutdown is in
14312         progress.
14313
14314 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
14315
14316         * verify.c (is_correct_endfilter): added.
14317
14318         * verify.c (is_unverifiable_endfilter): added.
14319
14320         * verify.c (do_endfilter): added.
14321
14322         * verify.c (mono_method_verify): property verification of endfilter
14323         and fixed a corner case or endfinally.
14324
14325 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
14326
14327         * verify.h: new flags to support fail fast of unverifiable code and
14328         do non-strict verification. Non-strict verification is required to
14329         have MS runtime compatibility. There are a huge amount of unverifiable
14330         code that it accepts as verifiable. The strict mode verifies the code
14331         as the specs says.
14332         Non-strict mode will be required in cases where code needs to be
14333         accepted as verifiable but fails under strict mode.
14334
14335         * pedump.c: added support to fail fast and non-strict verification.
14336
14337         * verify.c: added support for both fail fast and non-strict verification.
14338
14339 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
14340
14341         * verify.c (is_correct_endfinally): added.
14342
14343         * verify.c (mono_method_verify): property verification of endfinally.
14344
14345 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14346
14347         * verify.c (in_any_block): check for filter clauses.
14348
14349         * verify.c (is_correct_rethrow): added.
14350
14351         * verify.c (mono_method_verify): property verification of rethrow.
14352
14353         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
14354
14355 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14356
14357         * verify.c (do_throw): added.
14358
14359         * verify.c (mono_method_verify): property verification of throw
14360
14361 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
14362
14363         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
14364         assemblies. Fixes #346425.
14365
14366 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
14367
14368         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
14369         FieldBuilders.
14370
14371         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
14372
14373         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
14374         prevent asserts when this is called with a token which might not be valid.
14375
14376         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
14377         lookup_dynamic_token_class with valid_token == FALSE.
14378
14379         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
14380
14381         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
14382
14383         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14384         
14385 2007-12-10  Mark Probst  <mark.probst@gmail.com>
14386
14387         * gc.c: Don't delay threadpool thread finalization unless Mono is
14388         shutting down.
14389
14390 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14391
14392         * threads.c: turn an assert into a non-fatal warning.
14393
14394 2007-12-09  Robert Jordan  <robertj@gmx.net>
14395
14396         * icall.c (GetVirtualMethod): Add missing argument validation.
14397
14398 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14399
14400         * verify.c (do_cast): added.
14401
14402         * verify.c (mono_method_verify): property verification of castclass and isinst.
14403
14404
14405 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14406
14407         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14408
14409         * verify.c (do_stelem): added.
14410
14411         * verify.c (mono_method_verify): property verification of stelem.X.
14412
14413 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14414
14415         * class.c, class-internals.h: Introduce an environment variable
14416         (MONO_GENERIC_SHARING) through which the extent of generic code
14417         sharing can be controlled (share all classes, share only corlib
14418         classes, or share nothing).
14419
14420         * object.c: Only create runtime generic context for classes for
14421         which sharing is enabled.
14422
14423 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14424
14425         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14426
14427         * verify.c (mono_method_verify): property verification of ldelem.any.
14428
14429 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14430
14431         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14432         added ldelem.X opcodes.
14433
14434         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14435
14436         * verify.c: proper verification of ldelem.X 
14437
14438 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14439
14440         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14441
14442 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14443
14444         * verify.c (mono_method_verify): null literal requires special handling,
14445         the value pushed on stack need to be flagged as so.
14446
14447         * verify.c (do_ldelema): Verify ldelema properly.
14448
14449 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14450
14451         * verify.c: Verify ldlen properly.
14452
14453 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14454
14455         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14456         to the target object's type. Fixes #346160.
14457
14458 2007-12-05  Dick Porter  <dick@ximian.com>
14459
14460         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14461         Solaris needs the same workaround as BSD-derived systems.  Fixes
14462         bug 323524, patch by Burkhard Linke
14463         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14464
14465 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14466
14467         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14468         handle to use when error dialog is shown; otherwise, update mask
14469         to show no error dialog when an error occurs.
14470
14471 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14472
14473         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14474
14475         * class.c (mono_class_get_field_default_value): New helper function to initialize
14476         field->def_type and field->data.
14477
14478 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14479
14480         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14481         the general one.
14482
14483         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14484
14485         * marshal.c: Avoid depending on delegate->method_info being set.
14486
14487         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14488         
14489         * object.c (mono_delegate_ctor): Set delegate->method.
14490
14491         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14492
14493         * appdomain.c: Bump corlib version.
14494
14495 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14496
14497         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14498         equality check if we're comparing canonicalized MonoGenericInsts.
14499
14500 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14501
14502         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14503         accessing class->methods.
14504
14505 2007-11-22  Dick Porter  <dick@ximian.com>
14506
14507         * threads.c: Ensure that the synch_cs is set before trying to use
14508         it.
14509
14510 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14511
14512         * profiler.c: r89126 broke the statistial profiler, unbreak.
14513
14514 2007-11-22  Martin Baulig  <martin@ximian.com>
14515
14516         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14517
14518         * mono-debug.c
14519         (mono_debug_debugger_version): Bump to 3.
14520         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14521         -> mono_debugger_class_initialized().
14522
14523         * mono-debug-debugger.c
14524         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14525
14526         * class.c
14527         (mono_debugger_start_class_init_func): Removed.
14528         (mono_debugger_class_loaded_methods_func): Added.
14529         (mono_class_setup_methods): Call it here.
14530
14531 2007-11-22  Martin Baulig  <martin@ximian.com>
14532
14533         * mono-debug.c
14534         (mono_debug_add_delegate_trampoline): New public method.
14535         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14536
14537         * mono-debug.h
14538         (MonoSymbolTable): Added `global_data_table'.
14539         (MonoDebuggerTypeKind): Removed.
14540
14541 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14542
14543         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14544         these methods.
14545
14546         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14547         
14548 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14549
14550         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14551
14552 2007-11-20  Martin Baulig  <martin@ximian.com>
14553
14554         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14555
14556         * mono-debug-debugger.c
14557         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14558         (mono_debugger_remove_breakpoint): Likewise.
14559         (mono_debugger_check_breakpoints): Likewise.
14560         (mono_debugger_register_class_init_callback): New public method.
14561         (mono_debugger_remove_class_init_callback): Likewise.
14562         (mono_debugger_add_type): Likewise.
14563
14564         * mono-debug-debugger.h
14565         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14566
14567 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14568
14569         * class.c: more interface implementations needed for the
14570         array enumerator (fixes bug #341112).
14571
14572 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14573
14574         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14575         fix ParamName of ArgumentNullExceptions.
14576
14577 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14578
14579         * reflection.c (mono_reflection_encode_sighelper): Generate the
14580         modopts and modreqs.   I have a useless test that crashes monodis,
14581         but that shows the code working.
14582
14583 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14584
14585         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14586         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14587
14588 2007-11-15  Dick Porter  <dick@ximian.com>
14589
14590         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14591         When joining a thread, it's the thread that's calling Join that
14592         gets WaitSleepJoin state not the target.  Fixes the standalone
14593         test case in bug 334740, and hopefully the whole bug too.
14594
14595 2007-11-15  Dick Porter  <dick@ximian.com>
14596
14597         * process.c: Read file version info from the files pointed at by
14598         process modules, not the current process.  Fixes bug 315969.
14599
14600         Use windows typedef names in some places to fix warnings on the
14601         windows build.
14602
14603 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14604
14605         * image.c, metadata-internals.h: Added a generic_class_cache hash
14606         to MonoImage for looking up generic classes when sharing generics.
14607
14608 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14609
14610         * sgen-gc.c: warning cleanups.
14611
14612 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14613
14614         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14615         inherited properties.
14616
14617 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14618
14619         * object.c, class-internals.h: Added more information to the
14620         runtime generic context.
14621
14622 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14623
14624         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14625         instead of just the target method. Generalize the abstract method handling to
14626         handle any non-static method.
14627
14628         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14629         mono_marshal_get_delegate_invoke () signature change.
14630
14631 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14632
14633         * class.c, class-internals.h: Made
14634         mono_type_get_basic_type_from_generic () public.  Fixed member
14635         access check for shared generics.
14636
14637         * loader.c: Don't insert field into field cache if it's part of a
14638         non-inflated generic class.
14639
14640         * domain.c, domain-internals.h: The generic sharing context is now
14641         part of the jit info data structure.  Added two accessor
14642         functions.
14643
14644 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14645
14646         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14647         the array Get/Set/Address methods, since the JIT inlines them.
14648
14649         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14650
14651         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14652         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14653
14654         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14655         mono_marshal_get_delegate_invoke signature change.
14656
14657         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14658         an additional argument. Add support for invoking abstract methods.
14659
14660         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14661
14662         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14663
14664 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14665
14666         * class.c: Do field layout for open generic classes as well.
14667
14668 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14669
14670         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14671         other objects, because the threadpool is still around.  Put them
14672         in a list instead and after finalizing all other objects in the
14673         root domain shut down the thread pool and then finalize the
14674         threads.  Fixes bug #337383.
14675
14676         * threads.c, thread-types.h: New mono_thread_create_internal()
14677         function for marking a thread with the threadpool flag before it
14678         started.  Set synch_cs to NULL after freeing it.
14679
14680         * threadpool.c: Mark threadpool threads before they start.
14681
14682 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14683
14684         * reflection.h, reflection.c: don't export random functions
14685         and lazy load dbnull and missing objects.
14686
14687 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14688
14689         * class.c: Initialize COM types if COM interfaces
14690         are present (not just COM classes).
14691         
14692         Code is contributed under MIT/X11 license.
14693
14694 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14695         * reflection.c:
14696         create_dynamic_mono_image: hook module profiler events (dynamic case).
14697         mono_image_basic_init: hook assembly profiler events (dynamic case).
14698
14699 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14700         * profiler.c:
14701         simple_appdomain_unload: completely terminate the profiler
14702         instead of only processing the statistical samples.
14703         simple_shutdown: make sure this is really called exactly once,
14704         even in multithreaded applications, and always listen to
14705         appdomain events.
14706         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14707         here, the "[un]load" functions will do it.
14708         Fixes bugs #333791 and #325261.
14709
14710 2007-11-07  Geoff Norton  <gnorton@novell.com>
14711
14712         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14713         rather than depend on __APPLE__.
14714
14715 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14716
14717         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14718
14719 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14720
14721         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14722         UTF16 MonoString. Fix the crash from bug #335488
14723
14724 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14725
14726         * marshal.c: Correct (for non-Win32 OS) length != size in 
14727         mono_string_from_bstr. Fix #339530.
14728
14729 2007-11-06  Geoff Norton  <gnorton@novell.com>
14730
14731         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14732         to succeed
14733
14734 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14735
14736         * process.c: Added run-time GetProcessId API detection for Windows.
14737
14738 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14739
14740         * reflection.c  (mono_param_get_objects): If a parameter has the
14741         attribute [System.Runtime.InteropServices.Optional] we should
14742         set the DefaultValue of the ParameterInfo to be
14743         System.Reflection.Missing instead of DBNull.
14744
14745         See bug #339013.
14746
14747         (mono_get_reflection_missing_object): New method,
14748         returns the System.Reflection.Missing.Value singleton instance.
14749
14750 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14751
14752         * culture-info-table.h : regenerated.
14753
14754 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14755
14756         * icall.c: Use GetEnvironmentStrings on windows
14757         so we are using the same environment block as 
14758         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14759         #333740.
14760         
14761         Code is contributed under MIT/X11 license.
14762
14763 2007-10-31  Martin Baulig  <martin@ximian.com>
14764
14765         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14766
14767         * mono-debug-debugger.h
14768         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14769
14770 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14771
14772         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14773         classes.
14774
14775 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14776
14777         * culture-info-table.h : regenerated.
14778
14779 2007-10-30  Robert Jordan  <robertj@gmx.net>
14780
14781         * icall-def.h, icall.c:
14782         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14783
14784         Code is contributed under MIT/X11 license.
14785
14786 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14787
14788         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14789         inflated class instead of inflating them again.
14790         
14791         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14792         dynamic case.
14793
14794         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14795         Call setup_supertypes () after klass->parent is set.
14796         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14797
14798         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14799         for inflated instances of not yet created dynamic generic classes.
14800         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14801         times from inflated_method.
14802         (methodbuilder_to_mono_method): Ditto.
14803
14804 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14805
14806         * gc.c: code cleanup and removed old untested option of not creating the
14807         finalizer thread.
14808
14809 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14810
14811         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14812         creating a jump trampoline for dynamic methods.
14813
14814 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14815
14816         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14817         generic TypeBuilders when called from another method of the same type (bug #335131).
14818
14819
14820 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14821
14822         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14823         doesn't seem to work perfectly.
14824         
14825         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14826         called multiple times.
14827         (methodbuilder_to_mono_method): Ditto.
14828         (resolve_object): Inflate FieldBuilder's.
14829
14830 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14831
14832         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14833         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14834         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14835
14836 2007-10-26  Dick Porter  <dick@ximian.com>
14837
14838         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14839         Thread initialisation changes
14840
14841 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14842
14843         * verify.c: fix compatibility check between arrays and System.Array
14844
14845 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14846
14847         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14848         too. Fixes #336999.
14849
14850 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14851
14852         * object.c (mono_value_box): Use typed allocation here.
14853
14854 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14855
14856         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14857         trampoline instead of compiling the method right away.
14858
14859         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14860
14861 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14862
14863         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14864         related fields for dynamic classes. Fixes #334493.
14865
14866 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14867
14868         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14869         
14870         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14871
14872         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14873         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14874
14875         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14876
14877         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14878         if needed.
14879         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14880
14881 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14882
14883         * marshal.c: Use correct key when removing item
14884         from ccw_hash.
14885         
14886         Code is contributed under MIT/X11 license.
14887
14888 2007-10-17  William Holmes  <billholmes54@gmail.com>
14889
14890         *marshal.c: Adding a case to marshal booleans to U1
14891
14892         Code is contributed under MIT/X11 license.
14893
14894 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14895
14896         * class.c (mono_class_from_name): Search the modules compromising dynamic
14897         assemblies. Fixes #331601.
14898
14899 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14900
14901         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14902         exception if the type name contains an assembly component. Fixes #334203.
14903
14904         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14905         modules inside dynamic assemblies. Fixes #334200.
14906         
14907         * reflection.c: Set image->public_key and image->public_key_length;
14908
14909         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14910         fields.
14911
14912         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14913         
14914 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14915
14916         * metadata.c: Implemented correct comparing of generic classes.
14917         An inflated generic class can be equal to a non-inflated one if it
14918         is inflated with generic type variables as type arguments.  Fixes
14919         bug #333798.
14920
14921 2007-10-15  Dick Porter  <dick@ximian.com>
14922
14923         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14924         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14925         81646.
14926
14927         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14928         instead of a monitor lock.  This means that monitor_try_enter and
14929         co can set the thread state safely.
14930         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14931         thread_interrupt_requested, so interrupt actually works.
14932
14933         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14934         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14935         state accessor function
14936
14937 2007-10-15  Martin Baulig  <martin@ximian.com>
14938
14939         * mono-debug.h
14940         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14941         the debugger with the current runtime.
14942
14943 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14944
14945         * object.c, object-internals.h: added the ability to set a single
14946         trampoline for all the slots in a vtable.
14947
14948 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14949
14950         * marshal.c: deal with a possible race condition during multicast
14951         delegate invocation.
14952
14953 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14954
14955         * class.c: ensure value type methods don't have the synchronized
14956         flag set.
14957
14958 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14959
14960         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14961         breaks the build.
14962
14963 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14964
14965         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14966         to take an options parameter so that empty entries can be removed during
14967         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14968
14969 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14970
14971         * marshal.c: make sure we don't store the signature from a dynamic
14972         method into the runtime invoke cache (bug #327189).
14973
14974 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14975
14976         * marshal.c: make sure the wrapper methods are properly initialized.
14977
14978 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14979
14980         * metadata.c, metadata-internals.h: Generalized
14981         mono_type_stack_size() to mono_type_stack_size_internal() which
14982         takes an additional argument specifying whether it allows open
14983         types.
14984
14985 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14986
14987         * verify.c (do_invoke_method): handle typedbyref params
14988         correctly and check for unverifiable return values.
14989
14990         * verify.c (do_newobj): fix a warning.
14991
14992 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14993
14994         * verify.c: don't tread typedbyref as allways unverifable,
14995         so uses, like (ld/st)loc.0 are valid. verify for the cases
14996         that it matters, like boxing related operations.
14997
14998 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14999
15000         * verify.c: add verification of the newobj opcode. verification
15001         of delegate instantation still missing due ldftn and virldftn not
15002         pushing the function type on stack
15003
15004 2007-10-08  Mark Probst  <mark.probst@gmail.com>
15005
15006         * class-internals.h: Runtime generic context data structure
15007         definition.
15008
15009         * object.c: Initialization of runtime generic context at runtime
15010         vtable creation time.
15011
15012 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
15013         * class.c (mono_class_create_from_typedef,
15014         mono_class_from_generic_parameter, mono_ptr_class_get,
15015         mono_fnptr_class_get, mono_bounded_array_class_get)
15016         * domain.c (mono_domain_create, mono_domain_free)
15017         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
15018         * image.c (do_mono_image_load, mono_image_close):
15019         Hooked up load-unload profiler events.
15020
15021 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15022
15023         * domain.c: track statistics about the actual amount of native code
15024         allocated.
15025
15026 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15027
15028         * class.c: the valuetype enumerators don't have the additional
15029         supertypes interfaces.
15030
15031 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15032
15033         * class.c: need more interfaces setup for the IEnumerator<T>
15034         object created for arrays (tests/ienumerator-interfaces.2.cs).
15035
15036 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
15037
15038         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
15039
15040 2007-10-05  Alp Toker  <alp@atoker.com>
15041
15042         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15043         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15044         #315863.
15045
15046 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15047
15048         * verify.c (verify_type_compatibility_full): verification of
15049         compatibility improved, validates correctly non-strict checks between
15050         native int and I4 types different than (unsigned)int32.
15051
15052         * verify.c (do_store_indirect): added, do all verification of
15053         ldind.X opcodes. 
15054
15055         * verify.c (get_load_indirect_mono_type): renamed to
15056         get_indirect_op_mono_type, as it now returns the MonoType for 
15057         ldind.X and stind.X opcodes.
15058
15059 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15060
15061         * reflection.c: Fix the encoding of generic type definition for
15062         TypeBuilders.
15063
15064         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
15065         mono_image_typedef_or_ref but allows to specify if typespec lookups should
15066         be made. Typespec check is done prior to typeref cache lookup.
15067
15068         * reflection.c (mono_image_typedef_or_ref): now just delegate to
15069         mono_image_typedef_or_ref_full.
15070
15071         * reflection.c (encode_generic_class): encode the generic class
15072         directly instead of calling encode_type.
15073
15074         * reflection.c (encode_type): encode the generic type definition
15075         MonoClass as a generic instantiation.
15076
15077         * reflection.c (create_typespec): cache typespec tokens in
15078         the assembly->typespec cache. Don't create typespec for a generic
15079         instance MonoClass. Create typespec for the generic type defintion.
15080
15081         * reflection.c (create_generic_typespec): encode the generic
15082         class directly instead of calling encode_type.
15083
15084         * reflection.c (mono_image_create_token): encode the generic
15085         type definition not using a typespec for MonoType instances.
15086
15087
15088 2007-10-04  Raja R Harinath  <rharinath@novell.com>
15089
15090         Fix #328812
15091         * class.c (mono_image_init_name_cache): Don't return nested
15092         'protected internal' classes.
15093         (mono_class_from_name_case): Likewise.
15094
15095 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15096
15097         * icall-def.h, icall.c : get_bundled_machine_config() is now the
15098           common function used by both DefaultConfig in System.dll and
15099           InternalConfigurationHost in System.Configuration.dll.
15100
15101 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15102
15103         * class.c: automatically add to vectors only a few essential explicit
15104         generic interfaces. The rest of the interfaces that arrays should
15105         provide are currently implicitly added (but still not lazily, see the
15106         design in the discussion of bug#325495 for the details of what is
15107         needed for that). Additionally, implicit interfaces are assigned the
15108         same vtable slot as the explicit interfaces (as they are compatible):
15109         this enables huge memory savings since we don't need to instantiate
15110         as many memthods and as large vtables anymore. Also, Since
15111         GetEnumerator<T> returns an instance of a type that is required to
15112         support a similarly large set of interfaces as arrays, we add
15113         implicit interfaces and interface offset sharing support to those
15114         types, too. This change adds all the required interfaces so that
15115         the anonarray.cs test case in the bug report works (we don't add
15116         all the interfaces to arrays of arrays 3-level deep and more because
15117         of the memory requirements explained in the bug and since they are much
15118         less common: the lazy-loading support will enabled them to work, too).
15119
15120 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15121
15122         * verify.c (merge_stacks): major clean up, all type compatibility
15123         checks are done by verify_type_compatibility. This fix my earlier lack
15124         of understanding of the CLR type system and merge_stacks no longer looks
15125         scary.
15126
15127         * verify.c: fixed some bad spelling.
15128
15129 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15130
15131         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
15132         a given stack slock.
15133         
15134         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
15135         verify_type_compatibility_full. This removed a near indentical function and fixed
15136         handling of Int32 and IntPtr across all opcodes.
15137
15138 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15139
15140         * class.c: only vectors have the additional generic interfaces.
15141
15142 2007-10-01  Jonathan Chambers <joncham@gmail.com>
15143
15144         * mono-config.c: Use g_strcasecmp instead of
15145         strcasecmp like everywhere else to fix
15146         compilation with MSVC.
15147         
15148         Code is contributed under MIT/X11 license.
15149
15150 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15151
15152         * object.c, object-internals.h: refactored the IMT code to enable
15153         building a single slot at a time and lazily creating the IMT trampolines
15154         and thunks.
15155
15156 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
15157
15158         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
15159
15160         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
15161         Fixes #328501.
15162         
15163 2007-09-29  Raja R Harinath  <harinath@gmail.com>
15164
15165         * loader.c (method_from_methodspec): Rearrange to avoid
15166         un-necessary exposition.  Don't assert out if the method's
15167         declaring type is a generic type definition.
15168
15169 2007-09-28  Martin Baulig  <martin@ximian.com>
15170
15171         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
15172
15173 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15174
15175         * class-internals.h: optimize field layout of MonoClass to
15176         requires less cachelines at runtime and save a few bytes on 64 bit
15177         systems.
15178
15179 2007-09-28  Jb Evain  <jbevain@novell.com>
15180
15181         * reflection.c: when encoding type names in custom attributes,
15182         if the type is a closed generic type, its generic arguments
15183         have to be serialized as AssemblyQualifiedName, so that when
15184         they are deserialized, it's possible to re-create them properly.
15185         Fixes #329450.
15186
15187
15188 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15189
15190         * object.c, class-internals.h: added delegate-creation counter.
15191
15192 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15193
15194         * class.c: cleanup of the code that synthetizes interfaces for
15195         arrays in 2.0: saves quit a bit of corlib mempool memory.
15196         Code to fix bug #325495 ifdeffed out for now until the issues
15197         with memory usage and O(n^2) behaviour are fixed.
15198
15199 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15200
15201         * marshal.c: when possible, do not duplicate the name of the methods
15202         in the method builder and in the generated MonoMethod.
15203
15204 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15205         * verify.c: added support for type checking ldind_* opcodes.
15206
15207 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15208
15209         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
15210         which is used to distinguish the fully open instantiation of a TypeBuilder
15211         with the rest. This temporary hack is required to restore the property that
15212         the fully open instantiation is the same type of the generic type definition.
15213
15214         * class-internals.h (mono_generic_class_is_generic_type_definition):
15215         new function as part of the internal API.
15216
15217         * class.c (inflate_generic_type): return NULL when the generic inst is
15218         fully open. The fully open generic type is now the same as the generic type
15219         definition for non TypeBuilder types.
15220
15221         * class.c (mono_generic_class_get_class): removed assert since it is
15222         no longer valid, gklass->cached_class can point to the generic type definition.
15223
15224         * class.c (mono_generic_class_is_generic_type_definition): new.
15225
15226         * metadata.c (mono_generic_class_hash): added is_tb_open field
15227         to the hash calculation.
15228
15229         * metadata.c (free_generic_class): if the generic class is associated
15230         with the generic type definition, its field will come from the mempool and
15231         must not be freed.
15232
15233         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
15234         new, this function identifies the corner case of a TypeBuilder fully open
15235         instantiation.
15236
15237         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
15238         for lookup. Set gclass->cached_class to be the container class in case of
15239         the fully open instantiation of non TypeBuilder types.
15240
15241         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
15242         to compare generic classes.
15243
15244         * reflection.c (method_encode_methodspec): remove assert that
15245         no longer is valid.
15246
15247         * reflection.c (mono_reflection_generic_class_initialize): add
15248         an aditional assert to ensure the proper type is used.
15249
15250 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
15251
15252         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
15253         to enjoy it.
15254
15255 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15256
15257         * verify.c (push_arg): Fixed support for ldarga
15258         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
15259         MonoType used as first arg in case of instance calls.
15260
15261 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15262
15263         * verify.c: Support for verifying VAR and MVAR types, 
15264
15265 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
15266
15267         * icall.c (ves_icall_get_property_info): Set the reflected type of the
15268         accessors correctly.
15269
15270 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15271
15272         * threads.c: support OSX and other systems in
15273         mono_thread_get_stack_bounds (bug #328026).
15274
15275 2007-09-25  Martin Baulig  <martin@ximian.com>
15276
15277         * mono-debug.h
15278         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
15279
15280 2007-09-24  Martin Baulig  <martin@ximian.com>
15281
15282         * mono-debug.h
15283         (MonoDebugClassEntry): Moved the definition of this struct into
15284         mono-debug.c to make it private.
15285
15286         * mono-debug.c
15287         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
15288         type table per symbol file, we don't need to store the symfile id
15289         any longer.
15290
15291 2007-09-24  Martin Baulig  <martin@ximian.com>
15292
15293         Create one type table per symbol file, since a `MonoClass *' gets
15294         invalid when its image is unloaded.
15295
15296         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
15297         (MonoDebugHandle): Added `type_table'.
15298
15299 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15300
15301         * mempool.c, mempool.h: added mono_mempool_new_size () API
15302         to be able to specify a smaller initial size for the pool.
15303         Adjusted the code to slowly increase pool size before using
15304         the previous default size.
15305         * image.c: use a small initial size for image mempools.
15306
15307 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
15308
15309         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
15310         Fixes ##320990.
15311
15312         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
15313         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
15314
15315 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
15316
15317         * metadata.c (mono_type_create_from_typespec): Remove an invalid
15318         free. Fixes #327438.
15319
15320 2007-09-21  Raja R Harinath  <harinath@gmail.com>
15321
15322         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
15323         generic instantiations, etc.
15324         <MONO_TYPE_ARRAY>: Likewise.
15325
15326 2007-09-21  Martin Baulig  <martin@ximian.com>
15327
15328         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
15329         these structs were never defined.
15330         (MonoDebugHandle): Removed the `_priv' field, it was never used.
15331
15332 2007-09-21  Martin Baulig  <martin@ximian.com>
15333
15334         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
15335
15336 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
15337
15338         * image.c: removed the guid hash tables: we can get the same info
15339         without the additional memory usage hit (partially fixes also bug #327052).
15340
15341 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15342
15343         * profiler.h, profiler-private.h, profiler.c: add a new profiler
15344         event to handle unloading methods. After the event is called, the
15345         corresponding MonoMethod* must be considered invalid.
15346         * loader.c (mono_free_method): call the new mono_profiler_method_free
15347         event.
15348
15349 2007-09-20  Mark Probst  <mark.probst@gmail.com>
15350
15351         * domain-internals.h: New flag in MonoJitInfo which marks shared
15352         generic methods.  New hash table (shared_generics_hash) in
15353         MonoDomain to keep track of shared generic methods.  Prototypes
15354         for functions to register and lookup shared generic methods.
15355
15356         * domain.c: Support for registering and looking up shared generic
15357         methods via a hash table (shared_generics_hash) in MonoDomain.
15358
15359         * class-internals.h: New exception to signal failure of shared
15360         compilation of a generic method.  New counters for generics
15361         sharing in MonoStats.
15362
15363 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15364
15365         * image.c, metadata-internals.h: don't keep a file descriptor open
15366         for loaded assemblies (bug#325988).
15367
15368 2007-09-19  Raja R Harinath  <rharinath@novell.com>
15369
15370         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
15371         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
15372         use the corresponding datatypes.
15373         (type_in_image): Update to changes.
15374         (CleanForImageUserData): Simplify.
15375         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
15376         Avoid quadratic behaviour in handling the "stolen" list by
15377         separating the filter predicate out, and by prepending the stolen
15378         items rather than appending them.
15379         (steal_ginst_in_image): Likewise.
15380         (mono_metadata_clean_for_image): Update to changes.
15381
15382 2007-09-19  Martin Baulig  <martin@ximian.com>
15383
15384         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
15385
15386 2007-09-19  Martin Baulig  <martin@ximian.com>
15387
15388         * mono-debug.c (mono_debug_cleanup): Don't call
15389         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15390
15391 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15392
15393         Fix crash on 'make run-test' in mcs/errors
15394         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15395         Avoid more potential allocations in mono_class_from_mono_type.
15396         (ginst_in_image): Update to changes.
15397         (gclass_in_image): Rearrange slightly.
15398
15399 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15400
15401         * class.c (mono_class_init): Move the code that sets up class->methods to 
15402         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15403
15404         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15405         canonical instance of an inflated generic signature.
15406         (mono_type_create_from_typespec): Remove an invalid free.
15407
15408         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15409
15410 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15411
15412         * domain-internals.h: added a declaration of the
15413         mono_assembly_load_full_nosearch internal function.
15414
15415         * assembly.c (mono_assembly_load_with_partial_name): use
15416         mono_try_assembly_resolve return value properly.
15417         (mono_assembly_load_full_nosearch): copied the function body from
15418         mono_assembly_load_full, without the code to invoke assembly
15419         search hooks.
15420         (mono_assembly_load_full): calls the above new function and if the
15421         assembly is not resolved, invokes the search hooks.
15422
15423         * appdomain.c (mono_runtime_init): restore the global postload
15424         assembly search handlers.
15425
15426 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15427
15428         * class.c (mono_class_init): Make sure class->methods and class->properties
15429         are never NULL in the generics case.
15430
15431         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15432
15433 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15434
15435         * metadata.c (free_generic_class): Disable some code to fix the build.
15436
15437         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15438
15439         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15440         from the image mempool.
15441
15442         * metadata.c (free_generic_class): Free more data from the inflated class.
15443
15444         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15445
15446         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15447         mempool.
15448         (mono_type_create_from_typespec): Ditto.
15449
15450         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15451         MonoImage to the caller.
15452         (mono_init_internal): Save the opened image in a global variable.
15453         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15454
15455         * reflection.c (resolve_object): Fix a leak.
15456
15457         * metadata.c: Fix the freeing of data in the generics caches.
15458         
15459         * metadata.c (free_generic_inst): Comment this out to fix the build.
15460         (free_generic_class): Ditto.
15461
15462         * metadata.c: Free cached generic methods, instantinations and classes when
15463         they are removed from the caches.
15464         (mono_metadata_free_type): Free the type itself.
15465
15466         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15467         places.
15468
15469 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15470
15471         * boehm-gc.c: restrict managed allocs to __thread supporting
15472         architectures.
15473
15474 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15475
15476         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15477         (mono_generic_class_get_class): Fix a leak.
15478
15479         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15480         mono_metadata_free_type ().
15481         (mono_metadata_inflate_generic_inst): Fix a leak.
15482
15483 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15484
15485         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15486
15487         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15488         mempool.
15489
15490         * mono-debug.c (mono_debug_close_image): Fix call to 
15491         g_hash_table_remove ().
15492
15493 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15494
15495         * icall-def.h: redirect all the string ctor to the managed
15496         CreateString () methods.
15497         * string-icalls.c, string-icalls.h: removed dead code for string
15498         ctors and icalls.
15499
15500 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15501
15502         * mono-debug.c: Fix memory leaks.
15503
15504 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15505
15506         * threads-types.h: Implement mono_hazard_pointer_set and 
15507         mono_hazard_pointer_clear macros using do/while(0) to fix
15508         compilation with MSVC.
15509         
15510         Code is contributed under MIT/X11 license.
15511
15512 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15513
15514         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15515         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15516
15517 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15518
15519         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15520         icalls.
15521
15522 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15523
15524         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15525         managed-code allocated as well.
15526
15527 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15528
15529         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15530
15531 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15532
15533         * boehm-gc.c: fixed the build after the AOT changes.
15534
15535 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15536
15537         * wrapper-types.h: Add an ALLOC wrapper type.
15538
15539         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15540         reference managed allocator methods.
15541
15542 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15543
15544         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15545         of Type array and not MonoType, a fix suggested by Hari.
15546         
15547 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15548
15549         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15550         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15551         
15552         Code is contributed under MIT/X11 license.
15553
15554 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15555
15556         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15557
15558 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15559
15560         * image.c (do_mono_image_open): if assembly file fails to open and
15561         MONO_IOMAP is in effect, try to find the path in a
15562         case-insensitive way.
15563
15564         * appdomain.c (mono_runtime_init): do not install postload hooks -
15565         tests show that MS.NET doesn't use anything of that sort to
15566         trigger the AppDomain.AssemblyResolve event.
15567         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15568         made non-static.
15569         (mono_runtime_init): init portability helpers here.
15570
15571         * assembly.c (mono_assembly_load_with_partial_name): if other   
15572         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15573         to resolve the assembly.
15574
15575         * domain-internals.h: added mono_try_assembly_resolve and marked
15576         it as internal.
15577
15578 2007-09-11  Jb Evain  <jbevain@novell.com>
15579
15580         * object-internals.h (MonoReflectionDynamicMethod): add
15581         a `MonoReflectionType *owner` field. The owner is used
15582         * reflection.c:
15583         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15584         method as the class declaring the dynamic method.
15585         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15586         dynamic method to the declaring type of the methodbuilder.
15587
15588 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15589
15590         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15591         rules for calling methods via reflection.
15592
15593 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15594
15595         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15596         Inflate MonoType's.
15597
15598 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15599
15600         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15601         provide a managed method that does fast allocations without needing
15602         a managed->unmanaged transition. Boehm GC implementation currently
15603         enabled for ptrfree objects on sane architectures.
15604
15605 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15606
15607         * marshal.c, marshal.h: exported a couple of useful functions and
15608         added mono_mb_get_label () to easily handle backward branches.
15609
15610 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15611
15612         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15613
15614 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15615
15616         * loader.c (find_method): Fixed the regression introduced while
15617         fixing bug #81466.
15618
15619 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15620
15621         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15622         well.
15623         
15624         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15625         icall.c reflection.c: Pass a MonoGenericContext argument to 
15626         mono_lookup_dynamic_token ().
15627
15628         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15629         #82744.
15630         
15631 2007-09-09  Robert Jordan  <robertj@gmx.net>
15632
15633         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15634         for generic methods.
15635
15636         * object.c (mono_object_get_virtual_method): Handle generic methods.
15637         Fixes bug #78882.
15638
15639         Code is contributed under MIT/X11 license.
15640
15641 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15642
15643         * image.c: fix locking in mono_image_load_file_for_image ().
15644
15645 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15646
15647         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15648         used only as a cache: added an icall to fill it.
15649
15650 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15651
15652         * reflection.h: exposed mono_reflection_free_type_info
15653         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15654         since mono_reflection_bind_generic_parameters makes a copy of it.
15655         * reflection.c (free_type_info): subinfos should be freed.
15656         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15657         made non static.
15658         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15659         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15660         this fixes #82695 and #81726.
15661    
15662
15663 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15664
15665         * process.h, process.c:  added support for user profile/info in
15666           ProcessStartInfo. For now only Windows works.
15667
15668 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15669
15670         * metadata.c: consider the generic arguments when comparing
15671         signatures (bug #82614).
15672
15673 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15674
15675         * cil-coff.h, image.c: updated assembly loader to cope with the
15676         PE32+ 64 bit file format.
15677
15678 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15679
15680         * assembly.c, class.c, domain.c, loader.c: remove useless
15681         inclusion of cil-coff.h.
15682
15683 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15684
15685         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15686         if interface is marked with CoClassAttribute. 
15687    
15688         Code is contributed under MIT/X11 license.
15689
15690 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15691
15692         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15693         if it's seen twice in major collections.
15694
15695 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15696
15697         * sgen-gc.c: big objects are not copied to the gray area, but they
15698         need to be considered for scanning, too, if they are brought alive
15699         by an object ready for finalizations or a survived one.
15700
15701 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15702
15703         * sgen-gc.c: properly account the number of disappearing links when
15704         they are nullified.
15705
15706 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15707
15708         * sgen-gc.c: share the code to scan the registered roots between the
15709         different types of collections.
15710
15711 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15712
15713         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15714
15715 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15716
15717         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15718         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15719
15720 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15721
15722         * security-manager.c (mono_security_manager_get_methods):
15723         LinkDemandSecurityException now has 2 arguments instead of 3.
15724
15725 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15726
15727         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15728         platforms which need it.
15729
15730 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15731
15732         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15733         dtor.
15734
15735 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15736
15737         * threads.c: free the thread static data on thread exit.
15738
15739 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15740
15741         * class.c: walk the hierarchy to find the generic definition for
15742         a class (fixes runtime part of bug #82498).
15743
15744 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15745
15746         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15747         ...
15748
15749         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15750
15751 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15752
15753         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15754
15755 2007-08-24  Robert Jordan  <robertj@gmx.net>
15756
15757         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15758
15759 2007-08-24  Jb Evain  <jbevain@novell.com>
15760
15761         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15762         for byref types.
15763
15764 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15765
15766         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15767         #82286.
15768
15769 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15770
15771         * assembly.c: Fix a warning.
15772         
15773 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15774
15775         * appdomain.c: parse the <runtime> section looking for the probing
15776         element with the 'privatePath' attribute, which sets additional
15777         directories in which the runtime should look for assemblies.
15778
15779 2007-08-23  Robert Jordan  <robertj@gmx.net>
15780
15781         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15782         Fixes #82499.
15783
15784 2007-08-23  Martin Baulig  <martin@ximian.com>
15785
15786         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15787         _mono_debug_init_corlib() and remove it from the header file.
15788
15789 2007-08-23  Martin Baulig  <martin@ximian.com>
15790
15791         * mono-debug-debugger.c
15792         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15793         don't notify the debugger about it.
15794
15795         * mono-debug-debugger.h
15796         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15797
15798 2007-08-23  Robert Jordan  <robertj@gmx.net>
15799
15800         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15801         Code is contributed under MIT/X11 license.
15802
15803 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15804
15805         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15806
15807 2007-08-22  Martin Baulig  <martin@ximian.com>
15808
15809         * mono-debug.c: Store debugging info on a per-domain basis and
15810         free it on domain unload.  Add support for unloading symbol files.
15811
15812         * mono-debug.h
15813         (MonoDebugList): New typedef.
15814         (MonoSymbolTable):
15815         - add `data_tables and `type_table'.
15816         - replace 'symbol_files' and `num_symbol_files' with a
15817           `MonoDebugList *'.
15818         (mono_debug_data_table): Removed.
15819         (mono_debug_list_add): New public function.
15820         (mono_debug_list_remove): New public function.
15821         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15822         (mono_debug_init_2_memory): Renamed into
15823         mono_debug_open_image_from_memory().
15824         (mono_debug_close_image): New public function.
15825         (mono_debug_domain_create): Likewise.
15826         (mono_debug_domain_unload): Likewise.
15827         (MONO_DEBUGGER_VERSION): Bump to 60.
15828
15829         * mono-debug-debugger.h
15830         (MonoDebuggerEvent):
15831         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15832         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15833         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15834         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15835           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15836         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15837           meaning.
15838         (mono_debugger_add_symbol_file): Removed.
15839         (mono_debugger_add_type): Removed.
15840         (mono_debugger_lookup_type): Removed.
15841         (mono_debugger_lookup_assembly): Removed.
15842
15843         * domain.c
15844         (mono_domain_create): Call mono_debug_domain_create().
15845         (mono_init_internal): Call mono_debug_init_corlib().
15846
15847         * assembly.c
15848         (mono_assembly_close): Call mono_debug_close_image().
15849
15850 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15851
15852         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15853         mmap call.
15854
15855 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15856
15857         * sgen-gc.c: ensure section->pin_queue_end is initialized
15858         correctly when non pinning objects in the section have been found.
15859
15860 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15861
15862         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15863         containing a list of directories separated by ':'. MSDN docs say
15864         the directories should be separated with ';'. Part of a bugfix for
15865         bug #81446
15866
15867 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15868
15869         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15870         it should MonoType and not MonoClass.
15871
15872 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15873
15874         * culture-info-table.h : regenerated.
15875
15876 2007-08-20  William Holmes  <billholmes54@gmail.com>
15877
15878         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15879          to call ReplaceFile Kernel32 on windows or in io-layer.
15880         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15881         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15882          as an internal call.
15883
15884         Code is contributed under MIT/X11 license.
15885
15886 2007-08-20  Jb Evain  <jbevain@novell.com>
15887
15888         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15889         and MONO_EXCEPTION_FIELD_ACCESS.
15890
15891         * debug-helpers.[c|h]: new mono_field_full_name function.
15892
15893 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15894
15895         * class.c: Removed class_security_level() and moved it to
15896         security-core-clr.c.
15897
15898         * security-core-clr.c, security-core-clr.h: class_security_level()
15899         is now public and renamed to mono_security_core_clr_class_level().
15900         It also looks for security attributes in the classes a class is
15901         nested in.
15902
15903 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15904
15905         * security-core-clr.c, security-core-clr.h: CoreCLR security
15906         utility functions.
15907
15908         * Makefile.am: Added security-core-clr.[ch].
15909
15910         * security-manager.c, security-manager.h: Functions and enum for
15911         setting and getting the security mode.
15912
15913         * class.c: CoreCLR security checks.
15914
15915 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15916
15917         * icall-def.h, process.c, process.h: implemented icall to get
15918         user/system processor times.
15919
15920 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15921
15922         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15923         reader-lock-free jit_info_table.
15924
15925 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15926
15927         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15928
15929         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15930
15931         * object-internals.h (MonoException): Add missing _data member.
15932
15933 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15934
15935         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15936         checking that only methods with matching qname or fqname are picked
15937         from implemented interfaces.
15938
15939 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15940
15941         * verify.c (do_newarr):added, do type verification of
15942         newarr ops, push the right value on the eval stack.
15943         * verify.c (mono_method_verify): use do_newarr
15944
15945
15946 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15947
15948         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15949         factored the common code into get_boxable_mono_type, which
15950         is now using mono_type_get_full, this fixed byref related tests.
15951
15952 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15953
15954         * class.c: added mono_type_get_full, this function has the same
15955         behavior of mono_class_get_full but the returned MonoType has
15956         all metadata of the associated token in case of a typespec token.
15957         * class.c: added mono_type_retrieve_from_typespec, used by 
15958         mono_type_get_full to retrieve the token type.
15959         * class.c (mono_class_create_from_typespec): changed to use
15960         mono_type_retrieve_from_typespec.
15961         * class.c (mono_ldtoken): changed to use mono_type_get_full
15962         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15963         * class-internals.h: exported mono_type_get_full for internal use.
15964
15965 2007-08-16  Jb Evain  <jbevain@novell.com>
15966
15967         * domain.c (supported_runtimes): add entry for
15968         the 'moonlight' runtime version.
15969
15970 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15971
15972         * verify.c (mono_method_verify): small typo sliped in.  
15973
15974 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15975
15976         * verify.c (do_unbox_value): added, do type verification of
15977         unboxing ops
15978         * verify.c (mono_method_verify): use do_unbox_value
15979
15980
15981 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15982
15983         * verify.c (dump_stack_value): fixed typo, was printing string
15984         instead of object on stack.
15985         * verify.c (do_box_value): moved the byref check up as it leads
15986         to invalid code and should be done earlier.
15987         * verify.c: improved error messages for and ldobj
15988
15989 2007-08-15  William Holmes  <billholmes54@gmail.com>
15990
15991         * marshal.c (emit_marshal_custom): Omit the call to 
15992           marshal_native_to_managed when calling native to managed 
15993           and the argument is specified as an out argument.
15994
15995         Code is contributed under MIT/X11 license.
15996
15997 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15998
15999         * verify.c: fixed the type checks for generics, function pointers and vectors.
16000         Added type verification for ldobj and ldtoken. The verifier
16001         would segfault if header or signature of a method contained references
16002         to non-existant types.
16003
16004 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16005
16006         * marshal.c (cominterop_get_ccw): Patch from
16007         Bill Holmes to no walk up interface hierarchy. 
16008         All parent methods should be present in the interface for COM.
16009    
16010         Code is contributed under MIT/X11 license.
16011
16012 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16013
16014         * marshal.c (emit_marshal_com_interface): Patch from
16015         Bill Holmes to handle COM Interfaces as return values
16016         for native->managed calls.
16017    
16018         Code is contributed under MIT/X11 license.
16019
16020 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
16021
16022         * marshal.c (cominterop_get_idispatch_for_object): Implement
16023         for runtime callable wrappers.
16024    
16025         Code is contributed under MIT/X11 license.
16026
16027 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
16028
16029         * pedump.c (main): changed from mono_init to mono_init_from_assembly
16030         so 2.0 types are accessible
16031
16032
16033 2007-08-13  Miguel de Icaza  <miguel@novell.com>
16034
16035         * domain.c (mono_init_internal): Call mono_assembly_load_friends
16036         once we load mscorlib.   Due to the order in which we initialize,
16037         the mono_assembly_load_full routine that loads mscorlib did not
16038         load friends.   We now load it once we load the
16039         mono_defaults.internals_visible_class class. 
16040
16041         * assembly.c: Expose the mono_load_friend_assemblies method.
16042
16043 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
16044
16045         * verify.c: improved the handling of boxing, better
16046         type checking for unary ops and conversion. Fix bug
16047         regarding managed pointer compatibility checking
16048
16049 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
16050
16051         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
16052
16053         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
16054
16055 2007-08-09  Raja R Harinath  <rharinath@novell.com>
16056
16057         * reflection.c (dup_type): Remove.
16058         * class.c (dup_type): Remove.
16059         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
16060         instead of the dodgy 'dup_type'.
16061         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
16062         handle the case where 'dup_type' needed the second argument.
16063
16064 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
16065
16066         * domain.c: Fix a warning.
16067
16068 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
16069
16070         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
16071         checking that methods with the same fqname are not overridden
16072         with a method from an ancestor.
16073
16074 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
16075
16076         * threads.c (free_thread_static_data_helper): Avoid a crash if
16077         thread->static_data is not yet set.
16078
16079 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
16080
16081         * marshal.c: Use correct image when emitting
16082         native wrapper for COM calls.
16083    
16084         Code is contributed under MIT/X11 license.
16085
16086 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
16087
16088         * icall-def.h, security.c, security.h :
16089           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
16090
16091 2007-08-07  Martin Baulig  <martin@ximian.com>
16092
16093         * mono-debug-debugger.h
16094         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
16095
16096         * domain.c (mono_domain_free): Call
16097         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
16098
16099 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
16100
16101         * verify.c (check_underflow, check_overflow): error message now returns IL offset
16102         * verify.c (in_same_block): code should test if either offset is inside the clauses
16103         * verify.c (mono_method_verify): push the exception into the eval stack of exception
16104         and filter blocks
16105
16106 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16107
16108         * image.c (mono_image_close): Fix a leak.
16109
16110         * object.c (mono_runtime_invoke_array): Avoid using alloca.
16111
16112         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
16113
16114 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
16115
16116         * domain.c, threads.c, threads-types.h: fix memory retention issue
16117         with thread static variables not being cleared on domain unload.
16118         Reuse thread static slots after domain unload.
16119
16120 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16121
16122         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
16123         nullable type.
16124
16125         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
16126         now done in mono_runtime_invoke_array.
16127
16128         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
16129         receiver is a nullable type.
16130
16131         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
16132         generic parameter.
16133
16134 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
16135
16136         * marshal.c: Implement COM Objects as return type for 
16137         managed->unmanaged calls. Added Release calls for COM Object
16138         out/return values in managed->unmanaged calls.
16139
16140         Code is contributed under MIT/X11 license.
16141
16142 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
16143
16144         * threads.h, threads-type.h: move the hazard pointer declarations
16145         to the private header.
16146
16147 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
16148
16149         * file-io.c, appdomain.c: memory leak fixes.
16150
16151 2007-08-02  Dick Porter  <dick@ximian.com>
16152
16153         * socket-io.c
16154         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
16155         SO_REUSEADDR setting into io-layer/sockets.c.
16156
16157 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
16158
16159         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
16160         from Object when called on a generic parameter. Fixes #82211.
16161
16162 2007-08-01  Dick Porter  <dick@ximian.com>
16163
16164         * file-io.c (convert_share): Test FileShare values bit-by-bit.
16165         Fixes bug 79250 yet again.
16166
16167 2007-07-30  Martin Baulig  <martin@ximian.com>
16168
16169         Merged the `debugger-dublin' branch.
16170
16171         * mono-debug.h
16172         (MonoDebugDataTable): New typedef.
16173         (MonoDebugMethodAddressList): New typedef.
16174         (MonoDebugWrapperData): Removed.
16175         (MonoDebugSymbolTable): Removed `current_data_table',
16176         `current_data_table_size', `current_data_table_offset'.
16177         (MonoDebugDataItemType): Moved into mono-debug.c.
16178         (MonoDebugMethodJitInfo): Remove `address'.
16179         (mono_debug_data_table): New global variable.
16180         (mono_debug_lookup_method_addresses): New public function.
16181         (mono_debug_find_method): Take a `MonoMethod *', not a
16182         `MonoDebugMethodInfo *'.
16183
16184         * mono-debug.c: Drop support for the old symbol tables.
16185
16186 2007-06-28  Martin Baulig  <martin@ximian.com>
16187
16188         * mono-debug.c (mono_debug_debugger_version): New public variable.
16189
16190 2007-07-31  William Holmes  <billholmes54@gmail.com>
16191
16192         * metadata.c Changed mono_type_create_from_typespec to not insert
16193           the type into the hash map until after
16194           do_mono_metadata_parse_type has completed.
16195         Fixes Bug #82194
16196         Code is contributed under MIT/X11 license.
16197
16198 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
16199
16200         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
16201         generic parameter. Fixes #82211.
16202
16203 2007-07-27  Jb Evain  <jbevain@novell.com>
16204
16205         * pedump.c (dump_metadata, dump_metadata_header): dump
16206         versions contained in the metadata header.
16207
16208 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
16209
16210         * threads.c: register small_id_table with the GC.
16211
16212 2007-07-27  Mark Probst  <mark.probst@gmail.com>
16213
16214         * threads.c, threads.h, class-internals.h, object-internals.h:
16215         Hazard pointers, to be used by lock-free parallel algorithms.
16216
16217 2007-07-26  Dick Porter  <dick@ximian.com>
16218
16219         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
16220         routine on non-windows platforms, as I've not managed to think of
16221         a non-kludgy way of doing this.  Finishes off bug 78739.
16222
16223 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
16224
16225         * object.c: properly setup interface_bitmap in proxy vtables.
16226
16227 2007-07-25  Marek Habersack  <mhabersack@novell.com>
16228
16229         * appdomain.c (get_shadow_assembly_location): do not use TickCount
16230         to create unique shadow copy target directories, use the domain's
16231         serial number instead. Each domain gets a unique target directory
16232         that way.
16233
16234         * domain.c (mono_domain_create): added code to increment domain
16235         shadow copy serial number and cache the value in the current
16236         domain structure.
16237
16238         * domain-internals.h (struct _MonoDomain): added a new field -
16239         shadow_serial to hold the serial number used in generation of
16240         shadow-copy directories. This is to make sure that the directory
16241         name is unique for each and every domain created. We avoid a race
16242         condition with overriding assemblies already in use by other app
16243         domains.
16244
16245 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
16246
16247         * class.c (mono_bounded_array_class_get): fixed memory leak when 
16248         binding generic parameters.
16249
16250 2007-07-24  Raja R Harinath  <rharinath@novell.com>
16251
16252         * metadata.c (do_mono_metadata_parse_generic_class): Use
16253         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
16254         error.
16255
16256 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
16257
16258         * loader.c, class-internals.h, reflection.c: removed the per-method
16259         generics hashtable: we use the global one through the call of
16260         mono_class_inflate_generic_method ().
16261
16262 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16263
16264         * class.c, metadata.c, class-internals.h: introduce yet another
16265         generics global cache for inflated methods (fixes 98% of the perf
16266         issue in bug #81806).
16267
16268 2007-07-23  Raja R Harinath  <rharinath@novell.com>
16269
16270         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
16271         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
16272         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
16273         return a MonoGenericInst containing (a copy) of those types.
16274         (mono_metadata_inflate_generic_inst): Update to changes.
16275         (mono_metadata_parse_generic_inst): Likewise.
16276         (mono_get_shared_generic_inst): Likewise.
16277         * reflection.c (mono_class_bind_generic_parameters): Likewise.
16278         (mono_reflection_bind_generic_method_parameters): Likewise.
16279         * metadata-internals.h: Likewise.
16280         * icall.c (free_generic_context): Kill.
16281         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
16282
16283         * reflection.c (reflection_methodbuilder_to_mono_method): Use
16284         mono_metadata_type_dup.
16285         * marshal.c (mono_mb_create_method): Likewise.
16286
16287         * metadata.c (mono_metadata_type_dup): Rename from
16288         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
16289         MonoImage.  Handle a few more cases, esp. when no mempool is given.
16290         * marshal.c, metadata-internals.h: Update to changes.
16291
16292 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
16293
16294         * class.c: fixed a small leak for array classes and removed warning.
16295
16296 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
16297
16298         * loader.c (mono_method_get_param_token): Make this work on generic methods.
16299         Return 0x8000000 for return parameters. Fixes #82161.
16300
16301 2007-07-21  Marek Habersack  <grendello@gmail.com>
16302
16303         * appdomain.c (get_shadow_assembly_location): append the current
16304         ticks value to the path. Avoids overwriting the same assemblies by
16305         several threads at the same time.
16306
16307 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16308         and Raja R Harinath  <rharinath@novell.com>
16309
16310         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16311         Simplify slightly.
16312         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
16313         property for testing if a method is a generic method definition.
16314
16315 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16316
16317         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
16318
16319 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16320
16321         * verify.c: used function from private branch, reverted to the one in class.h 
16322
16323 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16324
16325         * verify.c: a typo slipped in and the code wont compile
16326
16327 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16328
16329         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
16330         disabled box instruction as it is doing the wrong thing
16331         improved stack dump messages, now it is easier to debug type related issues
16332
16333
16334 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
16335
16336         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
16337
16338 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16339
16340         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
16341         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
16342         grouped with class and valuetype. This change will simply 
16343         the code as it should be handled just like unmanaged pointers.
16344
16345 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16346
16347         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
16348
16349 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16350
16351         * verify.c: several stack merge issues fixed, reference comparisons now
16352         check the type size. strict type check now works correctly.
16353         added more uses of IS_MANAGED_POINTER macro.
16354         fixed issues pointed by running the test suite against .net.
16355         
16356
16357 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16358
16359         * class.c, loader.c, class-internals.h: Removed the
16360         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
16361         defines.
16362
16363         * icall.c: Better error checking in some internal reflection
16364         methods.
16365
16366 2007-07-18  William Holmes  <billholmes54@gmail.com>
16367
16368         * filewatcher.c : removed unused variable 'filename' in 
16369           ves_icall_System_IO_FSW_SupportsFSW
16370
16371 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
16372
16373         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
16374         obsolete, removed.
16375
16376 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
16377
16378         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
16379         
16380         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
16381
16382 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
16383
16384         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
16385         Implement generics support.
16386         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16387
16388         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16389         type_args and method_args arguments.
16390         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16391         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16392         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16393
16394 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16395
16396         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16397           It adds a rootimage parameter to mono_reflection_get_type_internal,
16398           adds new function mono_reflection_get_type_with_rootimage and use
16399           the rootimage to resolve the types instead of the current image
16400
16401 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16402
16403         * culture-info-table.h: Forgot to update after r78304.
16404
16405 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16406
16407         * class.c (mono_class_is_open_constructed_type)
16408         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16409
16410 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16411
16412         * class.c (mono_bounded_array_class_get):  method fails if used with
16413         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16414         avoiding calculating the size for such array as it cannot be instantiated.
16415         Fix bug #82015
16416
16417 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16418
16419         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16420         field.
16421         * metadata.c, reflection.c: Update to changes.
16422
16423 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16424
16425         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16426         mono_class_is_valid_enum, they are used to valide a enum when loading.
16427         * reflection.c: used new functions to throw TypeLoadException when and
16428         invalid enum is build with TypeBuilder. Fixes #82018
16429   
16430 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16431
16432         * object.c: forgot commit of mono_class_setup_methods () to access
16433         iface->methods.
16434         * object-internals.h: added a few more handy fields to
16435         MonoIMTCheckItem.
16436
16437 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16438
16439         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16440         iface->methods.
16441
16442 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16443
16444         * class-internals.h, object-internals.h, object.c: IMT-based
16445         interface invocation core from Massimiliano Mantione
16446         (massi@ximian.com) with a reworked arch-specific interface,
16447         bsearch implementation and a few bugfixes and memory savings by me.
16448
16449 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16450
16451         * class.c (mono_class_create_from_typedef): mono would segfault if 
16452         an enum did not have a __value field. It now throws a TypeLoadException
16453         for such cases. Fix bug #82022
16454
16455 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16456
16457         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16458
16459 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16460
16461         * class.c (mono_class_init): If a class is already inited but has
16462         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16463
16464 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16465
16466         * class.c: Properly handle the case of an unimplemented interface
16467         method.  Fixes: 81673.
16468
16469 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16470
16471         * class-internals.h, object.c: cleanup patch from massi: use
16472         MonoVTable->interface_bitmap since the vtable interfaces offset array
16473         is going away.
16474
16475 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16476
16477         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16478         GetMDStreamVersion icall instead.
16479
16480 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16481
16482         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16483         not use mono_dl_build_path() with a full library name: makes
16484         fallbacks to libgaim and libfam work.
16485
16486 2007-07-06  William Holmes  <billholmes54@gmail.com>
16487
16488         * assembly.c: Added a continue statement in probe_for_partial_name when
16489          parse_assembly_directory_name fails.  Fixes : 82002
16490
16491 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16492
16493         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16494         and added a verification  for TYPEDBYREF.
16495         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16496         make native int interchangeable with int32 and some small cleanup and formating.
16497         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16498         handle byref of byref.
16499         * verify.c (push_local): handle byref of byref.
16500         * verify.c (do_binop): invalid mix of values is unverifiable
16501         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16502         added visibility checks
16503         * verify.c (field related method): added visibility checks
16504         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16505
16506 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16507
16508         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16509         string.
16510
16511 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16512
16513         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16514
16515         * marshal.c (emit_marshal_string): When returning a string from managed code,
16516         allways make a copy even for unicode strings. Fixes #81990.
16517
16518 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16519
16520         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16521         of byref generic inst types (bug #81997).
16522
16523 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16524
16525         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16526         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16527
16528 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16529
16530         * marshal.c (emit_marshal_string): Add support for unicode strings in
16531         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16532
16533 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16534
16535         * verify.c: field load/store are now verified, missing only access checks now
16536
16537 2007-06-28  Martin Baulig  <martin@ximian.com>
16538
16539         * mono-debug.c (mono_debug_debugger_version): New public variable.
16540
16541 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16542
16543         * locales.c: When constructing DateTimeFormat or NumberFormat for
16544         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16545         MonoCultureInfo contructed from the current locale is always
16546         read-only and has UseUserOverride set to true. All MonoCultureInfo
16547         instances returned for GetCultures have both IsReadOnly and
16548         UseUserOverride set to true. Fixes part of bug #81930.
16549
16550 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16551
16552        * icall-def.h: Update System.__ComObject icalls
16553        * marshal.c: Avoid managed transition (and object creation)
16554        when looking up COM interface in RCW.
16555        * marshal.h: Ditto.
16556        
16557        Code is contributed under MIT/X11 license.
16558
16559 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16560
16561         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16562         to avoid crashes during assembly unloading.
16563
16564 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16565
16566         Fix MethodInfo.IsGenericMethodDefinition
16567         * reflection.c (mono_reflection_bind_generic_method_parameters):
16568         Rearrange code to ensure we always uses a generic method definition.
16569         * class.c (mono_class_inflate_generic_method_full): Set
16570         'generic_container' field only for generic method definitions.
16571         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16572         Use presense of 'generic_container' field as indication of being a
16573         generic method definition.
16574
16575 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16576
16577         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16578
16579         * object-internals.h: Reflect changes in the layout of the managed Delegate
16580         class.
16581         
16582         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16583         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16584         runtime memory used by the dynamic method. Fixes #77146.
16585
16586 2007-06-21  Dick Porter  <dick@ximian.com>
16587
16588         * file-io.h: 
16589         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16590         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16591         81767.
16592
16593 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16594
16595         * reflection.c (method_encode_methodspec): Add a tripwire.
16596         * class.c (inflate_generic_type): The fully open generic type is
16597         not the same as the generic type definition.
16598
16599 2007-06-21  Martin Baulig  <martin@ximian.com>
16600
16601         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16602
16603         * mono-debug-debugger.h
16604         (MonoDebuggerBreakpointInfo): Removed.
16605         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16606         (mono_debugger_remove_breakpoint): Likewise.
16607         (mono_debugger_breakpoint_callback): Likewise.
16608         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16609
16610 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16611
16612         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16613         generic type is not the same as the generic type definition.
16614         * class.c (mono_generic_class_get_class): Likewise.
16615
16616 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16617
16618         * icall.c: The second argument to 
16619         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16620         is a MonoType not a MonoClass.
16621
16622 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16623
16624         * verify.c: support for function pointers in the verifier
16625
16626 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16627
16628         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16629
16630 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16631
16632         * assembly.c: removed Mono.Data.SqliteClient from the list of
16633         forward-compatible assemblies as it breaks the ABI (bug #81899).
16634
16635 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16636
16637         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16638         lookup/update with the loader lock.
16639         * reflection.c (mono_class_bind_generic_parameters): No need to
16640         protect mono_metadata_lookup_* with the loader lock.
16641         * class.c (inflate_generic_type): Likewise.
16642         
16643         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16644         on a generic instantiated type.
16645
16646 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16647
16648         *verify.c: produce meanfull error messages on verification error
16649         *verify.c: fixed some cases of verification errors reported as validation errors
16650         *pedump.c: fixed the error name array, now it shows validation errors properly
16651         *verify.h: fixed the contant that should be used for verification errors
16652
16653 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16654
16655         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16656         for bug #77596, 81858 and 80743 (generics data structures on domain
16657         unload).
16658
16659 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16660
16661         Avoid allocating 'MonoGenericContext' on the heap.
16662         * class-internals (_MonoMethodInflated::context): Make field
16663         inline, not a pointer.
16664         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16665         stack.  Use the context embedded within the inflated method as the
16666         hash key, rather than 'new_context'.
16667         * class.c (inflate_generic_context): Simplify.  Return a struct
16668         rather than allocating on the heap.
16669         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16670         doesn't salt away a copy of the context -- simplifying the
16671         lifetime rules of a 'MonoGenericContext *'.
16672         (mono_method_get_context): Return pointer to embedded context.
16673         (setup_generic_array_ifaces): Allocate temporary context on stack.
16674         * reflection.c (inflate_mono_method): Likewise.
16675         (mono_reflection_bind_generic_method_parameters): Likewise.
16676         Use the context embedded within the inflated method as the hash key.
16677
16678         Avoid a source of allocation of 'MonoGenericContext'.
16679         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16680         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16681         * class.c: Update to changes.
16682         (mono_generic_class_get_context): Simplify drastically.  Now just
16683         returns a pointer to the field.
16684         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16685         argument as a const pointer.
16686         (mono_metadata_generic_context_equal): Likewise.
16687         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16688         Update to changes.
16689
16690 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16691
16692         * verify.c improved the handling of brtrue/brfalse, factored out common code
16693
16694 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16695
16696         Kill MonoGenericMethod.
16697         * class-internals.h (MonoGenericContext::method_inst): Rename from
16698         'gmethod' and convert to a MonoGenericInst.
16699         (MonoGenericMethod): Remove.
16700         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16701         * loader.c (method_from_methodspec): Update to changes.  Use a
16702         MonoGenericContext as the key to the hashtable.
16703         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16704         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16705         (mono_metadata_generic_context_hash): Likewise from
16706         'mono_metadata_generic_method_hash'.  Change hash function.
16707         (mono_metadata_load_generic_params): Update to changes.
16708         (mono_get_shared_generic_method): Remove.
16709         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16710         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16711         (inflate_generic_context): Likewise.
16712         (mono_class_inflate_generic_method_full): Likewise.
16713         (setup_generic_array_ifaces): Likewise.
16714         (mono_class_create_from_typespec): Likewise.
16715         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16716         (method_encode_methodspec): Update callsite.
16717         (reflection_methodbuilder_to_mono_method): Update to changes.
16718         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16719         MonoGenericContext as the key to the hashtable.
16720         (inflate_mono_method): Update to changes.
16721
16722         * class-internals.h (MonoGenericMethod::container): Remove.
16723         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16724
16725 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16726
16727         * profiler-private.h, profiler.c, profiler.h: added API to profile
16728         exception events.
16729
16730 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16731
16732         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16733
16734 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16735
16736         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16737         Fixed overflow and underflow not aborting the verification process.
16738
16739 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16740
16741         * class-internals.h (MonoStats): Added stats entries for dynamic
16742         code allocations.
16743
16744 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16745
16746         * loader.c (mono_free_method): Free header->locals and header->clauses.
16747
16748         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16749         dynamic case.
16750
16751         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16752
16753         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16754
16755 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16756
16757         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16758         the tables.
16759
16760 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16761
16762         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16763
16764 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16765
16766         MonoGenericMethod on a diet
16767         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16768         here ...
16769         (_MonoGenericMethod::reflection_info): ... from here.
16770         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16771         Update to changes.
16772         * reflection.c (inflate_mono_method): Likewise.
16773         (mono_reflection_bind_generic_method_parameters): Likewise.
16774
16775 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16776
16777         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16778         *verify.c: factored long ldarg forms to share code with short forms
16779
16780 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16781
16782         *verify.c: fixed code formating factored some duplicate code
16783         into a new function
16784
16785         *verify.h: fixed binary incompatibility introduced earlier
16786
16787         *pedump.c: fixed formating
16788
16789 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16790
16791         Fix assertion when disassembling Mono.C5.dll
16792         * loader.c (method_from_methodspec): Avoid inflating a method
16793         twice with the same context.  If the methodref is inflated, use
16794         the declaring method instead.
16795
16796         * class.c (mono_class_from_generic_parameter): Fix case similar to
16797         bug #81830 handled below, but for method containers.
16798
16799 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16800
16801         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16802         get_shared_generic_class.  Directly inflate the instance.
16803         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16804         (inflate_generic_class): Delete.
16805         (get_shared_generic_class): Delete.  Move setting of
16806         'cached_class' and 'cached_context' ...
16807         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16808
16809         * metadata.c (mono_metadata_lookup_generic_class): Change
16810         signature to take the components of a MonoGenericClass rather than
16811         an allocated MonoGenericClass.  Change semantics to be intern-like.
16812         * reflection.c (mono_class_bind_generic_parameters): Update to
16813         changes.  Make locking region tighter.
16814         * class.c (inflate_generic_class): Update to changes.
16815         (get_shared_generic_class): Likewise.
16816         * metadata-internals.h: Likewise.
16817
16818         * reflection.c (mono_class_bind_generic_parameters): Take and
16819         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16820         (mono_reflection_bind_generic_parameters): Use
16821         'mono_class_bind_generic_parameters' rather than duplicate the code.
16822         * class.c (mono_bounded_array_class_get): Update to changes.
16823         * object-internals.h: Likewise.
16824
16825         * reflection.c (mono_class_bind_generic_parameters): Only support
16826         parameterizing generic type definitions.  Remove support for other
16827         open types.
16828
16829 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16830
16831         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16832
16833         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16834         in the dynamic case.
16835
16836 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16837
16838         * threads.c: When cleaning up thread, reset the Background bit.
16839         Fixes bug #81720.
16840
16841 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16842
16843        * metadata.c: Move variable declarations to top of scope.
16844        * verify.c: Move variable declarations to top of scope.
16845
16846        Code is contributed under MIT/X11 license.
16847
16848 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16849
16850         * reflection.c (mono_class_bind_generic_parameters): Replace
16851         open-coded loop with mono_metadata_inflate_generic_inst.
16852
16853         * class.c (get_shared_generic_class): Don't call
16854         mono_get_shared_generic_inst.  Use the container's own
16855         'class_inst'.
16856
16857         * metadata.c (mono_metadata_load_generic_params): Move
16858         initialization of 'context' field here from ...
16859         * class.c (mono_class_create_from_typedef): ... here, and ...
16860         * loader.c (mono_get_method_from_token): ... here.
16861
16862         * class.c (get_shared_generic_class): Rename from
16863         mono_get_shared_generic_class and make static.
16864         (mono_get_shared_generic_inst): Move to metadata.c.
16865         * loader.c (mono_get_shared_generic_method): Likewise.
16866         * class-internals.h, metadata-internals.h: Update to changes.
16867
16868         Fix #81830
16869         * class.c (mono_class_from_generic_parameter): Don't assume a
16870         generic container owner exists.  Generic containers from monodis
16871         don't have any.
16872
16873 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16874
16875         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16876         * verify.h: new typedefs to returns the non-verifiable status
16877         * verify.c: initial implementation of generics, stack merging and object compatibility check
16878
16879 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16880
16881         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16882         a MonoInternalHashTable again (fixed bug in internal hash table
16883         code).
16884
16885 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16886
16887         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16888         MonoInternalHashTable again (fixed bug in internal hash table
16889         code).
16890
16891 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16892
16893         * class.c, image.c, class-internals.h, domain.c,
16894         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16895         changes.  Have to figure out what makes them break the SWF
16896         regression.
16897
16898 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16899
16900         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16901         a MonoInternalHashTable now.
16902
16903 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16904
16905         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16906         MonoInternalHashTable now.
16907
16908 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16909
16910         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16911         invoke_impl code.
16912
16913         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16914
16915         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16916         dependent trampoline.
16917
16918         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16919
16920         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16921
16922 2007-05-29  Robert Jordan  <robertj@gmx.net>
16923
16924         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16925
16926 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16927
16928         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16929
16930 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16931
16932        * marshal.c: Fix interface lookup loops for
16933        cominterop_get_com_slot_for_method and 
16934        cominterop_get_method_interface. Only need to lookup
16935        if type is a class, else use interface type method is on.
16936
16937        Code is contributed under MIT/X11 license.
16938
16939 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16940
16941         * reflection.c: HasSecurity can be present even if no specially 
16942         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16943         SecurityAttribute). Fix CAS regression tests on buildbot.
16944
16945 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16946
16947        * appdomain.c: Add configure checks for header files.
16948        * image.c: Add configure checks for header files.
16949        * file-io.c: Add configure checks for header files.
16950        * debug-mono-symfile.c: Add configure checks for header files.
16951        * threadpool.c: Add configure checks for header files.
16952        * console-io.c: Add configure checks for header files.
16953        * profiler.c: Add configure checks for header files.
16954        * rawbuffer.c: Add configure checks for header files.
16955        * icall.c: Add configure checks for header files.
16956        * rand.c: Add configure checks for header files.
16957        * socket-io.c: Add configure checks for header files.
16958
16959        Code is contributed under MIT/X11 license.
16960
16961 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16962
16963         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16964         assertion as it breaks the build.
16965         
16966         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16967
16968         * reflection.c (lookup_custom_attr): Make a copy here too.
16969
16970         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16971         dynamic images.
16972
16973         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16974         images.
16975
16976         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16977         info.
16978
16979 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16980
16981         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16982         (load_cattr_value): Ditto.
16983
16984 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16985
16986         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16987
16988 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16989
16990         * threads.c: In "start_wrapper", set apartment_state to MTA if
16991         apartment_state is Unknown and we're running on 2.0 profile or
16992         higher.
16993         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16994         to main method, then set apartment_state to Unknown on 1.0 profile,
16995         and MTA on 2.0 profile.
16996
16997 2007-05-16  Jb Evain  <jb@nurv.fr>
16998
16999         * class-internals.h (MonoDefaults): Add an attribute_class and
17000           customattribute_data_class.
17001         * domain.c (mono_init_internal): Populate them.
17002         * reflection.c: Use them to remove duplicates. Make a vew
17003         MonoClass variables `static'.
17004
17005 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
17006
17007         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
17008         step in implementing IMT, so that all isinst checks now can go
17009         through the bitmap.
17010         This was needed because vtables for TransparentProxy need to look
17011         like the vtable of the "target" class, so they need to point to
17012         its interface bitmap directly.
17013
17014         * object.c: inside "mono_class_create_runtime_vtable" and
17015         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
17016
17017 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17018
17019         * object-internals.h
17020           culture-info.h : added territory field in MonoCulture and
17021           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
17022         * locales.c : fill territory field above too.
17023         * culture-info-table.h : regenerated.
17024
17025 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
17026
17027         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
17028         Fixes #81599.
17029
17030 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
17031
17032         * object.c: Always initialize apartment, even if 
17033         there is no custom attributes on entry point.
17034         
17035         Code is contributed under MIT/X11 license.
17036
17037 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
17038
17039         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
17040         * metadata.c: If no encoding is set, check for unicode
17041         on class.
17042         
17043         Code is contributed under MIT/X11 license.
17044
17045 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17046
17047         * threads.c: Handle if mono_thread_current returns NULL 
17048         
17049         Code is contributed under MIT/X11 license.
17050
17051 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17052
17053         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
17054         in start_wrapper. Added mono_thread_init_apartment_state and
17055         mono_thread_cleanup_apartment_state.
17056         * object.c: Initialize thread apartment state on main thread
17057         by checking for STAThreadAttribute on entry point.
17058         * object-internals.h: Add apartment_state field to MonoThread.
17059         * threads-types.h: Add unmanaged definition of 
17060         System.Threading.ApartmentState, MonoThreadApartmentState.
17061         
17062         Code is contributed under MIT/X11 license.
17063         
17064 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
17065
17066         * class.c: Fix windows build.
17067         * class-internals.h: Fix windows build.
17068         
17069         Code is contributed under MIT/X11 license.
17070
17071 2007-05-08  Robert Jordan  <robertj@gmx.net>
17072
17073         * process.c (CreateProcess_internal):
17074         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
17075         .CreateNoWindow was specified. Fixes #81496.
17076
17077 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17078
17079         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
17080         step in implementing IMT, replaced it with two compact arrays
17081         (interfaces_packed and interface_offsets_packed) and a bitmap that
17082         is used for isinst checks (interface_bitmap).
17083
17084         * class.c: (compare_interface_ids): compare function to pass to
17085         bsearch when looking for an interface with a given id.
17086         (mono_class_interface_offset): reimplemented using bsearch on
17087         interfaces_packed, getting the offset from interface_offsets_packed.
17088         (print_implemented_interfaces): utility debugging function.
17089         (setup_interface_offsets): reworked to initialize interfaces_packed,
17090         interface_offsets_packed and interface_bitmap.
17091
17092         * object.c: replaced all accesses to "MonoClass.interface_offsets"
17093         with uses of interfaces_packed and interface_offsets_packed.
17094
17095 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17096
17097         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
17098         mono_class_interface_offset prototype to wrap all accesses to
17099         "MonoClass.interface_offsets".
17100
17101         * class.c: Implemented mono_class_interface_offset, and wrapped all
17102         accesses to "MonoClass.interface_offsets".
17103
17104         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
17105         "MonoClass.interface_offsets".
17106
17107 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
17108
17109         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
17110         GetMethodFromHandle overloads (bug #78637).
17111
17112 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
17113
17114         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
17115         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
17116
17117 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
17118
17119         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
17120         #81498.
17121
17122         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
17123         gracefully.
17124         (mono_custom_attrs_from_index): Ditto.
17125
17126         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
17127         Fixes #81501.
17128
17129 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
17130
17131         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
17132         is now allocated from a mempool.
17133
17134 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
17135
17136         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
17137         caller holds threads_lock, leading to deadlocks. Fixes #81476.
17138
17139 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
17140
17141         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
17142         mono_loader_clear_error () too late. Fixes #81463.
17143
17144 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
17145
17146         * culture-info-table.h : regenerated.
17147
17148 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
17149
17150         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
17151         is missing.
17152
17153 2007-04-25  Dick Porter  <dick@ximian.com>
17154
17155         * Makefile.am: Put the mingw enforced-optimisation back into the
17156         PLATFORM_WIN32 section.
17157
17158 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
17159
17160         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
17161         patch.
17162
17163         * image.c (mono_image_load_module): New API function to load a module reference.
17164
17165         * image.c (load_modules): Load modules lazily. Fixes #80812.
17166
17167         * class.c (mono_class_from_typeref): Use mono_image_load_module.
17168         
17169         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
17170
17171         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
17172         to mono_image_load_module_dynamic.
17173
17174 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
17175
17176         * marshal.c: Fix calling convention for CCW on non-windows
17177         platforms. STDCALL on windows, CDECL everywhere else to work 
17178         with XPCOM and MainWin COM.
17179         
17180         Code is contributed under MIT/X11 license.
17181
17182 2007-04-23  Martin Baulig  <martin@ximian.com>
17183
17184         Fix #80969.
17185
17186         * loader.c
17187         (method_from_memberref): Added `gboolean *used_context' argument.
17188         (mono_get_method_from_token): Likewise.
17189         (mono_get_method_full): Don't insert the method in the cache when
17190         `used_context' is true.
17191
17192 2007-04-23  Raja R Harinath  <rharinath@novell.com>
17193
17194         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
17195
17196         * reflection.c (mono_reflection_bind_generic_parameters): Don't
17197         create new MonoTypes for returned types.
17198         * class.c (mono_generic_class_get_class): Export mono-internal.
17199         * class-internals.h: Update to changes.
17200
17201 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
17202
17203         * threadpool.c, threadpool.h, icall-def.h: patch from
17204         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
17205
17206 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
17207
17208         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
17209         
17210         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
17211
17212         * threads.c (mono_thread_get_stack_bounds): New helper function.
17213
17214         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
17215         Correctly compute stack bounds when attaching. Fixes #81394.
17216
17217 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
17218
17219         * reflection.c: fix handling of doubles in custom attributes
17220         for the arm-fpa format (bug #81368).
17221
17222 2007-04-18  Raja R Harinath  <rharinath@novell.com>
17223
17224         * reflection.c (assembly_add_win32_resources): Mildly relax an
17225         bounds check to let the end pointer point just past the end of the
17226         allocated buffer.  (may fix #81384)
17227
17228 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
17229
17230         * culture-info-table.h : regenerated.
17231
17232 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
17233
17234         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
17235         the thread is aborted early.
17236
17237 2007-04-05  Dick Porter  <dick@ximian.com>
17238
17239         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
17240         FindFirstFile()/FindNextFile() to find entries.  This lets the
17241         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
17242         81038.
17243
17244         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
17245         the parameters of
17246         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
17247
17248 2007-04-04  Martin Baulig  <martin@ximian.com>
17249
17250         * debug-helpers.c
17251         (mono_method_desc_full_match): Add support for nested classes.
17252
17253 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
17254
17255         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
17256
17257 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
17258
17259         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
17260         waiting for too many threads.
17261
17262 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
17263
17264         * environment.c: Fix return value check on uname so we can get the 
17265         executing version on Solaris operating systems.
17266
17267 2007-03-28  Jb Evain  <jbevain@gmail.com>
17268
17269         * class.c (mono_type_get_name_recurse): Complete the
17270         fix for the creation of assembly qualified names for
17271         pointer types. Fixes #81208.
17272
17273 2007-03-27  Dick Porter  <dick@ximian.com>
17274
17275         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
17276         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
17277         changed.
17278
17279         * threads.c
17280         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
17281         the value of ReleaseMutex().
17282
17283 2007-03-27  Dick Porter  <dick@ximian.com>
17284
17285         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
17286         in little-endian order, not network endian, so must be converted
17287         to host endian here.  Fixes bug 80593.
17288
17289 2007-03-22  Jb Evain  <jbevain@gmail.com>
17290
17291         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
17292         qualified names for pointer types. Fixes #81208.
17293
17294 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
17295
17296         * marshal.c: Add support for PreserveSigAttribute. 
17297         
17298         Code is contributed under MIT/X11 license.
17299
17300 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
17301
17302         * process.c: Fix endianness issues. Fixes #81126.
17303
17304         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
17305         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
17306
17307         * image.c (mono_image_lookup_resource): Make this work on big-endian
17308         machines.Change API contract so the caller needs to free the return value.
17309         
17310         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
17311         API change.
17312         
17313 2007-03-14  Martin Baulig  <martin@ximian.com>
17314
17315         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
17316         mono_type_get_desc() as well.
17317
17318 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
17319
17320         * icall.c:  Fix environ access in VS.  
17321         
17322 2007-03-13  Alp Toker  <alp@atoker.com>
17323
17324         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
17325         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
17326         #63841.
17327
17328 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
17329
17330         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
17331         circular references among dynamic methods. Fixes #81091.
17332
17333         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
17334
17335 2007-03-09  Martin Baulig  <martin@ximian.com>
17336
17337         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
17338
17339 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
17340
17341         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
17342         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
17343         
17344         Code is contributed under MIT/X11 license.
17345         
17346 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
17347
17348         * loader.c: Reapply patch for bug #79424.
17349
17350 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17351
17352         * metadata.c (mono_type_to_unmanaged): Only convert object to
17353         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
17354
17355 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
17356
17357         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
17358         (and incorrectly set) is_reference field from MonoGenericInst.
17359
17360 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17361
17362         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
17363         a little earlier.
17364
17365         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
17366
17367         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
17368
17369 2007-03-05  Miguel de Icaza  <miguel@novell.com>
17370
17371         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
17372         FileOptions.1 value to mean "temporary", map that to
17373         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
17374
17375         Fixes 80688
17376
17377 2007-03-03  Marek Habersack  <mhabersack@novell.com>
17378
17379         * appdomain.c: implement MS .Net style shadow copying. Copies of
17380         the assemblies are made in a subdirectory of the dynamic base
17381         directory, the assembly names are preserved.
17382         Copy .mdb and .config files along with the assemblies being shadowed.
17383
17384 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17385
17386         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
17387         (emit_marshal_handleref): Ditto.
17388
17389         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17390         on Visual C++. Fixes #80671.
17391
17392 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17393
17394         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17395         for clone operations.
17396
17397 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17398
17399         * marshal.c: Fix warnings.
17400
17401 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17402
17403         * loader.c: allow case-insensitive matching of the dll name
17404         in dllmap handling when prefixed with "i:".
17405
17406 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17407
17408         * threads.c: Fix #ifdef for dummy_apc function for VS.
17409
17410 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17411
17412         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17413
17414 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17415         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17416         giving precedence to the methods with a fully qualified name
17417         (InterfaceName.MethodName) when building the interface sections
17418         of the vtable.
17419
17420 2007-02-16  Dick Porter  <dick@ximian.com>
17421
17422         * threadpool.c (append_job): Fix fast-path array handling, so it's
17423         less likely the array will grow exponentially when the load is
17424         heavy.
17425
17426 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17427
17428         * metadata-internals.h, loader.c: fix dllmap lookup order
17429         for non-function maps, too, and prepare for fallback code.
17430
17431 2007-02-12  Robert Jordan  <robertj@gmx.net>
17432
17433         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17434         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17435         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17436         GlobalFree. Fixes a part of bug #77075.
17437
17438 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17439
17440         * loader.c: implemented typedef parent in field memberref.
17441
17442 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17443
17444         * marshal.c: Fix warnings and remember to call Release on
17445         IUnknown of RCW.
17446         
17447         Code is contributed under MIT/X11 license.
17448
17449 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17450
17451         * class-internals.h: Add MonoHandleRef definition, and
17452         handleref_class to mono_defaults. 
17453
17454         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17455         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17456
17457         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17458         (do nothing on this stage)
17459         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17460         (emit_marshal_handleref): New method, used for argument handling
17461         of HandleRefs. 
17462
17463 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17464
17465         * class.c (mono_class_setup_parent): Lazily init com types.
17466         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17467         init com types.
17468         * object.c (mono_remote_class_vtable): Lazily init com types.
17469         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17470         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17471         * domain-internals.h: Expose mono_init_com_types.
17472         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17473         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17474         Add support for COM Callable Wrapper marshalling.
17475         * marshal.h: Add icall definitions.
17476         * gc.c: Handle freeing of CCWs in finalizer code.
17477         
17478         Code is contributed under MIT/X11 license.
17479
17480 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17481
17482         * reflection.c: changed all the signature encoding code to use
17483         a variable-sized buffer.
17484
17485 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17486
17487         * marshal.c: locking fixes: never take the loader lock
17488         or other runtime locks when holding the marshal lock
17489         (fixes bug#80664).
17490
17491 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17492
17493         * marshal.c: make the delegate function pointer mapping
17494         work for the moving GC.
17495
17496 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17497
17498         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17499         for bug #80618.
17500
17501 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17502
17503         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17504         gmodule.
17505
17506 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17507
17508         * threadpool.c: made the code moving-GC safe.
17509
17510 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17511
17512         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17513         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17514         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17515         warning cleanup.
17516         * reflection.c: warning cleanup, some threading and moving GC fixes.
17517
17518 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17519
17520         * class.c, loader.c: create the needed Set/Get/Address array methods
17521         as well as the .ctors in mono_class_init (), fixes bug #80567.
17522
17523 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17524
17525         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17526         we doesn't decrease its alignment. Should fix the sparc build.
17527
17528 2007-01-24  Dick Porter  <dick@ximian.com>
17529
17530         * socket-io.c
17531         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17532         Create the returned object if we need to ignore an unsupported
17533         socket option.  Fixes a segfault reported by Atsushi.
17534
17535 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17536
17537         * class.c, object.c: restrict GC-tracked fields to
17538         UIntPtr fields used inside corlib, so we provide better
17539         type info to the GC and also allow broken packing as in
17540         bug #80580.
17541
17542 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17543
17544         * sgen-gc.c: removed duplicated function.
17545
17546 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17547
17548         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17549         value that means that the value is not supported, but that we
17550         should not return a failure, but instead report this as a
17551         successful operation.
17552
17553 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17554
17555         Fix tests/bug79956.2.il
17556         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17557         (mono_generic_class_get_class): If the generic definition in an
17558         enum, copy over other fields related to it.
17559
17560 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17561
17562         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17563         genericinst enums (bug #79215).
17564
17565 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17566         * class.c: Fix bug 80307.
17567
17568 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17569
17570         * image.c: if the file table is not present, try to load
17571         all the modules, since we don't have info about them
17572         having or not metadata (bug #80517).
17573         * assembly.c: allow mono_assembly_load_references () to
17574         work for netmodules.
17575
17576 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17577
17578         * image.c, metadata-internals.h, object.c: execute module
17579         cctors when running on the 2 runtime if present (bug #80487).
17580
17581 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17582
17583         * icall.c: optimized InitializeArray() on bigendian.
17584
17585 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17586
17587         * icall.c: fix for the broken ARM FPA double format.
17588
17589 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17590
17591         * icall.c: handle endian issues for r4 and r8 types, too, in
17592         the InitializeArray() icall.
17593
17594 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17595
17596         * loader.c (mono_loader_error_prepare_exception): Clear the error
17597         once we have extracted the information from it, do this before we
17598         call into the JIT's class loading mechanisms.
17599
17600         * object.c (mono_class_create_runtime_vtable): Do not clear the
17601         loader error before calling mono_class_get_exception_for_failure
17602         as the loader error is needed inside
17603         mono_class_get_exception_for_failure to throw the error (thinko).
17604
17605         Fixes #80521
17606         
17607 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17608
17609         * reflection.c: align fields rva data so it's faster to load at
17610         runtime.
17611
17612 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17613
17614         Prepare to simplify GenericMethod handling.
17615         * class-internals.h (mono_method_get_context): New accessor function.
17616         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17617         rather than directly accessing '->context' field.
17618
17619         * class-internals.h (_MonoGenericParam.method): Move ...
17620         (_MonoGenericContainer): ... here.  Add into union with klass field.
17621         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17622         Update to changes.
17623
17624 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17625
17626         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17627         the wrapper type enum and reduce relocations.
17628
17629 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17630
17631         * reflection.c (inflate_mono_method): Reuse method instantiation
17632         from the generic method, if available.
17633
17634 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17635
17636         * marshal.c (emit_marshal_variant): Fix conv_arg
17637         type in last commit, based on whether parameter is byref.
17638         
17639 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17640
17641         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17642         marshalling.
17643         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17644         MONO_TYPE_OBJECT back for VARIANT support.
17645
17646 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17647
17648         * marshal.c, marshal.h, icall-def.h: Implement 
17649         Marshal.ReAllocCoTaskMem.
17650
17651 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17652
17653         * marshal.c: memory retention fixes: use the proper
17654         image cache for runtime_invoke method lookups.
17655
17656 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17657
17658         * mempool.c: added code to help debug mempool allocations.
17659
17660 2007-01-11  Dick Porter  <dick@ximian.com>
17661
17662         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17663         support (experimenting with faking it with IP_MTU_DISCOVER for
17664         systems that don't have IP_DONTFRAGMENT.)
17665         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17666         icall.
17667
17668         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17669
17670         * socket-io.h: Add new fields to MonoSocketAsyncResult
17671         corresponding to the new ones in Socket.cs.
17672
17673 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17674
17675         Fix IronPython regression mentioned in #80249
17676         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17677         'cached_context' field, since it may have been initialized as a
17678         side-effect of metadata parsing.
17679
17680         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17681         (_MonoGenericClass.cached_class): Move here and rename from lone
17682         remaining field of ...
17683         (_MonoInflatedGenericClass): ... this.  Remove.
17684         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17685         to changes.
17686
17687         Fix mcs/tests/test-128.cs regression.
17688         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17689         2007-01-10 change below.
17690         [MONO_TYPE_OBJECT]: Recurse into array case.
17691
17692 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17693
17694         * class-internals.h (mono_get_inflated_generic_class): Remove.
17695         * class.c (mono_get_inflated_generic_class): Remove.
17696         (mono_generic_class_get_class): Rename from
17697         mono_class_create_generic.
17698         (mono_class_from_mono_type) [GENERICINST]: Use it.
17699         * reflection.c, metadata.c: Update to changes.  Use
17700         'mono_class_from_mono_type'.
17701
17702 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17703
17704         * reflection.c: use passed type when encoding an array element
17705         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17706
17707 2007-01-09  Robert Jordan  <robertj@gmx.net>
17708
17709         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17710         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17711         Fixes bug #80392.
17712
17713 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17714
17715         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17716
17717         * object.c (set_value): Avoid aliasing between type->data.klass
17718         and type->data.generic_class.
17719
17720         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17721
17722 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17723
17724         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17725         between type->data.klass and type->data.generic_class.
17726
17727 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17728
17729         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17730         value in out parameters.
17731
17732 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17733
17734         Simplify invariant for MonoGenericClass::klass field.
17735         * class.c (mono_class_create_generic): Verify 'klass' is null.
17736         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17737         initialize 'klass' field.
17738
17739 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17740
17741         Ongoing work to avoid redundant data and simplify invariants.
17742         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17743         'generic_class', and change type to a GenericInst.
17744         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17745         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17746
17747 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17748
17749         * class.c : skip io-layer under PLATFORM_WIN32.
17750
17751 2007-01-03  Tor Lillqvist  <tml@novell.com>
17752
17753         Fix #80305: In a bundled executable, look in the bundled exe
17754         assembly to determine the runtime version. Add the possibility to
17755         bundle also the machine.config file.
17756         
17757         * assembly.c (mono_assembly_open_from_bundle): Make
17758         non-static. Allow being called even if we have no bundled
17759         assemblies, and return NULL right away in that case.
17760
17761         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17762         here.
17763
17764         * domain.c (app_config_parse): Take an assembly exe file name as
17765         parameter instead of a config file name. Check for a bundled
17766         config file for that assembly by calling
17767         mono_config_string_for_assembly_file() (see below) before looking
17768         for one in the file system.
17769         (get_runtimes_from_exe): Corrsponding change to call of
17770         app_config_parse().
17771         (get_runtimes_from_exe): Check for bundled assembly exe file first
17772         by calling mono_assembly_open_from_bundle(). If no bundled
17773         assembly exe file is found, call mono_image_open() as before to
17774         look it up in the file system.
17775
17776         * mono-config.c: Add variable bundled_machinec_onfig.
17777         (mono_config_string_for_assembly_file): New function.
17778         (mono_config_for_assembly): Move code snippet that looks for a
17779         bundled assembly .config file into the above new function. Call
17780         it.
17781         (mono_register_machine_config, mono_get_machine_config): New
17782         functions to set and retrieve
17783
17784         * assembly.h: Declare mono_register_machine_config().
17785
17786         * mono-config.h: Declare mono_get_machine_config() and
17787         mono_config_string_for_assembly_file().
17788
17789         * icall.c: No declaration of environ necessary on Win32. It is
17790         declared (as a macro expanding to a function call) in stdlib.h.
17791         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17792         New internal mono function. Returns the value of
17793         mono_get_machine_config() as a Mono string.
17794
17795         * icall-def.h: Add get_bundled_machine_config().
17796
17797 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17798
17799         Remove redundant field
17800         * class-internals.h (_MonoGenericContext.container): Remove field.
17801         * loader.c (mono_method_get_signature_full): Don't parse a
17802         "container" for a signature parse when the signature is inflated
17803         immediately.
17804         (method_from_methodspec): Likewise, for a generic_inst.
17805         * class.c, metadata.c, reflection.c: Update to changes.
17806
17807 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17808
17809         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17810         'cached_context', and change semantics -- it starts off NULL, and
17811         is initialized on demand.
17812         * class.c (mono_generic_class_get_context): New accessor to
17813         replace 'context' field accesses.
17814         (mono_class_get_context): New helper.
17815         (*): Update to changes.
17816         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17817
17818 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17819
17820         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17821         before the memcpy.   Fixes Marshal2 regression.
17822
17823 2007-01-02  Jb Evain  <jbevain@gmail.com>
17824
17825         * blob.h: add a MONO_TYPE_ENUM definition
17826         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17827         fix the encoding of arrays of enums in custom attributes.
17828
17829         Fixes #79666.
17830
17831 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17832
17833         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17834         string is null terminated, but only cut the string short if it
17835         overflows the buffer.   
17836         
17837         (mono_string_to_byvalstr): Also fix this routine.   The code here
17838         was not properly terminating a string (it was only terminated
17839         because of the previous catch-all memset). 
17840
17841         I left the memset, because I do not know if applications expect
17842         the runtime to clear this region. 
17843
17844         Fixes #79944.
17845
17846         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17847         Clear the error before returning to unmanaged code to prevent the
17848         runtime from being confused later on (fixes  80420).
17849         (ves_icall_type_from_name): Always call mono_loader_clear_error
17850         after parsing a type that could have failed.
17851         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17852
17853         * loader.c (mono_loader_clear_error): Fix indentation.
17854
17855 2006-12-28  Martin Baulig  <martin@ximian.com>
17856
17857         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17858
17859 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17860
17861         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17862         getting a token for an EnumBuilder.
17863
17864 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17865
17866         * reflection.c: be more careful in case resource generation
17867         fails to create the data array.
17868
17869 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17870
17871         * sgen-gc.c: write barrier for clone and fix unregister handles.
17872
17873 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17874
17875         * reflection.c: some fixes needed in the generics code for the moving GC.
17876
17877 2006-12-22  Robert Jordan  <robertj@gmx.net>
17878
17879         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17880         account. Fixes bug #80299.
17881
17882 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17883
17884         Fix WaitHandle usage in delegates.
17885         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17886         * object.c (mono_wait_handle_new): Use the property set method to
17887         initialize the handle.
17888         (mono_wait_handle_get_handle): New.
17889         * threadpool.c (mono_async_invoke): Use it.
17890         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17891         Likewise.
17892         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17893
17894 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17895
17896         * marshal.c (emit_marshal): Call emit_marshal_variant and
17897         emit_marshal_com_interface when applicable.
17898         (emit_marshal_variant, emit_marshal_com_interface): Add
17899         methods for this case and remove if's from emit_marshal_object.
17900         
17901 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17902
17903         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17904
17905 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17906
17907         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17908         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17909         and GlobalFree on Windows. Remove FIXME.
17910
17911 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17912
17913         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17914         implementation for managed objects.
17915
17916 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17917
17918         * object.c: implemented code to be used for checking
17919         that no reference field overlaps with non-references.
17920
17921 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17922
17923         * threadpool.c: fix queue code to be compatible with the
17924         moving GC.
17925
17926 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17927
17928         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17929         in structures by throwing ArgumentNullException.
17930
17931         (emit_marshal_safehandle): Also when they are null parameters.
17932
17933         (emit_marshal_safehandle): Add support for ref
17934         SafeHandles parameters
17935
17936 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17937
17938         * profiler.c: updated to use the mono-dl API instead of
17939         gmodule.
17940
17941 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17942
17943         * profiler.c: updated to use the mono-dl dynamic loading
17944         API instead of gmodule.
17945
17946 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17947
17948         * profiler.c: use readlink, older versions of glib don't have
17949         g_file_read_link ().
17950
17951 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17952
17953         * profiler.c: try to detect the path to mono if libc fails to provide
17954         a useful name (bug #80286).
17955
17956 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17957
17958         Fix #80242
17959         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17960         instance, use the generic type definition instead.
17961         (ves_icall_Type_GetNestedTypes): Likewise.
17962         * class.c (mono_class_create_generic): Always set the
17963         nested_classes of a generic instance to NULL, even if the generic
17964         type definition has nested types.
17965
17966 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17967
17968         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17969         and fix on Linux.
17970         
17971 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17972
17973         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17974         my arguments were in the wrong order.   I also fixed the Windows
17975         version which seems to have had the same issue.
17976
17977         (mono_free_bstr): On Unix, this is g_free.
17978         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17979         conversions (for the tests in corlib to pass).
17980
17981 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17982
17983         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17984         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17985         exception if a ref SafeHandle in a struct has changed).
17986         
17987         (emit_struct_conv): Do not perform layout checks for classes
17988         derived from SafeHandle, as those are specially handled. 
17989
17990         (emit_object_to_ptr_conv): Add support for
17991         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17992
17993         (emit_marshal_safehandle): Implement conversion of return values
17994         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17995         
17996         * threads.c: WaitHandle now is compiled with two different handles
17997         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17998         for 2.0.
17999         
18000         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
18001         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
18002         these routines to cope with both kinds of fields.
18003
18004 2006-12-12  Miguel de Icaza  <miguel@novell.com>
18005
18006         * metadata.c (mono_type_to_unmanaged): Handle the case where
18007         type->data.klass is a SafeHandle, and in that case, return the
18008         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
18009         MONO_MARSHAL_CONV_SAFEHANDLE. 
18010
18011 2006-12-11  Miguel de Icaza  <miguel@novell.com>
18012
18013         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
18014         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
18015         calling emit_marshal_object.
18016
18017         (emit_marshal_safehandle): Implement marshalling of
18018         SafeHandle parameters (no ref support yet).
18019
18020         (MarshalAction): Document the defines as I implement
18021         them for SafeHandle.
18022
18023         (emit_marshal_object): indentation police.
18024
18025         * class-internals.h: Define MonoSafeHandle.
18026         Add safehandle_class to MonoDefaults type.
18027
18028         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
18029         list of classes to check for fields. 
18030
18031         * domain.c (mono_init_internal): Add SafeHandle to the list of
18032         mono_defaults loaded.
18033
18034 2006-12-15  Raja R Harinath  <rharinath@novell.com>
18035
18036         Fix #80253
18037         * reflection.c (mono_reflection_bind_generic_parameters): If the
18038         generic type definition is a type builder, ensure that it is fully
18039         initialized before instantiating it.  Kill some dead code.
18040
18041 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
18042
18043         * object.c: clear the loader_error () before loading
18044         more metadata stuff (bug #80258).
18045
18046 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
18047
18048         * icall.c, icall-defs.h: type modifiers icalls for
18049         parameters and properties.
18050
18051 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
18052
18053         * object.c, icall.c: fixed warnings.
18054
18055 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18056
18057         * marshal.c: fixed a couple of leaks and coding style in a few places.
18058
18059 2006-12-08  Dick Porter  <dick@ximian.com>
18060
18061         * process.c: Cope with NULL ProcessStartInfo arguments on windows
18062         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
18063         80173.
18064
18065 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18066
18067         * process.c: ProcessStartInfo may have only filename set and
18068         arguments can be NULL.
18069
18070 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18071
18072         * icall.c: fix leak found by Robert Jordan.
18073
18074 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18075
18076         * marshal.c, marshal.h: generate managed method to access an element
18077         of a multi-dimensional array.
18078
18079 2006-11-30  Paolo Molaro (lupus@ximian.com)
18080
18081         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
18082
18083 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18084
18085         * icall.c: back out GetFields () fix until the serialization code is
18086         fixed to not depend on the incorrect behaviour.
18087
18088 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
18089
18090         * profiler.c: provide defaults if none are set.
18091
18092 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
18093
18094         * Makefile.am, attrdefs.h: new public header file with
18095         constants for attributes for use by embedders.
18096
18097 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18098
18099         * icall.c: GetFields () fix for bug #80064.
18100
18101 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
18102
18103         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
18104         removed long unused icalls.
18105
18106 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
18107   
18108         * marshal.c: 
18109                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
18110                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
18111                 can be generated without a delegate class.
18112                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
18113         
18114         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18115
18116 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18117
18118         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
18119         #80069.
18120
18121 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18122
18123         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
18124         icall-def.h: added icalls needed by System.GC.
18125
18126 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
18127
18128         * loader.c: ensure the class in catch clauses is handled
18129         correctly for generics methods (fixes bug#79980).
18130
18131 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
18132
18133         * monitor.h, monitor.c: added mono_locks_dump () function
18134         to help debug deadlocks involving managed locks.
18135
18136 2006-11-13  Dick Porter  <dick@ximian.com>
18137
18138         * file-io.c (get_file_attributes): If the file is a symlink try
18139         and get the stat data for the target, but also add the
18140         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
18141         the specs for the windows symlink support, but will probably have
18142         to be reworked when I have test data from a vista machine.  Fixes
18143         bug 79887.
18144
18145 2006-11-13  Dick Porter  <dick@ximian.com>
18146
18147         * gc.c (mono_domain_finalize): 
18148         * marshal.c (mono_delegate_begin_invoke): 
18149         * threadpool.c (socket_io_init, mono_thread_pool_init)
18150         (mono_thread_pool_finish): 
18151         * monitor.c (mono_monitor_try_enter_internal): 
18152         * threads.c (mono_thread_resume, mono_thread_init)
18153         (mono_thread_suspend_all_other_threads)
18154         (mono_thread_execute_interruption): 
18155         * appdomain.c (mono_domain_unload): Check for NULL error returns
18156         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
18157         75733.
18158
18159 2006-11-11  Miguel de Icaza  <miguel@novell.com>
18160
18161         * process.c
18162         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
18163         Only close the handle if the value of the handle is not
18164         INVALID_HANDLE_VALUE.  This just makes the process a bit more
18165         robust.
18166
18167         Improvement for #75733, so that we do not run into this problem. 
18168
18169         
18170         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
18171         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
18172         internal variables.  Fixes #79462 
18173         
18174
18175 2006-11-09  Dick Porter  <dick@ximian.com>
18176
18177         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18178         Use poll() not select().  Fixes bug 79397.
18179
18180 2006-11-09  Raja R Harinath  <rharinath@novell.com>
18181
18182         Fix #79872
18183         * assembly.c (mono_assembly_load_from_full): Check that the given
18184         image has an assembly manifest.
18185
18186 2006-11-09  Ankit Jain  <jankit@novell.com>
18187
18188         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
18189         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
18190         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
18191
18192 2006-11-07  Dick Porter  <dick@ximian.com>
18193
18194         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18195         Put the old resolver behaviour back for pre-2.0 profiles.
18196
18197 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18198
18199         * threadpool.c: precise GC and locking fixes.
18200
18201 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
18202
18203         * class.c: don't load types that have an explicit unaligned
18204         managed reference. Provide better info in the TypeLoad exception.
18205         Part of the fix for bug #79744.
18206         * object.c: use the correct check for class type load issues.
18207
18208 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18209
18210         * class.c: enforce alignment of fields with managed references
18211         even when Pack=1 is forced by the user (bug #77788).
18212
18213 2006-11-03  Dick Porter  <dick@ximian.com>
18214
18215         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18216         If the address reverse lookup fails, return it as the hostname
18217         anyway.  Fixes bug 79721.
18218
18219 2006-11-03  Dick Porter  <dick@ximian.com>
18220
18221         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
18222         Fix build on Windows.
18223
18224 2006-11-02  Dick Porter  <dick@ximian.com>
18225
18226         * icall-def.h: 
18227         * object-internals.h: 
18228         * exception.c (mono_get_exception_thread_interrupted): 
18229         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
18230         Fixes bug 74525.
18231
18232         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
18233         Check for pending Thread.Interrupt.
18234
18235 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
18236         * loader.c: Fixed bug 79684.
18237
18238 2006-10-27  Dick Porter  <dick@ximian.com>
18239
18240         * file-io.c (get_file_attributes): Force symlinks to directories
18241         to be returned as a regular file.  Fixes bug 79733.
18242 2006-10-26  Dick Porter  <dick@ximian.com>
18243
18244         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
18245         CreateFile to open a directory then we need to set the
18246         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
18247
18248 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
18249
18250         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
18251         friends.
18252
18253 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18254
18255         * sgengc.c: small cleanup of timer code.
18256
18257 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18258
18259         * sgen-gc.c: fix some warnings and start adding support for
18260         complete object removal on domain unload.
18261
18262 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
18263
18264         * assembly.c: build_assembly_name should not consider a version
18265         number without build or revision number invalid. Fixes bug #79715.
18266
18267 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
18268
18269         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
18270         call kernel32 function OutputDebugString directly.
18271         
18272         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18273         
18274 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
18275
18276         * reflection.c: small cleanup, using a function to insert a MonoString
18277         in the string heap.
18278
18279 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
18280
18281         * reflection.c: moving GC fixes.
18282
18283 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
18284
18285         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
18286         all the objects with finalizers belonging to an unloading appdomain.
18287
18288 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
18289
18290         * sgen-gc.c: added ability to allocate even when the nursery is fully
18291         pinned and fixed a couple of bugs.
18292
18293 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18294
18295         * threads.h: Revert the last change for now.
18296
18297         * threads.h (mono_thread_get_pending_exception): Rename this to
18298         mono_thread_get_undeniable_exception ().
18299
18300 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
18301
18302         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
18303         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
18304         when fname does not refer to valid assembly. This result in a more
18305         meaningful error message.
18306         * exception.c: added mono_get_exception_bad_image_format2 which 
18307         constructs a BadImageFormatException using the ctor taking a custom
18308         message and the file name. Passing in a NULL msg results in a default
18309         message.
18310         * exception.h: define mono_get_exception_bad_image_format2 function.
18311         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
18312         when file name pointed to an invalid IL image. Use 
18313         mono_get_exception_file_not_found2 to construct FileNotFoundException,
18314         as this results in a more meaningful error message.
18315
18316 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18317
18318         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
18319         #79465.
18320
18321 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
18322
18323         * metadata.c (mono_type_size): Change the align parameter to guint32 for
18324         consistency with the other _size functions.
18325         (mono_type_stack_size): Ditto.
18326
18327         * class.c object.c icall.c: Fix warnings caused by the above change.
18328
18329         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
18330
18331         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
18332
18333         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
18334
18335 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18336
18337         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
18338         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
18339         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
18340         threadpool.h, threads-types.h: mark more internal functions.
18341
18342 2006-10-11  Dick Porter  <dick@ximian.com>
18343
18344         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18345         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
18346         reproduce the bug even before applying the fix.)
18347
18348 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
18349
18350         * reflection.c: allow retrieving attributes for arguments in generic
18351         methods (bug #79241).
18352
18353 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
18354
18355         * debug-mono-symfile.c: properly check fopen () result (found by
18356         coverity).
18357
18358 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
18359
18360         * reflection.c: make error message clearer and fixed two
18361         issuelets found by Coverity.
18362
18363 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
18364
18365         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
18366
18367 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18368
18369         * object-internals.h, gc-internal.h, profiler-private.h:
18370         mark internal functions.
18371
18372 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18373
18374         * reflection.c: put data in the text section.
18375         * icall.c: recognize more types in type_from_typename ().
18376         * process.c, marshal.c: added some GC FIXMEs.
18377
18378 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18379
18380         * loader.c: check for NULL before initializing.
18381
18382 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
18383
18384         * gc.c (finalizer_thread): Use a non-alertable wait here.
18385
18386         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
18387         until the correct solution is found.
18388
18389 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18390
18391         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18392         modules with no metadata. Fixes #79596.
18393
18394         * image.c (load_metadata_ptrs): Put back the error message when
18395         the #- heap is encountered since the support is not complete yet.
18396
18397 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18398
18399         * gc.c: do not allow the user to SuppressFinalize () a
18400         delegate because it would leak the trampoline if present.
18401
18402 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18403
18404         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18405         PropertyPtr table.
18406
18407 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18408
18409         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18410
18411         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18412
18413         * row-indexes.h: Add definitions for *Ptr tables.
18414
18415         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18416
18417         * metadata.c (mono_metadata_translate_token_index): New helper function to
18418         translate table indexes used in uncompressed metadata.
18419         (mono_metadata_decode_table_row): Ditto.
18420         (mono_metadata_decode_table_row_col): Ditto.
18421
18422         * metadata.c: Add table schema for *Ptr tables.
18423
18424         * class.c loader.c: Use the new helper function to access the affected metadata
18425         tables.
18426         
18427         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18428         #38532.
18429         
18430 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18431
18432         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18433         sequences which can be unbounded in size. Fixes #79583.
18434
18435 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18436
18437         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18438         static initialization.
18439
18440         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18441
18442         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18443
18444         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18445
18446         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18447         ctor fails, i.e. throw the same exception on subsequent accesses.
18448         
18449 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18450
18451         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18452         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18453         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18454         Handle marshalling of interfaces and VARIANTs contained in structs.
18455         
18456         Code is contributed under MIT/X11 license.
18457         
18458 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18459
18460         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18461         
18462         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18463         mempool.
18464
18465 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18466
18467         * console-io.c: ignore previous SIGINT handler.
18468
18469 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18470
18471         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18472         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18473         #79460, #79461, #79485.
18474
18475         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18476
18477         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18478         #79217.
18479
18480 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18481
18482         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18483         could be generated from it.
18484
18485 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18486
18487         * rand.c: fix read loop to correctly handle EINTR.
18488
18489 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18490
18491         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18492         internal calls are defined to keep methods closer to the declaring
18493         type and allow a significant reduction in runtime relocations and
18494         memory usage.
18495
18496 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18497
18498         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18499         exception message to have FileNotFoundException use the default
18500         assembly load error message. Fixes bug #79426.
18501         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18502
18503 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18504
18505         * threadpool.c: (start_thread_or_queue) use the root domain when
18506         creating the thread instead of the async object one.
18507
18508 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18509
18510         * class.c, object.c, class-internals.h, reflection.c:
18511         for arrays, store element_size inside MonoClass (speedup
18512         for array object creation).
18513
18514 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18515
18516         * icall.c: fixed CodeBase to use the file name and not the module
18517         name (bug #79365).
18518
18519 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18520
18521         * mono-debug.c, mono-debug.h: export find_method as
18522         mono_debug_find_method ().
18523
18524 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18525
18526         * debug-helpers.c, class-internals.h: added a few functions useful
18527         when debugging under gdb.
18528
18529 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18530
18531         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18532         characters that need special handling.
18533
18534 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18535
18536         * mono-config.c: make the os/cpu specification more flexible,
18537         allowing lists and negation.
18538
18539 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18540
18541         * marshal.c: COM Interop fixes. Handle case where method->klass.
18542         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18543         calling convention on non-windows platforms. This is for
18544         compatibility with XPCOM and MainWin COM.
18545         
18546         Code is contributed under MIT/X11 license.
18547         
18548
18549 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18550
18551         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18552         correctly. Fixes #79217.
18553
18554         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18555
18556 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18557
18558         * mono-config.c: allow both an os and cpu attribute for dllmap
18559         and dllentry elemnets to enable a single config file to be used
18560         for multiple architectures.
18561
18562 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18563
18564         * loader.c: MonoLoaderError was cleared too soon on load failure.
18565         Fixes bug #79424.
18566
18567 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18568
18569         * icall.c: use the defining class vtable when accessing a
18570         static field, not a pobblibly derived class.
18571
18572 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18573
18574         * icall.c string-icalls.c: Remove references to unicode.h.
18575
18576         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18577
18578         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18579
18580         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18581         indicating the image where custom marshaller types should be looked up.
18582         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18583         custom marshallers, instead of corlib. Fixes #79425.
18584
18585 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18586
18587         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18588
18589 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18590
18591         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18592         Implement Environment.ProcessorCount.
18593         
18594         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18595         Implement Environment.ProcessorCount.
18596         
18597         * icall.c: 
18598         Add Environment.ProcessorCount icall.
18599         
18600         Patch by Jason McFall.
18601
18602 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18603
18604         * assembly.c: don't append .exe/.dll when the filename already contains
18605         one of those extensions.
18606
18607 2006-09-12  Martin Baulig  <martin@ximian.com>
18608
18609         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18610         to array interfaces.
18611
18612 2006-09-11  Martin Baulig  <martin@ximian.com>
18613
18614         * reflection.c (mono_image_build_metadata): Create the
18615         MethodImpl's after emitting all types and methods, so we don't
18616         need another fixup pass for them.
18617
18618 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18619
18620         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18621         change.
18622
18623 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18624
18625         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18626         unload.
18627
18628 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18629
18630         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18631         args is not set. Fixes #78926.
18632
18633 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18634
18635         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18636
18637         * image.c (load_class_names): Move this to class.c, and rename it to 
18638         'mono_image_init_name_cache'.
18639         (load_modules): Fix a warning.
18640
18641         * class.c icall.c image.c: Initialize image->name_cache lazily.
18642
18643         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18644         on its name using information in the AOT file.
18645
18646         * class.c (mono_class_from_name): Use the new hook function.
18647
18648 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18649
18650         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18651         correctly.
18652
18653         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18654         Fixes #79289.
18655         
18656 2006-09-06  Martin Baulig  <martin@ximian.com>
18657
18658         * icall.c (mono_lookup_internal_call): Small fix.
18659
18660 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18661
18662         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18663         double g_free.
18664
18665 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18666
18667         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18668         when --debug is specified.
18669
18670 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18671
18672         * class.c (setup_generic_array_ifaces): Fix a warning.
18673
18674 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18675
18676         * Temporarily remove the patch to assemly.c that checks the
18677         assembly versions as it breaks our gacutil.
18678
18679 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18680
18681         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18682
18683         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18684         a net 1.0 runtime.
18685
18686         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18687         created using the default ctor. Fixes #79152.
18688         (mono_string_builder_to_utf16): Ditto.
18689
18690 2006-09-01  Martin Baulig  <martin@ximian.com>
18691
18692         Fix handling of the generic array interfaces.
18693
18694         * class-internals.h
18695         (MonoDefaults): Removed `generic_array_class' and added
18696         `generic_ilist' class.
18697
18698         * class.c
18699         (mono_bounded_array_class_get): Add the new generic array interfaces.
18700         (setup_generic_array_ifaces): New static method; create vtable
18701         entries for each method in the generic array interfaces.
18702
18703         * metadata.c
18704         (select_container): Allow "parent-less" generic methods.
18705
18706         * marshal.c
18707         (mono_marshal_get_generic_array_helper): New public method.
18708
18709         * icall.c
18710         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18711         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18712         moved the interncall into System.Array.
18713
18714 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18715
18716         A few more cases of avoiding work on types with ->byref set.
18717         Has the real fix for #79238
18718         * icall.c (is_generic_parameter): New helper.
18719         (ves_icall_Type_GetGenericParameterPosition): Use it.
18720         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18721         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18722         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18723         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18724         reference types.
18725         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18726         reference types.
18727         (ves_icall_Type_get_IsGenericInstance): Likewise.
18728         (ves_icall_Type_get_IsGenericType): Likewise.
18729
18730 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18731
18732         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18733         class if possible.
18734
18735         * mempool.h (mono_mempool_get_allocated): New helper function.
18736
18737         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18738         change.
18739
18740         * mempool.c: Fix warnings and the calculation of stats.
18741
18742         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18743
18744         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18745
18746         * loader.c (mono_get_method_from_token): Update method_count stat.
18747
18748         * class-internals.h (MonoStats): Add some stats.
18749
18750 2006-08-31 Robert Jordan  <robertj@gmx.net>
18751
18752         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18753         with managed variants.
18754         All code is contributed under the MIT/X11 license.
18755         
18756 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18757
18758         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18759         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18760
18761         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18762
18763         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18764         with cycles in classes.
18765
18766         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18767
18768         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18769         missing a [MarshalAs] directive. Fixes #79203.
18770
18771         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18772         klass->marshal_info. Fixes #79217.
18773
18774 2006-08-30  Martin Baulig  <martin@ximian.com>
18775
18776         Committing a patch from Joachim Ante <joe@otee.dk>:
18777         Add support for binary data symbol stores.
18778
18779         * debug-mono-symfile.c
18780         (mono_debug_open_mono_symbol_file): Renamed into
18781         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18782         arguments.
18783
18784         * mono-debug.c
18785         (mono_debug_open_image): Added `raw_contents' and `size' args.
18786         (mono_debug_init_2_memory): New public function.
18787
18788 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18789
18790         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18791
18792 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18793
18794         * appdomain.c: implement support for ShadowCopyFiles.
18795
18796 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18797
18798         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18799         when value is NULL (and should remove CID #51).
18800
18801 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18802
18803         * image.c: moved 2 functions to ../utils.
18804
18805 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18806
18807         * gc.c: cope with the target object of a GC handle being NULL
18808         (bug #78877).
18809
18810 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18811
18812         * class.c: recursively check parent's explicit implementations
18813         of interface methods (fixes bug #79125).
18814
18815 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18816
18817         * filewatcher.c: Avoid warnings when building, do not redefine
18818         constants that are defined.
18819
18820         Remove warnings.
18821
18822 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18823
18824         * image.c: don't fail when the link points to an absolute path.
18825
18826 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18827
18828         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18829         Fix CID #3.
18830
18831 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18832
18833         * image.c (full_path): A new method used to obtain the actual path
18834         of an assembly even in the presence of symbolic links.  
18835
18836         This is necessary for the case where we are running a binary that
18837         has been GACed, but we are using the "published" path name
18838         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18839         file in the GAC.
18840
18841         This was the source of the failure for the `xsp' command with the
18842         recent AppDomain changes, as far as the runtime was concerned,
18843         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18844         $prefix/mono/gac/blah/version/blah.exe.
18845
18846         (do_mono_image_open): use full path
18847
18848 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18849
18850         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18851
18852 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18853
18854         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18855         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18856
18857 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18858
18859         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18860         small structures. Fixes #78990.
18861
18862 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18863
18864         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18865
18866         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18867
18868 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18869
18870         * appdomain.c:
18871         * marshal.c: don't load all the assemblies from a domain into newly
18872         created ones. The new domains might have different rules and load
18873         assemblies from different locations. Fixes bug #76757.
18874
18875         Patch by Lluis. Conflicts resolved by Brian Crowell.
18876
18877 2006-08-16  Alp Toker  <alp@atoker.com>
18878
18879         * socket-io.c: First half of the fix for #79084.
18880         Set sa_size to the length of the content, not that of the struct.
18881         Don't add NULL suffix to the content, this should be done in
18882         managed code if needed.
18883
18884 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18885
18886         Fix part of #79012
18887         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18888         mono_metadata_parse_type returns NULL.
18889
18890 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18891
18892         * normalization-tables.h : new file for string normalization data.
18893         * locales.c, locales.h, icall.c :
18894           added load_normalization_resource() for string normalization,
18895           and icall as well.
18896         * Makefile.am : added normalization-tables.h to the sources.
18897
18898 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18899
18900         * marshal.c: Add more helper functions to reduce code duplication and use them
18901         everywhere.
18902
18903 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18904
18905         * marshal.c: Fix non-x86 stdcall warnings.
18906         
18907         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18908         them everywhere.
18909
18910 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18911
18912         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18913         type check on multi-dimensional arrays. Fixes #79000.
18914
18915 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18916
18917         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18918         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18919         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18920         * class-internals.h: add is_com_object to class structure.
18921         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18922         null checks to COM object marshalling. Fix .ctor call on RCW.
18923         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18924         
18925         All code is contributed under the MIT/X11 license.
18926
18927 2006-08-09  Dick Porter  <dick@ximian.com>
18928
18929         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18930         racing mono_monitor_allocator_lock() somewhere, so don't delete
18931         the critical section for now.  Found by running and exiting
18932         monodevelop.
18933
18934 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18935
18936         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18937         (ves_icall_System_ComObject_FindInterface): Ditto.
18938         (ves_icall_System_ComObject_CacheInterface): Ditto.
18939
18940         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18941         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18942
18943 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18944
18945         * threadpool.c: treat pipes from process asynchronous reads as sockets
18946         when reading from them, so we get select/poll or epoll to wait for
18947         data.
18948
18949 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18950
18951         * loader.c: Fix a typo (CID #233) in the null check.
18952
18953 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18954
18955         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18956         Hopefully fixes #78949.
18957         
18958         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18959         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18960         bytes. Fixes #78972.
18961
18962 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18963
18964         * filewatcher.c: we need to set errno here.
18965
18966 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18967
18968         * filewatcher.c: let Win32Exception get the error value.
18969
18970 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18971
18972         * filewatcher.c: translate errno into win32 errors for Win32Exception
18973         to know what happened.
18974
18975 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18976
18977         * threadpool.c: Fix more warnings.
18978
18979         * assembly.c (search_loaded): Fix warnings.
18980
18981         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18982         (mono_async_invoke): Ditto.
18983
18984 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18985
18986         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18987         entries for __ComObject type in addition to ComImport types.
18988         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18989         about hash table.
18990         
18991         All code is contributed under the MIT/X11 license.
18992
18993 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18994
18995         * image.c: avoid tentative loading of modulerefs that contain
18996         no metadata (P/Invoke library names).
18997
18998 2006-07-28  Dick Porter  <dick@ximian.com>
18999
19000         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
19001         mono_loader_lock() somewhere, so don't delete the critical section
19002         for now.  Found by running and exiting monodevelop.
19003
19004 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19005
19006         * filewatcher.c: define the inotify syscalls when we're building on
19007         linux and have sys/syscall.h. The build system might not have support
19008         for inotify but the target system might have it.
19009
19010 2006-07-26  Miguel de Icaza  <miguel@novell.com>
19011
19012         * domain.c: Documentation updates.
19013
19014         * loader.c (mono_free_method): Do not release the method
19015         information if we are being profiled, as profilers will use this
19016         information at shut down to present some data to the user.
19017
19018         This is needed so that the profiler does not crash, as the
19019         profiler tends to keep MonoMethods around, and they might become
19020         invalid if we free these.
19021
19022         (mono_get_method_constrained): Return the original CIL stream
19023         method as well, so verification can be performed against it.
19024
19025 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19026
19027         * filewatcher.[ch]: support for inotify file system watcher.
19028         * icall.c: add new internal calls for the inotify file system watcher.
19029
19030 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19031
19032         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
19033         #78888.
19034
19035 2006-07-20  Dick Porter  <dick@ximian.com>
19036
19037         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
19038         warning.
19039
19040 2006-07-20  Dick Porter  <dick@ximian.com>
19041
19042         * threads.c (start_wrapper): Do the thread cleanup while we still
19043         hold a reference to its object.  Fixes bug 78123.
19044
19045 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
19046
19047         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
19048         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
19049           "managed-to-managed".
19050         * icall.c: Redirect string constructors that take sbyte* to
19051           ves_icall_System_String_ctor_RedirectToCreateString.
19052         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
19053           to CreateString () methods with matching signature.
19054         * reflection.c: Use original security informations for
19055           MONO_WRAPPER_MANAGED_TO_MANAGED.
19056         * security-manager.c: Use original security informations for
19057           MONO_WRAPPER_MANAGED_TO_MANAGED.
19058         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
19059           that is a placeholder and only its address should be used.
19060         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
19061           that is a placeholder and only its address should be used.
19062
19063 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
19064
19065         Begin implementing COM Interop.
19066         * appdomain.c: Increment corlib version.
19067         * class.c: Set ComImport classes' parent to __ComObject.
19068         * loader.c: Mark cominterop methods as such.
19069         * domain.c: Add __ComObject class to MonoDefaults structure.
19070         * image.c: Add 2 hashtables to the image for COM Interop related methods
19071         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
19072         using the mempool allocator
19073         
19074         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
19075         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
19076         declaration for mono_metadata_type_dup_mp.
19077         
19078         * debug-helpers.c: Added strings for two additional wrapper types
19079         * object.c: Create proxy objects for ComImport classes
19080         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
19081         and added __ComObject class to MonoDefaults structure.
19082         
19083         * object-internals.h: Finish MonoRealProxy definition, and add definition of
19084         MonoComInteropProxy and MonoComObject.
19085         
19086         * marshal.c: Added support for COM Interop
19087         (signature_cominterop): Converts managed signature to corresponding
19088         unmanaged COM signature.
19089         (cominterop_get_function_pointer): gets unmanaged function pointer via
19090         COM object vtable
19091         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
19092         (cominterop_get_method_interface): returns interface type that method is defined on
19093         (mono_mb_emit_cominterop_call): emits native call to function pointer
19094         gotten from vtable
19095         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
19096         that matches signature of unmanaged function.
19097         (cominterop_get_native_wrapper): wrapper around adjusted method call.
19098         (cominterop_get_invoke): forwards call from proxy to __ComObject
19099         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
19100         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
19101         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
19102         
19103         * marshal.h: Added Marshal icall declarations.
19104         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
19105         so we can access them in finalizer
19106         
19107 2006-07-14  Dick Porter  <dick@ximian.com>
19108
19109         * object.c (mono_type_initialization_cleanup): Fix a race
19110         condition by temporarily commenting out the critical section
19111         deletion.
19112
19113 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
19114
19115         * reflection.c (create_custom_attr): Fix some warnings.
19116         (create_custom_attr_data): Ditto.
19117         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
19118         types. Fixes #78855.
19119
19120 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
19121
19122         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
19123
19124         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
19125
19126 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
19127
19128         * reflection.c (resolve_object): Add support for DynamicMethod.
19129
19130         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
19131         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
19132
19133 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
19134
19135         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
19136         don't leak GPtrArray's pdata has we have no use (nor free) for it.
19137
19138 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
19139
19140         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
19141         Fixes #77888.
19142
19143 2006-06-30  Raja R Harinath  <rharinath@novell.com>
19144
19145         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
19146         slightly: remove a shadow local variable.
19147
19148 2006-06-29  Raja R Harinath  <rharinath@novell.com>
19149
19150         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
19151         definition that introduces the virtual function slot.
19152         Also fix Coverity #105.
19153
19154 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
19155
19156         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
19157         for dynamic assemblies. Fixes #78724.
19158
19159 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
19160
19161         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
19162         Fixes #78722.
19163
19164 2006-06-21  Martin Baulig  <martin@ximian.com>
19165
19166         * reflection.c
19167         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
19168         fixes #76484.
19169
19170 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
19171
19172         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
19173
19174 2006-06-20  Raja R Harinath  <rharinath@novell.com>
19175
19176         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
19177         nor TYPEREFs.
19178         * class.c (mono_class_create_from_typespec): Add 'context' argument.
19179         Inflate result if necessary.
19180         (mono_class_get_full): Remove old version.  Rename from
19181         'mono_class_get' and add 'context' argument.  Pass it to
19182         ..._create_from_typespec.
19183         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
19184         (mono_ldtoken): Revert change below.
19185
19186 2006-06-20  Martin Baulig  <martin@ximian.com>
19187
19188         * class.c (mono_ldtoken): Don't pass the generic context to
19189         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
19190
19191 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
19192
19193         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
19194         and later freeing it. Fixes #78638.
19195
19196 2006-06-15  Miguel de Icaza  <miguel@novell.com>
19197
19198         * icall.c (mono_class_get_throw): Revert over-zealous error
19199         throwing, the caller for mono_class_get_throw will cope with
19200         errors when classes are not properly initialized already.
19201
19202         The code still copes with loader exceptions though.
19203
19204         Fixes the regression in reftype1 and reftype3 from the CAS tests.
19205         
19206 2006-06-14  Miguel de Icaza  <miguel@novell.com>
19207
19208         Fixes the `make run1' version of RuntimeAbort (to be commited,
19209         source is in Bugzilla).
19210         
19211         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
19212         FALSE on class loading failure instead of returning true.
19213
19214         * class.c (mono_class_create_from_typedef): It is possible for
19215         mono_metadata_interfaces_from_typedef_full to fail if a class is
19216         not found, cope with this.
19217         
19218
19219 2006-06-14  Dick Porter  <dick@ximian.com>
19220
19221         * socket-io.c: 
19222         * process.c: Fix a bunch of signed/unsigned warnings from gcc
19223         4.1.1
19224
19225 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
19226
19227         * culture-info-table.h : oops, forgot to make it nsync with r61548.
19228
19229 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19230
19231         * icall.c: Another fix for building mono in Visual Studio.
19232
19233 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19234
19235         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
19236         
19237 2006-06-09  Martin Baulig  <martin@ximian.com>
19238
19239         * debug-mono-symfile.c: Put this back and really fix it this
19240         time. Sorry for all the trouble.
19241
19242 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
19243
19244         * icall.c (mono_class_get_throw): Fix a warning.
19245         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
19246         ReflectionTypeLoadException if needed. Fixes #78606.
19247
19248         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
19249         (mono_class_init): Ditto.
19250
19251         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
19252         ref_only exceptions.
19253         (mono_loader_clear_error): Make this work even if there is no error.
19254
19255 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
19256
19257         * object-internals.h marshal.c marshal.h icall.c: Implement method 
19258         Marshal.GetComSlotForMethodInfo using internal call.
19259
19260 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
19261
19262         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
19263         a function for signalling it.
19264
19265         * class.c (mono_class_from_typeref): Use the new kind of loader error when
19266         a referenced assembly is not found.
19267
19268         * loader.c (mono_loader_error_prepare_exception): Add support for 
19269         LOADER_ERROR_ASSEMBLY. Fix formatting.
19270
19271 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19272
19273         * domain.c appdomain.c class-internals.h marshal.c: Add support 
19274         for VARIANT marshalling on windows and increment corlib version
19275         since Variant struct was added.
19276
19277 2006-06-03  Miguel de Icaza  <miguel@novell.com>
19278
19279         * debug-mono-symfile.c: Revert Martin's previous patch which broke
19280         stack trace line information:
19281
19282         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
19283         (Martin) when looking up B which is between A and C, return A not C.
19284
19285         Bug is #78573.
19286
19287         Thanks to Alexander Olk for tracking this down.
19288
19289 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
19290
19291         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
19292         
19293         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
19294         avoid clobbering its value.
19295         (mono_string_to_lpstr): Fix a warning on windows.
19296
19297 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19298
19299         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
19300
19301         * reflection.c loader.c: Removed references to 'dummy' flag.
19302
19303         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
19304
19305         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
19306         it gets GC tracking.
19307
19308         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
19309         GC tracking.
19310         
19311         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
19312
19313         * marshal.c threadpool.c: Update callers of mono_async_result_new.
19314
19315         * appdomain.c: Bump corlib version.
19316
19317 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19318
19319         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19320         CEE_STIND_REF when working with object references.
19321
19322 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19323
19324         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
19325         Fixes #78539.
19326
19327 2006-05-30  Miguel de Icaza  <miguel@novell.com>
19328
19329         * loader.c (method_from_memberref): Fix argument value for
19330         mono_loader_set_error_method_load (I was passing the MonoClass
19331         instead of the class name char *).
19332
19333 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19334
19335         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19336         CEE_STIND_REF when working with object references.
19337
19338 2006-05-30  Martin Baulig  <martin@ximian.com>
19339
19340         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
19341         mono_method_full_name() change and replace the ':' with a '.'
19342         here.
19343
19344 2006-05-30  Martin Baulig  <martin@ximian.com>
19345
19346         * debug-mono-symfile.c
19347         (mono_debug_symfile_lookup_location): Fix the algorithm:
19348         when looking up B which is between A and C, return A not C.
19349
19350 2006-05-29  Martin Baulig  <martin@ximian.com>
19351
19352         * mono-debug.h
19353         (MonoDebugMethodInfo): Make the typedef public.
19354         (MonoDebugSourceLocation): New public struct.
19355
19356         * mono-debug.c
19357         (mono_debug_source_location_from_address): Removed.
19358         (mono_debug_source_location_from_il_offset): Removed.
19359         (mono_debug_il_offset_from_address): Removed.
19360         (mono_debug_address_from_il_offset): Removed.
19361         (mono_debug_lookup_method): New public function.
19362         (mono_debug_lookup_source_location): New public function; replaces
19363         the old mono_debug_source_location_from_*() functions; see the
19364         inline documentation.
19365         (mono_debug_free_source_location): New public function.
19366         (mono_debug_print_stack_frame): New public function; see the
19367         inline documentation.
19368
19369         * debug-mono-symfile.c
19370         (mono_debug_find_source_location): Renamed into
19371         mono_debug_symfile_lookup_location(); only take a
19372         `MonoDebugMethodInfo *' and an `offset' argument; added inline
19373         documentation.
19374         (mono_debug_find_method): Renamed into
19375         mono_debug_symfile_lookup_method().
19376
19377 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
19378
19379         * assembly.c (mono_assembly_open_full): Dont overwrite the status
19380         returned by mono_image_open_full ().
19381
19382         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
19383         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
19384         #78517.
19385
19386         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
19387         #78518.
19388
19389 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19390
19391         * class.c (mono_class_from_typeref): handle missing images
19392         earlier, deals with bug #78418.   Refactor code; 
19393
19394         Fix a warning introduced in my previous commit (some stale code
19395         from before I revisited my patch).
19396
19397         * class.c (mono_class_create_from_typedef): On failure, remove the
19398         class from the MonoImage->class_cache as the class is not
19399         initialized;   Fixes the leak pointed out by Paolo.
19400
19401 2006-05-25  Dick Porter  <dick@ximian.com>
19402
19403         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19404         DeleteCriticalSections until I figure out which one may still be
19405         sometimes locked when mono_thread_cleanup is called.
19406
19407 2006-05-24  Dick Porter  <dick@ximian.com>
19408
19409         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19410         of mono_thread_manage and back into its own function, so it can be
19411         called after the finalizer thread has finished.
19412
19413         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19414
19415 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19416
19417         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19418         Fixes #78495.
19419
19420         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19421         with non-blittable elements.
19422         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19423
19424 2006-05-24  Martin Baulig  <martin@ximian.com>
19425
19426         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19427         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19428
19429         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19430         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19431         `mono_debugger_event_handler' to NULL.
19432
19433 2006-05-24  Martin Baulig  <martin@ximian.com>
19434
19435         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19436
19437 2006-05-24  Martin Baulig  <martin@ximian.com>
19438
19439         * mono-debug-debugger.h
19440         (mono_debugger_create_notification_function): Added
19441         `MonoCodeManager *' argument.
19442
19443 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19444
19445         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19446
19447 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19448
19449         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19450         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19451         implementation.
19452
19453 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19454
19455         * icall.c: precise GC support: objects can't be stored in unmanaged
19456         memory anymore, even if they are kept alive by other references: since
19457         they can move the GC needs to be able to always find them.
19458
19459 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19460
19461         * object.c: precise GC support for static fields. Support
19462         for moving GCs: write barriers and pinned allocation for interned
19463         strings.
19464
19465 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19466
19467         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19468         structure.
19469
19470 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19471
19472         * class.c, gc.c: sgen and precise GC updates.
19473
19474 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19475
19476         * marshal.h, marshal.c: added write barrier wrapper and precise type
19477         fixes.
19478
19479 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19480
19481         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19482         support.
19483
19484 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19485
19486         * reflection.c: precise and sgen GC updates.
19487
19488 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19489
19490         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19491
19492 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19493
19494         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19495
19496 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19497
19498         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19499         MONO_TYPE_OBJECT. Fixes #78462.
19500
19501 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19502
19503         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19504         and blittable types.
19505
19506 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19507
19508         * class.c (mono_class_get_exception_for_failure): Implement parts
19509         of a TODO: if the loader error is set (instead of the class
19510         error), we return a Loader exception that can be properly thrown
19511         elsewhere.
19512
19513         This was exposed by some Winforms 2.0 code that I tried to run
19514         (Atsushi pointed me to it).
19515
19516 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19517
19518         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19519         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19520         
19521         * marshal.c (emit_marshal_vtype): Add limited support for 
19522         UnmanagedType.LPStruct. Fixes #78427.
19523
19524         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19525         Applied a patch from kangaroo to fix #77523.
19526
19527 2006-05-17  Martin Baulig  <martin@ximian.com>
19528
19529         * threads.c
19530         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19531         (debugger_thread_created): Removed.
19532         (debugger_thread_exited): Removed.
19533
19534 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19535
19536         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19537
19538         * object-internals.h (MonoReflectionResource): Sync with managed version.
19539
19540 2006-05-12  Wade Berrier <wberrier@novell.com>
19541
19542         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19543
19544 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19545
19546         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19547         functions try to allocate from the image mempool.
19548
19549 2006-05-12  Dick Porter  <dick@ximian.com>
19550
19551         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19552
19553 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19554
19555         * object.c: The FieldGetter and FieldSetter methods require the full
19556         name of the class, not only the name. Fixes bug #78277.
19557
19558 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19559
19560         * loader.c (method_from_memberref): Do not pass the NULL klass to
19561         mono_loader_set_error_() methods.  Pass the non-NULL value
19562         (class). 
19563
19564 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19565
19566         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19567         (mono_assembly_close): Null out assembly->image->references after freeing it.
19568
19569         * image.c (mono_image_close): Free image->references.
19570         
19571         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19572
19573 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19574
19575         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19576         before checking if it's NULL (g_assert).
19577
19578 2006-05-10  Martin Baulig  <martin@ximian.com>
19579
19580         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19581         I thought I already killed that two months ago, but now it somehow reappeared.
19582
19583 2006-05-10  Martin Baulig  <martin@ximian.com>
19584
19585         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19586
19587 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19588
19589         * reflection.c: Allocate memory for dynamically created methods in the image
19590         mempools.
19591
19592 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19593
19594         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19595         don't use the ad pointer before checking if it's NULL (g_assert).
19596
19597 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19598
19599         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19600         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19601
19602         * marshal.c: Allocate all signatures from mempools.
19603
19604         * marshal.c: Allocate some more signatures from mempools.
19605
19606 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19607
19608         * object.c (mono_load_remote_field): The code used to provide a
19609         temporary variable for returning results if the user did not
19610         provide a result pointer.  But our temporary variable was allocted
19611         on the satck.
19612
19613         Fix calling code to always pass a result area.   Coverity ID 103.
19614
19615 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19616
19617         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19618         value, not the old. Fixes #78312.
19619         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19620
19621         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19622         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19623         per-image cache.
19624
19625         * assembly.c (mono_assembly_close): Free image->references.
19626
19627         * assembly.c (mono_assembly_names_equal): Fix a warning.
19628         (mono_assemblies_cleanup): Cleanup more global data.
19629
19630         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19631
19632         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19633         ptr_cache and image->modules.
19634
19635         * image.c (mono_image_init): Allocate array_cache lazily.
19636         
19637 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19638
19639         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19640         behavior was changed recently and has bad side effects.
19641
19642 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19643
19644         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19645         
19646         * assembly.c (mono_assembly_close): Remove a debug printf.
19647
19648         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19649
19650         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19651         to also allow for temporary references between mono_image_open ()/close ().
19652
19653         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19654
19655 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19656
19657         * marshal.c: Fix support for dynamic methods.
19658
19659         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19660
19661         * marshal.c (mono_marshal_cleanup): New cleanup function.
19662
19663         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19664         image mempools.
19665
19666         * class.c (mono_class_init): Fix leaking class->nested_classes.
19667
19668         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19669
19670         * image.c (mono_image_init): Initialize the new cashes.
19671
19672         * image.c (mono_image_close): Destroy the new cashes.
19673
19674         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19675
19676         * mempool.c (mono_mempool_strdup): New helper function.
19677
19678         * class-internals.h: Add prototype for mono_loader_unlock ().
19679
19680         * domain.c (mono_jit_info_table_find): Fix a warning.
19681         (mono_debugger_check_runtime_version): Ditto.
19682
19683         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19684         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19685         functions to these modules.
19686
19687         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19688         metadata modules.
19689         
19690         * marshal.c (mono_free_bstr): Fix a warning.
19691
19692         * assembly.c (mono_assembly_open_full): Fix another small leak.
19693
19694         * object.c: Fix some unload leaks in the remoting code.
19695
19696         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19697         function.
19698
19699         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19700
19701         * reflection.c: Fix some unload leaks in dynamic assemblies.
19702
19703 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19704
19705         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19706         * marshal.h: Add BSTR support on Win32
19707         * icall.c: Add BSTR icalls
19708         * metadata.h: Add BSTR enums
19709
19710 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19711
19712         Work to catch the crash from #76795 and turn it into an
19713         exception.   As I stubbed out pieces of the VisualBasic support,
19714         I found a number of places where the code was failing and I added
19715         checks to those places. 
19716         
19717         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19718         function return a status code.  If we fail to parse the signature
19719         from mono_metadata_parse_generic_inst, return FALSE.
19720
19721         * loader.c (mono_get_method_from_token): If we fail to load the
19722         method (mono_class_get) return NULL.   
19723
19724         * (method_from_memberref): Return NULL if we are unable to parse
19725         the method signature
19726
19727         (mono_loader_error_prepare_exception): Since we now use the
19728         loader_error flag internally to stop processing, and obtaining
19729         exceptions that might be thrown will walk this code path the
19730         proper way of going from a MonoLoaderError into a
19731         MonoException was convoluted.   This new routine encapsulates the
19732         process of turning the error into an exception and *clearing* the
19733         error afterwards.
19734         
19735 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19736
19737         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19738         with missing assemblies), and to cope with:
19739
19740                 * Missing fieldref from a non-existing assembly.
19741                 * Missing methodref from a non-existing assembly.
19742
19743         The first batch of work to address *some* of the issues from 76661.
19744         
19745         * object.c (mono_class_create_runtime_vtable): If we fail to
19746         initialize the class raise the exception here. 
19747
19748         * metadata.c (mono_class_get_overrides_full): If any methods fail
19749         to load return the failure to the caller.
19750
19751         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19752         flagging assemblies that failed to load.   
19753
19754         Do not crash if we are unable to load the assembly.
19755
19756         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19757         assemblies. 
19758
19759         * loader.c (mono_loader_set_error_type_load): Change the
19760         convention to always pass unallocated strings, so we make our own
19761         copies (I know our own code had duplicated strings before, but
19762         this keeps the normal conventions).
19763         (method_from_memberref): Call mono_loader_set_error_method_load
19764         for all possible failures of loading the class. 
19765         Remove assert, turn into a loader error.
19766
19767         (mono_loader_error_to_exception): Move this routine from mini
19768         (mini_loader_error_to_exception) there was no need to have that in
19769         mini. 
19770
19771         * class.c (mono_class_from_typeref): If we were not able to load
19772         the assembly with mono_assembly_load_reference, call the
19773         mono_loader_set_error_type_load to register the problem.
19774
19775         (mono_class_setup_fields): If we fail to load the type from
19776         mono_metadata_parse_type_full, call mono_class_set_failure and
19777         break from the loop.
19778
19779         If class->exception_type is set, we do not layout the fields as
19780         that might crash the runtime, and instead return (from breaking
19781         from the previous loop).
19782
19783         (mono_class_setup_vtable): This now returns a boolean indicating
19784         whether the table was properly setup.   The decision is driven by
19785         mono_class_get_overrides_full which might run into non-existing
19786         methods. 
19787         
19788         (mono_class_init): Returns TRUE on success or FALSE if there was a
19789         problem in loading the type (incorrect assemblies, missing
19790         assemblies, methods, etc).
19791
19792         When we call mono_class_setup_fields we also check for a potential
19793         error inside this call (either a class exception or a general
19794         loader exception).
19795
19796         (mono_class_create_from_typedef): If the parent fails to load
19797         (calling mono_class_get_full) return NULL.
19798         
19799         ** Important **
19800
19801         calls to mono_metadata_parse_type_full should be checked
19802         everywhere and set the mono_class_set_failure
19803         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19804
19805         The current patch checks the places where my manually constructed
19806         tests show the errors are showing up, but we should do it
19807         everywhere. 
19808
19809         ** Important2 **
19810
19811         mono_class_init return values should be tested everywhere, like
19812         the previous case this is something that we should audit
19813         everywhere and not only on the cases exposed by the tests I
19814         created. 
19815
19816 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19817
19818         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19819         boolean parameter and instead pass the information on `options'
19820         parameter (FileOptions).
19821
19822         * icall.c: Register the new signature for MonoIO.Open.
19823
19824         * debug-helpers.c (dis_one): Trying to understand how coverity
19825         works.  Fix Run 5, item 78.
19826
19827 2006-04-26  Dick Porter  <dick@ximian.com>
19828
19829         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19830         dereference.
19831
19832 2006-04-25  Martin Baulig  <martin@ximian.com>
19833
19834         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19835
19836         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19837         debugger_thread_created().
19838         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19839         special way.
19840         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19841         (mono_debugger_finalize_threads): New function; undo the effects
19842         of mono_debugger_init_threads().
19843         (mono_debugger_create_all_threads): Removed.
19844
19845 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19846
19847         * image.c (mono_image_close): Tidy up trace messages.
19848
19849         * assembly.c (mono_assembly_close): Ditto.
19850
19851         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19852         no longer references an already freed assembly. Fixes #78168.
19853
19854 2006-04-21  Dick Porter  <dick@ximian.com>
19855
19856         * threads.c (mono_thread_detach): Fix reference counting when
19857         detaching threads.
19858
19859 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19860
19861         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19862         #78155.
19863
19864 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19865
19866         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19867         (mono_type_to_stind): Ditto.
19868
19869         * marshal.c: Use the new helper functions to simplify code.
19870
19871         * image.c (mono_image_close): Add some code for help debug assembly unloading
19872         problems.
19873
19874         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19875         image mempool.
19876
19877         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19878         assembly was already loaded in another appdomain. Fixes #78083.
19879
19880 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19881
19882         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19883         referenced assemblies.
19884         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19885
19886         * domain.c (mono_domain_free): Add a trace message.
19887
19888         * appdomain.c (add_assemblies_to_domain): Ditto.        
19889
19890         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19891         field.  
19892
19893 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19894
19895         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19896
19897 2006-04-12  Martin Baulig  <martin@ximian.com>
19898
19899         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19900         `USE_INCLUDED_LIBGC'.   
19901
19902 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19903
19904         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19905         the patch contains ../ and a small directory name later. Hopefully fixes
19906         #78035.
19907
19908 2006-04-10  Martin Baulig  <martin@ximian.com>
19909
19910         Clean up the debugger's thread-handling code.
19911
19912         The debugger's thread-handling code has been moved from
19913         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19914         over the `threads' hash, keep track of exiting threads and also
19915         use proper locking.
19916
19917         We can now debug XSP and XSP based applications with the debugger.
19918
19919         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19920
19921         * threads.h
19922         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19923         (mono_install_thread_callbacks): Likewise.      
19924
19925         * threads.c (mono_thread_callbacks): Removed.
19926         (debugger_thread_created, debugger_thread_exited): New static functions.
19927         (start_wrapper): Call debugger_thread_created().
19928         (thread_cleanup): Call debugger_thread_exited().
19929         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19930         (mono_debugger_init_threads): New public function.
19931         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19932         iterate directly over the `threads' hash and also use proper locking.
19933
19934         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19935
19936         * mono-debug-debugger.h
19937         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19938
19939 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19940
19941         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19942         argument type=array. Fixes #78057.
19943
19944 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19945
19946         * culture-info-table.h : regenerated. Fixed bug #69652.
19947
19948 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19949
19950         * loader.c metadata.c: Reapply a variant r59116.
19951         
19952         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19953
19954         * class.c (mono_class_setup_interface_offsets): New internal function.
19955
19956         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19957         interfaces too. Fixes #77398.
19958
19959         * reflection.c (encode_cattr_value): Add support for 
19960         parameter type=object, argument type=array.
19961         (load_cattr_value): Ditto. Fixes #77916.
19962
19963         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19964         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19965
19966         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19967         a byval char array and CharSet is Ansi.
19968
19969         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19970
19971 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19972
19973         * metadata.c: Add some locking comments.
19974         
19975         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19976         mempool.
19977         (mono_metadata_free_method_signature): Don't free the signature itself.
19978
19979         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19980
19981         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19982         reference the same MonoImage.
19983         (mono_assembly_load_from_full): Add an assert.
19984
19985 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19986
19987         * image.c (mono_image_close): Don't put the image we are about to free into the
19988         loaded_images_guid_hash.
19989
19990         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19991         to reduce code duplication.
19992
19993         * marshal.c: Register the native functions called by this module as icalls, to
19994         somewhat centralize the creation of MonoMethodSignature's.
19995
19996         * loader.c (mono_method_signature): Add a cache for method signatures.
19997
19998         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19999         the parameter attributes of a method.
20000         (mono_metadata_parse_method_signature_full): Refactored the computation of
20001         parameter attributes into a separate function. Also avoid one allocation in
20002         most cases.
20003
20004         * assembly.c (mono_assembly_close): Ditto.
20005
20006         * image.c (mono_image_close): Log trace messages with INFO level.
20007
20008         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
20009
20010         * image.c reflection.c: Correct reference counting of image modules.
20011         
20012         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
20013         of this function from the image mempool.
20014         
20015         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
20016         to allow more cached types to be used.
20017
20018         * mono-debug.c (mono_debug_add_method): Appled patch from
20019         David S. Miller  <davem@sunset.davemloft.net>: Access 
20020         minfo->lexical_blocks[] entry elements using read32().
20021
20022 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
20023
20024         * loader.c (mono_free_method): No longer free the method header for non-dynamic
20025         methods as it is allocated from the mempool.
20026
20027         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
20028         image mempool.
20029
20030         * metadata-internals.h: Add comments describing the reference counting scheme
20031         used for MonoImage and MonoAssembly.
20032
20033         * image.c assembly.c reflection.c: Rework reference counting of images and 
20034         assemblies so they are freed when the runtime is shut down. Free some 
20035         additional memory structures when an image is unloaded.
20036         
20037 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
20038
20039         * class.c loader.c reflection.c: Allocate more data structures in
20040         the image mempool.
20041
20042 2006-03-31  Miguel de Icaza  <miguel@novell.com>
20043
20044         * icall.c
20045         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
20046         build on pre glib 2.4 systems.
20047
20048 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
20049
20050         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
20051
20052         * icall.c: Fix some warnings.
20053
20054 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
20055
20056         * culture-info-table.h : regenerated.
20057
20058 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
20059
20060         * threads.c, object-internals.h, verify.c: changed the culture caching
20061         code to use a normal MonoArray for storage so the GC can keep track of
20062         them easily. Fixed bits of the cache logic, too and simplified the
20063         code.
20064
20065 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
20066
20067         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
20068         thread for non-Boehm GCs.
20069
20070 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
20071
20072         * domain.c, object.c, domain-internals.h: reduce the amount of memory
20073         needed to keep track of the data for static fields.
20074
20075 2006-03-29  Raja R Harinath  <rharinath@novell.com>
20076
20077         Fix #75172
20078         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
20079         for interface classes.  Use 'num_methods' instead.
20080         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
20081         before using '->vtable_size' field.
20082
20083 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
20084
20085         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
20086         doesn't contain managed pointers, so use a normal hashtable.
20087
20088 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
20089
20090         * reflection.c, class-internals.h, domain.c: fixed handling of types
20091         used as values for objects in custom attributes (bug #77915):
20092
20093 2006-03-24  Martin Baulig  <martin@ximian.com>
20094
20095         * class.c (mono_class_setup_fields): Added support for generic
20096         instances; fixes #77580.
20097
20098 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20099
20100         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
20101
20102 2006-03-24  Dick Porter  <dick@ximian.com>
20103
20104         * file-io.c (get_file_attributes): More stat macro breakage.
20105         Fixes bug 77759.
20106
20107 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
20108
20109         * profiler.c: added the file=filename option in the default profiler
20110         to output the profile data to filename.
20111
20112 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20113
20114         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
20115         bug #77877.
20116
20117 2006-03-22  Martin Baulig  <martin@ximian.com>
20118
20119         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
20120         allocated `MonoClassField *' in `fb->handle'.
20121
20122 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
20123
20124         * class.c, image.c, metadata-internals.h: implemented new mechanism to
20125         allocate interface ID to save memory and allow better ID reuse on
20126         appdomain unload. setup_generic_vtable () removal from Martin.
20127
20128 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20129
20130         * object.h, appdomain.c, domain.c, exception.c, icall.c,
20131         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
20132         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
20133         write barriers for reference stores with managed objects accessed with
20134         C structures in the runtime and in embedding programs.
20135
20136 2006-03-20  Raja R Harinath  <rharinath@novell.com>
20137
20138         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
20139         'interface_id' and 'max_interface_id' fields of MonoClasses
20140         representing open generic types.
20141
20142 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
20143
20144         * object.h, object.c, icall.c: added functions to deal with
20145         storing valuetypes that contain references in managed objects.
20146         * reflection.c, string-icalls.c, threads.c, marshal.c: small
20147         fixes and comments around uses of mono_array_addr ().
20148
20149 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
20150
20151         * object.h, icall.c, monitor.c: object.GetHashCode ()
20152         implementation that supports the moving garbage collector.
20153
20154 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
20155
20156         * icall.c, threads-types.h, threads.c: implemented finalizer for
20157         LocalDataStoreSlot.
20158
20159 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
20160
20161         * metadata.c (mono_type_size): Add a fixme.
20162         (mono_type_stack_size): Ditto.
20163
20164         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
20165         'type_forwarders' field.
20166
20167         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
20168         attribute from net 2.0.
20169
20170         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
20171         from class.c.
20172
20173         * class.c (mono_class_setup_fields): Fix a warning.
20174         
20175         * class.c (mono_class_from_name): Add support for assemblyref entries
20176         in the EXPORTEDTYPE table.
20177
20178         * reflection.c: Add support for handling type forwarders under net 2.0.
20179
20180         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
20181         
20182 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
20183
20184         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
20185         overwriting entries in ModuleBuild->types, also clean up the code
20186         a little. Fixes #77774.
20187
20188 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
20189
20190         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
20191         load friend assembly info when present.
20192
20193 2006-03-14  Raja R Harinath  <rharinath@novell.com>
20194
20195         Fix crasher on gtest-158.cs.
20196         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
20197         the return value if the MonoClass we want is yet in an
20198         inconsistent state.
20199         * class.c (mono_class_create_from_typedef): Add an comment
20200         explaining an order dependency between mono_class_setup_parent and
20201         mono_class_setup_mono_type.
20202
20203 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
20204
20205         * class.c: documentation updates and events bug fix.
20206
20207 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
20208
20209         * class.c: some cleanup, locking fixes.
20210
20211 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
20212
20213         * class.c: fix the generics code to setup nested
20214         type info to the instantiated type (bug #77770).
20215
20216 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
20217
20218         * marshal.c: fixed a few type correctness issues.
20219
20220 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20221
20222         * loader.c: the Set/Get/Addrtess array methods should be public.
20223
20224 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
20225
20226         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
20227         
20228         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
20229         info->wrapper.
20230
20231 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
20232
20233         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
20234
20235         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
20236
20237         * mempool.c (mono_mempool_alloc): Speed this up a bit.
20238         (mono_mempool_alloc0): Ditto.
20239
20240 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20241
20242         * socket-io.c:
20243         (create_object_from_sockaddr): it was allocating 4 extra bytes
20244         for the AF_UNIX data. Fixes bug #77747.
20245
20246 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
20247
20248         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
20249
20250 2006-03-09  Dick Porter  <dick@ximian.com>
20251
20252         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
20253         Fixes bug 76966 again.
20254
20255 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
20256
20257         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
20258         names from r57532
20259         * appdomain.c: Bumped corlib version to 48 (due to r57532)
20260
20261 2006-03-07  Martin Baulig  <martin@ximian.com>
20262
20263         * object.c
20264         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
20265
20266 2006-03-07  Martin Baulig  <martin@ximian.com>
20267
20268         * class.c
20269         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
20270         regression introduced in r56970; see gtest-252.cs.
20271
20272         * loader.c (mono_get_method_constrained): Correctly handle generic
20273         methods; see gtest-253.cs.
20274
20275 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
20276
20277         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
20278
20279 2006-03-04  Martin Baulig  <martin@ximian.com>
20280
20281         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
20282         compute the parent type at runtime, just like we're already doing
20283         it for interfaces.
20284
20285         * reflection.c
20286         (mono_reflection_bind_generic_parameters): Don't compute the
20287         parent type anymore.
20288
20289         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
20290
20291 2006-03-04  Martin Baulig  <martin@ximian.com>
20292
20293         * mono-debug-debugger.h
20294         (mono_debugger_create_notification_function): Allocate memory at
20295         runtime and return a pointer to it.
20296
20297 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
20298
20299         * assembly.c: Fix windows build.
20300         
20301         * assembly.c: Fix build.
20302
20303         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
20304
20305         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
20306         
20307 2006-03-03  Dick Porter  <dick@ximian.com>
20308
20309         * process.c
20310         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20311         Check parameters before dereferencing them.  Fixes Aaron's part of
20312         bug 77393.
20313
20314 2006-03-03  Raja R Harinath  <rharinath@novell.com>
20315
20316         Fix performance regression.
20317         * loader.c (find_method_in_class): Add 'from_class' argument.
20318         Rename 'klass' argument to 'in_class'.  The signature is compared
20319         against the method in 'in_class', and the corresponding method is
20320         returned from 'from_class'.
20321         (find_method): Walk both 'in_class' and 'from_class' in parallel.
20322         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
20323         type definition and generic instantiation in parallel.
20324         (mono_get_method_constrained): Update to changes.
20325
20326 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
20327
20328         * threads.c: make sure the domain is correct, too when doing
20329         mono_thread_attach ().
20330
20331 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
20332
20333         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
20334         windows. Fixes #77683.
20335
20336 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
20337
20338         * object.h, *: introduced specific way to set elements of an array
20339         of references to be used as write barrier. Still need to audit the
20340         uses of mono_array_addr.
20341
20342 2006-03-01  Miguel de Icaza  <miguel@novell.com>
20343
20344         * object-internals.h: New field to cache the assmebly name, patch
20345         from Tambet Ingo (tambet@ximian.com)
20346
20347 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20348
20349         * decimal.h, class-internals.h, metadata-internals.h,
20350         file-io.h: mark a few function declarations as internal, to
20351         reduce the number of PLT entries.
20352
20353 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20354
20355         * file-io.c: fix typo in warning message.
20356
20357 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
20358
20359         * loader.c: on unix, lookup the "*A" version of a function
20360         if charset is auto as a second option before failing.
20361
20362 2006-02-28  Raja R Harinath  <rharinath@novell.com>
20363
20364         * class.h (mono_class_inflate_generic_method): Revert to two
20365         argument version.
20366         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
20367         (mono_class_inflate_generic_method_full): Add.
20368         * class.c (mono_class_inflate_generic_method_full): Rename from
20369         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
20370         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
20371         * loader.c, reflection.c: Update to changes.
20372
20373 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
20374
20375         * icall.c: const fixes and small improvements.
20376
20377 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20378
20379         * threadpool.c: for asynchronous connect(), enable the same workaround
20380         for BSD 6 as for the Mac. Fixes bug #77637.
20381
20382 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
20383
20384         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
20385         formatted classes. Fixes #77524.
20386
20387 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20388
20389         * class.c (inflate_generic_type): Add a couple more
20390         micro-optimizations.
20391         (inflate_generic_context): Don't use the 'gmethod' from
20392         'inflate_with'.
20393         (mono_class_inflate_generic_method): If the method has generic
20394         parameters, but the passed-in context doesn't have a 'gmethod',
20395         create one.  Use the possibly simplified generic instantiation
20396         from the declaring class instead of the one passed in.
20397
20398 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20399
20400         Make generic method signature and method header handling lazy.
20401         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20402         (inflate_generic_header): Likewise.
20403         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20404         parameter to avoid inflating types.
20405         (mono_get_inflated_method): Empty out.
20406         * class.h (mono_class_inflate_generic_method): Update to changes.
20407         * loader.c (mono_get_method_from_token): Don't parse signature for
20408         generic methods, nor methods of generic classes.
20409         (mono_method_signature): Rename from 'mono_method_signature'.
20410         Inflate signature on demand.
20411         (mono_method_get_header): Inflate method header on demand.
20412         * reflection.c: Update to changes.
20413
20414 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20415
20416         * metadata.c (mono_metadata_inflate_generic_inst): If the
20417         instantiation is closed, don't bother expanding it in the new
20418         context.
20419         * class.c (inflate_generic_class): If the generic instantiation
20420         doesn't change after inflation, return the argument itself.
20421         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20422         Add bounds checks.
20423         (inflate_generic_context): If neither the generic class nor the
20424         generic method instantiations change, return the original context.
20425         * reflection.c (mono_method_get_object): Do
20426         'mono_get_inflated_method' before accessing the ->klass field.
20427         (inflate_mono_method): Don't create a MonoGenericMethod unless
20428         necessary.
20429         (inflate_method): Don't pass a constructed type as the declaring
20430         type of a methodbuilder.
20431
20432 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20433
20434         * object.c: fix memory overwrite.
20435
20436 2006-02-22  Dick Porter  <dick@ximian.com>
20437
20438         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20439         it doesn't work any more.
20440         (mono_threads_request_thread_dump): Fix unused variable warnings.
20441
20442 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20443
20444         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20445         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20446         the public header file.
20447
20448 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20449
20450         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20451
20452 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20453
20454         * class-internals.h, object.c: reduce the size of MonoVTable
20455         and store the interface_offsets array at negative offsets.
20456
20457 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20458
20459         * metadata.c: tweak table descriptors data structures to reduce
20460         size and runtime relocations.
20461
20462 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20463
20464         * marshal.c: fix some types and opcodes to be type-safe
20465         in marshaling wrappers.
20466
20467 2006-02-21  Ankit Jain  <jankit@novell.com>
20468
20469         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20470
20471 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20472
20473         * metadata.c (get_constraints): Relax debugging checks for monodis.
20474
20475 2006-02-21  Ankit Jain  <jankit@novell.com>
20476
20477         * metadata.c (mono_metadata_load_generic_params): Move the code
20478         checking for ambiguous generic params from here to mono/dis/get.c
20479         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20480
20481 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20482
20483         Fix assertion triggered when compiling nemerle.
20484         * class.c (mono_get_shared_generic_inst): Rename from
20485         get_shared_inst and make non-static.
20486         * loader.c (mono_get_shared_generic_method): New.  Used to create
20487         the MonoGenericContext-equivalent of a MonoGenericContainer.
20488         (mono_get_method_from_token): Initialize the 'context' field of
20489         the created MonoGenericContainer.
20490         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20491         * metadata.c (get_constraints): Add sanity check.
20492         * class-internals.h: Add new internal methods.
20493
20494         * reflection.c (verify_safe_for_managed_space): New sanity check.
20495         Currently checks that owner-less generic parameters aren't allowed
20496         in managed space.
20497         (mono_type_get_object): Use it.
20498         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20499         that are now in mono_type_get_object.
20500         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20501
20502 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20503
20504         * metadata.c (mono_type_create_from_typespec): Rename from
20505         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20506         argument and caching of types in the generic container.
20507         (unwrap_arrays, find_generic_param): Remove.
20508         * metadata-internals.h: Update.
20509         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20510
20511 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20512
20513         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20514
20515         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20516         return values. Fixes #77581.
20517
20518         * class.c (mono_fnptr_class_get): Switch name and name_space.
20519
20520         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20521         classes and add support for [In, Out] attributes.
20522         (mono_marshal_free_asany): Ditto. Fixes #77524.
20523
20524 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20525
20526         * class.c (mono_class_from_generic_parameter): Make more robust to
20527         incomplete MonoGenericContainers from monodis.
20528
20529 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20530
20531         * class-internals.h: added some more exception types.
20532         * class.c, metadata.c: added a few checks to handle missing
20533         types.
20534
20535 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20536
20537         Use owner-less generic-params some more.
20538         * class.c (my_mono_class_from_generic_parameter): Remove.
20539         (mono_class_from_generic_parameter): Handle null image,
20540         param->name and param->owner.
20541         (mono_class_from_mono_type): Update.
20542         (mono_class_create_from_typespec): Remove 'container' parameter.
20543         If that parameter is non-null, the result is always inflated by
20544         'mono_class_get_full' anyway.
20545         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20546         parameter.
20547         (mono_class_get_full): Update.
20548
20549         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20550         instance is not open, don't bother inflating.
20551         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20552         parse metadata for inflated classes.
20553         (_mono_class_get): Change GenericContext* parameter to
20554         GenericContainer*.
20555         (mono_class_create_from_typespec): Likewise.  Simplify, and
20556         implement trivially.  All the cases are handled in
20557         mono_class_from_mono_type.  Don't inflate returned class.
20558         (mono_class_get_full): Delegate GENERICINST optimization to
20559         inflate_generic_type.
20560         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20561
20562 2006-02-16  Dick Porter  <dick@ximian.com>
20563
20564         * socket-io.c (create_object_from_sockaddr): Fix typo.
20565         (create_sockaddr_from_object): Check array lengths before
20566         potentially accessing items off the end.
20567         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20568         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20569         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20570         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20571         length checks to avoid wraparound overflows.
20572         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20573         contents of the array of sockets
20574         (hostent_to_IPHostEntry2)
20575         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20576         Check return value of inet_ntop ().
20577         (addrinfo_to_IPHostEntry): Fix typo
20578
20579 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20580
20581         Type metadata parsing doesn't use generic-instantiation information.
20582         * metadata.c (mono_metadata_parse_array_full): Change
20583         MonoGenericContext* parameter to MonoGenericContainer*.
20584         (mono_metadata_parse_type_full): Likewise.
20585         (mono_type_create_from_typespec_full): Likewise.
20586         (mono_metadata_parse_mh_full): Likewise.
20587         (mono_metadata_parse_generic_inst): Likewise.
20588         (do_mono_metadata_parse_generic_class): Likewise.
20589         (do_mono_metadata_parse_type): Likewise.
20590         * metadata-internals.h: Update to changes.
20591         * class.c (mono_class_find_enum_basetype): Likewise.
20592         (mono_class_setup_fields): Likewise.
20593         (mono_class_create_from_typespec): Likewise.
20594         * loader.c (method_from_methodspec): Likewise.
20595         (mono_get_method_from_token): Likewise.
20596         (mono_method_get_header): Likewise.
20597
20598 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20599
20600         * marshal.c: handle additional GENERICINST case (patch from
20601         Thong Nguyen <tum@veridicus.com>).
20602         Fix a few cases where LDIND_I/STIND_I was used for references.
20603
20604 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20605
20606         * reflection.c (mono_reflection_get_token): Remove unused variable.
20607
20608 2006-02-16  Martin Baulig  <martin@ximian.com>
20609
20610         * reflection.c (mono_reflection_get_token): Add support for fields
20611         in instantiated generic types.
20612
20613         * icall.c
20614         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20615
20616 2006-02-15  Martin Baulig  <martin@ximian.com>
20617
20618         * icall.c
20619         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20620         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20621         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20622         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20623
20624 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20625
20626         * class.c, metadata.c, metadata.h, object.c, icall.c,
20627         marshal.c: changed mono_type_get_underlying_type () to do
20628         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20629         Fixed handling of instantiated generic valuetypes (bug #75479).
20630
20631 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20632
20633         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20634         Delegate to mono_metadata_decode_value, and work on the returned value.
20635
20636         * icall.c (ves_icall_MonoType_GetGenericArguments):
20637         Add consistency check here too.
20638         
20639 2006-02-15  Ankit Jain  <jankit@novell.com>
20640
20641         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20642         char/short etc.
20643
20644 2006-02-15  Ankit Jain  <jankit@novell.com>
20645
20646         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20647         signed values, used only for representing lower bounds of arrays.
20648         (mono_metadata_parse_array_full): Use new
20649         mono_metadata_decode_signed_value to decode lower bounds.
20650
20651 2006-02-14  Martin Baulig  <martin@ximian.com>
20652
20653         * reflection.c
20654         (mono_reflection_get_token): Support "MonoGenericMethod" and
20655         "MonoGenericCMethod" and allow generic instances / methods.
20656
20657 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20658
20659         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20660         to obtain the terminal size using an ioctl.
20661
20662         * object.c (mono_nullable_init): Revert this as nullable reference
20663         types are not valid.
20664         (mono_nullable_box): Ditto.
20665
20666 2006-02-09  Dick Porter  <dick@ximian.com>
20667
20668         * threads.c (mono_thread_detach): Drop a reference to the thread
20669         we're detaching.
20670
20671 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20672
20673         * object.c (mono_nullable_init): Handle nullable reference types.
20674         (mono_nullable_box): Ditto. Fixes #77446.
20675
20676 2006-02-07  Martin Baulig  <martin@ximian.com>
20677
20678         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20679
20680 2006-02-07  Ankit Jain  <jankit@novell.com>
20681
20682         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20683         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20684         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20685         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20686         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20687         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20688
20689 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20690
20691         * class.c (mono_class_create_generic): Set type_token as well.
20692
20693         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20694         compatible with MS.
20695
20696 2006-02-02  Martin Baulig  <martin@ximian.com>
20697
20698         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20699         has never been used so far.
20700
20701 2006-02-02  Martin Baulig  <martin@ximian.com>
20702
20703         * mono-debug-debugger.h: Changed comment at the top of this file;
20704         the header is not installed, but it's safe to #include it from
20705         within the JIT.
20706
20707         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20708         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20709
20710 2006-02-02  Martin Baulig  <martin@ximian.com>
20711
20712         * mono-debug.h
20713         (MonoSymbolTable): Removed the `metadata_info' field.
20714
20715         * mono-debug.c
20716         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20717
20718         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20719         (mono_debugger_add_builtin_types): Removed.
20720         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20721         (mono_debugger_create_notification_function): We now operate on a
20722         pre-allocated area; take a `gpointer' and return `void'.
20723
20724         * mono-debug-debugger.c
20725         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20726         (mono_debugger_add_builtin_types): Removed.
20727
20728 2006-02-02  Martin Baulig  <martin@ximian.com>
20729
20730         * threads.c (mono_debugger_create_all_threads): New public method.
20731
20732 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20733
20734         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20735         breaks on several platforms.
20736
20737 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20738
20739         * assembly.c: the VS.NET build doesn't supply default values for
20740         MONO_ASSEMBLIES and MONO_CFG_DIR.
20741
20742 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20743
20744         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20745         helper function.
20746
20747         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20748
20749         * loader.c (method_from_memberref): Fix a warning.
20750
20751         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20752
20753         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20754         with explicit layout. Fixes #77433.
20755
20756 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20757
20758         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20759         max_interface_id is initialized before using it. Fixes #77398.
20760         (ves_icall_Type_GetInterfaces): Ditto.
20761
20762 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20763
20764         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20765         allocate memory for parameter attributes when parsing memberref
20766         signatures.
20767         * loader.c (mono_loader_set_error_method_load): Don't warn.
20768         (method_from_memberref): Ensure MissingMethodException gets thrown
20769         if method is not found.  Make warning more informative.
20770
20771 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20772
20773         Fix #77397
20774         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20775         return true if is byref.
20776         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20777         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20778         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20779
20780 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20781
20782         Fix tests/find-method.2.il
20783         * loader.c (find_method, find_method_in_class): Remove is_inflated
20784         argument.  Revert 2006-01-18 change.
20785         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20786         is generic, search for method in its generic definition.
20787         * class.c (mono_class_setup_vtable_general): Print generic
20788         arguments of generic types in debugging printf.
20789
20790 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20791
20792         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20793
20794         * threads.c (mono_threads_request_thread_dump): New helper function.
20795
20796 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20797
20798         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20799
20800 2006-01-25  Ankit Jain  <jankit@novell.com>
20801
20802         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20803         move definition to ..
20804         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20805         
20806 2006-01-25  Ankit Jain  <jankit@novell.com>
20807             Raja R Harinath  <rharinath@novell.com>
20808
20809         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20810         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20811         as necessary.
20812
20813 2006-01-25  Martin Baulig  <martin@ximian.com>
20814
20815         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20816         `MonoDebuggerThread' into debug-debugger.c.
20817
20818 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20819
20820         * profiler.c: fix printing of data.
20821
20822 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20823
20824         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20825           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20826
20827 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20828
20829         * object.c: fix deadlock related to string interning.
20830
20831 2006-01-23  Martin Baulig  <martin@ximian.com>
20832
20833         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20834
20835         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20836
20837 2006-01-23  Martin Baulig  <martin@ximian.com>
20838
20839         * mono-debug.h: Moved the prototypes of some functions which are
20840         used by the JIT here from mono-debug-debugger.h.
20841
20842 2006-01-21  Martin Baulig  <martin@ximian.com>
20843
20844         * Makefile.am: Don't install mono-debug-debugger.h.
20845
20846 2006-01-21  Martin Baulig  <martin@ximian.com>
20847
20848         * mono-debug-debugger.h: Enforce the private status of this header
20849         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20850         Moved some stuff from mono-debugger-jit-wrapper.h here.
20851
20852 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20853
20854         * class.c (mono_class_from_typeref): Add a sanity test to help
20855         catch lack of assembly load/search hooks.
20856
20857 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20858
20859         * marshal.c (emit_struct_conv): Relax the fields with same offset
20860         check even more. Fixes #77230.
20861
20862 2006-01-18  Martin Baulig  <martin@ximian.com>
20863
20864         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20865         argument; if false, we compare the uninstantiated signatures.
20866         (method_from_memberref): Compare the uninstantiated signatures;
20867         fixes #76417.
20868
20869 2006-01-18  Robert Jordan  <robertj@gmx.net>
20870
20871         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20872         Clear the weak link. Fixes bug #77170.
20873
20874         * gc.c (mono_gchandle_free):
20875         Reflect *-gc.c changes (tiny optimization).
20876
20877 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20878
20879         * metadata.c (mono_metadata_signature_dup): Applied patch from
20880         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20881         Fixes #77288.
20882
20883 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20884
20885         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20886         marshalling from native to managed code. Fixes #77230.
20887
20888 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20889
20890         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20891         connect. Fixes bug #77020.
20892
20893 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20894
20895         * class.c: fixed id assignement for nested interfaces (bug #77275).
20896         Added also better info for --print-vtable debugging.
20897
20898 2006-01-12  Martin Baulig  <martin@ximian.com>
20899
20900         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20901         interfaces on-the-fly; fixes #76625.
20902
20903         * class-internals.h
20904         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20905         don't need that anymore.
20906
20907 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20908
20909         * socket-io.c
20910         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20911         To avoid initing the nested_classes when not needed I turned the
20912         PeerCredData as a toplevel internal class, as it has to be shared
20913         anyways. 
20914
20915         Fixes the CASA issue.
20916
20917 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20918
20919         * domain.c: Accessors for MonoJitInfo
20920
20921         * profiler-private.h: Add jitinfo to the end jit hook
20922
20923         * profiler.[ch]: Define new hooks, called after jitting which give
20924         the MonoJitInfo that was compiled
20925
20926 2006-01-10  Martin Baulig  <martin@ximian.com>
20927
20928         * class.c (mono_class_setup_events): Add support for generic
20929         classes; fixes #76440.
20930
20931 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20932
20933         Fix #77160.
20934         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20935         on passed-in method.
20936
20937 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20938
20939         * object.c (mono_runtime_invoke_array): Add Nullable support.
20940
20941         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20942
20943 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20944
20945         * file-io.c: Don't consider sockets as directory and avoid an endless
20946         loop. Fix bug #76966.
20947
20948 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20949
20950         * object.c (mono_nullable_init): New helper function.
20951         (mono_nullable_box): Ditto.
20952
20953         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20954
20955         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20956
20957         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20958         
20959 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20960
20961         * class.c (mono_class_is_assignable_from): Make T assignable to 
20962         Nullable<T>.
20963
20964 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20965
20966         * appdomain.c: Bump corlib version to 46.
20967         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20968         serialization purpose) and changed ves_icall_System_Reflection_
20969         Assembly_get_code_base signature to accept a boolean (to escape, or 
20970         not, the assembly code base).
20971
20972 2005-12-23  Dick Porter  <dick@ximian.com>
20973
20974         * icall.c: 
20975         * threads-types.h: 
20976         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20977         CreateEvent icall now returns "created" boolean parameter.
20978
20979 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20980
20981         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20982         #76967.
20983
20984         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20985         when attr_klass is an interface. Fixes #77045.
20986
20987 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20988
20989         * marshal.c (emit_struct_conv): Fix previous patch.
20990         
20991         * marshal.c (emit_struct_conv): Add a check for fields with the same
20992         offset.
20993
20994 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20995
20996         Fix regression in Mono.C5.
20997         * class.c (mono_class_create_generic): If 'klass' is an interface
20998         set up the interface offsets.
20999         (mono_class_is_assignable_from): Don't throw away generic arguments.
21000
21001 2005-12-19  Raja R Harinath  <rharinath@novell.com>
21002
21003         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
21004         type parameters.
21005
21006 2005-12-15  Raja R Harinath  <rharinath@novell.com>
21007
21008         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
21009         dead store.
21010         (do_mono_metadata_parse_generic_class): Don't pass the current
21011         generic context when parsing the type being instantiated: it
21012         cannot use it, anyway.
21013
21014         * loader.c (method_from_memberref): Don't inflate a signature if
21015         it doesn't contain any type parameters.
21016
21017 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
21018
21019         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
21020
21021 2005-12-14  Martin Baulig  <martin@ximian.com>
21022
21023         * class.c
21024         (mono_type_get_name_recurse): Don't return null for type
21025         parameters and open generic classes.
21026         (mono_class_setup_methods): Don't exclude generic instances.
21027         (mono_get_unique_iid): Use different IDs for different
21028         instantiations of the same generic type.
21029         (mono_class_setup_vtable): Only use setup_generic_vtable() for
21030         open generic instances; create a normal vtable for closed generic
21031         instances.
21032         (mono_class_setup_vtable_general): We're now also called for
21033         closed generic instances.
21034
21035         * reflection.c
21036         (mono_reflection_bind_generic_parameters): Correctly use
21037         mono_metadata_lookup_generic_inst() everywhere.
21038
21039 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
21040
21041         * object.c (mono_class_create_runtime_vtable): Call 
21042         mono_class_setup_vtable ().
21043
21044         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
21045         function.
21046         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
21047         #76959.
21048
21049         * loader.c (mono_loader_set_error_type_load): Print the type load
21050         warnings to the console so they are more visible to the user.
21051         (mono_loader_set_error_method_load): Ditto.
21052
21053         * reflection.c (ensure_runtime_vtable): Revert the last change as it
21054         is still broken.
21055         
21056         * reflection.c (ensure_runtime_vtable): Fix build.
21057
21058         * reflection.c (ensure_runtime_vtable): Disable an optimization which
21059         doesn't work in all cases.
21060
21061 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
21062
21063         * object.c (mono_array_new_full): Treat a single dimensional array
21064         with 0 lower bounds as an szarray. Fixes #76973.
21065
21066         * reflection.c (custom_attr_visible): Really fix this.
21067
21068 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
21069
21070         * reflection.c (custom_attr_visible): Allow nested public attributes
21071         as well.
21072
21073         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
21074         interface check.
21075
21076 2005-12-12  Raja R Harinath  <harinath@gmail.com>
21077
21078         * class.c (set_generic_param_owner): Delete.
21079         (mono_class_create_from_typedef): Don't set ->owner field of
21080         generic parameters to "param containers" of enclosing classes.
21081         * reflection.c (mono_reflection_initialize_generic_parameter):
21082         Likewise.
21083
21084 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
21085
21086         * reflection.c (custom_attr_visible): Fix build.
21087
21088 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
21089
21090         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
21091         private attributes.
21092         
21093         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
21094         handling of null parameter defaults.
21095
21096 2005-12-09  Raja R Harinath  <rharinath@novell.com>
21097
21098         * class.c (mono_class_from_generic_parameter): Don't set
21099         klass->generic_container.
21100         (my_mono_class_from_generic_parameter): Likewise.
21101
21102 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
21103
21104         * reflection.c (load_public_key): Fix a warning.
21105         (method_encode_code): Fix unaligned accesses.
21106
21107 2005-12-07  Martin Baulig  <martin@ximian.com>
21108
21109         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
21110
21111         * reflection.c
21112         (write_generic_param_entry): Encode our custom attrs.
21113
21114         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
21115
21116 2005-12-07  Martin Baulig  <martin@ximian.com>
21117
21118         * reflection.c (encode_new_constraint): Removed; we don't use the
21119         `NewConstraintAttribute' anymore.
21120
21121 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
21122
21123         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
21124         not fire a TypeResolve event when Assembly.GetType () is called.
21125
21126 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
21127
21128         Beginning of support for nullable types in the runtime. Parts of
21129         this patch are from Martin.
21130
21131         * appdomain.c (MONO_CORLIB_VERSION): Bump
21132
21133         * domain.c (mono_init_internal): get the nullable type
21134
21135         * class.c (mono_class_is_nullable): New method
21136         (mono_class_get_nullable_param): New mehod
21137         (mono_class_create_generic): In types T? set cast_class to T
21138
21139         * class-internals.h (MonoDefaults): new nullable default class
21140         (mono_class_get_nullable_param, mono_class_get_nullable_param):
21141         new methods.
21142
21143 2005-12-05  Raja R Harinath  <rharinath@novell.com>
21144
21145         * metadata.c (select_container): New.  Refactor code to select the
21146         appropriate GenericContainer given the type of generic parameter
21147         we are looking for.
21148         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
21149         not a MonoGenericContext.  Use select_container.  Update parameters.
21150         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
21151         and MONO_TYPE_MVAR.
21152         (unwrap_arrays): Remove duplicate tests.
21153         (find_generic_param): Rename from 'has_same_context'.  Now walks a
21154         generic instantiated class to find any arguments that are generic
21155         parameters.
21156         (mono_type_create_from_typespec_full): Use find_generic_param to
21157         avoid evicting some generic instantiations from the typespec
21158         cache.
21159
21160 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
21161
21162         * reflection.c: fixed writing of doubles on ARM FPA.
21163
21164 2005-12-02  Robert Jordan  <robertj@gmx.net>
21165
21166         * icall.c: Fixed EventInfo.ReflectedType (#76829).
21167
21168 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21169
21170         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
21171         least on SUSE 10 they are not the same (on debian, they are just the
21172         same thing).
21173
21174 2005-12-01  Raja R Harinath  <rharinath@novell.com>
21175
21176         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
21177         DeclaringType for VARs and MVARs.
21178         * class.c (set_generic_param_owner): Fix initialization of owner
21179         fields.
21180
21181 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21182
21183         * icall.c: fixed Enum.ToObject() to correctly convert the values.
21184
21185 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21186
21187         * threadpool.c: workaround for a bug that shows up on the Mac:
21188         select()+connect() on a blocking socket is not like it should
21189         be, so we proceed to connect() in that case, wasting the I/O
21190         threadpool thread until connect succeedes. Fixes bug #75436.
21191
21192 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21193
21194         * threadpool.c: fix typo when setting file descriptor states.
21195
21196 2005-11-28  Raja R Harinath  <rharinath@novell.com>
21197
21198         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
21199         * metadata.c (mono_metadata_parse_method_signature_full): Don't
21200         create a temporary signature container.
21201         (mono_metadata_parse_generic_param): Update to changes.
21202         (mono_type_create_from_typespec_full): Update to changes.
21203         * loader.c (method_from_memberref): Don't use a
21204         MonoGenericContainer while parsing a memberref signature.
21205         (method_from_methodspec): Remove dead-store of the 'container'
21206         variable.  It's overwritten before use.
21207
21208         * metadata.c (mono_type_create_from_typespec_full): Make debugging
21209         checks tighter.
21210         (mono_metadata_parse_generic_param): Likewise.
21211         * loader.c (find_method_in_class): Does not need a
21212         MonoGenericContainer.  Use 'mono_method_signature' rather than
21213         'mono_method_signature_full'.
21214         (find_method, mono_get_method_constrained, method_from_memberref):
21215         Update to changes.
21216
21217         * metadata.c (mono_type_create_from_typespec_full): Ensure that
21218         owner-less generic-parameters are never evicted from the typespec
21219         cache.
21220
21221         * loader.c (method_from_memberref): Don't use the current context
21222         when parsing signatures.
21223         (method_from_methodspec, mono_get_method_from_token): Update to changes.
21224
21225         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
21226         side-effects in g_assert.
21227         * loader.c (mono_get_method_from_token): Resolve klass earlier so
21228         that we don't potentially lose information.
21229
21230 2005-11-26  Dick Porter  <dick@ximian.com>
21231
21232         * icall.c:
21233         * threads.c: icalls to implement basic (ie, not named)
21234         System.Threading.Semaphore.
21235
21236 2005-11-24  Dick Porter  <dick@ximian.com>
21237
21238         * process.c
21239         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
21240         Use GetProcessId() if it's available.
21241
21242 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
21243
21244         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
21245
21246 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21247             Ankit Jain  <jankit@novell.com>
21248
21249         * loader.c (mono_get_method_from_token): Initialize 'method' field
21250         of all generic parameters before parsing the signature.  Remove
21251         code that "fixed"-up MVAR references.
21252
21253 2005-11-23  Ankit Jain  <jankit@novell.com>
21254
21255         * metadata.c (mono_metadata_has_generic_params):
21256         (mono_metadata_load_generic_param_constraints):
21257         (mono_metadata_load_generic_params): Move duplicate code ...
21258         (mono_metadata_get_generic_param_row): ... here. Returns the
21259         first row-id in GenericParam table for a given owner (token).
21260         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
21261         prototype.
21262
21263 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21264             Ankit Jain  <jankit@novell.com>
21265
21266         * metadata.c (mono_metadata_class_equal): Pass signature_only when
21267         comparing VARs too.
21268         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
21269         type->data.generic_param only if the type is an MVAR.
21270         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
21271         leak owner-less VARs and MVARs into managed space.
21272
21273 2005-11-21  Martin Baulig  <martin@ximian.com>
21274
21275         * class-internals.h
21276         (MonoMethod): Moved the `generic_container' here from
21277         `MonoMethodNormal' since we now also need it for
21278         `MonoMethodPInvoke';
21279         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
21280         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
21281         an union containing both `MonoMethodNormal' and
21282         `MonoMethodPInvoke'.
21283
21284         * loader.c
21285         (mono_get_method_from_token): Allow implementing generic methods
21286         as interncalls.
21287
21288         * threads.c
21289         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
21290         icall.
21291
21292 2005-11-17  Dick Porter  <dick@ximian.com>
21293
21294         * icall.c: 
21295         * process.h: 
21296         * process.c: Split the Process Start_internal icall into
21297         ShellExecuteEx_internal and CreateProcess_internal, which are
21298         called depending on whether UseShellExecute is true.  Fixes bug
21299         76670.
21300
21301         * appdomain.c (MONO_CORLIB_VERSION): Incremented
21302
21303 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
21304
21305         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
21306         'msize' parameters, use the information in 'mspec' instead.
21307         (emit_object_to_ptr_conv): Ditto.
21308
21309         * marshal.c (emit_struct_conv): Handle explicit layout structs with
21310         fields out of order. Fixes #76733.
21311
21312 2005-11-17  Ankit Jain  <jankit@novell.com>
21313
21314         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
21315
21316 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
21317
21318         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
21319           bug #76575.
21320
21321 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21322
21323         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
21324         for types with non-auto layout. Fixes #76717.
21325
21326 2005-11-16  Ankit Jain  <jankit@novell.com>
21327
21328         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
21329         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
21330         if generic_context is null.
21331           (mono_metadata_generic_param_equal): param->owner can be null.
21332           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
21333         null.
21334
21335 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21336
21337         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
21338         the correct value.
21339
21340 2005-11-15  Martin Baulig  <martin@ximian.com>
21341
21342         * object.c (set_value): Use mono_class_from_mono_type() instead of
21343         the hack for generic instances; fixes #76136.
21344
21345 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
21346
21347         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
21348         fields.
21349
21350         * image.c (load_metadata_ptrs): Initialize the new fields.
21351
21352         * reflection.c (create_dynamic_mono_image): Ditto.
21353
21354         * reflection.c (build_compressed_metadata): Use the new fields.
21355
21356         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
21357         icall.
21358
21359         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
21360         icall.
21361         
21362 2005-11-15  Ankit Jain  <jankit@novell.com>
21363             Raja R Harinath  <harinath@gmail.com>
21364
21365         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
21366         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
21367         new per-generic_container cache if the cached MonoType's context matches
21368         the current context.
21369           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
21370         to the expected context.
21371           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
21372
21373 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21374
21375         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
21376         we changed the signature of an icall.
21377         * icall.c: Modify to mono_double_ParseImpl return true/false 
21378         depending on the success, instead of throwing the exception. This will
21379         help us in Double.TryParse methods.
21380         
21381 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
21382
21383         * marshal.c (emit_marshal_object): Throw an exception when
21384         marshalling 'object' instead of crashing. Fixes #76696.
21385
21386 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21387
21388         * class-internals.h: Add prototype for mono_type_get_full_name ().
21389
21390 2005-11-11  Dick Porter  <dick@ximian.com>
21391
21392         * threads.c (mono_thread_manage): Make sure the main thread has
21393         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21394
21395 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21396
21397         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21398         console about the missing type.
21399         (mono_loader_set_error_method_load): Ditto.
21400
21401 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21402
21403         * mono-config.c (mono_get_config_dir): Set the system defaults if
21404         none is specified.
21405
21406         * assembly.c (mono_set_dirs): New API entry point to set the
21407         assembly and the config directory in one call
21408
21409 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21410
21411         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21412         the ftnptr was created from a delegate in a domain other than the
21413         current domain. Fixes #75377.
21414
21415         * exception.h exception.c: Add mono_get_exception_not_supported ().
21416
21417 2005-11-08  Martin Baulig  <martin@ximian.com>
21418
21419         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21420
21421 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21422
21423         * security-manager.h: Added definitions to deal with strongname key 
21424         pairs bigger (and smaller) than 1024 bits.
21425         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21426         adjust wrt the public key length being used.
21427
21428 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21429
21430         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21431           Windows build (r51396-51397).
21432
21433 2005-11-03  Martin Baulig  <martin@ximian.com>
21434
21435         * class.c (mono_class_setup_vtable_general): Also add generic
21436         methods to the vtable; fixes #76581.
21437
21438 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21439
21440         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21441         sure that we lookup GetString method from the System.Text.Encoding
21442         class, not the derived class or we get an empty method.
21443
21444         Fixed class #76612.
21445
21446 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21447
21448         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21449         if it has been previously set (embedders). 
21450
21451         Make mono_set_rootdir available also on Unix.
21452
21453 005-10-24  Robert Jordan  <robertj@gmx.net>
21454
21455         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21456
21457 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21458
21459         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21460         only calls which are made to native code use this flag.
21461
21462         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21463
21464 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21465
21466         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21467         Add support for FieldBuilders.
21468
21469 2005-10-29  Martin Baulig  <martin@ximian.com>
21470
21471         * mono-debug.c
21472         (mono_debug_using_mono_debugger): New public method; returns
21473         whether we're running inside the debugger.
21474
21475 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21476
21477         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21478         for Method/Constructor/FieldBuilders.
21479
21480 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21481
21482         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21483         and fields as well.
21484
21485 2005-10-26  Martin Baulig  <martin@ximian.com>
21486
21487         * mono-debug-debugger.c
21488         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21489
21490 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21491
21492         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21493         integer to isspace.
21494
21495 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21496
21497         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21498         when passing valuetypes byref. Fixes #76502.
21499
21500 2005-10-19  Jackson Harper  <jackson@ximian.com>
21501
21502         * profiler.c: Don't put a . in front of types that are not in a
21503         namespace.
21504
21505 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21506
21507         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21508
21509 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21510
21511         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21512         #76436.
21513         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21514
21515 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21516
21517         * assembly.c metadata-internals.h icall.c: Define an additional
21518         parameter for mono_assembly_name_parse_full, so we can avoid creating
21519         S.R.AssemblyName.Version when no version info wasn't passed.
21520         
21521 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21522
21523         * class.c (mono_type_get_full_name): Reimplement method that was
21524         removed. 
21525
21526         * image.c: Some docs
21527
21528 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21529
21530         * profiler.c (output_newobj_profile): Fix printing of Total memory
21531         on x86.
21532
21533 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21534
21535         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21536
21537 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21538
21539         * threads.c: remove debug output.
21540
21541 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21542
21543         * threads.c (mono_thread_manage): Fix crashes if more than 64
21544         threads need to be aborted. Hopefully fixes #75899.
21545
21546         * assembly.c (mono_stringify_assembly_name): New helper function.
21547
21548         * class.c: Use mono_stringify_assembly_name instead of the similar
21549         static function.
21550
21551         * assembly.h assembly.c: Add support for calling a postload search 
21552         hook if an assembly cannot be loaded.
21553
21554         * appdomain.c: Register new search hooks which call the AssemblyResolve
21555         events in AppDomain. Fixes #75231
21556
21557 2005-10-07  Martin Baulig  <martin@ximian.com>
21558
21559         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21560         methods without debug info.
21561
21562 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21563
21564         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21565         wrappers.
21566
21567 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21568
21569         * file-io.c: now that we return symlinks, use lstat and, when the file
21570         is a symbolic link, stat, to get the file attributes. Also avoid the
21571         conversion to/from utf16/external.
21572
21573 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21574
21575         * class.c (mono_class_layout_fields): Compute klass->has_references
21576         correctly if an embedded valuetype is not yet initialized. Fixes
21577         #76331.
21578
21579 2005-10-04  Martin Baulig  <martin@ximian.com>
21580
21581         * metadata.c
21582         (mono_metadata_load_generic_param_constraints): New public
21583         function; splitted the constraints loading out from
21584         mono_metadata_load_generic_params().
21585
21586         * class.c (mono_class_create_from_typedef): Call
21587         mono_metadata_load_generic_param_constraints() after setting up
21588         the type and creating our parent; fixes #75329.
21589
21590 2005-10-04  Martin Baulig  <martin@ximian.com>
21591
21592         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21593         non-dynamic parent classes.
21594
21595 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21596
21597         * file-io.c : win32 build fix (ETXTBSY seems not found).
21598
21599 2005-10-04  Martin Baulig  <martin@ximian.com>
21600
21601         * reflection.c
21602         (mono_image_get_methodspec_token): Make the cache actually work;
21603         fixes #75974.
21604
21605 2005-10-04  Martin Baulig  <martin@ximian.com>
21606
21607         * class.c (mono_class_name_from_token): Removed the unneccessary
21608         `MonoGenericContext *' argument.
21609
21610 2005-10-04  Martin Baulig  <martin@ximian.com>
21611
21612         * loader.c
21613         (method_from_methodspec): Make the caching work again; fixes the
21614         performance regression from #76262.
21615
21616 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21617
21618         * file-io.c:
21619         * file-io.h:
21620         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21621         GetFileSystemEntries that performs the same work but without going
21622         into io-layer, locking, etc.
21623
21624 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21625
21626         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21627         ThreadState_Stopped as well. Fixes #76047.
21628
21629 2005-09-29  Martin Baulig  <martin@ximian.com>
21630
21631         * class.c
21632         (inflate_generic_context): If the new context has a `gmethod', set
21633         its `container' that that gmethod's `container'.
21634
21635         * metadata.c
21636         (mono_metadata_parse_generic_param): Simplify things;
21637         `generic_container = generic_context->container;' is just fine.
21638
21639         * loader.c (method_from_methodspec): Code cleanups.
21640
21641 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21642
21643         * decimal.c: fix warning (and let gcc generate correct
21644         code on ARM with optimizations).
21645
21646 2005-09-28  Martin Baulig  <martin@ximian.com>
21647
21648         * loader.c
21649         (method_from_memberref): Added `MonoGenericContext *class_context'
21650         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21651         (method_from_methodspec): If we're a memberref, use the enclosing
21652         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21653
21654 2005-09-28  Martin Baulig  <martin@ximian.com>
21655
21656         * object.c (mono_runtime_invoke_array): Added support for
21657         MONO_TYPE_GENERICINST; fixes #75917.
21658
21659 2005-09-27  Martin Baulig  <martin@ximian.com>
21660
21661         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21662         `k->byval_arg.type' to determine the actual type.
21663
21664         * loader.c (method_from_methodspec): Removed some hacks.
21665
21666 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21667
21668         * class-internals.h (mono_field_is_deleted): Do the test for
21669         rtspecialname before we check the actual name of the field. This
21670         prevents us from dereferencing a pointer into the string table,
21671         saving us from accessing a few pages
21672
21673         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21674         macros. This will allow a deadlock debugger to easily be plugged
21675         in.
21676
21677 2005-09-27  Martin Baulig  <martin@ximian.com>
21678
21679         * loader.c (method_from_methodspec): Create a "signature"
21680         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21681
21682 2005-09-27  Martin Baulig  <martin@ximian.com>
21683
21684         * class.c
21685         (inflate_generic_class): Correctly set the new context's
21686         container.
21687
21688         * loader.c
21689         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21690         instead of a `MonoGenericContext *'.
21691         (mono_method_signature_full): Take a `MonoGenericContainer *'
21692         instead of a `MonoGenericContext *'.
21693
21694         * metadata.c
21695         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21696         instead of a `MonoGenericContext *'.
21697         (mono_metadata_parse_method_signature_full): Likewise.
21698
21699 2005-09-26  Martin Baulig  <martin@ximian.com>
21700
21701         * class.c
21702         (mono_class_from_generic_parameter): Set `klass->generic_container'
21703         (mono_class_from_generic_parameter): Likewise.
21704         (mono_bounded_array_class_get): We inherit the generic container
21705         from the element class.
21706
21707         * loader.c
21708         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21709         argument rather than computing it here.
21710         (method_from_memberref): Correctly set the generic context before
21711         parsing the signature.  Fixes #75681.
21712
21713 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21714
21715         * object.c (mono_class_has_special_static_fields): Fix warnings.
21716
21717 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21718
21719         * assembly.c: Add parse_public_key function, to
21720         par the public keys. Also added mono_assembly_name_parse_full,
21721         to define it the parsed key should be freed or not.
21722         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21723         to parse a long format assembly name.
21724         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21725         private, since calling it to preserve the key requires
21726         freeing it manually.
21727         
21728 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21729
21730         * locales.c : removed HAVE_ICU part.
21731
21732 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21733
21734         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21735         field_is_special_static if the klass has no special static fields.
21736
21737         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21738         (MonoCachedClassInfo): Likewise.
21739
21740         * object.c (mono_class_has_special_static_fields): New helper function.
21741
21742 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21743
21744         * class.c (mono_class_create_from_typedef): Don't call 
21745         interfaces_from_typedef_full for enums.
21746         (mono_class_create_from_typedef): Compute the base types of enums directly
21747         without calling mono_class_setup_fields ().
21748         (mono_class_find_enum_basetype): New helper function.
21749
21750         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21751         one place inside the string heap.
21752         
21753 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21754
21755         * class.c: locking fixes, code cleanups, some docs added.
21756         Allocate some data structures in the image mempool.
21757
21758 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21759
21760         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21761         the example code.
21762         
21763 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21764
21765         * class-internals.h, class.c, reflection.c: reduce memory taken by
21766         MonoClass.
21767
21768 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21769
21770         * metadata.c, metadata.h, loader.h: documentation updates, code and
21771         API cleanups.
21772
21773 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21774
21775         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21776         the example code.
21777
21778         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21779         page faults caused by the runtime while reading metadata.
21780
21781 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21782
21783         * socket-io.c: the field names were changed 3 months ago and no one
21784         realized until bug #76077 got filed!
21785
21786 2005-09-20  Martin Baulig  <martin@ximian.com>
21787
21788         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21789
21790 2005-09-20  Martin Baulig  <martin@ximian.com>
21791
21792         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21793         write the rank into the class entry.
21794
21795 2005-09-20  Martin Baulig  <martin@ximian.com>
21796
21797         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21798
21799 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21800
21801         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21802
21803         * icall.c (custom_attrs_defined_internal): New icall.
21804
21805         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21806         function.
21807         (mono_custom_attrs_construct_by_type): New helper function.
21808
21809 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21810
21811         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21812         terminate the resulting string. Fixes #76123.
21813
21814 2005-09-16  Martin Baulig  <martin@ximian.com>
21815
21816         * mono-debug.c
21817         (mono_debug_add_method): Ignore inflated methods for the moment.
21818
21819 2005-09-14  Martin Baulig  <martin@ximian.com>
21820
21821         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21822
21823 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21824
21825         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21826         return a success/failure indication.
21827         (mono_metadata_interfaces_from_typedef_full): Ditto.
21828         (get_constraints): Ditto.
21829
21830 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21831
21832         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21833         
21834         * marshal.c (emit_marshal_array): Add support for returning string
21835         arrays from delegates. Fixes #76063.
21836
21837         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21838
21839 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21840
21841         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21842         icall.
21843
21844 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21845
21846         * reflection.c icall.c: Fix after mono_get_exception_type_load
21847         signature change.
21848
21849         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21850         (mono_assembly_load_reference): Use the new helper.
21851
21852         * class-internals.h (MonoLoaderError): New structure containing 
21853         information about type loading errors.
21854
21855         * class-internals.h loader.c: Add APIs to store per-thread loader
21856         error information.
21857
21858         * loader.c class.c: Set the loader error if needed.
21859
21860         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21861
21862 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21863
21864         * decimal.c: fixed to handle the broken ARM fp format.
21865
21866 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21867
21868         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21869         broken.
21870
21871 2005-09-06  Martin Baulig  <martin@ximian.com>
21872
21873         * domain.c (supported_runtimes): Added v2.0.50727.
21874
21875 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21876
21877         * culture-info.h: reduce the size of some structures.
21878
21879 2005-09-05  Martin Baulig  <martin@ximian.com>
21880
21881         Reflect latest API changes in the August CTP.
21882
21883         * icall.c
21884         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21885         ("MonoType.HasGenericArguments"): Removed.
21886         ("MonoMethod.BindGenericParameters"): Renamed to
21887         "MakeGenericMethod".
21888         ("MethodBuilder.BindGenericParameters"): Renamed to
21889         "MakeGenericMethod".    
21890
21891 2005-09-05  Martin Baulig  <martin@ximian.com>
21892
21893         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21894
21895 2005-09-05  Martin Baulig  <martin@ximian.com>
21896
21897         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21898
21899         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21900         generic_container is non-NULL.
21901
21902 2005-09-05  Martin Baulig  <martin@ximian.com>
21903
21904         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21905
21906         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21907
21908 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21909
21910         * reflection.c (encode_locals,
21911         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21912         for large generic types.
21913
21914 2005-09-05  Martin Baulig  <martin@ximian.com>
21915
21916         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21917
21918         * class.c (mono_dup_array_type): New public method.
21919         (mono_metadata_signature_deep_dup): New public method.
21920         (dup_type): Correctly duplicate array and function types.
21921
21922 2005-09-05  Martin Baulig  <martin@ximian.com>
21923
21924         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21925
21926         * reflection.c (get_default_param_value_blobs): Handle generic types
21927         and generic methods.
21928
21929 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21930
21931         * class.c: Fixed error reporting (method/class were inversed) for 
21932         inheritance demands.
21933         * security-manager.c|h: Added the AppDomain when calling the managed
21934         System.Security.SecurityManager.InheritanceDemand method.
21935
21936 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21937
21938         * reflection.c (encode_marshal_blob): 'marshaltype' and
21939         'marshaltyperef' are alternate sources for the custom marshaler
21940         name.
21941
21942 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21943
21944         * class.c: fix creation of array classes with rank == 1
21945         (patch by Ankit Jain <jankit@novell.com>).
21946
21947 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21948
21949         * object.c: fix check for creating the bound data for arrays vs
21950         szarrays.
21951
21952 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21953
21954         * object.c: configuration file name is now based on the executable name,
21955         not the image name. Fixes bug #75931.
21956
21957 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21958
21959         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21960         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21961
21962 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21963
21964         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21965
21966 2005-08-24  Ankit Jain  <jankit@novell.com>
21967             Raja R Harinath  <rharinath@novell.com>
21968
21969         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21970           called by it recursively.
21971           (mono_class_init): Remove special case in pending_init handling, since it's
21972           superseded by the fix to mono_class_from_typeref.
21973
21974 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21975
21976         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21977         BROKEN_THREAD_START stuff.
21978
21979 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21980
21981         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21982         trampoline.
21983
21984         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21985         
21986         * object.c (mono_delegate_ctor): Replace the original function address with
21987         a delegate trampoline.
21988
21989 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21990
21991         * icall.c: add boolean argument to base64_to_byte_array and 
21992         InternalFromBase64String to control whether a whitespace-only string
21993         is allowed (or should casue a FormatException to be thrown). We need
21994         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21995         to match the MS behaviour in both profiles.
21996         * appdomain.c: Bump corlib version.
21997
21998 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21999
22000         This patch implements a big portion of publisher policy
22001         support, used to bind assembly versions and redirect
22002         one assembly from version A to version B.
22003
22004         * assembly.c:
22005         New GSList loaded_assembly_bindings, for storing the cached
22006         assembly bindings.
22007         (assembly_binding_maps_name): New static function for checking if a 
22008         assembly binding information maps an assembly name.
22009         (mono_assembly_binding_info_free): New function for freeing
22010         assembly binding information resources.
22011         (get_publisher_policy_info): New static function for retrieving 
22012         assembly binding information from a MonoImage.
22013         (compare_versions): New static function for comparing an assembly
22014         binding information data and the version of an assembly name.
22015         (check_policy_versions): New static function for checking if an
22016         assembly binding info mapping an assembly name is valid for it.
22017         (mono_assembly_load_publisher_policy): New static function for
22018         loading the 'policy.major.minor.MyAssembly' image for an assembly
22019         with an assembly name 'aname'.
22020         (mono_assembly_bind_version): New static function for updating
22021         assembly redirection.
22022         (mono_assembly_apply_binding): New static function for applying
22023         assembly binding.
22024         (search_binding_loaded): New static function for searching 
22025         loaded assembly binding infos in the cache domain.
22026         (mono_assembly_load_full): Don't apply assembly binding for
22027         reflection only assemblies.
22028
22029         * metadata-internals.h: Add MonoAssemblyBindingInfo,
22030         which contains information about assembly binding. Also
22031         declare signature for mono_config_parse_publisher_policy ()
22032         function, used to retrieve pub policy info.
22033         
22034         * mono-config.c:
22035         (publisher_policy_start): New static function used to parse publisher 
22036         policy config files.
22037         (publisher_policy_parser): New static MonoParseHandler containing 
22038         the functions used when parsing config files.
22039         (mono_config_parse_publisher_policy): New function for parsing
22040         publisher policy files.
22041         
22042 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
22043
22044         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
22045
22046         * marshal.c (mono_delegate_free_ftnptr): Ditto.
22047
22048         * object.c (mono_get_addr_from_ftnptr): New helper function.
22049
22050         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
22051
22052         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22053
22054 2005-08-19  Dick Porter  <dick@ximian.com>
22055
22056         * threads.c, threads.h, appdomain.c, appdomain.h,
22057         profiler-private.h, monitor.c, object.c, object-internals.h,
22058         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
22059         store the thread ID, so it can hold a 64 bit value if needed.
22060
22061 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
22062
22063         * reflection.c (mono_reflection_create_dynamic_method): Store the
22064         handle class into the method references as well so ldtoken works in
22065         dynamic methods.
22066
22067         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
22068         types.
22069
22070 2005-08-19  Ankit Jain <jankit@novell.com>
22071
22072         Fix #75847.
22073         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
22074           here rather than using the method signature of a arbitrary function
22075           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
22076           two arguments.
22077           Hack done with Harinath.
22078
22079 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22080
22081         * threadpool.c: disable printing stack traces when we get a exception
22082         in a threadpool thread. I need to do more testing to figure out which
22083         cases actually print this. Fixes bug #75828.
22084
22085 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22086
22087         * icall.c: there might be ignored whitespace after the last '='. This
22088         fixes length computation and bug #75840.
22089
22090 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
22091
22092         * assembly.c (mono_assembly_load_full): Consider .exe extension as
22093         well. Fixes #75809.
22094
22095         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
22096         #75784.
22097         
22098         * reflection.c (create_custom_attr_data): Ditto.
22099
22100 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
22101
22102         * locales.c, culture-info.h : removed RegionLCIDMap.
22103         * culture-info-tables.h : regenerated.
22104
22105 2005-08-16  Martin Baulig  <martin@ximian.com>
22106
22107         * class.c (mono_type_get_name_recurse): Small fix.
22108
22109 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
22110
22111         * locales.c : indentation fixie.
22112
22113 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
22114
22115         * object-internals.h,
22116           locales.h,
22117           locales.c,
22118           culture-info.h,
22119           icall.c : added RegionInfo table support.
22120         * culture-info-table.h : regenerated for region support.
22121
22122 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
22123
22124         * reflection.c (resolve_object): handle all kinds of MonoMethod
22125         including generic ones
22126
22127 2005-08-12  Ankit Jain <jankit@novell.com>
22128
22129         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
22130           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
22131
22132 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
22133
22134         * process.c: Don't close a thread handle when it's NULL. This is a
22135         workaround for bug #75733.
22136
22137 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
22138
22139         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
22140
22141 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
22142
22143         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
22144
22145 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22146
22147         * threadpool.c: if a work item in the thread pool has a callback that
22148         catches a exception, don't propagate it after invoking the callback.
22149         Fixes bug #75336.
22150
22151 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
22152
22153         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
22154
22155         * class-internals.h (MonoCachedClassInfo): Add some new fields.
22156
22157         * class.c (mono_class_init): Load field info lazily in the AOT case.    
22158
22159         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
22160
22161 2005-08-03  Ankit Jain  <jankit@novell.com>
22162
22163         Fix #75683.
22164         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
22165           PInvoke calling convention is 0.
22166
22167 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
22168
22169         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
22170         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
22171
22172 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
22173
22174         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
22175         to handle threads not started by the GC (patch by Michael Meeks
22176         <michael.meeks@novell.com>).
22177
22178 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
22179
22180         * reflection.c: Make buffer used in emitting types larger for some
22181         big generic types (patch by Michal Moskal).
22182
22183 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
22184
22185         * mono-debug.c: Fix some (not all) alignment problems.
22186
22187 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22188
22189         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
22190         Invoke mono_image_load_from_data_full passing the refonly
22191         parameter.
22192
22193         * assembly.c
22194         (mono_assembly_open_from_bundle): Add the refonly argument, 
22195         in order to pass it to other methods it calls to.
22196         (do_mono_assembly_open): Add the refonly argument, in order 
22197         to pass it to other methods it calls to.
22198         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
22199         the refonly parameter to it.
22200
22201         * image.c: Add loaded_images_refonly_hash and
22202         loaded_images_refonly_guid_hash to cache the reflection
22203         only loaded images.
22204         (mono_images_init): Initialize the hash tables used for
22205         caching the reflection only images.
22206         (load_modules): Invoke mono_image_open_full passing the refonly
22207         parameter to load the modules the correct way.
22208         (build_guid_table): Add the refonly argument, to re-build the 
22209         correct hash table.
22210         (do_mono_image_open): Added the refonly argument, in order to
22211         define it for the loaded image.
22212         (mono_image_loaded_full): New function, which receives an
22213         additional parameter to look for the image in the refonly or
22214         non-refonly section.
22215         (mono_image_loaded): Updated, using mono_image_loaded_full.
22216         (mono_image_loaded_by_guid_full): The same case that happens
22217         with mono_image_loaded_full.
22218         (mono_image_loaded_by_guid): Likewise.
22219         (register_image): Use the ref_only variable inside MonoImage
22220         to decide in which hash table store the current image.
22221         (mono_image_open_from_data_full): Rename
22222         mono_image_open_from_data to mono_image_open_from_data_full,
22223         adding the refonly argument, to define the ref_only variable 
22224         inside MonoImage.
22225         (mono_image_open_from_data): Return 
22226         mono_image_open_from_data_full.
22227         (mono_image_open_full): Rename mono_image_open to
22228         mono_image_open_full, receiving the new refonly argument,
22229         to pass it to inner methods.
22230         (mono_pe_file_open): Update this function, to open
22231         a MonoImage as a non-refonly image.
22232         (mono_image_close): Use the refonly variable inside
22233         MonoImage to remove the image from the correct caches.
22234
22235         * image.h: Add the signatures of mono_image_open_full,
22236         mono_image_open_from_data_full, mono_image_loaded_full,
22237         mono_image_loaded_by_guid_full.
22238
22239         * metadata-internals.h: Add the ref_only field to 
22240         MonoImage.
22241         
22242 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22243
22244         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
22245         Fix the last behavior, which used to load the assemblies and
22246         extract MonoReflectionAssemblyName information, instead of
22247         extract it from the metadata tables. Needed for Reflection
22248         Only assemblies.
22249         
22250 2005-07-29  Martin Baulig  <martin@ximian.com>
22251
22252         * mono-debug-debugger.c
22253         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
22254         not initialized.
22255
22256         * mono-debug.c
22257         (mono_debug_address_from_il_offset): Check whether we have
22258         debugging support before attempting to take the lock.
22259         (mono_debug_source_location_from_address): Likewise.
22260         (mono_debug_source_location_from_il_offset): Likewise.
22261         (mono_debug_il_offset_from_address): Likewise.
22262         (mono_debug_address_from_il_offset): Likewise.
22263
22264 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
22265
22266         * class.c (mono_class_from_name_case): Add support for dynamic images.
22267         Fixes #75650.
22268
22269         * object.c (mono_class_compute_gc_descriptor): Add a workaround
22270         for #75479.
22271
22272 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22273         
22274         * reflection.c (mono_method_get_object): Fix warning.
22275
22276 2005-07-28  Martin Baulig  <martin@ximian.com>
22277
22278         * mono-debug.c
22279         (mono_debug_add_wrapper): Also write the wrapper type.
22280
22281 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22282
22283         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
22284         
22285         * class.c (mono_class_init): Avoid reading nested classes if the AOT
22286         data indicates the class has none.
22287
22288 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
22289
22290         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
22291         loader lock with the debugger lock. Prevents deadlocks for beagle.
22292
22293         Beagle can now run on an smp box for a weekend without any
22294         issues. Woohoo!
22295
22296 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
22297
22298         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
22299         in a module. Fixes #75629.
22300
22301 2005-07-26  Martin Baulig  <martin@ximian.com>
22302
22303         * mono-debug.c (mono_debug_add_wrapper): New static method.
22304         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
22305         interncall or a wrapper.
22306
22307         * mono-debug.h (MonoDebugWrapperData): New public typedef.
22308         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
22309         (MONO_DEBUGGER_VERSION): Bump to 51.
22310
22311         * mono-debug-debugger.c
22312         (mono_debugger_add_type): Removed this empty function.
22313         (mono_debugger_add_method): Likewise.
22314
22315 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
22316
22317         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
22318         before accessing method->slot.
22319
22320 2005-07-21  Jb Evain  <jbevain@gmail.com>
22321
22322         * reflection.c (method_encode_clauses/class): Handle filters clauses.
22323         Fixes #75010.
22324
22325 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
22326
22327         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
22328         #75587.
22329
22330 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
22331
22332         * image.h image.c: Add mono_image_get_guid () API function.
22333
22334 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
22335
22336         There were issues when multiple threads tried to load
22337         assemblies. A deadlock was created between assemblies_mutex and
22338         mono_domain_assemblies_lock. This fixes the issue by making the
22339         assembly ref counting be lock free. See bug 75586.
22340         
22341         * image.c (mono_image_close): The add ref function here was using
22342         Interlocked operations while the unref was using a mutex and a
22343         --. I don't think this was ever a bug that would be exposed in a
22344         non-pendantic way (ie, by an embedder doing a ref on one thread
22345         and an unref on another), but for the sake of correctness, this is
22346         now Interlocked.
22347
22348         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
22349         (mono_assembly_load_reference): Call mono_assembly_addref rather
22350         than touching the refcount ourselves.
22351         (mono_assembly_close): Use InterlockedDecrement to unref the
22352         assembly. Don't acquire the lock unless it is actually needed.
22353
22354 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22355
22356         * class.c (mono_class_layout_fields): Fix calculation of has_references
22357         for generic types.
22358
22359 2005-07-12  Martin Baulig  <martin@ximian.com>
22360
22361         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22362
22363         * metadata.c
22364         (mono_type_hash): Provide better hashing for generic instances.
22365         (mono_generic_inst_hash): Improve hashing.
22366         (mono_generic_class_hash): Likewise.
22367
22368         * reflection.c (mymono_metadata_type_hash): Improve hashing for
22369         generic instances.
22370
22371 2005-07-12  Martin Baulig  <martin@ximian.com>
22372
22373         * reflection.c (mono_reflection_create_runtime_class): Remove the
22374         hack for generic type definitions and non-`Run' assemblies.
22375         (mono_reflection_bind_generic_parameters): Also use
22376         `klass->wastypebuilder' to check for TypeBuilders.
22377
22378 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22379
22380         * class.c (mono_class_layout_fields): Fix calculation of has_references
22381         for generic types.
22382
22383         * class.c (inflate_generic_class): Fix a leak.
22384         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
22385         for generic types.
22386
22387 2005-07-11  Martin Baulig  <martin@ximian.com>
22388
22389         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22390         on error.
22391
22392 2005-07-11  Martin Baulig  <martin@ximian.com>
22393
22394         * loader.c (find_method): Also lookup in
22395         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22396
22397 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22398
22399         * appdomain.c (mono_domain_unload): Don't free the error message
22400         before passing it to mono_get_exception_...
22401
22402         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22403         
22404 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22405
22406         * threads.c: try to better guess an available RT signal (bug #75387).
22407
22408 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22409
22410         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22411         and CACHE_OBJECT.
22412
22413 2005-07-07  Martin Baulig  <martin@ximian.com>
22414
22415         * class.c (mono_type_get_name_full): Return NULL for
22416         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22417         fixes #75408.
22418
22419 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22420
22421         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22422         exit the appdomain as well being aborted.
22423
22424         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22425         change back to the root domain after calling managed code. This enables
22426         appdomains using threadpools to be unloaded.
22427
22428 2005-07-07  Martin Baulig  <martin@ximian.com>
22429
22430         * class-internals.h
22431         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22432         into `MonoDynamicGenericClass' since we only need it for dynamic
22433         types.
22434
22435         * reflection.c (mono_class_bind_generic_parameters): We don't need
22436         to compute the `parent' here.
22437
22438 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22439
22440         * culture-info-table.h : regenerated.
22441
22442 2005-07-06  Martin Baulig  <martin@ximian.com>
22443
22444         * icall.c
22445         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22446
22447         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22448
22449 2005-07-06  Martin Baulig  <martin@ximian.com>
22450
22451         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22452         we're doing a signature-only comparision; fixes #74945.
22453
22454 2005-07-06  Martin Baulig  <martin@ximian.com>
22455
22456         * class-internals.h (MonoGenericClass): Moved some things out into
22457         a new `MonoInflatedGenericClass' type.  
22458         (MonoInflatedGenericClass): New type; the `klass' of a
22459         `MonoGenericClass' is now computed lazyly in
22460         mono_get_inflated_generic_class().      
22461
22462         * class.c (mono_get_inflated_generic_class): New public function.
22463         (mono_class_inflate_generic_method): Removed the unused
22464         `MonoClass *' argument.
22465         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22466         all the methods.
22467         (mono_class_create_generic): Make this static and merge it with
22468         mono_class_create_generic_2(); we're now called automatically from
22469         mono_get_inflated_generic_class().
22470
22471         * loader.c (mono_method_signature): Call
22472         mono_get_inflated_method() here.
22473
22474 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22475
22476         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22477         type of fields with RVA.
22478
22479         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22480         for this pseudo class.
22481         (my_mono_class_from_generic_parameter): Likewise.
22482         (mono_class_init): Allow interfaces to have cctors.
22483
22484 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22485
22486         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22487         lazily for AOT methods.
22488
22489 2005-07-05  Martin Baulig  <martin@ximian.com>
22490
22491         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22492         returns FALSE for a successful match, not TRUE.
22493
22494 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22495
22496         * loader.c (mono_method_get_index): Optimize this a bit.
22497
22498 2005-07-04  Martin Baulig  <martin@ximian.com>
22499
22500         * class.c
22501         (class_compute_field_layout): Move the check for generic type
22502         definitions into mono_class_layout_fields().  Fixes #74684.
22503         (mono_class_from_generic_parameter): Correctly compute
22504         `klass->parent'; fixes #75457.
22505
22506         * reflection.c (register_assembly, register_module): Make sure
22507         `domain->rejobject_hash' is already created.
22508
22509 2005-07-02  Martin Baulig  <martin@ximian.com>
22510
22511         * class-internals.h
22512         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22513         `MonoDynamicGenericClass'.      
22514
22515 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22516
22517         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22518         returned by a field getter is null, since null is a valid value.
22519
22520 2005-07-01  Martin Baulig  <martin@ximian.com>
22521
22522         * reflection.c (mono_reflection_generic_class_initialize): Update
22523         the `dgclass->fields [i].parent' to the correct class.
22524         (mono_image_get_fieldref_token): Use the declaring type, not the
22525         reflected type.
22526
22527 2005-07-01  Martin Baulig  <martin@ximian.com>
22528
22529         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22530
22531 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22532
22533         * threads.c (thread_cleanup): assert that thread != NULL
22534         (wait_for_tids_or_state_change): We were using the wrong variable
22535         when accessing wait->threads. `i' was always out of the bounds of
22536         the array.
22537
22538 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22539
22540         * loader.c: map user32 and kernel32 to libMonoSupportW
22541
22542 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22543
22544         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22545
22546 2005-06-28  Martin Baulig  <martin@ximian.com>
22547
22548         * loader.c (method_from_methodspec): Fix #75334.
22549
22550 2005-06-28  Martin Baulig  <martin@ximian.com>
22551
22552         Fix #74953 - Arrays now implement the generic IList<T> interface
22553         on the 2.0 platform.
22554
22555         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22556
22557         * reflection.c (mono_class_bind_generic_parameters): New public
22558         function; similar to mono_reflection_bind_generic_parameters(),
22559         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22560
22561         * domain.c (mono_init_internal): Try to initialize.
22562         `mono_defaults.generic_array_class' here; this'll only succeed if
22563         we're using the 2.0 corlib.
22564
22565         * icall.c
22566         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22567         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22568         (mono_lookup_internal_call): Added support for nested classes.
22569
22570         * loader.c
22571         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22572         we're an interncall and have generic arguments.
22573
22574         * class.c
22575         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22576         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22577         instance of System.Array.InternalArray<T> for arrays, so they
22578         implement the generic IList<T> interface.
22579
22580 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22581
22582         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22583         (chastamar@yahoo.com). Fixes #75374.    
22584
22585 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22586
22587         * culture-info-table.h: regenerated.
22588
22589 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22590
22591         * icall.c: handle spaces correctly for base64 strings.
22592
22593 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22594
22595         * *.c: Kill some warnings.
22596
22597 2005-06-23  Duncan Mak  <duncan@novell.com>
22598
22599         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22600         that this builds on Solaris 10 (x86).
22601
22602 2005-06-23  Martin Baulig  <martin@ximian.com>
22603
22604         * class.c
22605         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22606         generic type definitions.
22607
22608 2005-06-23  Martin Baulig  <martin@ximian.com>
22609
22610         Fix #75331.
22611
22612         * metadata.c (mono_class_get_overrides): Renamed to
22613         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22614         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22615         pass it to mono_get_method_full().
22616
22617 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22618
22619         * reflection.c (mono_reflection_create_runtime_class): take the
22620         mono_domain_lock in this method. Prevents deadlocks
22621
22622 2005-06-22  Martin Baulig  <martin@ximian.com>
22623
22624         * loader.c (method_from_methodspec): Fix #75330.
22625
22626 2005-06-22  Martin Baulig  <martin@ximian.com>
22627
22628         * reflection.c (type_get_qualified_name): Use
22629         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22630         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22631         argument; use it if we don't have an assembly name.
22632
22633 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22634
22635         * object.c: In mono_message_init, set "copy out" flag for in
22636         parameters with the [Out] flag.
22637
22638 2005-06-21  Martin Baulig  <martin@ximian.com>
22639
22640         * class.c
22641         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22642         and MONO_TYPE_PTR.
22643
22644 2005-06-21  Martin Baulig  <martin@ximian.com>
22645
22646         * class.c (mono_class_init): Don't initialize `class->fields' for
22647         generic instances since they're initialized again in
22648         compute_field_layout(). 
22649         (compute_field_layout): Set the field's `generic_info' here; fix
22650         #75320. 
22651
22652 2005-06-21  Martin Baulig  <martin@ximian.com>
22653
22654         * class-internals.h
22655         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22656
22657         * metadata.c (mono_metadata_generic_method_equal): Also
22658         distinguish the `generic_class'; fixes #75334.
22659
22660 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22661
22662         * domain.c:
22663         * appdomain.c:
22664         * domain-internals.h:
22665         * reflection.c: 'domain_assemblies' field is now protected by its own
22666         lock. Don't call into managed code to run the AssemblyLoad event if we
22667         now there are no registered delegates for it.
22668
22669 2005-06-20  Martin Baulig  <martin@ximian.com>
22670
22671         * class.c (mono_class_is_assignable_from): Use a custom version of
22672         mono_class_has_parent() to make things work for generic instances;
22673         fix #75300.
22674
22675 2005-06-20  Martin Baulig  <martin@ximian.com>
22676
22677         * loader.c (method_from_methodspec): Apply a patch from
22678         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22679
22680 2005-06-20  Martin Baulig  <martin@ximian.com>
22681
22682         * class.c (mono_class_init): Reverted Zoltan's last change; it
22683         breaks generics.
22684
22685 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22686
22687         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22688
22689 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22690
22691         * socket-io.c: fix the index in the socket array for writable/error
22692         sockets. Fixes bug #75306.
22693
22694 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22695
22696         * class.c (mono_class_init): Allow interfaces to have static ctors.
22697
22698 2005-06-17  Martin Baulig  <martin@ximian.com>
22699
22700         * loader.c (method_from_methodspec): Use `context->container' when
22701         parsing the `gmethod->inst'.
22702
22703 2005-06-17  Martin Baulig  <martin@ximian.com>
22704
22705         * class.c (mono_type_get_name_recurse): Don't add the assembly
22706         name for type arguments.
22707
22708 2005-06-15  Martin Baulig  <martin@ximian.com>
22709
22710         * reflection.c (mono_image_get_inflated_method_token): Encode
22711         correct klass; fixes #75260.
22712
22713 2005-06-13 Michal Moskal <malekith@nemerle.org>
22714
22715         * icall.c: Make GetCorrespondingMethod/Constructor take
22716         MonoReflectionMethod method not MonoMethod. Removed
22717         MonoType.GetCorrespondingField, and make
22718         MonoGenericType.GetCorrespondingField take name not
22719         MonoClassField.
22720
22721 2005-06-13  Michal Moskal <malekith@nemerle.org>
22722
22723         * reflection.c (field_encode_signature, encode_locals):
22724          Make sizes of buffers for types larger (for big generic types).
22725          (create_generic_typespec,
22726          mono_reflection_sighelper_get_signature_local,
22727          mono_reflection_sighelper_get_signature_field):
22728          Add asserts for too small buffers.
22729
22730 2005-06-15  Martin Baulig  <martin@ximian.com>
22731
22732         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22733         if our parent is not a dynamic type.
22734
22735 2005-06-15  Martin Baulig  <martin@ximian.com>
22736
22737         * class-internals.h (MonoTypeNameFormat): New enum.
22738
22739         * class.c
22740         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22741         (mono_type_get_full_name): Removed.
22742         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22743         argument instead of the boolean's.
22744
22745         * icall.c (ves_icall_System_MonoType_getFullName):
22746         Added `gboolean assembly_qualified'.    
22747
22748         * reflection.h
22749         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22750
22751         * reflection.c (mono_reflection_parse_type): Parse the new type
22752         name format.
22753
22754 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22755
22756         * icall.c: no need to convert from utf16 to utf8 and then back again
22757         after the call to GetLogicalDrives.
22758
22759 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22760
22761         * icall.c: frombase64. Fix problems exposed by new tests.
22762
22763 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22764
22765         * icall.c: added internal calls for converting char [] and strings in
22766         base64 into byte [].
22767
22768 2005-06-10  Martin Baulig  <martin@ximian.com>
22769
22770         * class.c (mono_class_create_generic_2): Read the nested classes
22771         from the metadata rather than from `gklass->nested_classes' since
22772         `gklass' might not be initialized yet.
22773
22774 2005-06-09  Duncan Mak  <duncan@novell.com>
22775
22776         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22777         all public headers. Fixes #74919.
22778
22779 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22780
22781         * domain.c: The key for proxy_vtable_hash is now a pointer
22782         array. Added new GHashFunc and GCompareFunc functions for this.
22783
22784         * class.h: The list of interfaces in MonoRemoteClass is known in
22785         advance and can't grow (we create a new MonoRemoteClass if needed),
22786         so now the interface array can be allocated together with
22787         MonoRemoteClass.
22788         
22789         * object.c: Added a new method create_remote_class_key.
22790         Fixed mono_remote_class so it does not depend on
22791         mono_upgrade_remote_class.
22792         Removed extend_interface_array.
22793         Added new method clone_remote_class(), which makes a copy of a remote
22794         class and adds a new interface or class to it.
22795         mono_upgrade_remote_class() now creates a new remote class (or gets
22796         it from the cache) if an vtable upgrade is needed. In this way
22797         we make sure that other objects sharing the same remote class
22798         don't get the new vtable with unwanted interfaces.
22799         
22800         * object-internals.h:
22801         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22802         
22803         * marshal.c: Track changes in mono_upgrade_remote_class().
22804
22805 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22806         * icall.c: Add runtime methods for obtaining members of inflated
22807         class, which were created from supplied non-inflated members. It
22808         is used in internal Get{Method,Constructor,Field} methods in
22809         System.Type
22810
22811 2005-06-09  Martin Baulig  <martin@ximian.com>
22812
22813         * reflection.c
22814         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22815
22816 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22817         * reflection.c (mono_image_basic_init): Define
22818         Version in MonoDynamicAssembly. 
22819         
22820 2005-06-08  Martin Baulig  <martin@ximian.com>
22821
22822         Fix #75136.
22823
22824         * loader.c
22825         (mono_method_signature_full): New public method; takes a
22826         `MonoGenericContext *'.
22827         (find_method): Use mono_method_signature_full() and pass the
22828         klass'es context to it.
22829
22830         * class.c (mono_class_is_inflated_method): Use
22831         mono_method_signature_full() and pass the context to it.
22832
22833 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22834
22835         * object.c: add proper locking in mono_remote_class_vtable(),
22836         fixes possible memory corruption.
22837
22838 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22839
22840         * marshal.c (mono_remoting_marshal_init): set
22841         initialized after initialization.
22842
22843 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22844
22845         * locales.c : hush.
22846
22847 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22848
22849         * object.c (extend_interface_array): fix really silly
22850         memory corrupting / comparison bug.
22851
22852 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22853
22854         * reflection.c: Functions added to support the creation
22855         of CustomAttributeData, which includes Attribute data
22856         used by ReflectionOnly methods.
22857
22858         * reflection.h:  mono_reflection_get_custom_attrs_data and
22859          mono_custom_attrs_data_construct added (functions exposed).
22860
22861          * icall.c: Added mono_reflection_get_custom_attrs_data
22862          as icall.
22863         
22864 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22865
22866         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22867         lupus's request.
22868
22869 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22870
22871         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22872
22873         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22874         dynamic DllImportAttribute.
22875
22876         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22877         dynamic DllImportAttribute.
22878
22879         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22880         Fixes #75162.
22881
22882 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22883
22884         * threads.c: avoid segfault when an unstarted thread is aborted.
22885
22886 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22887
22888         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22889         Returns the name and version of the runtime for reporting.
22890
22891 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22892
22893         * appdomain.c: bump corlib version.
22894         * object-internals.h: new field in MonoReflectionAssembly.
22895
22896 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22897
22898         * object-internals.h: Carlos forgot to add this field.
22899
22900 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22901
22902         * icall.c: Added create_version to create instances
22903         of Version of MonoReflectionAssemblyName. This change helps
22904         the AssemblyName tests to keep running fine.
22905         
22906 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22907   
22908         * object.c (mono_method_return_message_restore): A somehow less
22909         intrusive fix for #75138.
22910
22911 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22912
22913         * object.c (mono_method_return_message_restore): Fix computation
22914         of expected number of out args.
22915
22916 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22917
22918         * reflection.c (mono_image_get_method_info): Fix the case when the
22919         charset is empty.
22920
22921 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22922
22923         * object.c: Added missing null check in
22924           mono_method_return_message_restore.
22925
22926 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22927
22928         * reflection.c (mono_image_get_method_info): Handle the case when
22929         dllentry is empty.
22930
22931 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22932
22933         * object.c: When creating the vtable for a proxy, take into account
22934         all inherited interfaces, not only the ones registered in
22935         iclass->interfaces. This fixs bug #74996.
22936         Also, in mono_method_return_message_restore, verify that the array
22937         of out args has the expected lengh.
22938
22939 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22940
22941         * socket-io.c: update the timeout in Poll when the call is interrupte.
22942
22943 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22944
22945         * socket-io.c: support abort/suspend in Select_internal after last
22946         change.
22947
22948 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22949
22950         * threadpool.c: remove warning.
22951
22952 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22953
22954         * icall.c:
22955         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22956         removing the 1024 limit from select(). Runtime part of the fix for
22957         bug #71203.
22958
22959 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22960
22961         * socket-io.c: when resolving the addresses for the same
22962         host returned by gethostname(), get the local IPs from the interface
22963         list. Loopback addresses are discarded if the are interfaces up with
22964         non-loopback ones. Fixes bug #63265.
22965
22966 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22967
22968         * appdomain.c, verify.c, object-internals.h, reflection.c:
22969         bumped corlib number to 36, and added new extra_flags field
22970         to ReflectionMethodBuilder and friends.  Fixes #75060.
22971
22972 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22973
22974         * gc.c: register a new weak link only if the object is non-null
22975         (fixes bug#75047).
22976
22977 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22978
22979         * culture-info.h : short time pattern too.
22980
22981 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22982
22983         * culture-info.h : expand long time pattern string length.
22984
22985 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22986
22987         * culture-info-table.h : update (more French date format; #72788).
22988
22989 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22990
22991         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22992         the method is static. Fixes #75029.
22993
22994 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22995
22996         * reflection.c: Update the table_idx field of method builders after
22997         saving the module, since it can change. This is a workaround for
22998         bug #74914. 
22999
23000 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23001
23002         * culture-info-table.h : update (additional French date format).
23003
23004 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
23005
23006         * icall.c (ves_icall_type_Equals): Revert last change.
23007         
23008         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
23009
23010         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
23011
23012 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
23013
23014         * class-internals.h: Added executioncontext_class field to 
23015         MonoDefaults structure.
23016         * domain.c: Cache System.Threading.ExecutionContext class in 
23017         mono_defaults.
23018         * object.c: Capture the ExecutionContext for asynchroneous calls in
23019          mono_async_result_new.
23020         * object-internals.h: Added execution_context and original_context 
23021         fields to MonoAsyncResult. Added execution_context to MonoThread.
23022         * security-manager.c|.h: Added mono_get_context_capture_method to 
23023         return the capture method (if required by the security manager or by
23024         the framework version used).
23025         * threadpool.c: Apply capture (if present) ExecutionContext in 
23026         mono_async_invoke and revert to original context after it completes.
23027
23028 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
23029
23030         * culture-info-table.h : updated (real hacky solution for zh-CHT).
23031
23032 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
23033
23034         * culture-info-table.h : zh-CHT related workaround.
23035
23036 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23037
23038         * marshal.c (emit_marshal_custom): Add some error checking and call the
23039         methods in the ICustomMarshaler interface. Fixes #74875.
23040         
23041         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
23042         native->managed wrappers.
23043
23044 2005-05-12  Martin Baulig  <martin@ximian.com>
23045
23046         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
23047         here and use the loader lock.
23048
23049         * mono-debug.c: Properly lock when the debugger is not attached.
23050         (mono_debug_init): Release the initial lock if we're not running
23051         in the debugger.
23052
23053 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23054
23055         * marshal.c (emit_marshal_custom): Pass through NULL values without
23056         calling the custom marshalling routines.
23057
23058         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
23059         conversion in structures. Fixes #74882.
23060
23061 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
23062
23063         * culture-info-table.h : zh-* cultures were missing.
23064
23065 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
23066
23067         * threads.c: Added a new event background_change_event which is signaled
23068         when a thread changes its background mode.
23069         Moved here several checks previously done in managed code. The checks
23070         require the thread lock, and using the thread lock in managed code
23071         can result in deadlocks.
23072         Merged Start_internal and Thread_internal into a single method. Now 
23073         Thread_internal does all work of creating and starting a thread.
23074         Added icalls for setting and getting the state of the object. Moved from
23075         managed code to avoid locking there.
23076         Added wait_for_tids_or_state_change() which is called instad of
23077         wait_for_tids when waiting for non-backround threads to end. This method
23078         will return if one of the threads ends or the background_change_event
23079         is signaled.
23080         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
23081         the background mode. This method signals the background_change_event
23082         event.
23083         * icall.c:
23084         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
23085         removed Start_internal.
23086         
23087 2005-05-11  Martin Baulig  <martin@ximian.com>
23088
23089         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
23090         to order of some fields to get proper alignment on 64-bit machines.
23091
23092 2005-05-11  Martin Baulig  <martin@ximian.com>
23093
23094         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
23095         changes as they're broken and completely fuck up the debugger.
23096
23097         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
23098
23099 2005-05-10  Martin Baulig  <martin@ximian.com>
23100
23101         * reflection.c (mono_reflection_generic_class_initialize): Don't
23102         call mono_class_setup_parent() here.
23103
23104 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23105
23106         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
23107         send/receive timeout use an integer in milliseconds. We were using a
23108         struct timeval.
23109
23110 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23111
23112         * locales.c:
23113         (internal_get_cultures): reserve the first slot of the array for the
23114         InvariantCulture, which will be filled in managed code.
23115
23116 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
23117
23118         * reflection.c (mono_image_fill_module_table): Initialize the
23119         GENERATION field as well.
23120
23121 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23122
23123         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
23124         Monitor.Enter on the object.
23125
23126 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
23127
23128         * threads.c: Enable the wait for running threads when exiting.
23129         * icall.c: Suspend all threads before exiting.
23130
23131 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
23132
23133         * assembly.c (mono_assembly_load_reference): Fix warning.
23134
23135 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23136
23137         * threadpool.c: changed the default number of threads per cpu. From now
23138         on, the default will be 20 + (5 * number of cpus) instead of 50.
23139
23140 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
23141
23142         * loader.c (mono_method_get_signature_full): Add locking here.
23143
23144 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
23145
23146         * appdomain.c: Moved methods for parsing and freeing assembly
23147         names to assembly.c.
23148         * assembly.c, domain-internals.h: Created public methods for parsing
23149         assembly names. Fixed mono_assembly_load_with_partial_name:
23150         it now finds the best match, taking into account the version,
23151         token and culture specified in the partial name. Also return
23152         the latest version if no version information is specified.
23153
23154 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
23155
23156         * threadpool.c: replace check for SocketAsyncCall class.
23157
23158 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23159
23160         * threadpool-internals.h:
23161         * Makefile.am: added threadpool-internals.h
23162
23163         * threadpool.c: call mono_unhandled_exception on exceptions not handled
23164         that happen in threadpool threads (tested on MS).
23165         (mono_thread_pool_remove_socket): new function that dispatch any pending
23166         AIO call on a socket that is closing. By now only epoll really needs it,
23167         as select/poll wake up when the socket closes.
23168
23169
23170         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
23171
23172 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
23173
23174         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
23175
23176 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
23177
23178         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
23179
23180 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
23181
23182         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
23183         has an abort request, convert it into a suspend request.
23184
23185 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
23186
23187         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
23188         warning for the usage of `UnmanagedFunctionPointerAttribute' which
23189         is not supported yet.
23190
23191 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23192
23193         * image.c: register assemblies loaded from data (bundles) in the loaded
23194         assemblies hash. Fixes bug #74772.
23195
23196 2005-04-29  Martin Baulig  <martin@ximian.com>
23197
23198         * class.c (mono_type_get_name_recurse): Update to the new naming
23199         schema from the latest .NET 2.x beta2.
23200         (mono_class_setup_vtable_general): If we're a generic instance,
23201         copy the vtable from our generic type definition and inflate all
23202         the methods in it.
23203
23204         * loader.c (find_method): Update to the new naming schema from the
23205         latest .NET 2.x beta2.
23206
23207 2005-04-29  Raja R Harinath  <harinath@gmail.com>
23208
23209         * class.c (mono_class_init): Add a mono_loader_unlock to the
23210         #74734 fix.
23211
23212 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
23213
23214         * icall.c (ves_icall_System_Environment_Exit): Remove the 
23215         suspend_all_other_threads () call for the time being, since it can hang.
23216
23217         * threads.c (mono_thread_manage): Similarly, disable the waiting for
23218         the background threads to exit, since it can also hang.
23219
23220         * class.c (mono_class_init): Applied patch from Ankit Jain 
23221         (radical@gmail.com). Avoid pending init errors when a field refers
23222         to a nested class using a typeref. Fixes #74734.
23223
23224         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
23225         this for dynamic modules.
23226
23227 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23228
23229         * threads.c: don't wait for threads that are in the process of aborting
23230         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
23231         and waiting for background threads to finish. This makes xsp and
23232         mod-mono-server exit without random length delays and/or hangs.
23233
23234 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23235
23236         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
23237
23238 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
23239
23240         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
23241         dynamic types to prevent infinite loops. Fixes #74727.
23242
23243         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
23244         ..._is_assignable_to.
23245
23246 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
23247
23248         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
23249
23250 2005-04-25  Martin Baulig  <martin@ximian.com>
23251
23252         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
23253
23254         * domain.c
23255         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
23256
23257         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
23258
23259         * reflection.c (build_compressed_metadata): Set metadata header
23260         version to 2.0.
23261
23262 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
23263
23264         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
23265         number into an integral and a decimal part. Fixes #70473.
23266
23267         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
23268
23269 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
23270
23271         * culture-info-table.h : reflected the latest locale-builder output.
23272
23273 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23274
23275         * threadpool.c: check for SuspendRequested too when deciding if
23276         mono_thread_interruption_checkpoint should be called.
23277
23278 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23279
23280         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
23281         * threads.c: remove interruption_mutex and use Interlocked instead. When
23282         suspending all the threads, wait for all the suspended events at once.
23283         If we're shutting down and get an APC that is going to be queued,
23284         call mono_thread_execute_interruption immediately, as the thread might
23285         be sleeping on a pthread condition or mutex.
23286
23287         * icall.c: call mono_runtime_set_shutting_down before suspending the
23288         threads.
23289
23290         Fixes bug #74693. And now xsp is happier when exiting.
23291
23292 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
23293
23294         * loader.c (mono_stack_walk): Fix #74690.
23295
23296 2005-04-22  Martin Baulig  <martin@ximian.com>
23297
23298         * mono-debug.h (MonoDebugMethodJitInfo): Added
23299         `MonoDebugMethodJitInfo *jit'.
23300
23301         * mono-debug.c (mono_debug_read_method): Cache the
23302         MonoDebugMethodJitInfo in `address->jit'.
23303         (mono_debug_free_method_jit_info): New public method.
23304
23305 2005-04-22  Martin Baulig  <martin@ximian.com>
23306
23307         * class.c (mono_class_is_assignable_from): Disallow
23308         type parameter -> interface.
23309
23310 2005-04-21  Dick Porter  <dick@ximian.com>
23311
23312         * threads.c (mono_thread_create): Turn an assertion into an error.
23313
23314 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
23315
23316         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
23317         
23318         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
23319         Fix some gcc 4.0 warnings.
23320
23321 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
23322
23323         * file-io.c: fix alt dir separator char on unix systems
23324         and cleanup (fixes bug #71214).
23325
23326 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
23327
23328         * marshal.c: Use CALLVIRT instead of CALL when dispatching
23329         a call to a remote domain, since the method may be an
23330         interface method in the client domain. This fixes bug #74192.
23331
23332 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23333
23334         * threadpool.c: recv/send are now performed before going back to managed
23335         code to save one transition.
23336
23337 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23338
23339         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
23340
23341         * metadata/threadpool.c: removed hack to workaround the bug above.
23342
23343         Fixes bug #74618.
23344
23345 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
23346
23347         * reflection.c reflection.h: Fix handling of parameter defaults in
23348         dynamic methods. Also fixes handling of parameter attributes.
23349         Fixes #74609.
23350
23351         * mono-debug.c (mono_debug_close_image): Fix warning.
23352
23353 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23354
23355         * socket-io.h: replaced old unused field with new 'blocking'.
23356         * threadpool.c: restore socket blocking state on windows(tm).
23357
23358 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
23359
23360         * icall.c: don't return the codebase in the AssemblyName[] returned by
23361         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
23362         * object-internals.h: Removed FIXME (fields were presents) and fixed
23363         versioncompat declaration.
23364
23365 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23366
23367         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
23368         not closed, so don't cleanup when it happens.
23369
23370 2005-04-13  Chris Toshok  <toshok@ximian.com>
23371
23372         * mono-debug-debugger.h: change prototype for
23373         mono_debugger_lookup_type.
23374
23375         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
23376         this function, although it should probably be named
23377         mono_debugger_init_type.
23378
23379 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23380
23381         * threadpool.c: fix non-AIO case.
23382
23383 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
23384
23385         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
23386         the built-in profiler to measure just JIT compilation times.
23387
23388 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23389
23390         * threadpool.c: the epollfd might be closed by another thread at
23391         any time, so ignore EBADF at treat it as a "we're closing" sign.
23392
23393 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23394
23395         * threadpool.c: release the semaphores with a count equals to the number
23396         of working threads in both IO and regular pools. Fixed typo that messed
23397         up the count of IO pool threads. Don't initialize the pipe handles if
23398         we're using epoll.
23399
23400 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23401
23402         * threadpool.c: some systems don't like a NULL when deleting the socket
23403         from epoll.
23404
23405 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23406
23407         * threadpool.c: fix semaphore allocation.
23408
23409 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23410
23411         * threadpool.c: added epoll() based implementation for asynchronous IO
23412         that is used instead of the default poll() when available.
23413         It can be disabled by setting MONO_DISABLE_AIO.
23414
23415 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23416
23417         * threadpool.c: windows needs 'closesocket' and instead of returning
23418         0 when the stream is closed while in select, it returns -1. Fixes bug
23419         #74573.
23420
23421 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23422
23423         * class.c (class_compute_field_layout): Fix the regression caused by
23424         the previous try.
23425
23426 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23427
23428         * threadpool.c: separate pool for socket async. IO.
23429         * threadpool.h: mono_max_worker_threads is not a global any more.
23430
23431 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23432
23433         * class.c (class_compute_field_layout): Fix #74549.
23434
23435 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23436
23437         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23438         use 2 connected sockets instead.
23439
23440 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23441
23442         * mono-config.c: Add new entry point for mkbundle
23443         mono_config_parse_memory. 
23444
23445 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23446
23447         * threadpool.c: removed another unused function.
23448
23449 2005-04-08  Ankit Jain  <radical@corewars.org>
23450
23451         * reflection.c (get_default_param_value_blobs): Add 'types'
23452         parameter to get the types encoded in the constant table.
23453         (mono_param_get_objects): Use the type from the constant table,
23454         not the type of the parameter, when creating default values.
23455         Handle null default values correctly.
23456
23457 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23458
23459         * file-io.c:
23460         * file-io.h:
23461         * threadpool.c:
23462         * threadpool.h:
23463         * icall.c:
23464         * socket-io.c: removed dead code for async IO.
23465
23466 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23467
23468         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23469
23470         * threadpool.c: intercept socket async. calls and pass them to a thread
23471         that is polling and dispatching the job items to the threadpool as
23472         socket become ready. Fixes bugs #71217, #71933.
23473
23474         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23475         between char and short/ushort arrays.
23476
23477         * socket-io.c: remove dead code.
23478
23479 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23480
23481         * locales.c,
23482           icall.c : removed InternalToUpper_Comp() and
23483           InternalToLower_Comp().
23484
23485 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23486
23487         * char-conversions.h : The tables were incorrectly generated. Should
23488           be generated against invariant culture.
23489
23490 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23491
23492         * object.c (mono_runtime_invoke_array): Fix return value when 
23493         passing pre-created valuetype objects to ctors.
23494
23495         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23496         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23497         Fixes #74338.
23498
23499 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23500
23501         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23502         only used with --security and hides the wrong corlib version error.
23503
23504 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23505
23506         * class.c: Changed mono_class_name_from_token so that types
23507         outside of a namespace don't have an initial period.  Improved
23508         the g_warning message used in _mono_class_get when loading
23509         fails.
23510         * assembly.c: In mono_assembly_load_reference, when an assembly
23511         can't be found, "No such file or directory" is misleading and
23512         unhelpful because a few paths were checked for the presence of
23513         the assembly.  When that happens (ENOENT), display a nicer
23514         message indicating the directories that were searched.  In all
23515         cases, the warning is made easier to read for non-hackers.
23516
23517 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23518
23519         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23520         project/solution.
23521         * appdomain.h|domain.c: Removed inline from functions.
23522         * appdomain.c: Reduced warnings when compiling on windows.
23523         * icall.c: Fixed output_debug declaration to gunichar2*.
23524         * mono-config.c: Reduced warnings when compiling on windows.
23525         * rand.c: Added missing "windows.h". Added missing return value.
23526         * rawbuffer.c: Added missing winsock2.h for windows.
23527         * sysmath.h: Added mono-compiler.h header to allow/ease 
23528         compilation with non-GCC compilers.
23529         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23530         Removed cast warnings.
23531
23532         Adapted from the work of J Lothian (for VC6).
23533
23534 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23535
23536         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23537         from default_path.
23538
23539 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23540
23541         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23542         the 2.0 profile.
23543
23544 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23545
23546         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23547         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23548         stuff, and it would probably use $(prefix)/share rather than
23549         $(prefix)/lib.
23550
23551 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23552
23553         * console-io.c: added 2 includes that might be missing.
23554
23555 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23556
23557         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23558         profile.
23559
23560         * reflection.c (create_custom_attr): Allocate the params array using
23561         alloca so it gets GC tracking.
23562
23563 2005-03-23  Chris Toshok  <toshok@ximian.com>
23564
23565         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23566         out some spew.
23567
23568 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23569
23570         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23571         changes to pick up any changes in prefix, etc.
23572
23573 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23574
23575         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23576         
23577         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23578         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23579
23580 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23581
23582         * class-internals.h object-internals.h class.c reflection.c: Extend the
23583         mono_lookup_dynamic_token () function to return the class of the
23584         token as well. 
23585
23586         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23587         well. Fixes #73848.
23588
23589 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23590
23591         * security-manager.c: Skip inheritance checks for intra-corlib
23592         class inheritance and method overrides. This skips a lot of checks
23593         and (anyway) permissions cannot work until corlib is loaded.
23594
23595 2005-03-23  Martin Baulig  <martin@ximian.com>
23596
23597         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23598         MONO_TYPE_GENERICINST.  
23599
23600 2005-03-23  Martin Baulig  <martin@ximian.com>
23601
23602         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23603
23604 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23605
23606         * class.c: added locking comments to some functions.
23607         Cache the interface offsets arrays (saves about 20 KB
23608         of runtime memory in a typical app).
23609         Reduce the time overhead in mono_class_setup_supertypes ().
23610
23611 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23612
23613         * icall.c: speedup and fix leaks in GetMethodsByName and
23614         GetPropertiesByName.
23615
23616 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23617
23618         * reflection.c: some locking fixes.
23619
23620 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23621
23622         * metadata.c: added missing break in case statement.
23623
23624 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23625
23626         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23627         typedbyref return values. Fixes #73941.
23628
23629 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23630
23631         * security-manager.c|h: Added demandunmanaged method and 
23632         suppressunmanagedcodesecurity class to MonoSecurityManager.
23633         Renamed aptc class to allowpartiallytrustedcallers.
23634
23635 2005-03-17  Martin Baulig  <martin@ximian.com>
23636
23637         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23638
23639 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23640
23641         * file-io.c: disabled file async. IO using aio_*. It uses the
23642         threadpool now. Workaround for bug #73718.
23643
23644 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23645
23646         * assembly.h, mono-config.c: added code to deal with bundled configs
23647         for bundled assemblies.
23648
23649 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23650
23651         * *.c, private.h: cleanup, removing old private.h header file.
23652
23653 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23654
23655         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23656         and throw_on_unmappable_char attributes.
23657
23658 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23659
23660         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23661         _ProcessName_internal.
23662
23663 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23664
23665         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23666         #73631.
23667
23668         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23669         are no longer used.
23670
23671 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23672
23673         * object.c (compute_class_bitmap): Add support for generics. Fixes
23674         #73527.
23675
23676 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23677
23678         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23679
23680 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23681
23682         * filewatcher.c: commented out the code for windows watcher, as we don't
23683         use it (we use the managed implementation instead).
23684
23685 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23686
23687         * object-internals.h (MonoThread): Remove 'unused1' field.
23688
23689         * appdomain.c: Bump corlib version.
23690
23691         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23692
23693         * reflection.c (mono_reflection_create_runtime_class): Remove the
23694         AssemblyBuilder.Save optimization since it causes too many problems.
23695
23696 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23697
23698         * exception.c|h: Added mono_get_exception_reflection_type_load to
23699         create a ReflectionTypeLoadException object.
23700         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23701         to return NULL is a InheritanceDemand fails during reflection. Updated
23702         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23703         ReflectionTypeLoadException if an InheritanceDemand fails during 
23704         reflection. Added icall mapping for GetLinkDemandSecurity.
23705         * security-manager.c|h: Added ves_icall_System_Security_
23706         SecurityManager_GetLinkDemandSecurity internal call to return the
23707         class and methods permissions set for a LinkDemand. Removed unused
23708         fields in MonoSecurityManager.
23709
23710 2005-03-10  Martin Baulig  <martin@ximian.com>
23711
23712         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23713         it's a generic instance.
23714
23715 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23716
23717         * reflection.c (mono_get_object_from_blob): Applied patch from
23718         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23719
23720         * class.c (mono_class_is_assignable_from): Another try at fixing 
23721         #73469 without breaking anything.
23722
23723 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23724
23725         * class.c: (mono_class_is_assignable_from): Revert the last changes
23726         since they don't work with generics.
23727         
23728         * class.c (mono_class_is_assignable_from): Fix build bustage.
23729
23730         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23731         the managed IsAssignableFrom method. Fixes #73469.
23732
23733         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23734         function.
23735
23736 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23737
23738         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23739         memory when the remoting callback does not sets the out arguments.
23740         Fixes #73007.
23741
23742         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23743         by mistake.
23744
23745         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23746
23747         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23748
23749         * appdomain.c: Bump corlib version.
23750
23751 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23752
23753         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23754         function.
23755
23756         * threads.c (mono_thread_attach): Detect threads which are not started
23757         by the GC pthread wrappers.
23758
23759 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23760
23761         * icall.c: Added new icall for RNG.
23762         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23763         single handle on Linux to access /dev/urandom and fix #73183.
23764
23765 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23766
23767         * object.c: setting the new vtable in a transparent proxy object must
23768         not change the GC descriptor.
23769
23770 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23771
23772         * object.c: fixed compilation without GCJ support.
23773         * reflection.c: for runtime-created types ensure klass->has_references
23774         is correct (bug #73215).
23775
23776 2005-03-02  Martin Baulig  <martin@ximian.com>
23777
23778         * class.c (mono_class_is_assignable_from): Make this work if
23779         `oklass' is a generic instance; fixes #72831.
23780
23781 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23782
23783         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23784         with hasthis set.
23785         
23786         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23787
23788         * marshal.c: Reorganize native->managed marshalling code to also use
23789         the emit_marshal_... functions.
23790
23791 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23792
23793         * object.c: typed allocs have issues with bitmap sizes > 30,
23794         so check for max_set >= 30.
23795
23796 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23797
23798         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23799         managed code. Fixes #73012.
23800
23801         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23802
23803         * metadata.c reflection.c: Load/Emit elem_mult as well.
23804         
23805         * metadata.h (MonoMarshalSpec): Add comment.
23806
23807         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23808
23809         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23810         num_elem to -1 if not given.
23811
23812         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23813
23814         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23815         given values.
23816
23817 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23818
23819         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23820
23821 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23822
23823         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23824
23825         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23826
23827 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23828
23829         * object.c: generalized the reference bitmap creation
23830         and added hooks for the new GC.
23831         * class-internals.c: removed the gc_bitmap field from MonoClass.
23832
23833 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23834
23835         * domain.c: help the compiler to produce better code
23836         in mono_jit_info_table_find ().
23837
23838 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23839
23840         * object.c: make all allocations look typed.
23841
23842 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23843
23844         * socket-io.c: load Mono.Posix if it's not loaded already
23845         (fixes bug#73033).
23846
23847 2005-02-24  Martin Baulig  <martin@ximian.com>
23848
23849         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23850         * reflection.c (dup_type): Likewise.
23851
23852 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23853
23854         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23855         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23856
23857 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23858
23859         * domain.c, threads.c, object-internals.h: make the critical thread
23860         local vars use the fast access mode (even when we're compiled in
23861         a lib). Provide accessors to be used by the jit during codegen.
23862
23863 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23864
23865         * appdomain.c: Changed hook functios behavior to include
23866         support for the reflection only assemblies. Some icalls were changed
23867         to support the mentioned assemblies too. Signatures of static methods
23868         try_assembly_resolve and real_load now have an additional parameter:
23869         refonly.
23870
23871         * assembly.c: General changes to mono_assembly_ methods to support
23872         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23873         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23874         suffix, to support an additional gbool parameter to specify whether
23875         the assembli is reflection only or not. Created some new hook functions 
23876         to add support for reflection only assemblies. Signatures of static 
23877         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23878         have now an additional parameter: refonly.
23879
23880         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23881         indicating whether the assembly is reflection only or not.
23882
23883         * exception.c: Add mono_get_exception_invalid_operation.
23884
23885         * icall.c: Throw an InvalidOperationException when trying to invoke
23886         a property/method/event, or trying to set/get the value of a field.
23887         Also add an icall to retrieve the ref_only flag to the
23888         MonoReflectionAssembly.
23889
23890 2005-02-23  Chris Toshok  <toshok@ximian.com>
23891
23892         Part of fix for #72827.
23893         * mono-debug.c (mono_debug_add_method): add lexical block data to
23894         the info we write.  Kind of a hack at the moment - we copy the
23895         lexical block info from the MonoDebugMethodInfo to the
23896         MonoDebugMethodJitInfo here, before writing it.
23897         (mono_debug_read_method): read the lexical block info.
23898
23899         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23900
23901         * debug-mono-symfile.h: add lexical block support.
23902
23903         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23904         support.
23905
23906 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23907
23908         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23909
23910         * object.c (mono_runtime_free_method): Call mono_free_method () and
23911         put the TODOs there.
23912
23913         * loader.c (mono_free_method): Free up most memory allocated for 
23914         dynamic methods.
23915
23916 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23917
23918         * reflection.c: properly flag a Type argument to a
23919         named custom attr value (bug #72248).
23920
23921 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23922
23923         * reflection.c: reduce code duplication in named custom
23924         attribute encoding.
23925
23926 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23927
23928         * reflection.c: properly encode custom attrs of type object
23929         (bug #72649).
23930
23931 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23932
23933         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23934
23935 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23936
23937         * socket-io.c: load System.dll if it's not loaded already
23938         (bug #72850 and #70477).
23939
23940 2005-02-21  Martin Baulig  <martin@ximian.com>
23941
23942         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23943         generic instances.
23944
23945 2005-02-21  Martin Baulig  <martin@ximian.com>
23946
23947         * reflection.c (mono_image_build_metadata): We also need to
23948         "fixup" the MethodImpl table after we computed the final method
23949         indices.  Call fixup_methodimpl() to do that.
23950         (fixup_methodimpl): New private method.
23951
23952 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23953
23954         * assembly.c: special case mscorlib.dll (bug#72536),
23955         patch from Carlos Alberto Cortez.
23956
23957 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23958
23959         * threads-types.h threads.c: Fix build bustage.
23960
23961         * threads.c: Use a union for long<->double conversions.
23962
23963         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23964         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23965
23966         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23967         containing the checkpoint call with NOT_TAKEN.
23968         
23969         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23970         checkpoint before pushing the arguments, so they won't have to be
23971         spilled to stack.
23972
23973 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23974
23975         * domain.c, assembly.c, domain-internals.h: make some data
23976         const and relocation-free.
23977
23978 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23979
23980         * object.c, appdomain.c, class-internals.h: introduce the
23981         MonoClassRuntimeInfo structure to hold the info needed to
23982         use a class at runtime. Made mono_class_vtable() lock-free
23983         for all the appdomains.
23984
23985 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23986
23987         * metadata-internals.h, image.c: introduce a per-image mempool to
23988         be used for memory that has the same lifetime as the image.
23989
23990 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23991
23992         * domain.c: In mono_init_internal(), instead of selecting the first
23993         runtime version supported by an executable, get a list of all
23994         supported versions and select the one for which an mscorlib exists
23995         (since even if the runtime supports a given version, it doesn't mean
23996         that the framework for that version is installed).
23997         Modified get_runtimes_from_exe to support this behavior.
23998         In supported_runtimes, added information about additional system
23999         assembly versions.
24000         
24001         * assembly.c: Added support for more than one system assembly version
24002         per runtime version. Updated the assembly list.
24003         In mono_assembly_remap_version, removed the initial version check,
24004         since we don't know to which version we need to compare until we
24005         get the version set on which the assembly is based.
24006         Moved the code for loading corlib into the new method
24007         mono_assembly_load_corlib(), so it can be used by the initialization
24008         code.
24009         
24010         * domain-internals.h: Updated data structures and added declaration
24011         for mono_assembly_load_corlib.
24012
24013 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24014
24015         * reflection.c (resolve_object): Fix the creation of the signature in 
24016         the SignatureHelper case.
24017
24018         * assembly.c (mono_assembly_remap_version): Fix binary search.
24019         
24020 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
24021  
24022         * class.c: Added inheritance check when a method is overloaded (from a
24023         virtual method or when implementing an interface) and when a class is
24024         inherited. Added functions to set a failure for a class and to 
24025         retreive the exception from a failure.
24026         * class-internals.h: Added fields to MonoClass to keep the exception
24027         information status for inheritance (or other exceptions) to be thrown
24028         later (i.e. not at load time).
24029         * object.c: Throw the inheritance SecurityException when a type is to 
24030         be created with either class or method inheritance violations.
24031         * reflection.c|h: Fix when getting declsec from a class. Removed 
24032         unrequired code for class. Improved sanity in parameter naming.
24033         * security-manager.c|h: Added functions to check for class and method
24034         inheritance.
24035
24036 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24037
24038         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
24039         and has_finalize in dynamic types as well.
24040
24041 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
24042
24043         * culture-info-table.h : fixed currency format for en-GB (and so on).
24044
24045 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
24046
24047         * gc.c: ensure the GC handles never have 0 as a value.
24048
24049 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24050
24051         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
24052         a pointer to a struct to unmanaged code. Fixes #72625.
24053
24054 2005-02-16  Martin Baulig  <martin@ximian.com>
24055
24056         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
24057
24058 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24059
24060         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
24061
24062 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24063
24064         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
24065
24066         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
24067         UnmanagedFunctionPointerAttribute, use it for determining calling convention
24068         etc. Fixes #71471.
24069
24070         * reflection.c (mono_custom_attrs_get_attr): New helper function.
24071
24072         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
24073
24074 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
24075
24076         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
24077         changes to make the current context a field in MonoThread.
24078
24079 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24080
24081         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
24082         the last change.
24083         
24084         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
24085         extracted from mono_marshal_get_native_wrapper.
24086
24087         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
24088         to create wrappers around native functions.
24089
24090         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
24091         delegates for arbitrary function pointers. Fixes #71472.
24092
24093 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24094
24095         * threads.c: cleaned up the code a little.
24096
24097 2005-02-15  Martin Baulig  <martin@ximian.com>
24098
24099         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
24100         the data table.
24101
24102         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
24103         allocate larger chunks if needed.
24104
24105 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24106
24107         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
24108         in by mistake.
24109
24110 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
24111
24112         * domain.c: keep the domains in an array and ensure the domain ids
24113         are kept small, so they can be used as indexes to domain-specific data
24114         with a small memory overhead.
24115
24116 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24117
24118         * icall.c: Handle byref types in Type icalls. Fixes #72544.
24119
24120 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
24121
24122         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
24123
24124 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
24125
24126         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
24127
24128         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
24129         values.
24130
24131         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
24132         
24133 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
24134
24135         * domain-internals.h: add the hashtable here.
24136
24137         * class-internals.h: Remove `info' from MonoMethod
24138
24139         * domain.c: Add a new hashtable, jit_trampoline_hash
24140
24141 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24142
24143         * object.c: don't set the value of static fields
24144         (fixes bug#72494).
24145
24146 2005-02-11  Martin Baulig  <martin@ximian.com>
24147
24148         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
24149         (mono_debug_add_method): Silently ignore the method if it's too big.
24150         (mono_debug_add_type): Likewise.
24151
24152 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
24153
24154         * threads.c, appdomain.c: remove #ifdefs from the code.
24155
24156 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
24157
24158         * metadata-internals.h: Added flags to MonoAssembly to cache the most
24159         common security informations. This allows us to stay in unmanaged code
24160         when doing LinkDemand and it's special cases (except for the first 
24161         time for initialization). The flags a very much used with --security.
24162         * reflection.c|h: Added code to get declarative security attributes 
24163         for LinkDemand and InheritanceDemand. This required to refactor the
24164         existing code for Demand.
24165         * security-manager.c|h: Added new method fields for the special cases
24166         of LinkDemand.
24167
24168 2005-02-10  Martin Baulig  <martin@ximian.com>
24169
24170         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
24171         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
24172
24173 2005-02-10  Martin Baulig  <martin@ximian.com>
24174
24175         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
24176         debugging code; this is almost a complete rewrite.
24177
24178         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
24179
24180 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24181
24182         * domain.c, object.h: expose mono_string_equal () and 
24183         mono_string_hash ().
24184         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
24185         it's implemented in managed code.
24186
24187 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24188
24189         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
24190         lo leak objects between appdomains.
24191
24192 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24193
24194         * assembly.c: old compilers compilation fix from 
24195         robertj@gmx.net (Robert Jordan).
24196
24197 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
24198
24199         * class-internals.h: Little reminder for the future.
24200
24201         * debug-helpers.c: Fix up wrapper_type_names
24202
24203 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24204
24205         * image.c, metadata-internals.h: when loading an image from a file,
24206         mmap all of it and use the same codepaths as when using a
24207         in-memory image: the code is simpler and we use less memory
24208         (both writable and readonly).
24209
24210 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24211
24212         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
24213         API to alloc runtime data structures that need to be tracked by the
24214         GC and contain pointers.
24215         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
24216         make the code more readable and eventually use a different GC.
24217
24218 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
24219
24220         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
24221         for out arguments.
24222         
24223 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
24224
24225         * object.c: In release_type_locks(), don't release the cctor lock
24226         if it has already been released. This fixes a crash in the
24227         thread5 test.
24228
24229 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24230
24231         * gc.c, marshal.c, icall.c: register a delegate for finalization
24232         only when the native function pointer has been allocated for it.
24233
24234 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24235
24236         * object.c: cleaned up some code, allocate objects that are
24237         pointer free with the atomic malloc variant. Allocate memory
24238         for static data from the mempool if it's pointer-free.
24239         Allocate the bounds array at the end of the array data, when needed.
24240         * object-internals.h, object.h: move a private function in a private
24241         header.
24242         * class.c: handle missing case in tracking references in fields.
24243
24244 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24245
24246         * class.c, class-internals.h: keep track if a type has
24247         reference fields in either the instance or static fields.
24248
24249 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
24250
24251         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
24252         and renamed to MonoRuntimeInfo. Added fields to store the expected
24253         framework assembly version. Changed mono_get_framework_version and
24254         mono_get_runtime_version for a single mono_get_runtime_info method.
24255         
24256         * assembly.c: Added method to remap system assembly versions to the
24257         current executing runtime version. Removed old mapping code.
24258         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
24259         
24260         * icall.c, reflection.c: Track api changes.
24261
24262 2005-02-06  Miguel de Icaza  <miguel@novell.com>
24263
24264         * loader.c (method_from_memberref): Improve error reporting,
24265         produce the class name instead of the typeref/typedef index. 
24266
24267 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
24268
24269         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
24270
24271 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24272
24273         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
24274         stdcall and charset name mangling.  Reorganize the code and add
24275         some tracing stuff.
24276
24277 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24278
24279         * monodiet.c: More iters!
24280
24281         * marshal.c: Iter usage.
24282
24283         * icall.c: Iter usage.
24284
24285         * object.c: Use iters.
24286
24287         * debug-helpers.c: More iters
24288
24289 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24290
24291         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
24292         under win32.
24293
24294 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24295
24296         * mono-debug-debugger.c: use iters
24297
24298         * class.c, class-internals.h: mono_class_setup_events is static
24299         now
24300
24301         * All callers: use iters
24302
24303 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24304
24305         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
24306         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
24307
24308 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24309
24310         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
24311
24312         * marshal.h: Add prototypes for ldfld/stfld_remote.
24313
24314         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
24315         this is called during startup.
24316         
24317 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
24318
24319         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
24320         MonoThreadsSync struct private in monitor.c. Changed the way
24321         MonoThreadsSync is allocated so it's faster and there is no
24322         need to keep track of it with a finalizer and it uses less memory.
24323         This also finally allows us to allocate mono objects as ptrfree when
24324         there are no reference fields.
24325
24326 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
24327
24328         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
24329         disappearing link to the GC interface and use them to simplify
24330         the gchandles code.
24331
24332 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24333
24334         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
24335         stfld_remote which call mono_load/store_field_new. This allows methods
24336         calling ldfld/stfld wrappers to be AOTed.
24337
24338         * console-io.c: Include sys/filio.h under solaris.
24339         
24340         * console-io.c: Include curses.h if needed correctly.
24341
24342 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24343         
24344         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
24345         method->klass as well.
24346
24347         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
24348
24349         * class.c (mono_class_init): Switch on lazy initialization of 
24350         methods.
24351
24352         * class.c (mono_class_get_finalizer): Handle the case when the 
24353         finalizer is inherited.
24354
24355 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24356
24357         * console-io.c: <curses.h> is needed by term.h on solaris.
24358
24359 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
24360
24361         * icall.c, class-internals.h, monodiet.c, class.c: Remove
24362         mono_class_setup_properties where possible. Remove this ftn from
24363         the header file, and make it static.
24364
24365 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24366
24367         * loader.c: Add missing setup_... call.
24368
24369         * class.c: Add missing setup_... calls.
24370
24371         * class.c (mono_class_init): Switch on lazy initialization of 
24372         the generic vtable.
24373         
24374         * class.c (mono_class_init): Fix generics broken by the recent changes.
24375
24376         * monodiet.c (handle_type): Add missing setup_... calls.
24377
24378         * class.c: Back out garbage in previous patch.
24379         
24380         * class.c: Add missing setup_... calls.
24381
24382         * class.c (mono_class_get_method_from_name_flags): Avoid calling
24383         mono_class_setup_methods () if possible.
24384
24385         * class-internals.h (MonoClass): Add 'has_cctor' flag.
24386
24387         * class-internals.h (MonoCachedClassInfo): New structure.
24388
24389         * class.c: Initialize properties and events fields of MonoClass lazily.
24390
24391         * class.c: Add infrastructure for lazily initializing the methods and
24392         vtable fields of MonoClass. Not yet used.
24393
24394         * class.c (mono_class_get_finalizer): New helper function.
24395
24396         * class.c: Add infrastructure for loading some class related data from
24397         an AOT file.
24398
24399         * object.c: Add infrastructure for initializing the vtable from data
24400         in the AOT file.
24401
24402         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24403
24404         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24405         appropriate initialization function before accessing parts of the
24406         MonoClass structure.
24407
24408         * marshal.c: Fix warnings.
24409         
24410         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24411
24412         * mono-debug-debugger.c (get_exception_message): Use 
24413         mono_class_get_method_from_name_flags ().
24414
24415 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24416
24417         * reflection.c, appdomain.c: Replace a few manual searches that
24418         Zoltan missed. (Paolo approved this part of my initial patch).
24419
24420 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24421
24422         * profiler.c: disable recording statistical events at report time.
24423
24424 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24425
24426         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24427         to byteswap arrays of enum values, too (bug #72080).
24428
24429 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24430
24431         * appdomain.c (set_domain_search_path): Allow this to be called if
24432         domain->setup is not yet set.
24433
24434         * loader.c (mono_method_get_index): New helper function.
24435
24436         * loader.c reflection.c: Use mono_method_get_index ().
24437
24438         * class.c (mono_class_get_method_from_name_flags): New helper method.
24439
24440         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24441         this.
24442
24443         * class.c (mono_class_get_cctor): New helper method.
24444
24445         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24446         mono_class_get_method () to look up methods.
24447
24448 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24449
24450         * console-io.c: Fix the build, this should work on Windows.
24451
24452 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24453
24454         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24455         be set to null to keep things valid
24456
24457 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24458
24459         * icall.c: added Console 2.0 icalls.
24460         * Makefile.am: added console-io.[ch]
24461         * console-io.[ch]: internal calls for Console 2.0 API.
24462
24463 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24464
24465         * class.c: make sure we consider all the interfaces
24466         when calculating max_interface_id (bug found by
24467         Jeroen Frijters running ikvm).
24468
24469 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24470
24471         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24472         valuetype fields to null.
24473
24474         * object.c (set_value): Ditto. Fixes #71669.    
24475
24476 2005-01-31  Martin Baulig  <martin@ximian.com>
24477
24478         * metadata.c (mono_metadata_has_generic_params): New public
24479         function; checks whether something is a generic method.
24480
24481 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24482
24483         * appdomain.c: fix infinite recursion when adding assemblies.
24484
24485 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24486
24487         * object.c: Fix small typo to return all items for Environment.
24488         GetCommandLineArgs.
24489
24490 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24491
24492         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24493         reflection.c: more domain and assembly-unload related fixes
24494         and memory leaks plugs.
24495
24496 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24497
24498         * 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.
24499
24500 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24501
24502         * loader.c (mono_method_signature): Make this method lazy
24503         (mono_get_method_from_token): Don't computate the signature here.
24504
24505         Doing this saves quite a bit of memory. I got 90 kb on starting up
24506         monodoc. It should also save some disk reads on startup.
24507
24508         * *: MonoMethod->signature might be NULL now. You *MUST* use
24509         mono_method_signature.
24510
24511 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24512
24513         * object.c (mono_runtime_get_main_args): Return an array from the
24514         current domain here. Fixes #71938.
24515
24516 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24517
24518         * monitor.c: formatting changes to comply with the
24519         mono coding style and remove #ifdefs from the code.
24520
24521 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24522
24523         * metadata.c, private.h: remove some unneeded data
24524         and use a more compact representation for table schemas.
24525
24526 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24527
24528         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24529         to get a better distribution in hash tables.
24530         * *.c: use mono_aligned_addr_hash() where appropriate.
24531         * assembly.c: make var static.
24532
24533 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24534
24535         * domain-internals.h: Put MonoJitInfo on a diet.
24536
24537         * domain.c: Fix a warning.
24538
24539 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24540
24541         * gc.c: rework the gc handles code to reuse handles
24542         when freed.
24543
24544 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24545
24546         * domain.c: fixed long standing bug in mono_string_equal() which
24547         was brought to light with the ldstr changes.
24548
24549 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24550
24551         * reflection.c: Remove warning by adding missing include for marshal.h
24552
24553 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24554
24555         * domain.c, object.c: change the ldstr_table to hold
24556         MonoString* as keys: makes the runtime isinterned lookup
24557         faster and simplifies memory management.
24558
24559 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24560  
24561         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24562         possible to add imperative security checks before calling the icall.
24563         * reflection.c: Return security attributes on the original MonoMethod
24564         (and not the wrapped one). This fix permissions on icalls.
24565
24566 2005-01-25  Dick Porter  <dick@ximian.com>
24567
24568         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24569         the check for mktime() support actually test the mktime() return
24570         value.  "Fixes" bug 71682, though the output is still different to
24571         MS.
24572
24573 2005-01-25  Martin Baulig  <martin@ximian.com>
24574
24575         * class.c (mono_class_is_assignable_from): Make this work for
24576         generic instances.
24577
24578 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24579
24580         * marshal.c (mono_string_utf8_to_builder)
24581         (mono_string_builder_to_utf16): We might not have ownership of the
24582         string. In thise case, we need to create a new buffer.
24583
24584         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24585         be null, in which case, use the default capacity.
24586
24587 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24588
24589         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24590         GC events to the profiler.
24591
24592 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24593
24594         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24595         if you don't want the GC to run.
24596
24597 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24598
24599         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24600         start providing a GC API and keeping different implementations in
24601         their own file.
24602         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24603
24604 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24605
24606         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24607         mmap rather than allocating a huge buffer.
24608         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24609         above.
24610
24611 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24612
24613         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24614         and CheckExecutionRights.
24615         * reflection.c|h: Keep the index of the declarative security to be 
24616         used, instead of the pointer, when AOT compiler is used. Also add 
24617         class initialization when requesting demands.
24618         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24619         CheckExecutionRights. Both properties are now FALSE by default, and
24620         unmodifiable, unless the --security option is used.
24621
24622 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24623
24624         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24625         reflection.c: properly refcount images and assemblies, many leaks fixed.
24626
24627 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24628
24629         * threadpool.c: increase the timeout for threads in the thread pool to
24630         10s.  Fixes bug #67159.
24631
24632 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24633
24634         * class-internals.h: Sun's compiler insists on explicit
24635         signed on bit fields to handle then correctly.
24636
24637 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24638
24639         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24640         Make the size of the array fit only the number of invalid path
24641         chars that we have.
24642
24643         * class.c (_mono_class_get): Improve the error reporting when a
24644         class referenced is not found, to assist debugging. 
24645
24646 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24647
24648         * threads.c: fix off-by-one error.
24649         * domain.c: free data allocated in the domain.
24650
24651 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24652
24653         * reflection.c (mono_method_body_get_object): Fill out exception info
24654         as well.
24655
24656         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24657         structure.
24658         
24659 2005-01-19  Martin Baulig  <martin@ximian.com>
24660
24661         * loader.c (mono_get_method_constrained): Make this work again.
24662
24663 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24664
24665         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24666         guint16 to match the managed side.
24667
24668         * reflection.c (mono_reflection_body_get_object): Fill out local
24669         variables array.
24670
24671         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24672         as well.
24673
24674         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24675         'local_var_sig_token'.
24676
24677 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24678
24679         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24680         System.Drawing.
24681
24682         * reflection.c (mono_method_body_get_object): Handle abstract and
24683         runtime methods.
24684
24685 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24686
24687         * marshal.c, loader.c, class-internals.h, reflection.c:
24688         store the emthod data for a wrapper in an array instead of a list.
24689
24690 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24691
24692         * marshal.c: change the code to allocate memory more
24693         conservatively for method wrappers.
24694
24695 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24696
24697         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24698         fields from MonoClass to the marshal info structure where they belong.
24699
24700 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24701
24702         * class.c, object.c, class-internals.h, marshal.c: rearrange
24703         some fields and tweak some types to lower memory usage.
24704
24705 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24706
24707         * threads.c (signal_thread_state_change): Handle the case when the
24708         target thread is the current thread.
24709
24710         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24711
24712         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24713         emit_ptr_to_object_conv. 
24714
24715         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24716         marshalling. Fixes #71352.
24717
24718 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24719
24720         * metadata.h, blob.h: move table enum to blob.h so it can be included
24721         in any header.
24722         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24723         cut the size of MonoImage/MonoDynamicImage.
24724
24725 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24726
24727         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24728
24729 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24730
24731         * reflection.c, reflection.h, icall.c: add a function to check
24732         if an attribute type is defined for a metadata object.
24733
24734 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24735
24736         * object-internals.h: Added some needed fields from StringBuilder class.
24737         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24738
24739 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24740
24741         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24742         threads before shutting down the runtime.
24743
24744         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24745
24746 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24747
24748         * object-internal.h, threads.c: implement stacksize and 
24749         parameterized thread start functionality (requires
24750         matching corlib). Marked broken code for later removal.
24751
24752 2005-01-12  Martin Baulig  <martin@ximian.com>
24753
24754         * class-internals.h (MonoGenericClass): Moved the `initialized'
24755         flag to MonoDynamicGenericClass, removed `init_pending'.
24756         (MonoGenericInst): Added `is_reference' flag.
24757
24758 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24759
24760         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24761         inside the MSDOS header. Fixes #71201.
24762
24763         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24764         gc thread.
24765         (mono_domain_finalize): Ditto.
24766
24767 2005-01-12  Martin Baulig  <martin@ximian.com>
24768
24769         * class.c (mono_get_shared_generic_class): Use the cache for
24770         non-dynamic generic classes.
24771
24772         * class-internals.h (mono_class_create_generic_2): Removed
24773         function prototype, this function is now static inside class.c.
24774
24775         * class.c (mono_class_create_generic_2): Made this static, only
24776         call it from mono_class_init() and mono_class_setup_parent().
24777         (collect_implemented_interfaces_aux): Call mono_class_init() on
24778         the interfaces we collect.
24779         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24780
24781 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24782
24783         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24784         it a real thread handle.
24785
24786         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24787         MonoJitExceptionInfo, since each catch clause needs its own variable.
24788         
24789 2005-01-11  Dick Porter  <dick@ximian.com>
24790
24791         * image.c (mono_pe_file_open): New variant on mono_image_open()
24792         that does not set up the CLI metadata; used for FileVersionInfo so
24793         it can get the data for windows binaries too.
24794         
24795         * process.c (process_read_string_block): Don't read off the end of
24796         the StringTable block.
24797
24798         These both fix bug 70766.
24799
24800 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24801
24802         * gc.c: set some fields to NULL at GC cleanup time.
24803         * threads.c: if we quit the main thread, call exit ().
24804
24805 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24806
24807         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24808
24809 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24810
24811         * threads.h, threads.c, object.c: added accessor and settor for
24812         main_thread. Handle it specially when exiting from it: wait
24813         for other foreground threads to exit.
24814
24815 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24816
24817         * process.c, verify.c: remove some bloat.
24818
24819 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24820
24821         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24822         the calling convention to cdecl under win32.
24823
24824 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24825
24826         * object.c (mono_object_get_size): New function to get the size of
24827         an object instance.
24828
24829         * profiler.c (simple_allocation): Use above.
24830
24831 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24832
24833         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24834         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24835         get an appdomain by it's id and we can't assume the root's id is 0).
24836         * domain-internals.h: Change the function prototype to match.
24837         * icall.c: Change the icall table for AppDomain.
24838
24839 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24840
24841         * locales.c (string_invariant_compare_char): Only compute
24842         GUnicodeTypes in the case where we need them.  Test for ordinality
24843         first and return if so.
24844
24845         From the commit:
24846
24847                 /*
24848                  * FIXME: here we must use the information from c1type and c2type
24849                  * to find out the proper collation, even on the InvariantCulture, the
24850                  * sorting is not done by computing the unicode values, but their
24851                  * actual sort order.
24852                  */
24853
24854 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24855
24856         * loader.c: for P/Invoke methods, allow the "Internal" shared
24857         library name to refer to the calling process symbol namespace.
24858
24859 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24860
24861         * Makefile.am: Add the security manager to the build.
24862         * security-manager.c|h: New. Initialization of the security manager.
24863
24864 2005-01-07  Dick Porter  <dick@ximian.com>
24865
24866         * threads.c: 
24867         * monitor.c: Update thread state during Monitor and WaitHandle
24868         waits.  Fixes bug 71031.
24869
24870 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24871
24872         * reflection.c (property_encode_signature): Correctly handle when the
24873         property has no methods.
24874
24875 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24876
24877         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24878         
24879         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24880         fields from mb, not rmb. Fixes #71017.
24881
24882         * marshal.c (emit_ptr_to_str_conv): Add support for 
24883         ByValTStr -> string conversion. Fixes #71015.
24884
24885         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24886
24887         * mempool.c (mono_mempool_contains_addr): New helper function.
24888
24889 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24890
24891         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24892         HasSematics encoded fields.
24893         
24894         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24895         invalid string marshalling.
24896
24897         * metadata.c: Fix warnings.
24898         
24899 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24900
24901         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24902         profiler support.
24903
24904 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24905
24906         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24907         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24908         tests.
24909
24910 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24911
24912         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24913         so methods containing these can be AOTed.
24914
24915 2005-01-03  Martin Baulig  <martin@ximian.com>
24916
24917         * loader.c (find_method): Removed the hack for generic instances.
24918         (method_from_memberref): If our parent is a generic instance, pass
24919         its generic type definition to find_method() and then inflate the
24920         method.
24921         (mono_get_method_constrained): Pass the generic type definition to
24922         find_method() and inflate the method later.
24923
24924         * class-internals.h (MonoStats): Added `generic_class_count'.
24925
24926         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24927         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24928
24929         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24930         generic type definitions.
24931
24932 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24933
24934         * loader.c icall.c: Fix warnings.
24935
24936 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24937
24938         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24939         blittable types. Fixes #70864.
24940
24941 2004-12-29  Martin Baulig  <martin@ximian.com>
24942
24943         * icall.c
24944         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24945
24946         * reflection.c (mono_method_get_object): Create a
24947         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24948         call mono_get_inflated_method().
24949
24950         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24951
24952 2004-12-27  Martin Baulig  <martin@ximian.com>
24953
24954         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24955         (MonoMethodInflated): Added `inflated' field.
24956
24957         * class.c (mono_class_inflate_generic_method): Don't really
24958         inflate the method here; just set the `is_inflated' flag in the
24959         MonoMethod.
24960         (mono_class_get_inflated_method): Actually inflate the method here
24961         if it's not already inflated; we use the MonoMethodInflated's new
24962         `inflated' field as a cache.
24963
24964 2004-12-26  Martin Baulig  <martin@ximian.com>
24965
24966         * class.c
24967         (inflate_generic_class): Moved some code out of inflate_generic_type().
24968         (mono_class_inflate_generic_method): If we're already inflated,
24969         inflate the context and use the declaring method; ie. make sure
24970         the declaring method of an inflated method is always the generic
24971         method definition.
24972         (mono_class_create_from_typedef): Create
24973         `class->generic_container->context->gclass'.
24974
24975 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24976
24977         * metadata-internals.h, marshal.c, reflection.c: More
24978         MonoGHashTable->GHashTable.
24979
24980         * domain-internals.h, class.c: Change MonoGHashTable's into
24981         GHashTables for some cases where no gc stuff is used
24982
24983         All users: update apis
24984
24985 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24986
24987         * metadata.c (builtin_types): Make this `const'. Makes this get
24988         put into the shareable section.
24989         (mono_metadata_init): Casts to make gcc happy.
24990
24991 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24992
24993         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24994
24995 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24996
24997         * icall.c: Added an internal call to retrieve the position and length
24998         of assembly-level declarative security attributes (RequestMinimum, 
24999         RequestOptional and RequestRefuse). This is used by the Assembly class
25000         to re-create the corresponding permission sets.
25001
25002 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
25003
25004         * marshal.c: fix the stelemref wrapper to be type correct
25005         (and faster).
25006
25007 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
25008
25009         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
25010         to do key & 0x7fffffff. Hashtable already does this. It just
25011         results in longer code.
25012
25013 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
25014
25015         * appdomain.c: Bump corlib version.
25016         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
25017         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
25018         * reflection.c|h: Add functions to get declarative security infos
25019         (blob position and length) for assemblies, classes and methods.
25020
25021 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
25022
25023         * reflection.c: sort the constant table (bug #70693).
25024
25025 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
25026
25027         * object-internals.h, threads.c, domain.c: add accessors for
25028         the MonoThread and MonoDomain tls keys.
25029
25030 2004-12-18  Martin Baulig  <martin@ximian.com>
25031
25032         * class.c (inflate_generic_type): If we're inflating a generic
25033         instance, set `ngclass->context->container = context->container';
25034         ie. the container we inflated into.
25035
25036         * metadata.c (mono_metadata_parse_generic_param): Reflect above
25037         inflate_generic_type() changes.
25038
25039 2004-12-17  Martin Baulig  <martin@ximian.com>
25040
25041         * class-internals.h
25042         (MonoGenericClass): Replaced `MonoType *generic_type' with
25043         `MonoClass *generic_class'.  Removed `dynamic_info'; if
25044         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
25045         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
25046
25047 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
25048
25049         * exception.c (mono_exception_from_token): New helper function.
25050
25051 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
25052
25053         * assembly.c (mono_assembly_load_with_partial_name): Call 
25054         mono_assembly_loaded before invoking the preload hooks. Fixes
25055         #70564.
25056
25057         * object-internals.h (MonoThread): Change culture_info and 
25058         ui_culture_info into an array.
25059
25060         * threads.c: Cache culture info objects from more than one appdomain.
25061
25062         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
25063         current UI culture.
25064
25065 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
25066
25067         * threads.h threads.c appdomain.c: Clear the culture_info field of
25068         all threads during unloading if they point to an object in the dying
25069         appdomain.
25070
25071 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
25072
25073         * culture-info.h (TextInfoEntry): New struct
25074         * object-internals.h: sync with managed
25075         * locales.c: fill the `text_info_data' field
25076         * culture-info-tables.h: update
25077
25078 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
25079
25080         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
25081         collector.
25082
25083 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
25084
25085         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
25086         (ves_icall_ModuleBuilder_getMethodToken): Ditto
25087
25088 2004-12-12  Martin Baulig  <martin@ximian.com>
25089
25090         * mono-debug-debugger.c (write_type): If we're an enum and the
25091         builtin types have already been initialized, call mono_class_init().
25092
25093 2004-12-11  Martin Baulig  <martin@ximian.com>
25094
25095         * metadata.c (mono_metadata_load_generic_params): Added
25096         `MonoGenericContainer *parent_container' argument; automatically
25097         compute `container->is_method'; pass the correct owner to
25098         get_constraints().      
25099
25100         * reflection.c (compare_genericparam): Sort the GenericParam table
25101         according to increasing owners. 
25102
25103 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
25104
25105         * profiler.c: allow disabling the default profiler.
25106
25107 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
25108
25109         * decimal.c, icall.c: allow disabling System.Decimal support.
25110
25111 2004-12-09  Marek Safar <marek.safar@seznam.cz>
25112
25113         * reflection.c: Add support for null attribute arguments.
25114
25115 2004-12-09  Martin Baulig  <martin@ximian.com>
25116
25117         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
25118         names to get rid of compiler warnings.
25119
25120 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25121
25122         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
25123         mono_marshal_load_type_info (). Fixes #69625.
25124         (mono_marshal_get_ptr_to_struct): Likewise.
25125
25126 2004-12-08  Martin Baulig  <martin@ximian.com>
25127
25128         * mono-debug.h: Bumped version number to 47.
25129
25130         * mono-debug-debugger.c
25131         (mono_debugger_event_handler, mono_debugger_event): Take two
25132         guint64 arguments insteed of a gpointer and a guint32.  
25133
25134 2004-12-08  Martin Baulig  <martin@ximian.com>
25135
25136         * debug-mono-symfile.h
25137         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
25138         `address' to `native_offset'.
25139
25140 2004-12-08  Martin Baulig  <martin@ximian.com>
25141
25142         * class.c (mono_class_create_from_typespec): Only inflate if we
25143         either have `context->gclass' or `context->gmethod'.
25144
25145 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25146
25147         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
25148
25149         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
25150
25151         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
25152
25153         * reflection.c (mono_assembly_get_object): Remove the workaround put
25154         in for the release.
25155         
25156         * appdomain.c: Use the corlib_internal field from MonoAssembly.
25157
25158         * appdomain.c: Bump corlib version.
25159
25160         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
25161         be visible in other appdomains.
25162
25163 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
25164
25165         * threads.c: Interlocked inc and dec for longs were messed up,
25166         use a KISS based impl for this. Fixes 70234
25167
25168 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
25169
25170         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
25171
25172 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25173
25174         * icall.c: fix to follow policy not to allow struct
25175         arguments in icalls.
25176
25177 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25178
25179         * process.c: make the patch that handles spaces in file paths work
25180         on mono/windows too.
25181
25182 2004-12-06  Martin Baulig  <martin@ximian.com>
25183
25184         * class.c (mono_class_create_generic): Call
25185         mono_class_setup_supertypes() if we're dynamic.
25186         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
25187
25188 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
25189
25190         * object-internals.h: Add new fields to MonoThread.
25191
25192         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25193
25194         * icall.c threads-types.h threads.c: Add new icalls.
25195
25196         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
25197
25198         * object-internals.h (MonoReflectionAssembly): Sync object layout with
25199         managed side.
25200
25201         * appdomain.c: Bump corlib version.
25202
25203         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
25204         internal assemblies. Fixes #69181.
25205
25206 2004-12-05  Martin Baulig  <martin@ximian.com>
25207
25208         * class.c (mono_class_inflate_generic_signature): Make this a
25209         no-op if `context' is NULL or we don't have any type parameters;
25210         also copy `sentinelpos'.        
25211
25212 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
25213
25214         * image.c: Add unbox_wrapper_cache.
25215
25216         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
25217
25218         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
25219         function generator.
25220         
25221         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
25222         Fixes #70173.
25223
25224         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
25225         
25226 2004-12-04  Martin Baulig  <martin@ximian.com>
25227
25228         * loader.c (mono_method_get_signature_full): New public function;
25229         like mono_method_get_signature(), but with an additional
25230         `MonoGenericContext *' argument.
25231
25232         * class.c (mono_class_inflate_generic_signature): Formerly known
25233         as inflate_generic_signature(); make this public.
25234
25235 2004-12-04  Martin Baulig  <martin@ximian.com>
25236
25237         * metadata.c
25238         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
25239         instead of a `MonoGenericContainer *'.  
25240         (mono_metadata_parse_array_full): Likewise.
25241         (mono_metadata_parse_signature_full): Likewise.
25242         (mono_metadata_parse_method_signature_full): Likewise.
25243         (mono_metadata_parse_generic_inst): Likewise.
25244         (mono_metadata_parse_generic_param): Likewise.
25245         (mono_metadata_parse_mh_full): Likewise.
25246         (mono_type_create_from_typespec_full): Likewise.
25247
25248 2004-12-03  Martin Baulig  <martin@ximian.com>
25249
25250         * class-internals.h (MonoGenericContainer): Replaced the
25251         `MonoGenericContext * pointer with a `MonoGenericContext'
25252         structure and made it the first element.
25253
25254 2004-12-03  Martin Baulig  <martin@ximian.com>
25255
25256         * class.c
25257         (inflate_generic_type): Set the `context->container' when creating
25258         a new MonoGenericContext.
25259         (mono_class_inflate_generic_method): Likewise.
25260         (mono_class_create_from_typespec): Just use `context->container'
25261         to get the container.
25262
25263         * loader.c (method_from_methodspec): Set `context->parent' from
25264         `context->container' - and if that's a method container, use its
25265         parent.  Also set the `context->container' when creating a new
25266         MonoGenericContext.
25267         (mono_get_method_from_token): Use just `context->container' to get
25268         the container.
25269
25270         * metadata.c (do_mono_metadata_parse_generic_class): Also set
25271         `gclass->context->container'.
25272
25273         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
25274         the `context->container' when creating a new MonoGenericContext.
25275
25276 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
25277
25278         * reflection.c (compare_genericparam): Sort params with identical
25279         owner by their number. Fixes gen-111 on sparc.
25280
25281 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25282
25283         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
25284         around the domain changes.
25285
25286         * appdomain.c (mono_domain_unload): Handle the case when the thread
25287         calling Unload is itself being aborted during unloading. Fixes #70022.
25288
25289         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
25290
25291         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
25292         checkpoint_func as an icall so it gets a wrapper.
25293         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
25294         in the cross-appdomain wrappers too.
25295
25296         * threads.c (mono_thread_has_appdomain_ref): Make this public.
25297
25298         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
25299
25300         * reflection.c: Fix some memory leaks.
25301         
25302 2004-12-02  Martin Baulig  <martin@ximian.com>
25303
25304         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
25305
25306         * metadata.c (generic_class_cache): New static hashtable.
25307         (mono_metadata_lookup_generic_class): New public method.
25308
25309 2004-12-02  Martin Baulig  <martin@ximian.com>
25310
25311         * class.c (mono_class_create_from_typedef): Call
25312         mono_class_setup_parent() and mono_class_create_mono_type() before
25313         parsing the interfaces.
25314
25315 2004-12-02  Martin Baulig  <martin@ximian.com>
25316
25317         * metadata.c (generic_inst_cache): New static hashtable.
25318         (mono_metadata_lookup_generic_inst): New public function.
25319         (mono_metadata_inflate_generic_inst): New public function.
25320         (mono_metadata_parse_generic_inst): New public function.
25321         (do_mono_metadata_parse_generic_class): Use the new
25322         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
25323         since this'll also use the cache.
25324
25325         * reflection.c (mono_reflection_bind_generic_method_parameters):
25326         Use mono_metadata_lookup_generic_inst() to use the new cache.
25327
25328         * class.c (inflate_mono_type): Use
25329         mono_metadata_inflate_generic_inst() to inflate a generic
25330         instance; this'll also use the new cache.
25331
25332         * loader.c (method_from_methodspec): Use
25333         mono_metadata_parse_generic_inst() and
25334         mono_metadata_inflate_generic_inst() rather than parsing it
25335         manually, so we can use the new cache.
25336
25337 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25338
25339         * threads.c (wait_for_tids): Do not incorrectly free threads when 
25340         the wait times out.
25341
25342 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
25343
25344         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
25345         iter->args based on whether parameters are passed in registers (i.e.
25346         MONO_ARCH_REGPARMS is defined)
25347
25348 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
25349
25350         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
25351         the exception message. Fixes #70070.
25352         (method_from_methodspec): Fix warnings.
25353
25354 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25355
25356         * process.c: (complete_path) return the path quoted
25357
25358 2004-12-01  Martin Baulig  <martin@ximian.com>
25359
25360         * class-internals.h (MonoGenericInst): New structure.
25361         (MonoGenericClass): Replaced `type_argc', `type_argv' and
25362         `is_open' with `MonoGenericInst *inst'.
25363         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
25364         `is_open' with `MonoGenericInst *inst'.
25365
25366 2004-11-30  Martin Baulig  <martin@ximian.com>
25367
25368         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
25369
25370         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
25371         to `generic_class_cache'.
25372
25373         * metadata.c
25374         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
25375         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
25376         (mono_generic_inst_is_valuetype): Renamed to
25377         mono_generic_class_is_valuetype().
25378
25379         * class-internals.h
25380         (MonoGenericInst): Renamed to MonoGenericClass.
25381         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
25382         (MonoClass): Renamed `generic_inst' to `generic_class'.
25383         (MonoGenericContext): Renamed `ginst' to `gclass'.
25384
25385         * object-internals.h
25386         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25387
25388         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25389         mono_reflection_generic_class_initialize().
25390
25391         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25392         now known as "System.Reflection.MonoGenericClass".
25393         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25394
25395 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25396
25397         * class-internals.h: Added a flag field to MonoClass to cache the
25398         declarative security attributes actions associated with the class.
25399         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25400         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25401         applicable to the JITted method.
25402         * reflection.c|h: Added functions to extract (as flags) which security
25403         actions are available (declaratively) for a method, class or assembly.
25404         * metadata.c|h: Added functions to search the declarative security
25405         table in the metadata.
25406         
25407 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25408
25409         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25410         EXPORTEDTYPES are already in the class name cache, so there is no
25411         need to add extra code here to look at them. Just removes a bit of
25412         cruft.
25413
25414         (ves_icall_System_Environment_get_TickCount): No need for #if
25415         WINDOWS. We already have the code in io-layer.
25416
25417 2004-11-28  Martin Baulig  <martin@ximian.com>
25418
25419         * loader.c
25420         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25421         Fixes gen-112.cs.
25422
25423 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25424
25425         * assembly.c (do_mono_assembly_open): Instead of having a
25426         conditional WITH_BUNDLE, incorporate support for bundles here, by
25427         having a global `bundles' variable holding a pointer to the actual
25428         bundles. 
25429
25430         (mono_register_bundled_assemblies): New API call used by the
25431         bundle code. 
25432
25433         See mkbundle.1 for details.
25434         
25435 2004-11-27  Martin Baulig  <martin@ximian.com>
25436
25437         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25438         the vtable for generic methods.
25439
25440 2004-11-26  Martin Baulig  <martin@ximian.com>
25441
25442         * metadata.c
25443         (mono_metadata_generic_method_hash): New public function.
25444         (mono_metadata_generic_method_equal): Likewise.
25445
25446         * class-internals.h
25447         (MonoGenericContainer): Added `GHashTable *method_hash'.
25448
25449         * reflection.c (ReflectionMethodBuilder): Added
25450         `MonoGenericContainer *generic_container'.
25451         (reflection_methodbuilder_to_mono_method): Don't create a new
25452         MonoGenericContainer each time we're called.
25453         (mono_reflection_bind_generic_method_parameters): Use
25454         `container->method_hash' to cache the results so we don't create a
25455         different method if we're called several times with the same
25456         arguments.
25457
25458         * loader.c (method_from_methodspec): Use the new
25459         `container->method_hash' here, too.
25460
25461 2004-11-26  Martin Baulig  <martin@ximian.com>
25462
25463         * class.c (inflate_generic_signature): Correctly compute
25464         `res->has_type_parameters'.
25465         (mono_class_vtable): Use the `has_type_parameters' flag to
25466         determine whether we're a generic method.
25467
25468         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25469
25470 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25471
25472         * object.c (mono_runtime_run_main): Fix a small memory leak.
25473
25474 2004-11-25  Martin Baulig  <martin@ximian.com>
25475
25476         * class.c (set_generic_param_owner): Fixed the loop.
25477
25478 2004-11-25  Martin Baulig  <martin@ximian.com>
25479
25480         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25481         generic methods.
25482
25483 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25484
25485         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25486         names. Fixes #69787.
25487
25488 2004-11-24  Martin Baulig  <martin@ximian.com>
25489
25490         * class.c (mono_class_create_generic_2): If we don't have a
25491         `ginst->parent', inflate `gklass->parent' to get our parent.
25492
25493 2004-11-24  Martin Baulig  <martin@ximian.com>
25494
25495         * reflection.c (compare_genericparam): Correctly sort the
25496         GenericParam table; fixes #69779.
25497
25498 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25499
25500         * reflection.c: When writing a PE file, don't create a huge
25501         buffer in memory. Just write the arrays we have to the file.
25502         This reduces memory usage.
25503
25504         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25505         globally.
25506
25507 2004-11-17  Martin Baulig  <martin@ximian.com>
25508
25509         * class.c (mono_class_init): Don't setup `class->parent' for
25510         dynamic instances; moved this to mono_class_generic_2().
25511         (mono_class_create_generic): Also set `klass->inited' for dynamic
25512         generic instances.
25513         (mono_class_create_generic_2): Don't do anything for dynamic
25514         generic instances.  Set `klass->parent' here and also call
25515         mono_class_setup_parent() here. 
25516
25517         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25518         `MonoType *parent' argument; set `ginst->parent' before calling
25519         mono_class_create_generic_2(), so we set the correct parent.
25520
25521 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25522
25523         * reflection.c: allow getting attributes from ModuleBuilder
25524         (used by ikvm).
25525
25526 2004-11-17  Martin Baulig  <martin@ximian.com>
25527
25528         * class.c (mono_class_create_from_typedef): If a type parameter is
25529         inherited from an outer class, set its owner to that class.
25530
25531 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25532
25533         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25534           for (int*) written size. This fixes bug #69592.
25535
25536 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25537
25538         * icall.c: Added IsAuthenticodePresnet internal call.
25539         * image.c|h: New function that check a MonoImage for an Authenticode
25540         signature in the certificate PE data directory.
25541         * security.c|h: New internal call to ask the runtime if an 
25542         Authenticode signature seems referenced in the PE header.
25543
25544 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25545
25546         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25547
25548         * reflection.c (mono_image_create_pefile): Free the assembly streams
25549         after writing out the assembly file.
25550
25551         * object.c (mono_runtime_run_main): Fix small memory leak.
25552
25553         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25554         property access modifiers. Fixes #69389.
25555
25556 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25557
25558         * domain.c, object.c, object-internals.h, domain-internals.h,
25559         object.h, marshal.c: keep dynamic code info per domain.
25560
25561 2004-11-15  Martin Baulig  <martin@ximian.com>
25562
25563         * class.c (mono_type_get_name_recurse): Put type arguments in
25564         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25565         see bug #68387.
25566
25567 2004-11-15  Martin Baulig  <martin@ximian.com>
25568
25569         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25570         (mono_class_setup_vtable): When computing `the_cname' for a
25571         generic instance, don't include the namespace since we'd otherwise
25572         add it twice.
25573
25574 2004-11-15  Martin Baulig  <martin@ximian.com>
25575
25576         * class.c (mono_class_create_generic): Changed return type to void.
25577         (mono_class_create_generic_2): New public function; setup
25578         `class->method', `class->field' and `class->interfaces' here
25579         instead of in mono_class_init().
25580
25581         * class.h (mono_class_create_generic): Moved to class-internals.h.
25582
25583 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25584
25585         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25586         rather than writing to memory, write to this file. Right now,
25587         we are just writting into a buffer, and copying that. However
25588         we can avoid the buffer later.
25589
25590         (mono_dynamic_stream_reset): new function
25591
25592         * icall.c, object-internals.h: update for the above.
25593
25594 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25595
25596         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25597         have been using gc'd memory. First it is slower, unlikely
25598         the comment in the source code said, secondly, it increases
25599         our footprint to do it in the gc.
25600
25601         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25602         the method so that it does not have to copy to managed code.
25603
25604 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25605
25606         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25607
25608 2004-11-12  Martin Baulig  <martin@localhost>
25609
25610         * reflection.c (mono_image_create_token): Allow generic method
25611         definitions here, since they may appear in an `.override'; see
25612         gen-98/gen-99 for an example.
25613
25614 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25615
25616         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25617         #69365.
25618
25619         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25620         descriptive.
25621
25622 2004-11-11  Martin Baulig  <martin@ximian.com>
25623
25624         * class.c (mono_class_setup_vtable): In an explicit interface
25625         implementation, the method name now includes the arity.
25626
25627 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25628
25629         * object.c (mono_array_full_copy): Fix warning.
25630
25631 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25632
25633         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25634         mono_class_get_method_from_name() instead.
25635         
25636         * class-internals.h: Added two new types of wrappers. 
25637         Added MonoRemotingTarget enum. Added new trampoline function type, which
25638         takes an additional MonoRemotingTarget value as parameter, so it is
25639         possible to request a trampoline for a specific target.
25640         
25641         * class.c: Added new mono_class_get_method_from_name() method.
25642         
25643         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25644         general remoting sinks and one specific for cross domain calls.
25645         
25646         * debug-helpers.c: Added new wrapper names.
25647         
25648         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25649         of a remote class.
25650         
25651         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25652         
25653         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25654         with several other methods (mono_marshal_get_xappdomain_dispatch,
25655         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25656         and others) can generate a fast remoting wrapper for cross domain calls.
25657         More information can be found in docs/remoting.
25658         Other changes: Removed mono_find_method_by_name, and used
25659         mono_class_get_method_from_name instead.
25660         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25661         is stored in the remoting invoke hashtable.
25662         
25663         * marshal.h: published the new method for getting the xdomain wrapper,
25664         and also added a method for getting the adequate wrapper for a given
25665         method and target.
25666         
25667         * object-internals.h, object.c: Added a couple of methods for capying and
25668         cloning arrays.
25669         Modified mono_install_remoting_trampoline, which takes the new remoting
25670         trampoline that has a remoting target as parameter.
25671         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25672         will return the most suitable vtable for the target.
25673         Added mono_remote_class_vtable, which returns the vtable of a remote class
25674         (which can be the normal remoting vtable or the xdomain vtable).
25675         
25676         * threads.c: the xdomain invoke and dispatch wrappers must also be
25677         protected against interruptions.
25678
25679 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25680
25681         * icall.c: use memmove in BlockCopyInternal when the source and
25682         destination arrays are the same.
25683
25684 2004-11-09  Martin Baulig  <martin@ximian.com>
25685
25686         * class-internals.h (MonoGenericContainer): Removed `method' and
25687         `signature', replaced them with `is_method' and `is_signature'
25688         flags.  Added `context'.
25689
25690         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25691         instead of a `MonoGenericContainer *'.
25692
25693         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25694         for dynamic type parameters.
25695         (mono_metadata_load_generic_params): Setup `container->context'.
25696
25697         * reflection.c (mono_reflection_setup_generic_class): Setup
25698         `tb->generic_container->context'.
25699         (do_mono_reflection_bind_generic_parameters): Use
25700         mono_class_inflate_generic_type() to correctly inflate types,
25701         rather than using our own hack just for MONO_TYPE_VAR.
25702
25703 2004-11-09  Martin Baulig  <martin@ximian.com>
25704
25705         * class.c (mono_class_inflate_generic_method): Small fix; don't
25706         crash here.
25707
25708         * icall.c
25709         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25710         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25711         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25712         (ves_icall_Type_BindGenericParameters): Likewise.
25713         (ves_icall_Type_get_IsGenericInstance): Likewise.
25714         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25715         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25716         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25717         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25718
25719 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25720
25721         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25722         assembly versions and public key tokens. Fixes #69113.
25723
25724 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25725
25726         * metadata.c: fix bug introduced with the type cache changes
25727         on 2004-11-06.
25728
25729 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25730
25731         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25732         the MonoClass pointer instead of the token in exception clauses.
25733         * reflection.c: updates for the above and make the code not depend
25734         on the structure of MonoExceptionClause.
25735
25736 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25737
25738         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25739         Add support for dynamic assemblies. Fixes #69114.
25740
25741         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25742
25743 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25744
25745         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25746         since most only those methods use it. the code member of
25747         MonoMethodPInvoke was dead, so that can be removed too. Also,
25748         remove inline_count (again, not used), and move slot so that it
25749         can share bits with some other flags. This saves 8 bytes in the
25750         structure and gives us about 50 kb back for mcs helloworld.cs
25751
25752         * *.[ch]: Do naming changes for the above.
25753
25754         * loader.c (mono_method_get_header): Lazily init the header
25755         on first access.
25756         (mono_get_method_from_token): don't init the header here
25757         (mono_free_method): the header may never be allocated
25758
25759         Overall, this saves 150 kb of unmanaged allocations
25760         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25761         memory at runtime.
25762         
25763         * loader.c, loader.h (mono_method_get_header): new accessor.
25764
25765         * *.[ch]: use the above method. Prepares us to lazily load
25766         the header.
25767
25768         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25769         three warnings, which are actual bugs (see 69206).
25770
25771         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25772         unused. Saves a cool 4 bytes / method.
25773
25774 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25775
25776         * metadata.c (builtin_types): Add types for System.Object here.
25777         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25778         for a class or valuetype from klass->this_arg or klass->byval_arg.
25779
25780         On mcs for a hello world, this gets us down from 21836 MonoType's
25781         to 14560.
25782
25783         (mono_metadata_free_type): Account for the above change.
25784
25785 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25786
25787         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25788         exception instead of asserting if name is null.
25789         (ves_icall_System_AppDomain_GetData): Ditto.
25790
25791 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25792
25793         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25794         EnumBuilder.
25795
25796         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25797         Return NULL when the domain does not have entry_assembly set.
25798
25799         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25800         Add a 'resource_modules' argument.
25801         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25802
25803         * reflection.c (mono_reflection_create_runtime_class): Move setting
25804         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25805         for enums too.
25806
25807         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25808         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25809         Throw an ArgumentNullException if 'ptr' is null.
25810
25811         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25812         assemblies here. Fixes #69020.
25813
25814 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25815
25816         * reflection.c (build_compressed_metadata): Fix the previous patch for
25817         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25818         the stack.
25819
25820 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25821
25822         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25823         the cultures is false. Fixes #69090.
25824
25825         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25826         detected by valgrind.
25827         
25828         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25829         TypeResolve multiple times for the same type. Fixes #65577.
25830
25831 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25832
25833         * marshal.c: Avoid using ldftn to call managed functions. It is
25834         much slower than just a call.
25835
25836         * reflection.c (mono_module_get_object): free the basename we
25837         allocate here from glib.
25838         
25839         * reflection.c (ensure_runtime_vtable): make sure to free
25840         overrides.  Also, we were allocating an array of MonoMethod not an
25841         array of MonoMethod*.
25842
25843         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25844
25845         * image.c (mono_image_close): free image->guid here.
25846
25847 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25848
25849         * reflection.c: Fix some spec conformance issues with the PE file
25850         structures so mcs compiled apps run on the Net 2.0 beta.
25851
25852 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25853
25854         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25855         Implement this. Fixes #67264.
25856
25857         * debug-helpers.h debug-helpers.c marshal.c: Move 
25858         mono_find_method_by_name to debug-helpers.c.
25859
25860 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25861
25862         * object.c (mono_release_type_locks): type_initialization_hash is
25863         a GHashTable.
25864
25865         * reflection.c object.c object-internals.h: Fix warnings.
25866
25867         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25868         without accessors. Fixes #61561.
25869
25870         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25871         application base from the root domain if not set. Fixes #65641.
25872         (mono_runtime_init): Fix warning.
25873
25874 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25875
25876         * appdomain.c: call mono_thread_pool_init.
25877         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25878         of worker threads based on the number of CPUs and the environment
25879         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25880         for non-windows (windows) systems.
25881
25882 2004-10-27  Chris Toshok  <toshok@ximian.com>
25883
25884         * mono-debug-debugger.c (write_class): don't call mono_class_init
25885         here, as even with the check for (!klass->init_pending), we get
25886         into a situation where we're hitting cycles in class
25887         initialization.  Fixes #68816.
25888
25889 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25890
25891         * image.c: Avoid overwriting values in the loaded_images_hash when an
25892         assembly is loaded multiple times. Fixes #61152.
25893
25894         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25895         so multiple satellite assemblies for the same name can be loaded.
25896         Fixes #68259.
25897
25898         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25899         not NULL.
25900
25901         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25902         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25903
25904         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25905         pending finalizers are not invoked after the appdomain has been 
25906         unloaded. Fixes #67862.
25907
25908 2004-10-22  Martin Baulig  <martin@ximian.com>
25909
25910         * mono-debug-debugger.c
25911         (mono_debugger_runtime_invoke): Don't box valuetypes.
25912
25913 2004-10-22  Chris Toshok  <toshok@ximian.com>
25914
25915         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25916         don't hide private methods.
25917
25918 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25919
25920         * icall.c: Allows the runtime to "share" (when known) the public key
25921         token of an assembly. This avoid the need to recalculate the token 
25922         (from the public key) in managed code.
25923
25924 2004-10-21  Chris Toshok  <toshok@ximian.com>
25925
25926         * debug-helpers.c (append_class_name): argh, revert last patch.
25927         
25928 2004-10-21  Chris Toshok  <toshok@ximian.com>
25929
25930         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25931         not '/', so that it matches what the debugger uses to look up
25932         methods.
25933
25934 2004-10-21  Martin Baulig  <martin@ximian.com>
25935
25936         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25937         public method; this is called each time an exception is thrown and
25938         allows the debugger to use exception catch points.
25939
25940 2004-10-21  Martin Baulig  <martin@ximian.com>
25941
25942         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25943         the stack pointer and the exception object in some struct and pass
25944         that to the debugger.
25945
25946 2004-10-21  Chris Toshok  <toshok@ximian.com>
25947
25948         * mono-debug-debugger.c (do_write_class): add instance/static
25949         event support.  We don't expose "raise" or "other" yet.
25950         (event_is_static): new method.
25951
25952 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25953
25954         * mono-debug-debugger.c
25955         (mono_debugger_handle_exception): Remove
25956         bogus return value for fussy compilers.
25957
25958 2004-10-20  Martin Baulig  <martin@ximian.com>
25959
25960         * mono-debug-debugger.c
25961         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25962         (mono_debugger_handled_exception): Likewise.
25963
25964 2004-10-20  Martin Baulig  <martin@ximian.com>
25965
25966         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25967         MONO_DEBUGGER_EVENT_EXCEPTION.
25968
25969         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25970         public function to send the debugger a notification for an
25971         exception and inform it about a catch/finally clause.
25972
25973 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25974
25975         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25976         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25977         fix 2.95 build. 
25978
25979         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25980
25981 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25982
25983         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25984         marshalled as [In,Out]. Fixes #58325.
25985
25986 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25987
25988         * reflection.c (mono_method_body_get_object): Implement some fields.
25989
25990 2004-10-12  Martin Baulig  <martin@ximian.com>
25991
25992         * reflection.c (mono_reflection_bind_generic_parameters): Small
25993         fix, correctly retrieve our parent from a generic instance.
25994
25995 2004-10-12  Martin Baulig  <martin@ximian.com>
25996
25997         * metadata.c (mono_metadata_generic_param_equal): We always have
25998         an owner.
25999
26000         * class.c
26001         (mono_class_from_generic_parameter): We need to have an owner.
26002         (my_mono_class_from_generic_parameter): Likewise.
26003
26004         * reflection.c (mono_reflection_setup_generic_class): Renamed to
26005         mono_reflection_create_generic_class() and added a new
26006         mono_reflection_setup_generic_class().  
26007         (mono_reflection_initialize_generic_param): If we're a nested
26008         generic type and inherited from the containing class, set our
26009         owner to the outer class.
26010
26011 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
26012
26013         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
26014
26015         * reflection.c (mono_method_body_get_object): New function to create
26016         a MethodBody object.
26017
26018         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
26019
26020 2004-10-11  Martin Baulig  <martin@ximian.com>
26021
26022         * metadata.c (_mono_metadata_type_equal): Renamed to
26023         do_mono_metadata_type_equal() and made static.
26024
26025 2004-10-11  Martin Baulig  <martin@ximian.com>
26026
26027         * appdomain.c: Bump corlib version number to 28.
26028
26029 2004-10-10  Martin Baulig  <martin@ximian.com>
26030
26031         * class-internals.h
26032         (MonoGenericInst): Added `MonoGenericContainer *container'.
26033         (MonoGenericMethod): Likewise.
26034         (MonoGenericContext): Likewise.
26035         (MonoGenericParam): Added `MonoGenericContainer *owner'.
26036
26037         * metadata.c
26038         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
26039         (do_mono_metadata_parse_generic_inst): Likewise.
26040         (mono_metadata_parse_type_full): New public method.  This is the actual
26041         mono_metadata_parse_type() implementation - with an additional
26042         `MonoGenericContainer *' argument.
26043         (mono_metadata_parse_array_full): Likewise.
26044         (mono_metadata_parse_signature_full): Likewise.
26045         (mono_metadata_parse_method_signature_full): Likewise.
26046         (mono_metadata_parse_mh_full): Likewise.
26047         (mono_type_create_from_typespec): Likewise.
26048         (mono_metadata_interfaces_from_typedef_full): New public method;
26049         this is similar to the other _full() methods, but we take a
26050         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
26051         (mono_metadata_parse_generic_param): Take an additional
26052         `MonoGenericContainer *' argument and lookup the MonoGenericParam
26053         from that container.
26054         (mono_metadata_generic_param_equal): New static method to compare
26055         two type parameters.
26056         (_mono_metadata_type_equal): New static method; takes an
26057         additional `gboolean signature_only' argument - if true, we don't
26058         compare the owners of generic parameters.
26059         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
26060         with a TRUE argument - do a signature-only comparision.
26061
26062         * loader.c: Use the new _full() methods and pass the
26063         MonoGenericContainer to them.
26064
26065         * object-internals.h (MonoReflectionTypeBuilder): Added
26066         `MonoGenericContainer *generic_container' field.
26067         (MonoReflectionMethodBuilder): Likewise.
26068
26069 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
26070
26071         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
26072         case initial images of dynamic assemblies.
26073
26074         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
26075
26076         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
26077
26078         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
26079         length of event->other array.
26080         (typebuilder_setup_events): Ditto.
26081
26082         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
26083         'assembly_by_name' and add an 'assemblies' list.
26084
26085         * assembly.h assembly.c: Add a new search hook for determining whenever
26086         an assembly is already loaded. Use this instead of searching in the
26087         loaded_assemblies list.
26088
26089         * domain.c appdomain.c: Implement the new search hook so loaded 
26090         assemblies are now scoped by appdomain. Fixes #67727.
26091
26092 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
26093
26094         * threads.c (mono_thread_attach): Initialize synch_lock field so
26095         mono_thread_detach works again.
26096
26097         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
26098         'lib' too. Fixes #63130.
26099
26100 2004-10-06  Jackson Harper  <jackson@ximian.com>
26101
26102         * culture-info-tables.h: regenerated.
26103
26104 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
26105
26106         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
26107         implemented by other interfaces in the result. Fixes #65764.
26108         
26109         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26110         Handle unloadable modules without crashing.
26111
26112         * image.c (load_modules): Revert the previous patch since modules must
26113         have a fixed index inside the array.
26114         
26115         * image.c (load_modules): Don't include native modules in the modules
26116         array.
26117
26118 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
26119
26120         * reflection.h: Add param_defaults field.
26121
26122         * reflection.c: Add support for parameter defaults in dynamic methods.
26123         Fixes #64595.
26124
26125         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
26126         an empty string when a type has no namespace. Fixes #64230.
26127
26128 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
26129
26130         * tabledefs.h: Added "internal" security actions to support non-CAS
26131         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
26132         Note: they do not seems to be used anymore in 2.0 (new metadata format)
26133
26134 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
26135
26136         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
26137         constructor of abstract class. Fixes #61689.
26138
26139 2004-10-04  Martin Baulig  <martin@ximian.com>
26140
26141         * class-internals.h (MonoGenericContainer): New type.
26142         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
26143         `MonoGenericContainer *generic_container'.
26144         (MonoClass): Replaced `gen_params' and `num_gen_params' with
26145         `MonoGenericContainer *generic_container'.
26146
26147         * metadata.c (mono_metadata_load_generic_params): Return a
26148         `MonoGenericContainer *' instead of a `MonoGenericParam *';
26149         removed the `num' argument.
26150
26151 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
26152
26153         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
26154         for dynamic images.
26155
26156         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
26157         machine fields.
26158
26159         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
26160
26161         * reflection.c: Save pe_kind and machine values into the generated
26162         image file.
26163
26164         * appdomain.c: Bump corlib version number.
26165
26166         * object-internals.h: Reorganize layout of LocalBuilder.
26167
26168         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
26169         New helper function.
26170
26171         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
26172         created MonoType for dynamic types. Fixes #66180.
26173
26174 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
26175
26176         * threadpool.c: the ares hashtable needs a critical section around it.
26177         this prevents some nasty segfaults
26178
26179 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
26180
26181         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
26182         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
26183         bug 67324).
26184         
26185 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26186
26187         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
26188         
26189 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
26190
26191         * image.c: Always canonicalize image file names, to avoid loading
26192         the same assembly twice when referenced using a relative path.
26193
26194 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26195
26196         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
26197
26198         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
26199
26200         * marshal.c: Fix warnings.
26201
26202 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
26203
26204         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
26205         attempting to marshal the delegate_trampoline as the method_addr.
26206         This patch has a static hashtable of marshalled delegates so that 
26207         we can map delegate_trampoline addresses back to delegates.  This
26208         allows a delegate passed to managed code to be passed back into native
26209         code.  Fixes #67039
26210
26211 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26212
26213         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
26214
26215         * reflection.c (method_encode_code): Align method headers properly.
26216         Fixes #66025.
26217
26218 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26219
26220         * marshal.c: In the runtime invoke wrapper, reset the abort
26221         exception if it is cached. This avoids the automatic rethrowal of 
26222         the exception after the catch of the wrapper. Also check for pending
26223         interruptions before calling the managed method. This is done using
26224         the new method emit_thread_force_interrupt_checkpoint, since the
26225         normal checkpoint method is ignored when running the invoke wrapper.
26226         * object.c: If the abort exception is rethrown, set the abort_exc
26227         field of the thread, so it will be rethrown aftere every catch.
26228         * threadpool.c: Only run an interruption checkpoint if what has been
26229         requested is a stop of the thread (aborts will be ignored).
26230         * threads.c: By default, a thread will now never be interrumped while
26231         running the runtime invoke wrapper (this ensures that runtime_invoke
26232         will always return to the caller if an exception pointer is provided).
26233         There is a new special method mono_thread_force_interruption_checkpoint()
26234         to force an interruption checkpoint even if running a protected
26235         wrapper, which is used by the same runtime invoke wrapper to do a check
26236         at a safe point.
26237
26238 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26239
26240         * object.c, object-internals.h: Implemented mono_release_type_locks,
26241         which releases the cctor locks held by a thread.
26242         * threads.c, threads.h: In thread_cleanup, release cctor locks held
26243         by a thread. Added mono_thread_exit() method to be used to safely stop
26244         a thread.
26245
26246 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26247
26248         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26249         Move null check before dereference.  Avoid indexing beyond the end
26250         of the 'modules' array.
26251
26252 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26253
26254         * metadata-internals.h (MonoImage): Add module_count field.
26255         * image.c (load_modules): Set image->module_count.
26256         (mono_image_load_file_for_image): Use image->module_count.
26257         * reflection.c (mono_image_load_module): Append to image->modules array 
26258         of dynamic assembly.
26259         (mono_module_get_object): Fix loop to actually increment index.
26260         Use image->module_count.
26261         * assembly.c (mono_assembly_load_references): Use image->module_count.
26262         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
26263         Likewise.
26264
26265 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26266
26267         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
26268         Avoid assert on generic types.
26269
26270 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
26271
26272         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
26273
26274         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
26275
26276         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
26277         function to convert a MarshalSpec structure to its managed counterpart.
26278
26279         * reflection.c: Fix warnings.
26280         
26281         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
26282         field.
26283
26284         * icall.c (mono_create_icall_signature): Fix build.
26285
26286 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
26287
26288         * icall.c: Add MakePointType icall.
26289
26290         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
26291         warnings.
26292
26293 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26294
26295         * threadpool.c: reuse allocated slots in the queue.
26296
26297 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
26298
26299         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
26300
26301         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
26302
26303         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
26304         previous change.
26305
26306         * tabledefs.h: Add constants for pinvoke attributes BestFit and
26307         ThrowOnUnmappableChar.
26308
26309         * icall.c (ves_icall_Type_GetPacking): New icall.
26310
26311 2004-09-24  Martin Baulig  <martin@ximian.com>
26312
26313         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
26314
26315 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26316
26317         * appdomain.c:
26318         (mono_domain_set): allow setting a domain that is being unloaded.
26319         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
26320         being unloaded.
26321
26322 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26323
26324         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
26325         the GetCustomAttributes icall.
26326
26327 2004-09-23  Martin Baulig  <martin@ximian.com>
26328
26329         * object-internals.h (MonoReflectionGenericParam): Replaced
26330         'has_ctor_constraint', `has_reference_type' and `has_value_type'
26331         with `guint32 attrs'.
26332
26333 2004-09-23  Martin Baulig  <martin@ximian.com>
26334
26335         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
26336
26337 2004-09-23  Martin Baulig  <martin@ximian.com>
26338
26339         * object-internals.h (GenericParameterAttributes): New enum.
26340
26341 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26342
26343         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
26344         
26345         * class.c (init_events): Fill out event->other field.
26346
26347         * class.c: Fix warnings.
26348
26349         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
26350
26351 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
26352
26353         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
26354         walk which doesn't supply the IL offset.
26355
26356 2004-09-22  Martin Baulig  <martin@ximian.com>
26357
26358         * reflection.c (mono_reflection_setup_internal_class): If we're
26359         System.ValueType, System.Object or System.Enum, set
26360         `klass->instance_size' and create the vtable.
26361         (mono_reflection_create_internal_class): If we're an enum type,
26362         get the base class from our current corlib.
26363
26364 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
26365
26366         * reflection.h (MonoResolveTokenError): New type.
26367
26368         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
26369         icall.
26370
26371         * icall.c: Add an 'error' argument to the ResolveToken icalls.
26372
26373 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
26374
26375         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
26376         Support also calling constructors, but only for already allocated objects.
26377
26378 2004-09-17  Geoff Norton <gnorton@customerdna.com>
26379
26380         * reflection.c (type_get_qualified_name): If the klass is null
26381         return the typename to avoid a NullRefEx.
26382         (encode_cattr_value): Get the qualified name of the boxed type,
26383         not the underlying enumtype.  Fixes #62984.
26384
26385 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
26386
26387         * marshal.c: Fix problems with previous checkin.
26388
26389 2004-09-21    <vargaz@freemail.hu>
26390
26391         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26392         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26393
26394         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26395
26396 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26397
26398         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26399         should only return a type for pointers, arrays, and passbyref types.
26400         Fixes bug #63841.
26401
26402 2004-09-21  Martin Baulig  <martin@ximian.com>
26403
26404         * domain.c (mono_debugger_check_runtime_version): New public
26405         function.
26406
26407         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26408
26409 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26410
26411         * reflection.c: Added missing sort to the declarative security 
26412         attributes table. MS implementation stops seeing the attributes if the
26413         token number regress in the table (as shown by ildasm and permview).
26414
26415 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26416
26417         * object-internals.h (MonoReflectionModule): Add 'token' field.
26418         
26419         * reflection.c (mono_reflection_get_token): Add support for Module
26420         and Assembly.
26421         (mono_module_get_object): Set 'token' field.
26422         (mono_module_file_get_object): Set 'token' field.
26423
26424         * icall.c: Add new Assembly and Module icalls.
26425
26426         * appdomain.c: Bump corlib version.
26427
26428 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26429
26430         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26431         tokens of metadata objects.
26432
26433         * reflection.h reflection.c (mono_reflection_get_token): New function
26434         to obtain the token of a metadata object.
26435
26436         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26437
26438 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26439
26440         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26441         
26442         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26443
26444 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26445
26446         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26447         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26448         AssemblyBuilder to access the permissions set in the class lib.
26449         * reflection.c: Added security attributes encoding step in 
26450         mono_image_build_metadata.
26451         * tabledefs.h: Added new security actions defined in 2.0:
26452         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26453
26454 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26455
26456         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26457         macro parameter.
26458
26459 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26460  
26461         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26462           finalized. There where random SIGSEVs at program termination, when
26463           an object being finalized was trying to do a string comparison and
26464           the current culture was already finalized.
26465  
26466 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26467
26468         * threads.c: call thread_cleanup before finishing the thread if we get
26469         there.
26470
26471 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26472
26473         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26474         assemblies from the parent. Fixes #65665.
26475
26476 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26477
26478         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26479         modifiers.
26480
26481 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26482
26483         * reflection.h: add prototype for mono_get_dbnull_object
26484         * reflection.c: add prototypes for get_default_param_value_blobs 
26485         and mono_get_object_from_blob for fussier compilers
26486
26487 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26488  
26489         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26490         false deadlock checks in class initialization.
26491  
26492 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26493
26494         * image.c (mono_image_addref): Fix comment.
26495
26496         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26497         possible.
26498
26499 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26500
26501         * reflection.c (mono_param_get_objects): Modified to return
26502         ParameterInfo.DefaultValue object.
26503
26504         (get_default_param_value_blobs):
26505         (mono_get_object_from_blob):
26506         (mono_get_dbnull_object): New helper routines. 
26507
26508         * object.c (mono_get_constant_value_from_blob): New helper routine
26509         carved out from get_default_field_value ()
26510
26511         * object-internals.h (mono_get_constant_value_from_blob): Added
26512         function declaration.
26513
26514 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26515
26516         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26517         referenced assemblies. Fixes #62135.
26518
26519         * exception.h exception.c (mono_get_exception_file_not_found2): New
26520         helper function.
26521
26522 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26523
26524         * class.h class.c: Add mono_type_get_underlying_type ().
26525
26526 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26527
26528         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26529         Fix GetTypes() to support dynamically created assemblies.
26530
26531 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26532
26533         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26534         
26535         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26536         previous patch.
26537
26538         * reflection.h reflection.c loader.c: Allow dynamic construction of
26539         pinvoke methods. Fixes #65571.
26540         
26541         * reflection.c (mono_reflection_get_type): Revert previous change since
26542         it causes regressions.
26543
26544 2004-09-08  Martin Baulig  <martin@ximian.com>
26545
26546         * class.c (class_compute_field_layout): Don't call
26547         mono_class_layout_fields() for open generic instances.
26548
26549 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26550         * threads.c appdomain.c: fix typo in GC macro
26551
26552 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26553
26554         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26555         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26556
26557 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26558
26559         * image.c (mono_image_close): Applied patch from 
26560         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26561         assembly is loaded multiple times from data.
26562         
26563         * image.c (mono_image_open): Fix warning.
26564
26565 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26566
26567         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26568         once. Fixes #58334.
26569         
26570         * reflection.c (mono_reflection_create_runtime_class): Initialize
26571         klass->nested_classes. Fixes #61224.
26572
26573 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26574
26575         * threads.c: sched_yield() on exit, to allow threads to quit.
26576
26577 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26578
26579         * object.c (mono_unhandled_exception): Remove leftover debug code.
26580
26581 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26582
26583         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26584
26585 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26586
26587         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26588         
26589         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26590
26591 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26592
26593         * marshal.c (emit_marshal_array): Null terminate string arrays.
26594         
26595         * marshal.c (raise_auto_layout_exception): Fix warning.
26596
26597         * reflection.c (mono_param_get_objects): Initialize the default value
26598         with DBNull.Value, not null. Fixes #62123.
26599
26600 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26601
26602         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26603         throw an exception with a cute explanation.
26604
26605 2004-09-06  Dick Porter  <dick@ximian.com>
26606
26607         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26608         Close the new process's thread handle, as we don't use it.  The
26609         handle stays around forever otherwise.
26610
26611 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26612
26613         * object.c (arith_overflow): Fix warning.
26614
26615         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26616         calling conventions in method refs. Fixes #65352.
26617
26618         * reflection.c: Fix warnings.
26619
26620 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26621
26622         * icall.c: Add a new icall for Array.Clear
26623
26624 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26625
26626         * object.c: When allocating an array, we have to throw
26627         an overflow exception if any of the lengths are < 0.
26628
26629 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26630
26631         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26632         properly. Also move implementation of string array marshalling to 
26633         managed code. Fixes #42316.
26634
26635 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26636
26637         * assembly.c: provide more information when loading an assembly fails.
26638
26639 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26640
26641         * filewatcher.c: don't expect the development fam package to be
26642         installed.
26643
26644 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26645
26646         * marshal.c: Make a copy of the signature cookie since it will be
26647         freed by the caller.
26648         
26649         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26650
26651         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26652
26653         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26654         marshal specs.
26655
26656         * marshal.c: More refactoring.
26657         
26658         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26659         smaller functions.
26660
26661 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26662
26663         * object.c: In mono_message_invoke, fill the output parameter array after
26664           calling the managed method (it was done before the call). This fixes
26665           bug #59299.
26666
26667 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26668
26669         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26670         as well.
26671
26672 2004-09-02  Martin Baulig  <martin@ximian.com>
26673
26674         * class.c (mono_class_instance_size): Don't allow generic type
26675         definitions or open generic instances.
26676         (mono_class_array_element_size): If we're a value type, call
26677         mono_class_instance_size() on the original class.
26678
26679         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26680         handle generic instances.
26681
26682         * mono-debug-debugger.c (write_type): Handle generic instances
26683         like classes.
26684
26685 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26686
26687         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26688         the allocation request fails. Fixes #65089.
26689
26690         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26691         
26692         * object.c (mono_runtime_free_method): New function to free a dynamic
26693         method.
26694
26695         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26696         delegate trampoline.
26697
26698         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26699         with hasthis as dynamic,
26700
26701         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26702
26703         * domain.c (mono_jit_info_table_remove): New function to remove an
26704         entry from the jit info table.
26705
26706         * class-internals.h (MonoMethod): Add 'dynamic' field.
26707
26708         * loader.c: Fix warnings.
26709
26710 2004-09-01  Martin Baulig  <martin@ximian.com>
26711
26712         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26713         instead of mono_debugger_lock() because the latter one is a no-op
26714         unless running in the debugger.
26715
26716 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26717
26718         * class.c (class_compute_field_layout): Classes with auto-layout or
26719         reference fields are not blittable.
26720         
26721 2004-09-01  Dick Porter  <dick@ximian.com>
26722
26723         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26724         mono_image_get_filename() to get the assembly location.
26725
26726         * icall.c:
26727         * metadata.h: Fix compile warnings
26728
26729 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26730
26731         * class.c (class_compute_field_layout): System.Object is blittable.
26732
26733         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26734         as in/out. Fixes #59909.
26735
26736 2004-09-01  Martin Baulig  <martin@ximian.com>
26737
26738         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26739         mono_metadata_generic_inst_is_valuetype() if we're a generic
26740         instance to check whether our underlying type is a reference type.
26741
26742 2004-09-01  Martin Baulig  <martin@ximian.com>
26743
26744         * metadata.c (mono_type_size): If we're a generic instance, call
26745         mono_class_value_size() for value types.
26746
26747 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26748
26749         * marshal.c: Implement more custom marshalling functionality. Fixes
26750         #64915.
26751
26752 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26753
26754         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26755
26756 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26757
26758         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26759
26760         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26761
26762         * icall.c: Fix some warnings.
26763
26764         * threads.c (abort_appdomain_thread): Fix unref errors.
26765         (mono_thread_current): Fix THREAD_DEBUG define.
26766
26767 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26768
26769         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26770
26771         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26772
26773 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26774
26775         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26776         string arrays.
26777
26778 2004-08-28  Martin Baulig  <martin@ximian.com>
26779
26780         * metadata.c
26781         (mono_metadata_generic_inst_is_valuetype): New public function.
26782
26783         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26784         mono_metadata_generic_inst_is_valuetype() if we're a generic
26785         instance to check whether our underlying type is a valuetype.
26786
26787 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26788
26789         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26790         #63768.
26791
26792 2004-08-25  Martin Baulig  <martin@ximian.com>
26793
26794         * loader.c (mono_get_method_from_token): Abstract methods can also
26795         be generic and thus have type parameters.
26796
26797         * metadata-internals.h
26798         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26799
26800         * reflection.c (mono_image_get_generic_param_info): Don't create a
26801         metadata row, just add an entry to the `gen_params' array.
26802         (build_compressed_metadata): Sort the `gen_params' array and then
26803         actually create the metadata.
26804
26805 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26806
26807         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26808
26809 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26810
26811         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26812
26813 2004-08-24  Martin Baulig  <martin@ximian.com>
26814
26815         * class.cs (mono_class_is_subclass_of): Like an interface, a
26816         generic instance also derives from System.Object.
26817
26818 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26819
26820         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26821         custom modifiers to be in any order. Fixes #61990.
26822
26823 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26824
26825         * object.c: Register mono_object_new_fast icall.
26826         
26827         * object.c (mono_class_get_allocation_ftn): Return to calling
26828         mono_object_new_fast, since it seems faster to compute the object 
26829         size in unmanaged code than passing it as a parameter.
26830
26831         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26832
26833         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26834         this function with Boehm as the oom handler, so we don't have to check
26835         the result of GC_malloc.
26836
26837         * object.c: Remove checks for oom.
26838
26839         * object.h object.c (mono_class_get_allocation_ftn): New function to
26840         return the icall which can be used to allocate an instance of a given
26841         class. 
26842
26843         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26844
26845         * class-internals.h: Add 'enabled' field.
26846
26847 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26848
26849         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26850
26851 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26852         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26853         value 0x0010.
26854
26855 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26856
26857         * appdomain.c: use the Tls function for appdomain too,
26858         at Zoltan's request. Actually return in mono_context_get
26859
26860         * appdomain.c, profiler.c, threads.c: use __thread
26861
26862 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26863
26864         * appdomain.c threads.c: Call GC_CreateThread on windows.
26865
26866         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26867         multiple libraries since this don't work on windows.
26868
26869 2004-08-18  Martin Baulig  <martin@ximian.com>
26870
26871         * class-internals.h
26872         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26873         MonoMethodHeader.
26874
26875         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26876         MonoMethodNormal since we also need it for abstract and interface
26877         methods.
26878
26879         * reflection.c
26880         (build_compressed_metadata): Sort the GenericParam table.
26881         (mono_image_create_token): Added `gboolean create_methodspec'
26882         argument; this is false when generating a MethodImpl token.
26883         (reflection_methodbuilder_to_mono_method): Abstract and interface
26884         methods may also have generic parameters.
26885
26886 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26887
26888         * appdomain.c: thread local alloc
26889
26890 2004-08-17  Martin Baulig  <martin@ximian.com>
26891
26892         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26893
26894         * icall.c
26895         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26896         argument.
26897
26898         * class.c (mono_type_get_full_name): New public function.
26899         (mono_type_get_name): Don't include the type arguments.
26900
26901 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26902
26903         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26904         for inclusion into the mono executable.
26905
26906 2004-08-16  Martin Baulig  <martin@ximian.com>
26907
26908         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26909         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26910
26911 2004-08-14  Martin Baulig  <martin@ximian.com>
26912
26913         * class.c (dup_type): Also copy the `byref' field.
26914
26915 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26916
26917         * reflection.c (create_dynamic_mono_image): Revert the last change 
26918         since it breaks bootstrap.
26919
26920 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26921
26922         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26923
26924         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26925         not free them with g_free.
26926
26927 2004-08-11  Martin Baulig  <martin@ximian.com>
26928
26929         * reflection.c (mono_reflection_setup_internal_class): Also call
26930         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26931
26932 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26933
26934         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26935         called during default (first) AppDomain creation. Keep track of
26936         Evidence when loading assemblies.
26937
26938 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26939
26940         * opcodes.c, opcodes.h: reduce runtime relocations.
26941
26942 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26943
26944         * culture-info.h, locales.c: fixes and chages to sue the new
26945         optimized format of the locale data.
26946         * culture-info-tables.h: regenerated.
26947
26948 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26949         
26950         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26951
26952 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26953
26954         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26955         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26956         * domain-internals.h: icall declaration.
26957         * icall.c: icall registration.
26958         * object-internals.h: New fields in MonoAssembly for CAS.
26959
26960 2004-08-05  Duncan Mak  <duncan@ximian.com>
26961
26962         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26963         CEE_LDELEM_ANY.
26964
26965 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26966
26967         * reflection.c: fix to deal with object[] arrays in custom ctors
26968         (bug #62550).
26969
26970 2004-08-05  Martin Baulig  <martin@ximian.com>
26971
26972         * class.c (mono_class_array_element_size): Added support for
26973         generic instances and correctly handle "recursive" types.
26974
26975 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26976
26977         * assembly.c: Fix warnings.
26978
26979 2004-08-04  Martin Baulig  <martin@ximian.com>
26980
26981         * class.c
26982         (mono_type_get_name_recurse): Added `gboolean include_arity'
26983         argument specifying whether or not we should include the generic
26984         arity in the type name.
26985         (_mono_type_get_name): New static function.
26986         (mono_class_setup_vtable): If we're a generic instance, don't
26987         include the generic arity in the names of explicit method
26988         implementations.        
26989
26990 2004-08-03  Martin Baulig  <martin@ximian.com>
26991
26992         * class.c (mono_type_get_name_recurse): Enclose the generic type
26993         arguments in `<', '>'.
26994
26995 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26996
26997         * gc.c: make GC warning messages use the trace API, they are just
26998         noise to most of the users.
26999
27000 2004-08-03  Martin Baulig  <martin@ximian.com>
27001
27002         * debug-mono-symfile.c (read_string): Correctly read the string.
27003
27004 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
27005
27006         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
27007         
27008         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
27009         icalls.
27010         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
27011
27012 2004-07-30  Martin Baulig  <martin@ximian.com>
27013
27014         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
27015         Reflect latest symbol writer changes.   
27016
27017 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27018
27019         * object.c: always create an object if null is passed
27020         to Invoke() where a valuetype is expected.
27021
27022 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
27023
27024         * marshal.c (mono_marshal_init): make managed
27025         signatures match native ones better for 64bits.
27026
27027 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27028
27029         * appdomain.c: hack to build correctly the private bin path on windows.
27030         Fixes bug #61991.
27031
27032 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
27033
27034         * assembly.c: Load mscorlib from the correct framework directory
27035           (mono/<version>/mscorlib.dll).
27036         * appdomain.h: Added prototypes for new functions.
27037         * internals.h: Added some prototypes.
27038         * domain.c: When initializing the runtime, get from the executable and
27039           the configuration files the runtime version that the app supports.
27040           Added support methods for reading app.exe.config. Added list of versions
27041           supported by the JIT. Added two new methods: mono_init_from_assembly,
27042           which initializes the runtime and determines the required version from
27043           the provided exe file, and mono_init_version, which initializes
27044           the runtime using the provided version.
27045         * icall.c: Get machine.config from version-specific directory.
27046         * reflection.c: When generating an image, embed the version number
27047           of the current runtime.
27048
27049 2004-07-28  Dick Porter  <dick@ximian.com>
27050
27051         * socket-io.c
27052         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
27053         returned sockaddr size before creating the remote address object.
27054         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
27055         61608.
27056
27057 2004-07-28  Dick Porter  <dick@ximian.com>
27058
27059         * locales.c (string_invariant_compare_char): Fix invariant char
27060         compares between upper and lower cases.  Fixes bug 61458.
27061
27062 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
27063         
27064         * marshal.c: actually cache stelem.ref wrappers.
27065         
27066 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
27067
27068         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
27069         sections and remove the mono_cli_rva_map () function.
27070
27071 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27072
27073         * debug-mono-symfile.c: fix one more endianess issue, from a patch
27074         by Geoff Norton (<gnorton@customerdna.com>).
27075
27076 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27077
27078         * class.c: fix class loads for pointer types (typeof(int) !=
27079         typeof(int*)).
27080
27081 2004-07-27  Martin Baulig  <martin@ximian.com>
27082
27083         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
27084         reading the debugging information from an external ".mdb" file.
27085
27086 2004-07-24  Martin Baulig  <martin@ximian.com>
27087
27088         * reflection.c (mono_image_get_type_info): Only write a class
27089         layout entry if we actually have a size or a packing size.
27090
27091 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27092
27093         * reflection.c (type_get_fully_qualified_name): 
27094         insert cast to get type checking of ?: with non-gcc compilers
27095
27096 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27097
27098         * rand.c: use g_getenv for both lookups of
27099         MONO_EGD_SOCKET
27100
27101 2004-07-17  Martin Baulig  <martin@ximian.com>
27102
27103         * reflection.c (mono_reflection_bind_generic_method_parameters):
27104         Set `gmethod->reflection_info'.
27105
27106 2004-07-17  Martin Baulig  <martin@ximian.com>
27107
27108         * class.c (mono_class_create_from_typedef): Insert the newly
27109         created class into the hash table before computing the interfaces
27110         since we could be called recursively.
27111
27112 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
27113
27114         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
27115         function to implement stelem.ref in managed code
27116         * class-internals.h, debug-helpers.c: a new wrapper type
27117         for the above.
27118
27119 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27120
27121         * gc.c: allow GC handles to work even when no GC is compiled in.
27122         Fix part of bug #61134 (GetAddrOfPinnedObject).
27123
27124 2004-07-13  Peter Williams  <peter@newton.cx>
27125  
27126         * process.c (complete_path): Make sure we don't attempt to execute
27127         directories.
27128  
27129 2004-07-12  Geoff Norton <gnorton@customerdna.com>
27130
27131         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
27132           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
27133           and will add/subtract the hour if needed
27134
27135 2004-07-12  Martin Baulig  <martin@ximian.com>
27136
27137         * reflection.c (mono_field_get_object): If we have
27138         `field->generic_info', take the attributes from
27139         `field->generic_info->generic_type'.    
27140
27141 2004-07-12  Martin Baulig  <martin@ximian.com>
27142
27143         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
27144         This function must be called before initializing the runtime.
27145         (mono_debug_init_1): New function; call this after initializing
27146         the runtime, but before loading the assembly.  It tells the
27147         debugger to load corlib and the builtin types.
27148
27149         * mono-debug-debugger.c: Did some larger changes in the debugging
27150         code; support recursive class declarations, make sure we actually
27151         add all classes.
27152
27153 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27154
27155         * debug-helpers.c: undo my previous patch and fixed the real issue in
27156         ../mini/exceptions-x86.c
27157
27158 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27159
27160         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
27161         when no HOME env. variable was set and a NullRef was thrown in a .cctor
27162         called from other .cctors.
27163
27164 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
27165
27166         * loader.c: Removed the mono_loader_wine_init hack now that we are
27167         doing a managed version of Windows.Forms.
27168
27169 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
27170
27171         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
27172         threadpool.c, threads.c: remove static data from rootset.
27173
27174 2004-07-09  Dick Porter  <dick@ximian.com>
27175
27176         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
27177         Don't do any more processing if the matched length was 0.  It was
27178         increasing the size of the string before.  Fixes bug 61167.
27179
27180 2004-07-09  Dick Porter  <dick@ximian.com>
27181
27182         * socket-io.h:
27183         * socket-io.c
27184         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
27185         Add support for SO_PEERCRED if its available.
27186
27187 2004-07-09  Peter Bartok <pbartok@novell.com>
27188         * loader.c: winelib.exe.so error message is now only displayed if
27189         MONO_DEBUG is set. To help us avoid questions when people are trying
27190         out the new Managed.Windows.Forms.
27191
27192 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
27193
27194         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
27195         for isinst and castclass wrappers.
27196
27197         * class-internals.h icall.c: Move registration and lookup of JIT icalls
27198         to libmetadata from the JIT, so they could be used by the marshalling
27199         code and the interpreter.
27200
27201         * marshal.c: Register marshalling related JIT icalls here instead of
27202         in mini.c. Use CEE_MONO_ICALL instead of the family of 
27203         CEE_MONO_PROC<x> opcodes to call marshalling functions.
27204
27205         * metadata.h: Remove unneeded marshalling conversions.
27206
27207         * opcodes.c: Update for new opcodes.
27208         
27209 2004-07-08  Martin Baulig  <martin@ximian.com>
27210
27211         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
27212         (mono_debug_get_domain_data): Make this function static.
27213
27214 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27215
27216         * gc.c, object.h: add nice GC handle API for embedders.
27217
27218 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
27219
27220         * reflection.c: more changes for the new api
27221
27222         * object.c: When we reflect on a field w/ a constant value, it
27223         will not have a memory location, so we must access metadata. Also,
27224         allow easier reading of strings so that we can read them from
27225         the constant data.
27226
27227         * class.c (mono_class_layout_fields): no need for literal fields here.
27228
27229         * class-internals.h: api changes for const fields
27230
27231         * icall.c (ves_icall_get_enum_info): use new apis for const fields
27232
27233 2004-07-06  Martin Baulig  <martin@ximian.com>
27234
27235         * mono-debug.h: Increment version number to 44.
27236
27237         * mono-debug.c (mono_debug_add_wrapper): The second argument is
27238         now a gpointer, rewrote this whole method.
27239
27240         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
27241         function.  Add information about the wrapper in a new "misc table".
27242
27243         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
27244         for the new misc table.
27245
27246 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
27247
27248         * metadata-internals.h image.c: Add a cache for helper signatures.
27249
27250         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
27251
27252 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
27253
27254         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
27255         delegates from a delegate. Fixes #61033.
27256         
27257         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
27258         marshalling of stringbuilder arrays. Fixes #59900.
27259
27260 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
27261
27262         * icall.c: Add EnumBuilder:setup_enum_type icall.
27263
27264 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
27265
27266         * icall.c: Added a new icall for the property version of
27267         OffsetOfStringData.
27268
27269 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
27270
27271         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
27272         it has a constant size across platforms.
27273
27274         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
27275         stack trace.
27276
27277 2004-06-29  Martin Baulig  <martin@ximian.com>
27278
27279         * mono-debug.c (mono_debug_add_method): Protect the whole function
27280         in mono_debugger_lock(), not just parts of it.
27281
27282 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
27283
27284         * reflection.c: make sure padding bytes in heaps are zeroed.
27285
27286 2004-06-24  David Waite  <mass@akuma.org>
27287
27288         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
27289         image.c, loader.c, locales.c, marshal.c, metadata.c,
27290         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
27291         string-icalls.c, threads.c: change to C90-style comments from C99 /
27292         C++ -style
27293
27294 2004-06-24  Dick Porter  <dick@ximian.com>
27295
27296         * threads.c
27297         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
27298         return createdNew.  Fixes bug 60412.
27299
27300         * threads-types.h: 
27301         * icall.c: Add createdNew parameter to CreateMutex icall
27302
27303 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27304
27305         * reflection.c, object-internals.h: save default value in params.
27306
27307 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27308
27309         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
27310         no need to build a new path combining that with the application base.
27311         Fixes bug #60442.
27312
27313 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
27314
27315         * reflection.c: fixed minor standard compliance issues.
27316
27317 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27318
27319         * reflection.c: fixed issue with encoding some custom attributes
27320         (arrays in properties and fields, bug #60411).
27321
27322 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27323
27324         * reflection.c: fix start address when copying the public key token.
27325
27326 2004-06-23  Martin Baulig  <martin@ximian.com>
27327
27328         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
27329         the `exc' object in a static object to put it into the GC's root set.
27330
27331 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
27332
27333         * reflection.c: make mono_reflection_setup_internal_class ()
27334         callable a second time to setup a new parent class.
27335
27336 2004-06-23  Dick Porter  <dick@ximian.com>
27337
27338         * threads.c: Check for WAIT_IO_COMPLETION return values.
27339
27340 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
27341
27342         * appdomain.c: Removed the g_free on the public key token. Now copy 
27343         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
27344         * assembly.c: Added public key token string value when loading 
27345         assemblies. Fix bug #60439.
27346         * icall.c: Added missing informations (like public key) in 
27347         GetReferencedAssemblies. Fix #60519.
27348         * image.h: Changed definition for public key token from const char*
27349         public_tok_value to guchar public_key_token [17];
27350         * reflection.c: Updated for changes to public key token.
27351
27352 2004-06-22  Lluis Sanchez Gual
27353
27354         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
27355         for the field in base classes.
27356
27357 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27358
27359         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
27360         mark headers as not supported, they are installed only for use by the
27361         debugger.
27362
27363 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
27364
27365         * *.c, *.h: avoid namespace pollution in public headers.
27366
27367 2004-06-21  Martin Baulig  <martin@ximian.com>
27368
27369         * exception.c (mono_get_exception_security): It's in
27370         "System.Security", not in "System".
27371
27372         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
27373         the exception classes.
27374
27375 2004-06-21  Martin Baulig  <martin@ximian.com>
27376
27377         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
27378         Protect the exception object from being finalized.
27379
27380 2004-06-21  Martin Baulig  <martin@ximian.com>
27381
27382         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
27383         public function.
27384
27385 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
27386
27387         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27388         if it was not loaded before. Fix parts of #60439.
27389
27390 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27391
27392         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27393         code that was broken since Ben's change: wrappers are now
27394         dependent on the method signature only again.
27395
27396 2004-06-21  Martin Baulig  <martin@ximian.com>
27397
27398         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27399         added interface support.
27400
27401 2004-06-21  Martin Baulig  <martin@ximian.com>
27402
27403         * class.c (mono_vtable_get_static_field_data): New public method.
27404
27405 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27406
27407         * filewatcher.c : Windows build fix to be compliant with API changes.
27408
27409 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27410
27411         * class.h, class.c: more accessors.
27412         * metadata.h, metadata.c: prepare for hiding MonoType and
27413         MonoMethodSignature: people should use the accessors from now on
27414         outside of the tree.
27415
27416 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27417
27418         * *.c, *.h: more API cleanups.
27419
27420 2004-06-18  Jackson Harper  <jackson@ximian.com>
27421
27422         * assembly.c: Trace loading assemblies.
27423         * loader.c: Trace loading native libraries.
27424         * mono-config.c: Trace loading config files.
27425         
27426 2004-06-18  Dick Porter  <dick@ximian.com>
27427
27428         * locales.c: Tell ICU the lengths of strings, it can cope with
27429         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27430
27431 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27432
27433         * image.c: swapped name/filename;
27434
27435 2004-06-18  Martin Baulig  <martin@ximian.com>
27436
27437         * mono-debug-debugger.c (write_class): Write the parent class at
27438         the end of the header.
27439
27440 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27441
27442         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27443
27444 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27445
27446         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27447         (bundle_obj): New conditional define.
27448         (BUILT_SOURCES): Remove.
27449         ($(bundle_srcs)): Make parallel-make safe.
27450         (libmonoruntime_la_LIBADD): Make unconditional.
27451         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27452         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27453
27454 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27455
27456         * culture-info-tables.h: It was inconsistent with the latest
27457           supp info files.
27458
27459 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27460
27461         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27462         be loaded.
27463
27464         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27465         with gcc 2.95.
27466
27467 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27468
27469         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27470         cleaned up public header threads.h.
27471
27472 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27473
27474         * Makefile.am, *.c, *.h: more API cleanups.
27475
27476 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27477
27478         * Makefile.am: removed monosn from compilation.
27479         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27480         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27481         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27482         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27483         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27484         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27485
27486 2004-06-15  Jackson Harper  <jackson@ximian.com>
27487
27488         * assembly.c: Make locales lower case when searching the GAC for
27489         assemblies. gacutil will always make locales lowercase when
27490         installing so this effectively makes them case insensitive.
27491         
27492 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27493
27494         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27495         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27496           parameter which allows to choose whether the wait can be interrupted or 
27497           not. Also added the method mono_monitor_enter(), which locks the monitor
27498           using an infinite wait and without allowing interruption.
27499           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27500           interrupted.
27501         * object.h: Added new fields in MonoThread. suspend_event holds the event
27502           used to susped/resume the thread. synch_lock is the lock object to use for
27503           modifying the thread state.
27504         * threads.c: Use the new synch_lock object for locking, instead of "this",
27505           which can generate deadlocks.
27506           Moved thread state change in Thread.Sleep and Thread.Join from managed
27507           to unmanaged code. This avoids a deadlock when the thread was suspended
27508           just after acquiring the thread lock.
27509           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27510           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27511           which is not fully implemented in the io-layer.
27512         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27513
27514 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27515
27516         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27517         threads-types.h: more API cleanups.
27518
27519 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27520
27521         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27522         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27523         threadpool.c, threads.c: first pass at the exported API cleanup.
27524
27525 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27526
27527         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27528
27529 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27530
27531         * icall.c: added internalGetHome.
27532
27533 2004-06-14  Dick Porter  <dick@ximian.com>
27534
27535         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27536         possible to return successfully when '.' or '..' were the only
27537         entries in a directory, but were skipped.  The MonoIOStat was not
27538         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27539         Fixes bug 59574.
27540
27541 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27542
27543         * reflection.c: make binaries run on .Net 1.1 by default.
27544
27545 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27546
27547         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27548
27549 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27550
27551         * marshal.c: keep track of struct size with explicit layout
27552         (bug #59979).
27553
27554 2004-06-12  Martin Baulig  <martin@ximian.com>
27555
27556         * mono-debug-debugger.c: Comment out a debugging g_message().
27557
27558 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27559
27560         * reflection.c, reflection.h: do not free custom attrs that are cached.
27561         * icall.c: use braces to make code clearer.
27562
27563 2004-06-11  Martin Baulig  <martin@ximian.com>
27564
27565         * class.h (MonoInflatedField): New type.
27566         (MonoClassField): Replaced `MonoType *generic_type' with
27567         `MonoInflatedField *generic_info'.
27568
27569         * icall.c
27570         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27571
27572 2004-06-11  Martin Baulig  <martin@ximian.com>
27573
27574         * reflection.c (mono_image_create_method_token): Correctly encode
27575         varargs methods.
27576
27577 2004-06-11  Martin Baulig  <martin@ximian.com>
27578
27579         * metadata.c (mono_metadata_parse_method_signature): When parsing
27580         a MethodDef which has VarArgs, also set sentinelpos if we don't
27581         have any parameters.
27582
27583 2004-06-11  Martin Baulig  <martin@ximian.com>
27584
27585         * verify.c (mono_method_verify): In CEE_CALL, use
27586         mono_method_get_signature() to get the method's signature, unless
27587         we're a PInvoke method.
27588
27589 2004-06-10  Jackson Harper  <jackson@ximian.com>
27590
27591         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27592         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27593         logical name as the supplied path is just a prefix to the gac not
27594         the direct path to it.
27595         
27596 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27597
27598         * reflection.c: make the token for a created method match
27599         the token of the MethodBuilder it was created from
27600         (IKVM requires this behaviour now).
27601
27602 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27603
27604         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27605         reflection.c, socket-io.c: leak fixes.
27606
27607 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27608
27609         * icall.c: handle sentinel pos in vararg methods in position different
27610         from 0.
27611
27612 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27613
27614         * culture-info-tables.h: freshly generated.
27615
27616 2004-06-09  Martin Baulig  <martin@ximian.com>
27617
27618         * loader.c (mono_get_method_constrained): Call `mono_class_init
27619         (constrained_class)'.   
27620
27621 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27622
27623         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27624         any methods. Fixes #59629.
27625
27626 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27627
27628         * culture-info-tables.h: reflecting locale-builder updates.
27629
27630 2004-06-08  Dick Porter  <dick@ximian.com>
27631
27632         * object.h:
27633         * locales.c: Fixed compile warnings, including a real bug in
27634         CompareInfo_internal_compare.
27635         
27636 2004-06-08  Dick Porter  <dick@ximian.com>
27637
27638         * locales.c
27639         (ves_icall_System_Globalization_CompareInfo_internal_index):
27640         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27641         Double-check the resuls of usearches, because ICU currently
27642         ignores most of the collator settings here.  Fixes bug 59720.
27643         
27644 2004-06-08  Dick Porter  <dick@ximian.com>
27645
27646         * locales.c
27647         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27648         Fix memory leak and segfault-causing typo.  No idea how this one
27649         lasted so long without being noticed.
27650
27651 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27652
27653         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27654         any methods. Fixes #59629.
27655
27656 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27657
27658         * assembly.c:
27659         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27660         own the critical section before). Removed dead code (that's done
27661         in the preload hook).
27662
27663         (mono_assembly_load_with_partial_name): call the preload hook.
27664
27665 2004-06-08  Martin Baulig  <martin@ximian.com>
27666
27667         * metadata.c (mono_metadata_signature_alloc): Default
27668         `sentinelpos' to -1.
27669
27670         * reflection.c (mono_image_get_array_token): Likewise.
27671
27672 2004-06-08  Martin Baulig  <martin@ximian.com>
27673
27674         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27675
27676         * metadata.c (mono_metadata_parse_method_signature): When parsing
27677         a MethodDef which has VarArgs, set sentinelpos.
27678
27679         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27680         `gint16' since we're using -1 for non-varargs methods.
27681
27682         * reflection.c
27683         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27684         (method_encode_signature): Added varargs support.
27685         (method_builder_encode_signature): Likewise.
27686         (mono_image_get_varargs_method_token): New static method.
27687         (mono_image_create_method_token): New public method; this is
27688         called via an icall instead of mono_image_create_token() when
27689         calling a varargs method.       
27690
27691 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27692
27693         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27694
27695 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27696
27697         * culture-info-tables.h : Reflecting the latest locale-builder that
27698           fixed empty array representation ({} to {0}).
27699
27700 2004-06-07  Jackson Harper  <jackson@ximian.com>
27701
27702         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27703         looking up extra gac paths. This allows MONO_GAC_PATH to act
27704         exactly like a prefix.
27705         
27706 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27707
27708         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27709         type name before modifying it. Fixes #59405.
27710
27711 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27712
27713         * culture-info.h: added fields for "all datetime patterns".
27714         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27715           _construct_datetime_format ()): fill xxx_patterns fields.
27716         * object.h: added fields for "all datetime patterns" to
27717           MonoDateTimeFormatInfo.
27718         * culture-info-tables.h: reflecting locale-builder updates.
27719
27720 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27721
27722         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27723         the event has no add and remove methods. Fixes #59629.
27724
27725 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27726
27727         * object.c: Fixed possible integer overflow when allocating large
27728         strings.
27729
27730 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27731
27732         * culture-info-tables.h: reflecting locale-builder updates.
27733
27734 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27735
27736         * culture-info-tables.h: reflecting locale-builder updates.
27737
27738 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27739
27740         * culture-info-tables.h: reflecting locale-builder updates.
27741
27742 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27743
27744         * threads.c: Made Thread.Sleep abortable.
27745
27746 2004-06-02  Martin Baulig  <martin@ximian.com>
27747
27748         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27749
27750         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27751
27752 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27753
27754         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27755
27756 2004-05-30  Jackson Harper  <jackson@ximian.com>
27757
27758         * reflection.c: Do not hardcode assembly versions or public key
27759         tokens anymore. All of this except the corlib section was dead
27760         code anyways.
27761         
27762 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27763
27764         * object.c (mono_runtime_invoke_array): Automatically create boxed
27765         objects for byref valuetypes if needed. Fixes #59300.
27766         
27767         * object.c (mono_method_return_message_restore): Handle 
27768         MONO_TYPE_OBJECT as well.
27769
27770 2004-05-28  Jackson Harper  <jackson@ximian.com>
27771
27772         * reflection.c: The modified type encoding was causing build
27773         problems. Reverted for now.
27774         
27775 2004-05-28  Jackson Harper  <jackson@ximian.com>
27776
27777         * reflection.c/h: Take an assembly ref so that we dont create
27778         fully qualified names when encoding types in the same assembly as
27779         the custom attribute being emitted.
27780         * appdomain.c: Increment version number.
27781         
27782 2004-05-26  Duncan Mak  <duncan@ximian.com>
27783
27784         * icall.c
27785         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27786         Set the full version number (major, minor, build, revision).
27787
27788 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27789
27790         * marshal.c (emit_struct_conv): increment src/dst after blit
27791         (mono_marshal_get_managed_wrapper,
27792         mono_marshal_get_native_wrapper): make sure we have marshalling
27793         info before marshalling params (info computation affects
27794         blittable)
27795
27796         * class.c (class_compute_field_layout): correctly deal with
27797         blittable
27798         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27799         value types (as per what windows dows by default)
27800         (mono_class_setup_mono_type): System.ValueType is blittable
27801         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27802         blittable
27803
27804         * marshal.c (mono_marshal_load_type_info): flag types  as
27805         non-blittable if the native layout doesn't match the managed
27806         layout
27807
27808 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27809
27810         * appdomain.c: don't add stuff in the private search path that is
27811         above the application base. If application base is not set, there's
27812         no private search path.
27813
27814 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27815
27816         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27817         byref struct arguments in native->managed marshalling.
27818
27819 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27820
27821         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27822         cache methods using signature (special case for methods
27823         that are value type or string class)
27824         
27825         * image.c (mono_image_close): clean up allocated GSList's
27826         in runtime_invoke_cache.
27827
27828 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27829
27830         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27831         there's no MONO_CFG_DIR environment variable defined.
27832
27833 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27834
27835         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27836
27837 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27838
27839         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27840           is interrumped.
27841         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27842           before waiting for it, and call CloseHandle after the wait to unref it.
27843           This will make sure that handles are not disposed too early.
27844
27845 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27846
27847         * appdomain.c:
27848         * appdomain.h:
27849         * icall.c: removed
27850         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27851         needed now.
27852
27853         * object.c: se the application_base only for the domain that runs
27854         Main. Fixes bug #59216,
27855
27856 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27857
27858         * appdomain.c:
27859         * object.c: only the domain in which Main is run have
27860         SetupInformation.ConfigurationFile set, so moved a few lines from
27861         appdomain.c to object.c.
27862
27863 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27864
27865         * appdomain.c: we tried to load [name].(dll|exe), but according
27866         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27867         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27868         There's a test case attached to bug #58922.
27869
27870 2004-05-27  Dick Porter  <dick@ximian.com>
27871
27872         * icall.c:
27873         * file-io.c: Implemented icalls for locking and unlocking regions
27874         in a file.
27875         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27876         FALSE on error (fixes both compiler warning and real bug.)
27877
27878 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27879
27880         * culture-info-tables.h: reflecting locale-builder updates.
27881
27882           (Added missing ChangeLog entry for 05/26)
27883
27884 2004-05-27  Jackson Harper  <jackson@ximian.com>
27885
27886         * locales.c: Fix some cut and paste errors.
27887         
27888 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27889
27890         * mono-config.c: set the correct path for config. directory on windows.
27891
27892 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27893
27894         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27895           on win32.
27896
27897 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27898
27899         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27900         from pinvoke functions.
27901         
27902         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27903
27904 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27905
27906         * culture-info-tables.h: reflecting locale-builder updates.
27907
27908 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27909
27910         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27911         #59086.
27912
27913 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27914
27915         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27916         * icall.c: Modified icalls for RNG.
27917         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27918         Windows (CryptoAPI).
27919
27920 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27921
27922         * locales.c: Fix build.
27923
27924 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27925
27926         * culture-info-tables.h: reflecting locale-builder updates.
27927
27928 2004-05-25  Jackson Harper  <jackson@ximian.com>
27929
27930         * locales.c: When creating the current culture use the $LANGs
27931         specific culture. So DateTimeFormat and NumberFormat entries are created.
27932         
27933 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27934
27935         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27936         a char array as parameter.
27937
27938 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27939
27940         * image.c: In mono_image_open(), always use an absolute path name to
27941           look for already loaded images.
27942
27943 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27944
27945         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27946         missing in the windows build (like older cygwin include files).
27947
27948 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27949
27950         * icall.c: Fixed check for possible integer overflow in Buffer_
27951         BlockCopy icall. Replaced comments style // by /* */.
27952
27953 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27954
27955         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27956         
27957         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27958         check after MONO_VTADDR. Fixes pinvoke2.exe.
27959
27960         * marshal.h marshal.c metadata.h: Add beginnings of support for
27961         ftnptr -> delegate marshalling.
27962
27963 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27964
27965         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27966         * threads.c: Fix warnings.
27967
27968 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27969
27970         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27971         * icall.c: Registered icalls for Suspend and Resume.
27972         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27973           Thread.Abort.
27974         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27975         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27976         * process.c: Use WaitForSingleObjectEx.
27977         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27978           checkpoints.
27979         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27980           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27981           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27982           background threads. Added basic support for Abort in Windows.
27983           Start new threads using a managed delegate invoke wrapper. This wrapper
27984           has an interruption checkpoint that is needed since an interruption
27985           can be requested before the thread leaves the unmanaged code that starts 
27986           the thread.
27987         * marshal.c: Added interruption checkpoint after every native call, and
27988           also before managed calls for wrappers called from unmanaged code to
27989           go into managed code.
27990         * object.h: Added new field in MonoThread to keep track of interruption
27991           requests.
27992
27993 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27994
27995         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27996         calls.
27997
27998 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27999
28000         * appdomain.c:
28001         * assembly.c:
28002         * gc.c:
28003         * locales.c:
28004         * mono-config.c:
28005         * rand.c: getenv -> g_getenv (windows!)
28006
28007         * process.c: complete_path is also used on non-windows platforms.
28008
28009 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28010
28011         * icall.c: new signature for Process_Start.
28012
28013         * process.[ch]: new signature for Process_Start. If we're on windows
28014         and UseShellExecute is false, we have to search for the program by
28015         ourselves if we don't get a full path.
28016
28017 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
28018
28019         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
28020         marshalling and call CleanUpNativeData if needed. Fixes #58646.
28021
28022 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28023
28024         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
28025         Fixes bug #58373.
28026
28027 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28028
28029         * process.c: use double quotes to quote program name and arguments on
28030         windows. Fixes bug #58575.
28031
28032 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28033
28034         * file-io.c: don't return "." and ".." when using windows Find*File.
28035
28036 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
28037
28038         * marshal.c: Don't pass wrappers to message init because method 
28039         addressed used to lookup metadata. part of remoting[2|3] fix.
28040
28041 2004-05-15  Jackson Harper  <jackson@ximian.com>
28042
28043         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
28044         path is essentially the same as MONO_PATH except that it points to
28045         GACs instead of lib directories.
28046         * loader.h: The user gac is gone so we dont need function to
28047         enable/disable it.
28048         * mono-config.c: user gac option is now gone.
28049         
28050 2004-05-15  Jackson Harper  <jackson@ximian.com>
28051
28052         * culture-info.h: Make defines more consistent, add calendar data
28053         to the culture info table.
28054         * culture-info-tables.h: Add basic calendar data. Basically
28055         everyone gets default gregorian until all the data is
28056         updated.
28057         * locales.c: Use the new consistent defines. Set calendar data for
28058         culture info objects.
28059         * object.h: add a field for calendar data to CultureInfo
28060         
28061 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
28062
28063         * image.c: image->runtime_invoke_cache is keyed on signatures now.
28064         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
28065         a signature.
28066         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
28067         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
28068         an extra param that is the pointer of the method to invoke. The IL for
28069         the invoke method is no longer specific to the method, but to the
28070         signature of the method. Thus, we can share the same code for multiple
28071         methods. This reduces the number of methods that have to be compiled.
28072
28073 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
28074
28075         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
28076
28077         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28078
28079         * icall.c: Optimize Buffer.BlockCopy.
28080
28081 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28082
28083         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
28084         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
28085         quote). Changed them to "MMMM yyyy".
28086
28087 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
28088
28089         * rand.c
28090         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
28091
28092 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
28093
28094         * reflection.h: Updated after changes to managed structures.
28095
28096         * appdomain.c: Bump corlib version.
28097
28098 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28099
28100         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
28101         windows.
28102
28103 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28104
28105         * Makefile.am: link to ../os/libmonoos.la on windows.
28106
28107         * assembly.c:
28108                 -If MONO_DEBUG, warn about non-existing directories in
28109                 MONO_PATH.
28110                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
28111                 compile time variable.
28112                 -Removed init_default_path and call mono_set_rootdir from
28113                 libmonoos.a instead (windows only).
28114
28115         * assembly.h: declare mono_assembly_getrootdir().
28116
28117         * domain.c:
28118         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
28119
28120         * loader.c: s/getenv/g_getenv/
28121
28122 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
28123
28124         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
28125
28126         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
28127
28128         * metadata.h: Add new marshalling conversions.
28129
28130         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
28131         function.
28132
28133         * reflection.c (mono_reflection_get_type): Lookup the type in all
28134         modules of a multi-module assembly. Fixes #58291.
28135
28136 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
28137
28138         * threads.c: Before aborting a background, set the StopRequested
28139         state.  This avoids throwing the Abort exception.
28140         In mono_thread_manage, don't continue with the shutdown until all
28141         aborted threads have actually stopped.
28142
28143 2004-05-10  Jackson Harper  <jackson@ximian.com>
28144
28145         * locales.c: Remove the modifier from culture names.
28146         
28147 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28148
28149         * Makefile.am: monosn is not installed any more. It has been deprecated
28150         in favor of sn.
28151
28152 2004-05-07  Jackson Harper  <jackson@ximian.com>
28153
28154         * locales.c
28155         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
28156         Fix array construction, add bailout if the length is 0.
28157
28158 2004-05-07  Dick Porter  <dick@ximian.com>
28159
28160         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
28161         machine doesn't have a DNS entry.  Patch by Urs Muff
28162         (umuff@quark.com), fixes bug 57928.
28163
28164 2004-05-06  Jackson Harper  <jackson@ximian.com>
28165
28166         * reflection.c: Handle null PublicTokens properly. alloc mem for
28167         assembly names culture so we dont crash when freeing it.
28168         
28169 2004-05-06  Jackson Harper  <jackson@ximian.com>
28170
28171         * assembly.c: Check the usergac when loading with partial names.
28172         
28173 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28174
28175         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
28176         does nothing for now (not required for Linux/Windows) but the class
28177         library can call it (and a newer or modified runtime could need it).
28178         * icall.c: Registred icall.
28179
28180 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28181
28182         * loader.c: prints a message on module loading error we set MONO_DEBUG
28183         environment variable.
28184
28185 2004-05-05  Jackson Harper  <jackson@ximian.com>
28186
28187         * appdomain.c: Handle PublicKeyToken=null properly.
28188         
28189 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28190
28191         * environment.c|h: Added icall ves_icall_System_Environment_
28192         GetOSVersionString to get the current OS version as a string.
28193         * icall.c: Registred icall.
28194
28195 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
28196
28197         * object.c: in mono_object_get_virtual_method(), take into account that
28198         non-virtual methods don't have a slot in the vtable. Check needed when
28199         the object is a proxy.
28200
28201 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
28202
28203         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
28204         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
28205
28206         * object.c (mono_class_compute_gc_descriptor): Fix warning.
28207
28208         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
28209         passed when a valuetype is expected.
28210
28211         * object.c (mono_unhandled_exception): Only set the exit code if the
28212         exception happens in the main thread. Fixes thread5.exe.
28213
28214         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
28215         invalid names. Fixes #58047.
28216
28217 2004-05-03  Jackson Harper  <jackson@ximian.com>
28218
28219         * assembly.c: This line was committed accidently and is unneeded.
28220         
28221 2004-05-03  Jackson Harper  <jackson@ximian.com>
28222
28223         * icall.c: Add new icall for Assembly::LoadWithPartialName
28224         * assembly.c/.h: new function that probes the GAC to load partial
28225         assembly names by Paolo Molaro.
28226         
28227 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28228
28229         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
28230         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
28231         (type_get_fully_qualified_name): Added PublicKeyToken when building a
28232         full type name.
28233
28234 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28235
28236         * appdomain.c: fixed check for 'neutral' culture and removed warning.
28237         * reflection.c: fix bug when parsing a full type name and Version is not
28238         the last thing in the string.
28239
28240 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
28241
28242         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
28243         crashes when it is freed.
28244
28245 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28246
28247         * assembly.c: print the compat warning to stderr.
28248
28249 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
28250
28251         * assembly.c (mono_assembly_load_references): Add a compatibility
28252         hack to run old applications that might be still referencing the
28253         3300-based assemblies, only do this for System.xxx.
28254
28255 2004-05-01  Jackson Harper  <jackson@ximian.com>
28256
28257         * appdomain.c: If the culture is neutral we set it to "".
28258         
28259 2004-04-29  Jackson Harper  <jackson@ximian.com>
28260
28261         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
28262
28263 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
28264  
28265         * string-icalls.c: added low overhead function for copying chars
28266         * icall.c: added needed icall for the above function
28267  
28268 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28269
28270         * icall.c: fix return value of get_global_assembly_cache.  Implemented
28271         Environment.GetLogicalDrives.
28272
28273 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
28274
28275         * rand.c: try and talk to egd or prngd
28276         for random bytes if opening devices fail.
28277
28278 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
28279
28280         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
28281         alignment for the type using the native alignment of its members 
28282         instead of using klass->min_align.
28283
28284         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
28285
28286 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28287
28288         * file-io.c:
28289         * socket-io.c: added check for sys/aio.h.
28290
28291 2004-04-28  Dick Porter  <dick@ximian.com>
28292
28293         * threads.c: Don't abort a thread thats already aborting, when
28294         terminating everything.
28295
28296 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28297
28298         * icall.c: added 2 new async calls for Socket.
28299
28300         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
28301         IO on *nix systems.
28302
28303         * threadpool.c: removed unused variable.
28304
28305 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
28306
28307         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
28308
28309 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
28310
28311         * locales.c: put back string_invariant_tolower () and
28312         string_invariant_toupper ().
28313
28314 2004-04-26 David Waite <mass@akuma.org>
28315
28316         * file-io.h:
28317         * socket-io.h:
28318         * threads.h:
28319         * unicode.h: remove comma from end of enumeration declarations
28320
28321 2004-04-26 David Waite <mass@akuma.org>
28322
28323         * debug-mono-symfile.h:
28324         * decimal.c:
28325         * mono_debug.h:
28326         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
28327
28328
28329 2004-04-26  Jackson Harper  <jackson@ximian.com>
28330
28331         * appdomain.c: Increment version number.
28332         
28333 2004-04-26  Jackson Harper  <jackson@ximian.com>
28334
28335         * appdomain.c: Set assembly references public token value when
28336         PublicKeyToken is specified, not the hash_value. Free public token
28337         values when free assembly name data. Previously the public key
28338         token was hex decoded, however we are using hex encoded public key
28339         tokens, so this is not neccasary.
28340         * assembly.c: Lookup assemblies in the gac if their public token
28341         value is set. Add function to allow enabling user gac
28342         lookups. Specify whether or not the assembly was loaded from the
28343         GAC. Compare full assembly names when checking the cache for
28344         assemblies (Temporarily disabled see comment in code). Remove
28345         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
28346         specifies trace-loader they get extra info to stdout on the
28347         loading of assemblies.
28348         * image.h: Add a field for an assembly references public token
28349         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
28350         whether an assembly has been loaded from the GAC.
28351         * image.c: Remove a corlib -> mscorlib name mapping.
28352         * loader.h: Add function to enable/disable the user gac.
28353         * mono-config.c: Check if the usergac is enabled in the config
28354         file.
28355         * icall.c: New icall to determine whether or not an assembly has
28356         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
28357         * tabldefs.h: Add constant for assemblyref flag that specifies a
28358         full public key is used instead of a public token.
28359         * reflection.c: Remove mscorlib -> corlib mappings. Set
28360         PublicTokenValue instead of hash value. This value is a hex
28361         string so it does not need to be expanded.
28362
28363 2004-04-26  Martin Baulig  <martin@ximian.com>
28364
28365         * mono-debug-debugger.c (mono_debugger_initialize): Set
28366         `mono_debugger_initialized' before calling mono_debug_lock().
28367
28368 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
28369
28370         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
28371           InternalToUpper/InternalToLower.
28372         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
28373           removed invariant culture shortcut.  This is now done in managed code.
28374         * locales.c: (string_invariant_toupper/tolower) removed.
28375
28376 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28377
28378         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
28379         Added Poll internal call.
28380
28381         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
28382         call for Poll. Select was too heavy for polling a single socket.
28383
28384         * threadpool.[ch]: added mono_threadpool_cleanup.
28385         * threads.c: use it. Don't use Thread_Abort on windows.
28386
28387 2004-04-23  Martin Baulig  <martin@ximian.com>
28388
28389         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28390
28391 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28392
28393         * icall.c: Registred new icalls for key pair protection and added an
28394         icall for Environment.GetFolderPath on Windows.
28395         * security.c|h: Added new icalls for key pair protection.
28396
28397 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28398
28399         * socket-io.c: don't display the non-supported family warning for known
28400         families. Now this is not displayed on windows when checking support
28401         for IPv4/IPv6.
28402
28403 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28404
28405         * class.c: don't display the layout warning for static fields.
28406
28407 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28408
28409         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28410         * locales.c, locales.h: Added new icalls for culture-specific
28411         Char.ToLower and Char.ToUpper.
28412
28413 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28414
28415         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28416         by David Waite.
28417
28418 2004-04-20  Martin Baulig  <martin@ximian.com>
28419
28420         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28421         of the type name before passing it to mono_reflection_type_from_name().
28422
28423 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28424
28425         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28426         encodings here. Fixes #56965.
28427
28428 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28429
28430         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28431         fix test on strstr result not that I can see anything that
28432         relies on the result.
28433
28434 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28435
28436         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28437         Fixes #57081.
28438
28439         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28440
28441         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28442         function to determine which marshalling to use for strings. Fixes
28443         #56965.
28444
28445         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28446
28447         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28448
28449 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28450
28451         * icall.c: #include mono-config.h
28452
28453 2004-04-15  Jackson Harper  <jackson@ximian.com>
28454
28455         * culture-info-tables.h: Fix date formats for en-US culture.
28456         
28457 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28458
28459         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28460         ThreadPool.SetMinThreads.
28461         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28462         ThreadPool.SetMinThreads.
28463
28464 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28465
28466         * mono-config.c: also load the .config file in the directory
28467         where the assembly was found.
28468
28469 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28470
28471         * assembly.c: load per-assembly config files.
28472         * icall.c: decrapified code to get the config dir and moved to
28473         mono-config.c.
28474         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28475         per-assembly config files. When doing a dll map lookup give precedence
28476         to the per-assembly data.
28477
28478 2004-04-14  Martin Baulig  <martin@ximian.com>
28479
28480         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28481         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28482         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28483
28484         * mono-debugger-debugger.c: While the debugger is locked, remember
28485         whether the symbol tables have changes and send one single
28486         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28487
28488 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28489
28490         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28491
28492         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28493         function.
28494
28495         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28496         account when marshalling string arrays. Fixes #56965.
28497
28498 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28499
28500         * icall.c: Add new icalls mapping for security.
28501         * security.c|h: Add internal calls for WindowsIdentity,
28502         WindowsImpersonationContext and WindowsPrincipal.
28503
28504 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28505
28506         * class.c: Added comment to ensure the System.MonoDummy class
28507         is removed when no longer necessary
28508
28509 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28510
28511         * appdomain.c: Pass arguments to the bootstraping exceptions to
28512         minimize JITed methods at boot
28513
28514         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28515         second string to be null.
28516
28517         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28518         Change the protocol to minimize the JIT methods at startup.  Now
28519         it Returns the internal codepage, if the value of "int_code_page"
28520         is 1 at entry, and we can not compute a suitable code page
28521         number, returns the code page as a string.
28522
28523 2004-04-13  Jackson Harper  <jackson@ximian.com>
28524
28525         * culture-info-tables.h: Fix number of decimal digits for all
28526         english locales.
28527
28528 2004-04-13  Jackson Harper  <jackson@ximian.com>
28529
28530         * icall.c: Clairfy out of sync error message. It is not always
28531         your corlib that is out of sync.
28532
28533 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28534
28535         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28536         properties when only the set accessor is overriden. Fixes #55874.
28537
28538 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28539
28540         * assembly.c (mono_assembly_load_references): Make this thread safe.
28541         Fixes #56327.
28542
28543 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28544
28545         * monosn.c: Add missing initialization calls.
28546
28547 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28548
28549         * locales.c:
28550         ves_icall_System_Globalization_CultureInfo_construct_number_format
28551         Fix g_assert so it compiles on fussier compilers re int/ptr
28552         mismatch
28553
28554 2004-04-08  Dick Porter  <dick@ximian.com>
28555
28556         * socket-io.h:
28557         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28558         53992.  Also rearrange the code so that the internal calls return
28559         an error value and exceptions are thrown from managed code.
28560
28561         * icall.c: Add type info to the socket icalls.
28562
28563 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28564
28565         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28566         owes me a beer.
28567
28568 2004-04-07  Martin Baulig  <martin@ximian.com>
28569
28570         * class.c (mono_class_from_generic_parameter): Don't default
28571         `klass->parent' to `mono_defaults.object_type'.
28572
28573 2004-04-07  Martin Baulig  <martin@ximian.com>
28574
28575         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28576         `param->pklass->reflection_info'.       
28577
28578 2004-04-07  Jackson Harper  <jackson@ximian.com>
28579
28580         * culture-info-tables.h: Fix date separator symbol.
28581         
28582 2004-04-07  Martin Baulig  <martin@ximian.com>
28583
28584         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28585         from System.Type to System.MonoType.
28586
28587 2004-04-07  Martin Baulig  <martin@ximian.com>
28588
28589         * reflection.h
28590         (MonoReflectionGenericParam): Added `has_reference_type' and
28591         `has_value_type' fields.
28592
28593         * reflection.c (mono_image_get_generic_param_info): Encode the
28594         correct flags if we have the `class' or `struct' constraint.
28595
28596 2004-04-07  Martin Baulig  <martin@ximian.com>
28597
28598         * reflection.h
28599         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28600
28601 2004-04-07  Jackson Harper  <jackson@ximian.com>
28602
28603         * appdomain.c: Revert extra patches, just wanted to bump the
28604         version number.
28605         
28606 2004-04-07  Jackson Harper  <jackson@ximian.com>
28607
28608         * Makefile.am: Add culture-info private headers.
28609         * icall.c: Add new icalls for contructing locales.
28610         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28611         * locales.h: Declare new culture info construction methods.
28612         * object.h: Add new fields used to avoid the CultureMap to
28613         MonoCultureInfo.
28614         * culture-info.h: Definition of structs used in the culture info
28615         tables.
28616         * culture-info-tables.h: Autogenerated tables that contain culture
28617         info data. This file was generated with the locale-builder tool.
28618         * appdomain.c: Incement corlib version number.
28619         
28620 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28621
28622         * appdomain.c: (mono_runtime_init) move mono_thread_init
28623         to before mono_object_new calls so critical sections
28624         are initialized before use.
28625
28626 2004-04-07  Martin Baulig  <martin@ximian.com>
28627
28628         * icall.c
28629         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28630         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28631         (ves_icall_MonoGenericParam_initialize): Removed.
28632         (monogenericparam_icalls): Removed.
28633         (generictypeparambuilder_icalls): Added new table for
28634         System.Reflection.Emit.GenericTypeParameterBuilder.
28635
28636         * reflection.c
28637         (mono_reflection_define_generic_parameter): Removed.
28638         (mono_reflection_initialize_generic_parameter): This is now called
28639         from GenericTypeParameterBuilder's .ctor.
28640
28641 2004-04-06  Martin Baulig  <martin@ximian.com>
28642
28643         * class.c (mono_class_init): Don't inflate nested classes in a
28644         generic instance.
28645         (mono_type_get_name_recurse): Include the generic arguments for
28646         generic instances and generic type declarations.
28647         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28648         (_mono_class_get_instantiation_name): Removed.
28649         (mono_class_create_generic): Always use `gklass->name' as our name.
28650
28651         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28652
28653         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28654         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28655         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28656         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28657         closed generic methods here.
28658
28659         * reflection.c
28660         (mono_reflection_generic_inst_get_nested_types): Removed.
28661         (inflate_mono_method): Copy the generic parameters from the
28662         MonoMethodHeader into out MonoGenericMethod.
28663
28664 2004-04-06  Martin Baulig  <martin@ximian.com>
28665
28666         * row-indexes.h
28667         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28668
28669         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28670
28671         * reflection.c (build_compressed_metadata): If we have any entries
28672         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28673         set the header version to 1.1.
28674
28675 2004-04-06  Martin Baulig  <martin@ximian.com>
28676
28677         * class.c (mono_class_init): If we're a generic instance,
28678         initialize our nested classes, too.
28679         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28680         suffix. 
28681
28682 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28683
28684         * process.c: quote the argument passed to the shell on windows.
28685
28686 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28687
28688         * threads.c (mono_alloc_special_static_data): Allow this to be
28689         called during startup.
28690
28691 2004-04-02  Martin Baulig  <martin@ximian.com>
28692
28693         * icall.c
28694         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28695
28696 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28697
28698         * icall.c: Fix build.
28699
28700 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28701
28702         * Makefile.am: Added security.c|h.
28703         * icall.c: Added icall for get_UserName;
28704         * security.c: New file for security related icalls. Added function
28705         get_UserName for System.Environment (fix #56144).
28706         * security.h: New. Header file for security.c
28707
28708 2004-04-02  Dick Porter  <dick@ximian.com>
28709
28710         * icall.c: Deleted the icalls that were obsoleted some time ago
28711         by the ICU string code, and which were mixed into the icall
28712         rearranging.  Fixes bug 55969.
28713
28714         * string-icalls.h: 
28715         * string-icalls.c: Deleted the code that those icalls reference.
28716
28717 2004-04-01  Martin Baulig  <martin@ximian.com>
28718
28719         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28720
28721         * class.c (mono_class_from_generic_parameter): Don't set 
28722         TYPE_ATTRIBUTE_INTERFACE.
28723         (my_mono_class_from_generic_parameter): Likewise.
28724
28725 2004-04-01  Martin Baulig  <martin@ximian.com>
28726
28727         * loader.c (find_method): Added an optional `MonoClass *ic'
28728         argument to search in a specific interface.
28729         (mono_get_method_constrained): New public function.
28730
28731 2004-04-01  Martin Baulig  <martin@ximian.com>
28732
28733         * reflection.c (mono_image_get_generic_field_token): Use the
28734         `handleref' cache here.
28735
28736 2004-04-01  Martin Baulig  <martin@ximian.com>
28737
28738         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28739
28740         * reflection.c (create_generic_typespec): Use the `typespec' hash
28741         here, not the `typeref' one.    
28742
28743 2004-04-01  Martin Baulig  <martin@ximian.com>
28744
28745         * class.c (mono_class_inflate_generic_type): Moved the
28746         functionality into a new static inflate_generic_type() which
28747         returns NULL if it didn't do anything.  Only increment the
28748         `mono_stats.inflated_type_count' if we actually inflated
28749         something.
28750         (mono_class_get_full): Check the classes type to see whether we
28751         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28752
28753 2004-04-01  Jackson Harper  <jackson@ximian.com>
28754
28755         * reflection.c: Set culture for assembly references.
28756         
28757 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28758
28759         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28760
28761 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28762
28763         * assembly.c:
28764         (do_mono_assembly_open): the critical section also covers
28765         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28766
28767 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28768
28769         * threads.c:
28770         (mono_manage_threads): abort the background threads when finishing.
28771         Fixes bug #47232.
28772
28773 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28774
28775         * gc.c: only close the done_event handle if there was no timeout.
28776         C-ified comments.
28777
28778 2004-03-30  Martin Baulig  <martin@ximian.com>
28779
28780         * icall.c (icall_entries): It's called "System.Activator", not
28781         "System.Activation".    
28782
28783 2004-03-30  Martin Baulig  <martin@ximian.com>
28784
28785         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28786         (mono_class_create_from_typespec): Likewise.
28787
28788 2004-03-30  Martin Baulig  <martin@ximian.com>
28789
28790         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28791         `has_ctor_constraint' and `initialized'.
28792
28793 2004-03-30  Martin Baulig  <martin@ximian.com>
28794
28795         * reflection.c (encode_new_constraint): New static function to add
28796         the constructor constraint attribute to a type parameter.
28797         (encode_constraints): Call encode_new_constraint() if necessary.
28798
28799         * reflection.h
28800         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28801
28802         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28803         
28804 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28805
28806         * reflection.c, icall.c: add support for pinning variables. 
28807
28808 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28809
28810         * marshal.c (mono_marshal_get_managed_wrapper):
28811         init bool local with zero rather than null.
28812
28813 2004-03-29  Martin Baulig  <martin@ximian.com>
28814
28815         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28816         the "official" behavior here.
28817         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28818
28819 2004-03-29  Martin Baulig  <martin@ximian.com>
28820
28821         * icall.c: Reflect latest API changes.
28822
28823 2004-03-29  Martin Baulig  <martin@ximian.com>
28824
28825         * loader.c (mono_get_method_from_token): Also call
28826         mono_metadata_load_generic_params () for abstract and interface
28827         methods; replace the type arguments in the method signature with
28828         the ones which are loaded from the metadata.
28829
28830 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28831
28832         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28833         of the lock is not the current thread. MS.NET don't do it, in spite of
28834         what the documentation says. See bug #56157.
28835
28836 2004-03-28  Martin Baulig  <martin@ximian.com>
28837
28838         * class.c (mono_class_init): Don't call init_properties() and
28839         init_events() for generic instances; set `prop->parent' when
28840         inflating properties.
28841
28842         * reflection.c (mono_generic_inst_get_object): Call
28843         `mono_class_init (ginst->klass)'.
28844         (mono_type_get_object): Only create a MonoGenericInst if your
28845         generic type is a TypeBuilder.
28846         (do_mono_reflection_bind_generic_parameters): Only set
28847         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28848
28849 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28850
28851         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28852         Fixes #56091.
28853
28854 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28855
28856         * icall.c: added Kill_internal icall.
28857         * process.[ch]: added Kill_internal icall.
28858
28859 2004-03-25  Martin Baulig  <martin@ximian.com>
28860
28861         * class.h (MonoStats): Added `generic_instance_count',
28862         `inflated_method_count', `inflated_type_count' and
28863         `generics_metadata_size'.       
28864
28865 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28866
28867         * reflection.c: no warnings now.
28868
28869 2004-03-25  Martin Baulig  <martin@ximian.com>
28870
28871         * class.c (mono_class_get_full): New public function; does a
28872         mono_class_get(), but also takes a `MonoGenericContext *'.
28873
28874         * loader.c (mono_field_from_memberref): Renamed to
28875         `field_from_memberref', made static and added `MonoGenericContext *'
28876         argument.
28877         (mono_field_from_token): Added `MonoGenericInst *' argument.
28878         (method_from_memberef): Likewise.
28879         (mono_get_method_from_token): Likewise.
28880         (mono_get_method_full): New public function; does a
28881         mono_get_method(), but also takes a `MonoGenericContext *'.
28882
28883         * verify.c (mono_method_verify): Get the method's generic context
28884         and pass it to mono_field_from_token(), mono_get_method_full() and
28885         mono_class_get_full().
28886
28887 2004-03-25  Martin Baulig  <martin@ximian.com>
28888
28889         * class.c (mono_class_inflate_generic_type): Take a
28890         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28891         `MonoGenericMethod *'.
28892
28893 2004-03-25  Martin Baulig  <martin@ximian.com>
28894
28895         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28896         instead of the MonoGenericMethod here.
28897
28898 2004-03-25  Martin Baulig  <martin@ximian.com>
28899
28900         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28901         each time we create a new MonoGenericInst, we also create a new
28902         context which points back to us.
28903
28904         * class.c (inflate_method): Use `ginst->context' instead of
28905         creating a new context.
28906
28907         * loader.c (method_from_memberref): Use
28908         `klass->generic_inst->context' instead of creating a new context.
28909
28910 2004-03-25  Martin Baulig  <martin@ximian.com>
28911
28912         * class.h (MonoGenericContext): New struct.
28913         (MonoGenericMethod): Removed `generic_inst'.
28914
28915         * class.c (mono_class_inflate_generic_method): Take a
28916         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28917
28918 2004-03-25  Martin Baulig  <martin@ximian.com>
28919
28920         * loader.h (MonoMethodInflated): New typedef.
28921
28922         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28923         `generic_param_count' consume just 30 bits, added `is_inflated'
28924         and `has_type_parameters' flags (one bit each).
28925
28926         * class.c (mono_class_inflate_generic_method): Create a
28927         MonoMethodInflated instead of a MonoMethodNormal and set
28928         `is_inflated' in the method signature.
28929
28930         * class.h (MonoGenericMethod): Removed `generic_method'.
28931
28932 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28933
28934         * image.c: Make sure the name of a MonoImage is always an absolute path.
28935           This fixes bug #54415.
28936
28937 2004-03-24  Martin Baulig  <martin@ximian.com>
28938
28939         * class.c (mono_class_setup_vtable): If we're a generic instance,
28940         use our generic type's vtable size.
28941
28942 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28943
28944         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28945         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28946         problems.
28947
28948 2004-03-23  Martin Baulig  <martin@ximian.com>
28949
28950         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28951         `MonoEvent *events'.
28952
28953         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28954         (typebuilder_icalls): Added "get_event_info"; calls
28955         mono_reflection_event_builder_get_event_info(). 
28956
28957         * reflection.c (mono_reflection_generic_inst_initialize): Added
28958         `MonoArray *events'.
28959         (mono_reflection_event_builder_get_event_info): New function.
28960
28961 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28962
28963         * object.h: add mono_type_initialization_init
28964
28965         * object.c (mono_runtime_class_init): 
28966         implement class constructor synchronization rules
28967         to cope with threading issues.  
28968         add mono_type_initialization_init
28969
28970         * appdomain.c (mono_runtime_init): call 
28971         mono_type_initialization_init
28972
28973         * class.h: removing initializing field from MonoVTable
28974
28975 2004-03-23  Martin Baulig  <martin@ximian.com>
28976
28977         * class.c (my_mono_class_from_generic_parameter): Use
28978         `param->name' if it's not NULL. 
28979
28980 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28981
28982         * class.c: do not insert non-virtual methods in the vtable.
28983         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28984         that means the method is non-virtual. This never would have
28985         happened before.
28986
28987 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28988
28989         * profiler.c: Added lock for accessing coverage_hash.
28990
28991 2004-03-22  Martin Baulig  <martin@ximian.com>
28992
28993         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28994         `method->method->signature->generic_param_count != 0' to make it
28995         work for interface methods.
28996
28997 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28998
28999         * process.c: quote the string passed to the shell using g_shell_quote.
29000
29001 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29002
29003         * threads.c:
29004         (mono_threads_manage): don't remove the finalizer thread and self
29005         from the threads hash table so that mono_thread_manage can be called
29006         more than once.
29007
29008 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29009
29010         * process.c: quote the arguments when UseShellExecute is true. Fixes
29011         bug #55790.
29012
29013 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29014
29015         * threads.c: set mono_thread_detach as a cleanup routine for every
29016         thread. This way it's always executed upon thread termination, either
29017         aborted or finished normally. No more xsp hangs!
29018
29019 2004-03-17  Martin Baulig  <martin@ximian.com>
29020
29021         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
29022         `int count_nested' and a `MonoType **nested'.
29023
29024         * reflection.c (mono_reflection_bind_generic_parameters): Moved
29025         most of the functionality into a new static
29026         do_mono_reflection_bind_generic_parameters() and don't take a
29027         `MonoType *nested_in' argument any more.  Don't compute nested
29028         types here.
29029         (mono_reflection_generic_inst_get_nested_types): New public method
29030         to get nested types.
29031
29032         * class.c (mono_class_create_generic): Set `klass->nested_in' if
29033         we're a nested class.
29034
29035         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
29036         mono_reflection_generic_inst_get_nested_types() to compute the
29037         nested types.
29038
29039 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29040
29041         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
29042         descriptive error message under windows.
29043         
29044 2004-03-17  Martin Baulig  <martin@ximian.com>
29045
29046         * class.c (dup_type): Added `const MonoType *original' argument;
29047         copy the attrs from the original type.
29048
29049 2004-03-17  Martin Baulig  <martin@ximian.com>
29050
29051         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
29052         `m->generic_inst_cache' here.
29053
29054 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29055
29056         * exception.h exception.c: Add stack_overflow_exception.
29057
29058 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29059
29060         * threadpool.c:
29061         (overlapped_callback): call SetEvent *after* invoking the callback.
29062         No need to call CloseHandle.
29063
29064 2004-03-16  Martin Baulig  <martin@ximian.com>
29065
29066         * reflection.c (mono_image_get_fieldref_token): Take a
29067         `MonoReflectionField *' instead of a `MonoClassField *' and a
29068         `MonoClass *'; store the `MonoReflectionField *' in the hash.
29069
29070 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29071
29072         * appdomain.c: don't add the culture to the filename we're looking for
29073         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
29074
29075 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29076
29077         * locales.c: don't ignore symbols when doing case insensitive compares.
29078         Thanks Dick! Fixes bug #54046.
29079
29080         * threads.c: surround 'threads' usage with enter/leave in
29081         mono_thread_manage.
29082
29083 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
29084
29085         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
29086         implicitly marshalled as [Out]. Fixes #55450.
29087
29088         (mono_marshal_get_runtime_invoke): Zero out the result if there is
29089         an exception.
29090
29091 2004-03-16  Martin Baulig  <martin@ximian.com>
29092
29093         * class.c (mono_class_from_generic_parameter): Use the actual
29094         parameter name. 
29095
29096 2004-03-16  Martin Baulig  <martin@ximian.com>
29097
29098         * reflection.c (type_get_signature_size): New static function.
29099         Compues the size of the type in a method signature.
29100         (method_get_signature_size): New static function; calls
29101         type_get_signature_size() to compute the actual size of the
29102         method's signature.
29103         (method_encode_signature): Use method_get_signature_size() to get
29104         the signature's size rather than using `nparams * 10'.
29105
29106 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29107
29108         * file-io.h: define here WapiOverlapped on windows. I don't want the
29109         regular OVERLAPPED one.
29110
29111         * file-io.c:
29112         * threadpool.c: somehow, BindIoCompletionCallback is not found.
29113         Disabling AIO on windows.
29114
29115 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29116
29117         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
29118         bug #55385.
29119
29120 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29121
29122         * appdomain.c: upgraded corlib version.
29123
29124         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
29125         and BeginWrite. Allow opening files for asynchrnous operations.
29126
29127         * file-io.h: new struct that maps FileStreamAsyncResult.
29128         * icall.c: added new icalls.
29129         * process.[ch]: support setting child process environment variables
29130         and use the SHELL or COMSPEC when UseShellExecute is true.
29131
29132         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
29133         callback for async. IO is here and also BindHandle.
29134
29135         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
29136         from here.
29137
29138 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
29139
29140         * reflection.c (create_custom_attr): Allow len == 0.
29141
29142         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
29143         computation on big-endian machines.
29144
29145 2004-03-13  Martin Baulig  <martin@ximian.com>
29146
29147         * class.h (MonoGenericInst): Added `int count_ifaces'.
29148
29149         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
29150         `ginst->count_ifaces' instead `klass->interface_count' since we
29151         may get called before the vtable is created.
29152
29153         * loader.c (mono_method_get_param_names): If we're a generic
29154         instance, return and don't initialize the class.
29155
29156         * reflection.c (mono_reflection_setup_generic_class): Don't call
29157         ensure_runtime_vtable().
29158         (mono_reflection_bind_generic_parameters): Set
29159         `ginst->count_ifaces'.
29160
29161 2004-03-11  Jackson Harper <jackson@ximian.com>
29162
29163         * icall.c:
29164         * unicode.c:
29165         * unicode.h: Remove unused System.Char icalls.
29166         
29167 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
29168
29169         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
29170         code when we P/Invoke the first library in Windows.Forms, instead
29171         of when we first open the assembly.
29172
29173         * assembly.c: Drop the lookup from here.
29174
29175 2004-03-10  Martin Baulig  <martin@ximian.com>
29176
29177         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
29178         class for properties, fields and events.  Finally fixes #54945.
29179
29180 2004-03-10  Martin Baulig  <martin@ximian.com>
29181
29182         * metadata.c (mono_metadata_class_equal): New static function;
29183         checks whether two generic instances or two generic parameters are
29184         equal.
29185         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
29186         compare classes.        
29187
29188 2004-03-10  Martin Baulig  <martin@ximian.com>
29189
29190         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
29191
29192         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
29193         argument and write it into the `reflection_info' field.
29194
29195         * icall.c
29196         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
29197         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
29198
29199 2004-03-09  Jackson Harper  <jackson@ximian.com>
29200
29201         * char-conversions.h: use 8 bits for numeric data its all we need
29202         * icall.c: numeric data is only 8 bits now.
29203
29204 2004-03-09  Martin Baulig  <martin@ximian.com>
29205
29206         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
29207
29208         * class.c (init_properties, init_events): Initialize the new
29209         `parent' field.
29210
29211         * reflection.c (typebuilder_setup_properties): Likewise.
29212         (typebuilder_setup_events): Likewise.
29213
29214         * reflection.h (MonoEventInfo): Replaced `parent with
29215         `declaring_type' and `reflected_type'.
29216
29217         * icall.c (ves_icall_get_property_info): Distinguish between
29218         declaring and reflected type.
29219         (ves_icall_get_event_info): Likewise.
29220
29221 2004-03-09  Martin Baulig  <martin@ximian.com>
29222
29223         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
29224         (ves_icall_Type_GetField): Correctly set field->klass.
29225
29226 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
29227
29228         * loader.h: Fix warning.
29229
29230 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
29231
29232         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
29233         library routine if present.  Notice that it will still continue
29234         executing even if its missing, for those working on the Gtk#
29235         edition of Windows.Forms.
29236
29237         * assembly.c (do_mono_assembly_open): If loading the
29238         System.Windows.Forms call mono_loader_wini_init.
29239
29240 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
29241
29242         * class.h: Added MonoRemoteClass struct.
29243         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
29244         function for MonoStrings.
29245         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
29246         Added internal call for getting the proxy type.
29247         * marshal.c: Get the type of transparent proxies from its remote_class.
29248         Added methods that generate the IL for type checks and casts:
29249         mono_marshal_get_isinst, mono_marshal_get_castclass, 
29250         mono_marshal_get_proxy_cancast.
29251         * marshal.h: Declaration of the previous new methods.
29252         * object.c: Added new moethods for creating and updating MonoRemoteClass
29253         instances: mono_remote_class, mono_upgrade_remote_class, 
29254         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
29255         * verify.c: FIx transparent_proxy_fields layout.
29256         * appdomain.c: Bump corlib version.
29257
29258 2004-03-04  Jackson Harper  <jackson@ximian.com>
29259
29260         * icall.c: Add icall to access char conversion tables.
29261         * char-conversions.h: Character conversion tables.
29262         * Makefile.am: Add char-conversions.h private header file.
29263         
29264 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
29265
29266         * appdomain.c (unload_thread_main): Increase unloading timeout to
29267         10 sec as a temporary workaround for Nant problems.
29268
29269 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
29270
29271         * gc.c: Add checks for GC_enable and GC_disable.
29272
29273         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
29274         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
29275         (bug #54988).
29276         
29277 2004-02-27  Martin Baulig  <martin@ximian.com>
29278
29279         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29280         `MonoReflectionType *' instead of a `MonoType *'.
29281
29282 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
29283
29284         * gc.c (run_finalize): Avoid finalizing the object representing the
29285         finalizer thread.
29286         (finalizer_thread): Fix warning.
29287
29288 2004-02-25  Martin Baulig  <martin@ximian.com>
29289
29290         * class.c (_mono_class_get_instantiation_name): Added `int offset'
29291         argument for nested types.
29292         (mono_class_create_generic): Added support for nested generictypes.
29293
29294         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
29295         `GList *nested'.
29296
29297         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
29298
29299         * reflection.c (method_encode_signature): Increase the minimum
29300         value of `size' from 10 to 11.
29301         (mono_reflection_bind_generic_parameters): Take `int type_argc'
29302         and `MonoType **types' arguments instead of the `MonoArray
29303         *types'; added `MonoType *nested_in'.  Recursively instantiate
29304         nested classes. 
29305
29306 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
29307
29308         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
29309         stack_overflow_ex members which are used by exception handling.
29310
29311         * appdomain.c (mono_runtime_init): Initialize the new members.
29312
29313         * gc.c (mono_gc_enable): New helper function.
29314         * gc.c (mono_gc_disable): New helper function.
29315
29316 2004-02-23  Martin Baulig  <martin@ximian.com>
29317
29318         * icall.c: I must have been really stupid - make it actually work
29319         this time ;-)
29320
29321 2004-02-23  Martin Baulig  <martin@ximian.com>
29322
29323         * loader.c (method_from_memberref): Only inflate the method if
29324         it's in another klass.
29325
29326 2004-02-23  Martin Baulig  <martin@ximian.com>
29327
29328         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
29329         (mono_class_init): If we're a generic instance and an interface,
29330         compute `class->interface_id'; also create `class->interfaces'
29331         here and inflate them.
29332
29333         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
29334         `ginst->is_open'.
29335         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
29336
29337         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
29338
29339 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
29340
29341         * reflection.c (method_encode_code): Improved the error message
29342         generated by the exception.
29343
29344 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29345
29346         * icall.c: Martin did not do what he said in the ChangeLog for
29347         2004-02-18, but put back the changes for properties and events.
29348         Commenting those changes out again and adding comment to bug #54518.
29349         
29350         * process.c: removed warning.
29351
29352 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
29353
29354         * marshal.c (emit_struct_conv): Print an error message instead of
29355         asserting when a type does not have the StructLayout attribute.
29356
29357 2004-02-20  Martin Baulig  <martin@ximian.com>
29358
29359         * reflection.c (mono_type_get_object): Also use the cache for
29360         generic instances.
29361         (mono_reflection_bind_generic_parameters): Always compute
29362         `ginst->ifaces'.        
29363
29364 2004-02-20  Martin Baulig  <martin@ximian.com>
29365
29366         * class.h (MonoGenericMethod): Removed `klass'.
29367
29368         * class.c (mono_class_inflate_generic_method): Added `MonoClass
29369         *klass' argument.
29370
29371 2004-02-20  Martin Baulig  <martin@ximian.com>
29372
29373         * reflection.c (method_encode_methodspec): Actually use the
29374         uninflated signature for the memberref.
29375
29376 2004-02-20  Martin Baulig  <martin@ximian.com>
29377
29378         * class.h (MonoGenericMethod): Removed `declaring'.
29379
29380         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
29381         is NULL, compute it here.
29382
29383 2004-02-20  Martin Baulig  <martin@ximian.com>
29384
29385         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
29386
29387         * metadata.c (mono_metadata_generic_inst_hash): New method.
29388         (mono_metadata_generic_inst_equal): New method.
29389
29390         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29391         `klass->image->generic_inst_cache' cache to avoid creating
29392         duplicate MonoGenericInst's.
29393
29394         * class.c (mono_class_inflate_generic_type): Use the cache.
29395
29396 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29397
29398         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29399
29400 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29401
29402         * icall.c: added Socket.WSAIoctl icall.
29403
29404         * socket-io.[ch]: implemented
29405         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29406
29407 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29408
29409         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29410
29411 2004-02-18  Urs C Muff  <umuff@quark.com>
29412
29413         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29414         this work on PPC and other big-endian architectures.
29415
29416         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29417         fields with an underscore to make sure they're only accessed by
29418         the read32() macro.
29419
29420 2004-02-18  Martin Baulig  <martin@ximian.com>
29421
29422         * icall.c: Put the klass->refclass changes back for methods and
29423         fields, but not for properties and events.  We're currently not
29424         distinguishing between DeclaringType and ReflectedType for
29425         properties and events, that's what caused the regressions.
29426
29427 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29428
29429         * object.c:
29430         (mono_async_result_new): the handle can be NULL.
29431
29432         * threadpool.c: Use an event instead of a semaphore, don't initialize
29433         it until needed. This saves quite a few semaphores from being created
29434         when using the threadpool.
29435
29436 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29437
29438         * object.c (mono_string_is_interned_lookup): Fix interning of long
29439         strings. Fixes #54473.
29440
29441         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29442
29443         * icall.c: Revert the klass->refclass changes since they introduce
29444         regressions (bug #54518).
29445
29446 2004-02-18  Martin Baulig  <martin@ximian.com>
29447
29448         * class.c (mono_class_init): If we're a generic instance and don't
29449         come from a TypeBuilder, inflate our members here.
29450         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29451         (mono_class_create_generic): New public method.
29452         (mono_class_initialize_generic): Removed.
29453         (get_instantiation_name): Renamed to
29454         _mono_class_get_instantiation_name() and made it public.
29455
29456 2004-02-18  Martin Baulig  <martin@ximian.com>
29457
29458         * class.c (mono_class_inflate_generic_type): Clear the new
29459         instance's `nginst->klass' when inflating a generic instance.
29460         (mono_class_is_subclass_of): Added (basic) support for generic
29461         instances.
29462
29463 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29464
29465         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29466         MonoMempool to hold compiled native code.
29467
29468 2004-02-17  Martin Baulig  <martin@ximian.com>
29469
29470         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29471         `properties'.
29472
29473         * reflection.c (mono_reflection_generic_inst_initialize): Added
29474         `MonoArray *properties' argument.
29475
29476         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29477
29478 2004-02-17  Martin Baulig  <martin@ximian.com>
29479
29480         * icall.c (ves_icall_Type_GetFields): Renamed to
29481         ves_icall_Type_GetFields_internal() and added a
29482         `MonoReflectionType *rtype' argument; pass it to
29483         mono_field_get_object() to set the field's "reflected" type.
29484         (ves_icall_Type_GetConstructors): Likewise.
29485         (ves_icall_Type_GetEvents): Likewise.
29486         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29487         argument; pass it to mono_method_get_object() to set the method's
29488         "reflected" type.       
29489
29490 2004-02-17  Martin Baulig  <martin@ximian.com>
29491
29492         * class.h (MonoDynamicGenericInst): New type.
29493         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29494
29495         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29496         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29497         (ves_icall_MonoGenericInst_GetFields): New interncall.
29498
29499         * class.c (mono_class_from_generic): Don't call
29500         mono_class_initialize_generic() if this is a dynamic instance;
29501         ie. it's being created from a TypeBuilder.
29502         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29503         `class->byval_arg.type'.
29504
29505         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29506         to `inflate_method' and made static.
29507         (mono_reflection_inflate_field): Removed.
29508         (mono_reflection_generic_inst_initialize): New public method.
29509
29510         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29511         `ctors' and `fields'; added `initialized'.
29512
29513 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29514
29515         * debug-helpers.c (mono_method_full_name): Fix output for empty
29516         namespaces.
29517
29518 2004-02-12  Martin Baulig  <martin@ximian.com>
29519
29520         * class.h (MonoClassField): Added `MonoType *generic_type'.
29521
29522         * reflection.c (mono_image_get_fieldref_token): Added support for
29523         instantiated generic types.
29524         (field_encode_inflated_field): Removed.
29525         (mono_image_get_inflated_field_token): Removed.
29526         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29527
29528         * reflection.h (MonoReflectionInflatedField): Removed.
29529
29530 2004-02-12  Martin Baulig  <martin@ximian.com>
29531
29532         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29533         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29534
29535         * reflection.c (mono_image_get_methodspec_token): Take a
29536         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29537         (mono_image_create_token): Check whether we have a
29538         `method->signature->gen_method' and call
29539         mono_image_get_methodspec_token() if appropriate.
29540         (inflated_method_get_object): Removed.
29541         (mono_reflection_bind_generic_method_parameters): Return a
29542         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29543         (mono_reflection_inflate_method_or_ctor): Likewise.
29544
29545         * reflection.h (MonoReflectionInflatedMethod): Removed.
29546
29547 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29548
29549         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29550         for custom valuetype marshalling.
29551
29552         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29553
29554 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29555
29556         * icall.c: fixed WSAGetLastError_internal name.
29557
29558 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29559
29560         * threads.c (mono_thread_attach): Allow this to be called multiple
29561         times for a thread.
29562         
29563         * threads.c (build_wait_tids): Do not wait for ourselves.
29564
29565         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29566         appdomain list is empty.
29567
29568         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29569         memory returned by mono_string_builder_to_utf16, since it points into
29570         managed memory. Thanks to Bernie Solomon for noticing this.
29571
29572         * icall.c: Add AppDomainSetup icalls.
29573
29574         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29575
29576         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29577         types.
29578
29579         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29580         custom attributes to the method_aux struct. Also fix array indexes etc.
29581
29582         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29583         
29584 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29585
29586         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29587         (both static and runtime) and reduce startup time.
29588
29589 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29590
29591         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29592         AsAny marshalling conversion instead of crashing.
29593
29594         * marshal.c: Fix warnings.
29595
29596 2004-02-09  Martin Baulig  <martin@ximian.com>
29597
29598         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29599
29600         * reflection.h (MonoReflectionInflatedMethod): Removed the
29601         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29602
29603         * reflection.c (method_encode_methodspec): Removed the `method'
29604         argument; we get it from `gmethod->declaring'.
29605         (inflated_method_get_object): Removed the `declaring' argument.
29606
29607 2004-02-09  Martin Baulig  <martin@ximian.com>
29608
29609         * class.h (MonoGenericMethod): New type.
29610         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29611         `generic_method'.
29612
29613         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29614         a `MonoGenericMethod *gen_method' one.
29615
29616         * class.c (mono_class_inflate_generic_type): Take an additional
29617         `MonoGenericMethod * argument.  This is only non-NULL if we're
29618         inflating types for a generic method.   
29619         (mono_class_inflate_generic_signature): Renamed to
29620         inflate_generic_signature() and made static; take a
29621         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29622         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29623         instead of a `MonoGenericInst *' one.
29624         (mono_class_inflate_generic_method): Likewise.
29625
29626         * reflection.c (encode_generic_method_sig): Take a
29627         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29628         (method_encode_methodspec): Likewise.
29629         (inflated_method_get_object): Likewise. 
29630
29631         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29632         field with a `MonoGenericMethod *gmethod' one.  
29633
29634 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29635
29636         * class.h (mono_class_has_parent): add parens to expansion
29637         so you can ! this.
29638
29639 2004-02-08  Martin Baulig  <martin@ximian.com>
29640
29641         * image.h (MonoImage): Removed `generics_cache'.
29642
29643         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29644         instead of a `MonoType *' argument; removed the `inflate_methods'
29645         argument.  Don't inflate methods here.
29646
29647         * loader.c (find_method): If it's a generic instance, call
29648         mono_class_init() on the `sclass->generic_inst->generic_type'.
29649
29650         * metadata.c (mono_type_size): Make this work on uninitialized
29651         generic instances; call it on the `ginst->generic_type's class.
29652
29653         * reflection.c (mono_reflection_bind_generic_parameters): Call
29654         mono_class_from_generic() to create the `ginst->klass'.
29655
29656 2004-02-08  Martin Baulig  <martin@ximian.com>
29657
29658         * class.h (MonoClass): Changed type of `generic_inst' from
29659         `MonoType *' to `MonoGenericInst *'.
29660
29661 2004-02-08  Martin Baulig  <martin@ximian.com>
29662
29663         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29664         mono_type_get_object(), this is now creating a `MonoGenericInst'
29665         for MONO_TYPE_GENERICINST.
29666         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29667         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29668
29669         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29670         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29671         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29672         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29673         and reflected type.
29674
29675         * reflection.h (MonoReflectionInflatedMethod): Removed
29676         `declaring_type' and `reflected_type'.
29677
29678 2004-02-08  Martin Baulig  <martin@ximian.com>
29679
29680         * class.h (MonoGenericInst): Added `MonoType *parent' and
29681         `MonoType **ifaces'.
29682
29683         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29684         `parent' and `interfaces'.
29685
29686         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29687         `MonoType *' argument and return a `MonoType *'.
29688
29689         * icall.c
29690         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29691         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29692
29693 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29694
29695         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29696         valuetype marshalling.
29697
29698 2004-02-06  Martin Baulig  <martin@ximian.com>
29699
29700         * class.c
29701         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29702         (my_mono_class_from_generic_parameter): Likewise.
29703
29704 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29705
29706         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29707         contents of the symbol files lazily.
29708
29709         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29710
29711         * threads.h threads.c icall.c: New icalls for getting and setting the
29712         threads name.
29713
29714 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29715
29716         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29717         Raise an exception when the domain is not found.
29718
29719 2004-02-03  Martin Baulig  <martin@ximian.com>
29720
29721         * reflection.c (mono_image_get_methodspec_token): Use the
29722         uninflated signature; fixes gen-33.
29723
29724 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29725
29726         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29727         the finalizer code can use thread functionality.
29728
29729         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29730         the finalizer thread.
29731
29732         * threads.c: Make some functions more robust.
29733
29734         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29735
29736         * metadata.h: Add new marshalling conventions.
29737
29738         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29739         stringbuilder marshalling. Fixes #53700.
29740
29741         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29742
29743         * reflection.c (mono_image_get_type_info): Save declarative security
29744         info.
29745
29746         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29747         unmanaged fields as well.
29748
29749         * appdomain.c: Bump corlib version.
29750
29751 2004-02-01  Martin Baulig  <martin@ximian.com>
29752
29753         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29754         method type arguments.  
29755
29756 2004-01-30  Duncan Mak  <duncan@ximian.com>
29757
29758         * marshal.h: Add prototype for
29759         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29760         and
29761         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29762         fix the build.
29763
29764 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29765
29766         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29767         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29768
29769 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29770
29771         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29772         custom marshalling of valuetypes.
29773
29774         * marshal.c: Fix some warnings.
29775
29776 2004-01-29  Martin Baulig  <martin@ximian.com>
29777
29778         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29779         for generic method parameters.
29780
29781         * reflection.c (method_encode_methodspec): Write the uninflated
29782         signature into the methodspec table.
29783         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29784         is always the uninflated method.
29785         (reflection_methodbuilder_to_mono_method): Copy the generic
29786         parameters from the MethodBuilder into `header->gen_params'.
29787
29788 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29789
29790         * class.c (mono_class_from_generic_parameter): Fix warning.
29791
29792 2004-01-27  Martin Baulig  <martin@ximian.com>
29793
29794         * class.c (mono_class_from_generic_parameter): Don't create
29795         `klass->methods' here.  
29796
29797 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29798
29799         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29800         extension since it does not work with libraries named lib<FOO>.dll.so.
29801
29802 2004-01-25  Martin Baulig  <martin@ximian.com>
29803
29804         * class.c (mono_class_inflate_generic_type): Added support for
29805         MONO_TYPE_GENERICINST.
29806
29807         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29808         inflate methods on open constructed types.      
29809
29810 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29811
29812         * object.c: fire ProcessExit event in the root AppDomain after running
29813         Main. Fixes bug #53299.
29814
29815 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29816
29817         * socket-io.c: include the new socket-wrappers.h header.
29818         Use the wrappers instead of the unix socket functions to make the code
29819         more clear.
29820
29821 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29822
29823         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29824
29825         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29826         Fixes #22532.
29827
29828 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29829
29830         * reflection.c (mono_image_create_pefile): Handle the case when the
29831         entry point is not a MethodBuilder.
29832
29833         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29834         field to ReflectionMethod since it is not allways a builder.
29835
29836         * reflection.c (type_get_fully_qualified_name): New helper function to
29837         return the fully qualified name of a type.
29838
29839         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29840         type name for custom marshallers.
29841
29842         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29843
29844         * class.c (mono_class_setup_vtable): If a parent class already 
29845         implements an interface, use the implementing methods from that class.
29846         Fixes #53148.
29847
29848 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29849
29850         * threadpool.c: just return instead of ExitThread to allow for thread
29851         clean up earlier.
29852
29853 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29854
29855         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29856         when closing resource modules.
29857
29858         * reflection.c (mono_image_create_pefile): Handle the case when the
29859         entry point is not a MethodBuilder.
29860
29861         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29862         field to ReflectionMethod since it is not allways a builder.
29863
29864 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29865
29866         * marshal.c (mono_marshal_get_managed_wrapper): 
29867         mono_marshal_alloc takes native int so CONV_I
29868         the arg for 64bits.
29869
29870 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29871
29872         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29873         tokens in the cattr table. Fixes #53108.
29874
29875 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29876
29877         * loader.c: don't trim ".dll" before looking up in the config file.
29878         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29879
29880 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29881
29882         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29883         Return the module which contains the resource as well.
29884         (ves_icall_System_Reflection_Module_Close): New icall.
29885
29886         * appdomain.c: Bump corlib version number.
29887
29888         * image.c (mono_image_addref): New public function.
29889
29890         * assembly.c: Call mono_image_addref.
29891
29892         * reflection.c (mono_module_get_object): Increase reference count of 
29893         the image.
29894
29895         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29896         Fixes #22532.
29897
29898         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29899         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29900         proper exceptions on DllImport problems.
29901
29902 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29903
29904         * class.c, metadata.c: eliminate CSIZE macro.
29905
29906 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29907
29908         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29909         * object.h: Added async_callback field in MonoAsyncResult.
29910         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29911         * verify.c: Added async_callback in MonoAsyncResult layout.
29912
29913 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29914
29915         * reflection.c (mono_reflection_get_custom_attrs): Add support
29916         for Modules.
29917
29918 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29919
29920         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29921         marshalling.
29922         (mono_marshal_method_from_wrapper): Add null pointer check.
29923
29924 2004-01-16  Martin Baulig  <martin@ximian.com>
29925
29926         * debug-mono-symfile.h: Set version number to 36 and reflect
29927         latest symbol writer changes.
29928
29929 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29930
29931         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29932         multi-dimensional arrays.
29933         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29934         (mono_class_from_mono_type): Use bounded_array_class_get.
29935         
29936         * class.c (mono_bounded_array_class_get): New function which takes
29937         a 'bounded' bool argument to distinguish vectors from one dimensional
29938         arrays.
29939
29940         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29941         bounded_array_class_get if the array has bounds.
29942
29943         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29944         Search modules loaded using AssemblyBuilder:AddModule as well.
29945
29946 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29947
29948         * appdomain.c: increased corlib version.
29949         * filewatcher.c: removed g_print.
29950         * icall.c:
29951         (get_property_info): only allocate what is actually requested.
29952         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29953
29954 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29955
29956         * Makefile.am: added filewatcher.[ch]
29957         * filewatcher.[ch]: FileSystemWatcher runtime support.
29958         * icall.c: added new FSW icalls.
29959
29960 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29961
29962         * string-icalls.c: fix stringbuilder regression as suggested by
29963         Iain McCoy <iain@mccoy.id.au>.
29964
29965 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29966
29967         * process.c (process_read_stringtable_block): Recognize '007f' as
29968         a language neutral stringtable block.
29969
29970 2004-01-12  Patrik Torstensson
29971
29972         * object.h (MonoStringBuilder) : Changed layout to support our
29973         new stringbuilder class.
29974         * marshal.c: Change marshalling to support the new layout of 
29975         string builder.
29976         * appdomain.c: increased version number because new layout of
29977         string builder.
29978
29979 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29980
29981         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29982         assembly name as an string instead of an AssemblyName, since it is
29983         easier to extract info from it.
29984
29985         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29986         the culture subdirectories too. Fixes #52231.
29987
29988 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29989
29990         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29991         It takes 2 new parameters with an optional name for the method to look
29992         for and case ignoring info.
29993
29994         * threadpool.c: removed unused variable.
29995
29996 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29997
29998         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29999         It takes 2 new parameters with an optional name for the property to look
30000         for and case ignoring info.
30001         Fixes bug #52753.
30002
30003 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
30004
30005         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
30006         Fix #52451.
30007
30008 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30009
30010         * appdomain.c:
30011         * assembly.c: escape the uri before passing it to g_filename_from_uri.
30012         Fixes bug #52630.
30013
30014 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
30015
30016         * reflection.c: Add support for more than one unmanaged resource.
30017
30018         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
30019         in field->def_value, as done in all other cases.
30020
30021         * reflection.c (mono_reflection_get_custom_attrs): Add support for
30022         TypeBuilders.
30023
30024         * reflection.c (mono_reflection_create_runtime_class): Remove 
30025         errorneous assignment to klass->element_class, since it is already
30026         done in mono_reflection_setup_internal_class.
30027
30028 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30029
30030         * gc.c: added missing LeaveCriticalSection.
30031         * icall.c: indented a couple of lines.
30032         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
30033         if we call EndInvoke inside a callback. Fixes bug #52601.
30034
30035 2004-01-07  Martin Baulig  <martin@ximian.com>
30036
30037         * mono-debug-debugger.h
30038         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
30039
30040 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
30041
30042         * appdomain.c: Use messages in NotImplementedException.
30043
30044         * exception.c (mono_get_exception_not_implemented): Now this takes
30045         a message argument.
30046
30047         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
30048         exception instead of g_asserting an aborting when something is not
30049         implemented.
30050
30051         Add some inline docs.
30052
30053 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
30054
30055         * reflection.h: Update after changes to object layout.
30056
30057         * reflection.c: Implement saving of unmanaged aka win32 resources.
30058
30059         * appdomain.c: Bump version number.
30060
30061         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
30062         Handle missing domains gracefully.
30063
30064 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
30065
30066         * file-io.c : On Windows, there are much more invalid_path_chars.
30067
30068 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
30069
30070         * class.h, object.c: prepare for GetType () speedup.
30071
30072 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
30073
30074         * profiler.c: workaround for --profile null reference exception on
30075           cygwin. Patch by Patrik Torstensson.
30076
30077 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
30078
30079         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
30080         make work for unaligned access.
30081
30082 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
30083
30084         * class.c: small cleanup (class->fields [i] -> field).
30085         * image.c: check address of metadata is valid.
30086
30087 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
30088
30089         * assembly.h assembly.c (mono_assembly_loaded): New public function to
30090         search the list of loaded assemblies.
30091
30092         * reflection.c (mono_reflection_type_from_name): Use 
30093         mono_assembly_loaded instead of mono_image_loaded.
30094
30095         * reflection.c: Fix warnings.
30096
30097 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
30098
30099         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
30100         is dynamic. This is needed since an assembly can contain both dynamic and
30101         non-dynamic images.
30102
30103         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
30104         assembly->dynamic.
30105
30106         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
30107
30108         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
30109         to store modules loaded using AddModule.
30110
30111         * reflection.c (mono_image_fill_file_table): Generalize this so it works
30112         on Modules.
30113
30114         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
30115
30116         * reflection.c (mono_image_fill_export_table_from_module): New function to
30117         fill out the EXPORTEDTYPES table from a module.
30118
30119         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
30120         into a separate function. Also handle loaded non-dynamic modules.
30121
30122         * reflection.c (mono_image_basic_init): Fix memory allocation.
30123
30124         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30125
30126         * assembly.c (mono_assembly_load_references): Make this public.
30127
30128 2003-12-19  Martin Baulig  <martin@ximian.com>
30129
30130         * class.c (mono_class_initialize_generic): Made this static, take
30131         a `MonoGenericInst *' instead of a `MonoClass *'.
30132         (mono_class_from_generic): Call mono_class_initialize_generic()
30133         unless we're already initialized or being called from
30134         do_mono_metadata_parse_generic_inst().
30135
30136         * class.h (MonoGenericInst): Added `initialized' and
30137         `init_pending' flags.
30138
30139         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
30140         `mono_class_init (gklass)' or mono_class_initialize_generic()
30141         here; set `generic_inst->init_pending' while parsing the
30142         `type_argv'.
30143
30144 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
30145
30146         * locales.c: include string.h for memxxx prototypes
30147
30148 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
30149
30150         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
30151         constructor when accessing literal fields.
30152
30153 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
30154
30155         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30156
30157         * reflection.c (assembly_add_resource_manifest): New function to fill
30158         the MANIFESTRESOURCE table.
30159
30160         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
30161
30162         * reflection.h: Update to changes in class layout.
30163
30164         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
30165         Reenable call to mono_runtime_is_shutting_down ().
30166
30167         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
30168         determine if the runtime is shutting down.
30169
30170 2003-12-16  Jackson Harper <jackson@ximian.com>
30171
30172         * icall.c: comment out call to mono_runtime_is_shutting_down to
30173         fix build.
30174         
30175 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
30176
30177         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
30178         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
30179
30180 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
30181
30182         * reflection.c: move definition of swap_with_size
30183         to before its first call
30184
30185 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
30186
30187         * appdomain.c (mono_runtime_is_shutting_down): New public function.
30188
30189         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
30190         icall.
30191
30192         * object.c: Fix warnings.
30193
30194         * icall.c (ves_icall_Type_Get...): Only consider inherited static
30195         members if FlattenHierarchy is set.
30196
30197         * reflection.c (mono_image_add_decl_security): New function to emit
30198         declarative security.
30199
30200         * reflection.h reflection.c: Add support for declarative security.
30201
30202         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30203         
30204 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
30205
30206         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30207         
30208         * appdomain.c verify.c: Moved corlib version checking into its own
30209         function in appdomain.c since it needs to create vtables etc.
30210
30211 2003-12-13  Patrik Torstensson <p@rxc.se>
30212
30213         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
30214         instead of unwrapped server.
30215
30216 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
30217
30218         * verify.c (check_corlib): Fix field index.
30219
30220 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
30221
30222         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
30223         GetGacPath icall.
30224
30225 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
30226
30227         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
30228         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
30229         cope with sizeof(size_t) != sizeof(guint32).
30230
30231 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30232
30233         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
30234         in case of failure.
30235
30236 2003-12-10  Mark Crichton <crichton@gimp.org>
30237
30238         * icall.c: removed the GetNonZeroBytes.  We now handle this case
30239         in managed code.
30240
30241         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
30242
30243 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
30244
30245         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
30246         marked as deleted.
30247
30248 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
30249
30250         * verify.c (check_corlib): Handle the case when the version field is 
30251         initialized by a static constructor.
30252
30253 2003-12-08  Patrik Torstensson  <p@rxc.se>
30254
30255     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
30256
30257 2003-12-08  Martin Baulig  <martin@ximian.com>
30258
30259         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
30260         a MonoReflectionGenericParameter, also take the parameter index
30261         and name as arguments.
30262         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
30263         (ves_icall_MonoGenericParam_initialize): New interncall.
30264         (ves_icall_Type_make_byref_type): New interncall.
30265
30266         * reflection.h (MonoReflectionGenericParam): Derive from
30267         MonoReflectionType, not just from MonoObject.  Added `refobj' and
30268         `index' fields.
30269
30270         * reflection.c (mono_reflection_define_generic_parameter): Create
30271         and return a new MonoReflectionGenericParam; don't initialize the
30272         constraints here.
30273         (mono_reflection_initialize_generic_parameter): New public method;
30274         initializes the constraints and creates the `param->pklass'.
30275
30276 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
30277
30278         * reflection.h reflection.c: Use the new fields 'num_types', 
30279         'num_fields' and 'num_methods' to track the number of types etc.
30280
30281         * verify.c (check_corlib): Check corlib version number.
30282
30283 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
30284
30285         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
30286         function works on all methods.
30287
30288 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
30289
30290         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
30291         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
30292         the custom_type_info flag of the transparent proxy.
30293         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
30294         objects that supports IRemotingTypeInfo.
30295         * object.h: Added custom_type_info field in transparent proxy.
30296
30297 2003-12-06  Martin Baulig  <martin@ximian.com>
30298
30299         * class.c (mono_class_create_from_generic): Removed.
30300         (mono_class_from_generic): Check `ginst->klass' before doing
30301         anything else.  This is important to fully support "recursive"
30302         generic types.
30303
30304         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
30305         empty `generic_inst->klass' before doing anything else.
30306
30307 2003-12-06  Dick Porter  <dick@ximian.com>
30308
30309         * verify.c: 
30310         * object.h:
30311         * icall.c:
30312         * locales.c: Use C structs to access class fields.  Don't do a
30313         conversion between MonoString and UChar because both are
30314         platform-endian UTF-16.  Compare now takes startindex and count
30315         parameters.  Add a char overload for IndexOf.  Speed up the
30316         invariant string IndexOf.
30317
30318 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
30319
30320         * Makefile.am (monosn_LDADD): Fix parallel build.
30321
30322 2003-12-04  Martin Baulig  <martin@ximian.com>
30323
30324         * icall.c
30325         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30326         (ves_icall_Type_make_array_type): New interncall.       
30327
30328 2003-12-04  Martin Baulig  <martin@ximian.com>
30329
30330         * locales.c: also change it in the !HAVE_ICU case.
30331
30332 2003-12-04  Dick Porter  <dick@ximian.com>
30333
30334         * icall.c:
30335         * locales.c: construct_compareinfo is now in CompareInfo, not
30336         CultureInfo.
30337
30338 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
30339
30340         * image.c (mono_image_load_file_for_image): Cache loaded images in the
30341         image->files array.
30342
30343         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
30344         table as well.
30345
30346         * assembly.c (mono_assembly_load_references): Only load references
30347         once.
30348
30349         * class.c (mono_class_from_name): Avoid linear search of the 
30350         EXPORTEDTYPE table.
30351
30352         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
30353
30354 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
30355
30356         * image.h (MonoImage): Add 'field_cache' field.
30357
30358         * loader.c (mono_field_from_token): Cache field lookups.
30359         
30360         * reflection.c (mono_module_get_object): Fix name property.
30361
30362         * icall.c (ves_icall_get_enum_info): Update after changes to 
30363         mono_metadata_get_constant_index ().
30364
30365         * icall.c: Get rid of get_type_info icall, use a separate icall for
30366         each type property to avoid needless memory allocations. Fixes #51514.
30367
30368         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
30369         to avoid needless binary searches.
30370
30371         * class.c (class_compute_field_layout): Move the initialization of
30372         field->def_value to mono_class_vtable ().
30373
30374         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
30375         non-corlib types.
30376
30377         * object.c (mono_object_allocate): Make it inline.
30378
30379         * object.c (mono_object_allocate_spec): Make it inline.
30380         
30381 2003-12-02  Dick Porter  <dick@ximian.com>
30382
30383         * locales.c (create_NumberFormat): NumberFormatInfo construction.
30384         Patch by Mohammad DAMT (mdamt@cdl2000.com).
30385
30386 2003-12-01  Dick Porter  <dick@ximian.com>
30387
30388         * threads.c: Fix signature and call in CreateMutex and
30389         CreateEvent.
30390
30391 2003-12-01  Dick Porter  <dick@ximian.com>
30392
30393         * icall.c: 
30394         * locales.c: Implement string compares and searching
30395
30396         * object.h: Add extra Thread field
30397
30398 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30399
30400         * reflection.c (fixup_method): Add support for MonoCMethod.
30401
30402 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30403
30404         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30405
30406         * reflection.c (assembly_name_to_aname): Allow extra characters in
30407         assembly names. Fixes #51468.
30408
30409 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30410
30411         * exception.c (mono_exception_from_name_domain): New helper function.
30412
30413         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30414         exception object in the correct domain.
30415
30416         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30417         formatting + make a copy a the input data.
30418
30419         * loader.c (mono_get_method_from_token): Methods which contain
30420         native code do not have entries in the ImplMap.
30421
30422         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30423         Thanks to Gonzalo for spotting this.
30424         
30425         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30426         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30427
30428         * assembly.h (mono_assembly_load_from): Split the second part of 
30429         assembly loading into a new public function.
30430
30431         * exception.h (mono_get_exception_bad_image_format): New function.
30432
30433 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30434
30435         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30436         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30437         
30438         * icall.c: Add new icall for creating dynamic methods.
30439
30440         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30441
30442         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30443
30444         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30445         create a dynamic method.
30446
30447         * reflection.c (resolve_object): New helper function.
30448
30449         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30450         which manipulate it so they can also work on dynamic methods.
30451
30452         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30453         creating the MonoReflectionMethodAux structure if it is not needed.
30454         
30455         * reflection.h verify.c: Update after changes to object layout.
30456
30457         * reflection.c (method_builder_encode_signature): Fix compilation on
30458         gcc 2.95.x.
30459
30460 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30461
30462         * appdomain.h: Added support for context static fields. Added static_data
30463           field to MonoAppContext and renamed thread_static_fields to a more
30464           generic special_static_fields in MonoAppDomain, since it can now contain
30465           context static fields.
30466         * domain.c: Updated hashtable name.
30467         * object.c: Replaced field_is_thread_static() for a more generic
30468           field_is_special_static() which also checks for context static attribute.
30469           In mono_class_vtable(), added support for static context fields.
30470         * threads.c: Changed methods that manage thread static fields to more
30471           generic methods so they can be reused both for thread and context static
30472           data.
30473         * threads.h: Declared some new methods.
30474
30475 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30476
30477         * reflection.h: Update after changes to the managed types.
30478
30479         * reflection.c (encode_custom_modifiers): New helper function.
30480
30481         * reflection.c (method_encode_signature): Emit custom modifiers.
30482
30483         * reflection.c (field_encode_signature): Emit custom modifiers.
30484
30485 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30486
30487         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30488
30489         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30490         implementation.
30491
30492         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30493         icall.
30494
30495         * object.c (mono_field_get_value_object): New function.
30496
30497         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30498         specific.
30499
30500 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30501
30502         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30503         return a preallocated out-of-memory exception instance.
30504
30505         * object.c (out_of_memory): Use the new function.
30506
30507         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30508         flag is before the custom modifiers. Fixes #49802.
30509
30510 2003-11-16  Martin Baulig  <martin@ximian.com>
30511
30512         * class.c (mono_class_is_open_constructed_type): Implemented the
30513         MONO_TYPE_GENERICINST case.
30514
30515 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30516
30517         * assembly.c (mono_assembly_fill_assembly_name): New function to
30518         fill out the MonoAssemblyName structure.
30519         (mono_assembly_open): Use the new function.
30520
30521         * icall.c (fill_reflection_assembly_name): New helper function.
30522
30523         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30524         new function.
30525
30526         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30527
30528 2003-11-15  Martin Baulig  <martin@ximian.com>
30529
30530         * class.c (mono_class_is_open_constructed_type): New public
30531         function; checks whether a type is an open constructed type,
30532         ie. whether it still contains type parameters.
30533         (mono_class_inflate_generic_type): If we're a type parameter and
30534         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30535         type.
30536
30537         * class.h (MonoGenericInst): Added `guint32 is_open'.
30538
30539         * loader.c (method_from_methodspec): Check whether we're an open
30540         or closed constructed type and set `ginst->is_open'.
30541
30542         * reflection.c (mono_reflection_bind_generic_parameters): Check
30543         whether we're an open or closed constructed type and set
30544         `ginst->is_open'.
30545         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30546         from open constructed types.
30547
30548 2003-11-15  Martin Baulig  <martin@ximian.com>
30549
30550         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30551         a generic instance (instead of a generic type declaration) with
30552         unbound generic parameters, bind them to our actual types.
30553
30554 2003-11-14  Martin Baulig  <martin@ximian.com>
30555
30556         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30557
30558         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30559         an interface type, populate `res->interfaces' with instantiated
30560         versions of all the interfaces we inherit.
30561
30562 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30563
30564         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30565         when MONO_PATH is set but doesn't contain the install dir.
30566
30567 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30568
30569         * icall.c:
30570         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30571         it's also implemented in base classes. Fixes bug #50927.
30572
30573 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30574
30575         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30576         if this method is called from a finalizer. Fixes #50913.
30577
30578 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30579
30580         * threads.c: Implement VolatileRead/VolatileWrite
30581
30582         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30583
30584 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30585
30586         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30587         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30588         2.95.3.
30589
30590         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30591         from Peter Ross (pro@missioncriticalit.com).
30592         
30593 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30594
30595         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30596
30597 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30598
30599         * assembly.c (mono_assembly_load_references): Disable check because it
30600         triggers on older corlibs which lots of people have.
30601
30602 2003-11-12  Jackson Harper  <jackson@ximian.com>
30603
30604         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30605         load corlib.dll if mscorlib.dll is not found.
30606         * assembly.h: Remove corlib name define.
30607         * class.c:
30608         * domain.c:
30609         * image.c: Change corlib name to mscorlib.
30610         
30611 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30612
30613         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30614
30615 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30616
30617         * appdomain.h: Added loader_optimization here to sync with the C#
30618         code, and add disallow_binding_redirects field.
30619
30620 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30621
30622         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30623
30624         * reflection.c (mono_image_build_metadata): Fix crash on modules
30625         with no types.
30626
30627         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30628
30629         * icall.c (ves_icall_get_method_info): Return callingConvention as
30630         well.
30631
30632         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30633         namespaces from the EXPORTEDTYPE table as well.
30634
30635         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30636         from all modules inside the assembly.
30637         
30638 2003-11-11  Martin Baulig  <martin@ximian.com>
30639
30640         * reflection.c (mono_reflection_bind_generic_parameters): Make
30641         this work for interfaces.
30642
30643 2003-11-11  Martin Baulig  <martin@ximian.com>
30644
30645         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30646
30647 2003-11-11  Martin Baulig  <martin@ximian.com>
30648
30649         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30650         "MonoInflatedMethod" and "MonoInflatedCtor".
30651
30652 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30653
30654         * reflection.c (resolution_scope_from_image): Use the assembly table
30655         from the manifest module, since other modules don't have it.
30656
30657         * debug-helpers.c (mono_type_full_name): New helper function.
30658
30659         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30660
30661         * image.c (mono_image_load_file_for_image): New public function which
30662         is a replacement for the load_file_for_image in class.c.
30663
30664         * assembly.c (mono_assembly_load_module): A wrapper for the function
30665         above which does assembly association and reference loading too.
30666
30667         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30668
30669 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30670
30671         * appdomain.c: not all of the attributes for the full assembly name
30672         are required and the order doesn't matter. Fixes bug #50787.
30673
30674 2003-11-10  Dick Porter  <dick@ximian.com>
30675
30676         * locales.c: Use platform-endian UTF16
30677
30678 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30679
30680         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30681         
30682 2003-11-10  Martin Baulig  <martin@ximian.com>
30683
30684         * metadata.c
30685         (mono_metadata_load_generic_params): Make this actually work.
30686
30687         * reflection.c (mono_reflection_bind_generic_parameters): If our
30688         parent is a generic instance, pass all the `types' to it, no
30689         matter whether it has the same number of type parameters or not.
30690
30691 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30692
30693         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30694
30695         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30696         assignment code to this function so it gets called recursively for all
30697         modules.
30698
30699         * image.c (load_modules): Remove the assembly assignment since it is
30700         now done by mono_assembly_load_references.
30701         
30702         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30703         Add 'module' argument.
30704         (mono_module_get_types): New helper function.
30705         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30706
30707 2003-11-08  Martin Baulig  <martin@ximian.com>
30708
30709         * class.c (mono_class_inflate_generic_method): Interface method
30710         don't have a header.
30711
30712         * reflection.c (mono_image_get_methodspec_token): Take an
30713         additional `MonoGenericInst *' argument instead of reading it from
30714         the header; this is necessary to support interfaces.
30715         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30716         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30717         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30718         argument.
30719
30720         * reflection.h (MonoReflectionInflatedMethod): Added
30721         `MonoGenericInst *ginst'.
30722
30723 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30724
30725         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30726
30727 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30728
30729         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30730
30731 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30732
30733         * reflection.c 
30734         (reflection_methodbuilder_from_method_builder):
30735         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30736         initialize a ReflectionMethodBuilder structure.
30737         (mono_image_get_methodbuilder_token):
30738         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30739         tokens which point to types in another module inside the same assembly.
30740
30741         * reflection.c: Use the new helper functions.
30742         
30743         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30744
30745         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30746         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30747
30748         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30749         neccesary.
30750
30751         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30752         current module. Emit the manifest only for the main module.
30753
30754         * reflection.c (mono_image_create_token): Add assertion when a 
30755         memberref needs to be created.
30756
30757         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30758
30759         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30760         larger buffer for the custom attribute blob. Fixes #50637.
30761         
30762 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30763
30764         * threadpool.c: notify listener on async processing handles after
30765         invoking the async callback. Thanks to Zoltan.
30766
30767 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30768
30769         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30770         avoid code duplication.
30771
30772         * reflection.h (MonoDynamicImage): New type which is currently unused,
30773         but will be used through the ref.emit code in place of 
30774         MonoDynamicAssembly.
30775
30776         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30777         object layout.
30778
30779         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30780         a MonoDynamicImage instead of just a MonoImage.
30781         
30782         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30783         icalls to ModuleBuilder but keep their semantics, so they will work
30784         with moduleb->assemblyb. This will change later.
30785         
30786 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30787
30788         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30789         object layout.
30790
30791         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30792         main module, since it is now done by the managed code.
30793
30794 2003-11-03  Martin Baulig  <martin@ximian.com>
30795
30796         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30797         `ginst->klass' here.
30798         (method_encode_methodspec): Don't use the `ginst->generic_method's
30799         klass if it's a generic instance, use `ginst->klass' in this case.
30800
30801 2003-11-03  Martin Baulig  <martin@ximian.com>
30802
30803         * reflection.c (mono_image_get_generic_method_param_info):
30804         Removed, use mono_image_get_generic_param_info() instead.
30805         (mono_image_get_type_info): Write the GenericParam table before
30806         the Method table.  This is neccessary because in the GenericParam
30807         table, type parameters of the class (ie. '!0' etc.) must come
30808         before the ones from its generic methods (ie. '!!0' etc).
30809
30810 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30811
30812         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30813
30814 2003-11-02  Martin Baulig  <martin@ximian.com>
30815
30816         * reflection.c (create_generic_typespec): Take a
30817         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30818         the generic parameters from it.
30819
30820 2003-11-02  Martin Baulig  <martin@ximian.com>
30821
30822         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30823         instead of a `MonoClassField *' since we just need the type.
30824         (create_generic_typespec): New static function.  Creates a
30825         TypeSpec token for a generic type declaration.
30826         (mono_image_get_generic_field_token): New static function.
30827         (mono_image_create_token): If we're a FieldBuilder in a generic
30828         type declaration, call mono_image_get_generic_field_token() to get
30829         the token.
30830
30831 2003-11-02  Martin Baulig  <martin@ximian.com>
30832
30833         * reflection.h
30834         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30835         `MonoReflectionGenericInst *declaring_type' and
30836         `MonoReflectionGenericInst *reflected_type' fields.
30837
30838         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30839         `MonoReflectionGenericInst *declaring_type' and a
30840         `MonoReflectionGenericInst *reflected_type' argument instead of a
30841         single `MonoReflectionGenericInst *type' one.  Set
30842         `res->declaring_type' and `res->reflected_type' from them.
30843         (mono_reflection_inflate_field): Likewise.      
30844
30845 2003-11-02  Martin Baulig  <martin@ximian.com>
30846
30847         * class.c (mono_class_setup_vtable): Don't store generic methods
30848         in the vtable.  
30849
30850 2003-11-02  Martin Baulig  <martin@ximian.com>
30851
30852         * reflection.h (MonoReflectionGenericInst): Added
30853         `MonoReflectionType *declaring_type'.
30854
30855         * reflection.c (mono_reflection_bind_generic_parameters): Use
30856         `if (tb->parent)' instead of `klass->parent'.
30857
30858 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30859
30860         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30861         with an empty ASSEMBLY table.
30862
30863         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30864         variable in the inner and outer loops.
30865
30866 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30867
30868         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30869         argument.
30870
30871         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30872         
30873         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30874         icalls. Instead, do everything in managed code. This is needed since
30875         it is hard to restore the original domain etc. in unmanaged code in the
30876         presence of undeniable exceptions.
30877
30878         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30879         New icalls to push and pop appdomain refs.
30880
30881 2003-10-31  Martin Baulig  <martin@ximian.com>
30882
30883         * class.c (inflate_generic_type): Renamed to
30884         mono_class_inflate_generic_type() and made it public.
30885
30886         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30887         New interncall.
30888
30889         * loader.c (mono_field_from_memberref): Also set the retklass for
30890         typespecs.
30891
30892         * fielder.c (mono_image_get_inflated_field_token): New static
30893         method; creates a metadata token for an inflated field.
30894         (mono_image_create_token, fixup_method): Added support for
30895         "MonoInflatedField".
30896         (fieldbuilder_to_mono_class_field): New static function.
30897         (mono_reflection_inflate_field): New public function.
30898
30899         * reflection.h
30900         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30901         (MonoReflectionInflatedField): New typedef.     
30902
30903 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30904
30905         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30906         for Solaris and other platforms without s6_addr16
30907
30908 2003-10-30  Martin Baulig  <martin@ximian.com>
30909
30910         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30911         argument instead of two.
30912         (mono_class_inflate_generic_signature): Likewise.
30913         (inflate_generic_header): Likewise.
30914         (mono_class_inflate_generic_method): Likewise.  In addition, if
30915         `ginst->klass' is set, it becomes the new `method->klass'.
30916
30917         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30918         field.
30919
30920         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30921         first byte. [FIXME]
30922         (method_encode_methodspec): If we have generic parameters, create
30923         a MethodSpec instead of a MethodRef.
30924         (fixup_method): Added support for "MonoInflatedMethod" and
30925         "MonoInflatedCtor".
30926         (mono_image_create_token): Added support for "MonoInflatedMethod"
30927         and "MonoInflatedCtor".
30928         (inflated_method_get_object): New static function; returns a
30929         managed "System.Reflection.MonoInflatedMethod" object.
30930         (mono_reflection_bind_generic_method_parameters): Return a
30931         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30932         (mono_reflection_inflate_method_or_ctor): Likewise.
30933         (mono_image_get_generic_method_param_info): Initialize unused
30934         fields to zero.
30935         (mono_image_get_generic_param_info): Likewise.
30936
30937         * reflection.h (MonoReflectionInflatedMethod): New public
30938         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30939         "S.R.MonoInflatedCtor" classes.
30940
30941         * loader.c (method_from_memberref): If we're a TypeSpec and it
30942         resolves to a generic instance, inflate the method.
30943
30944 2003-10-28  Dick Porter  <dick@ximian.com>
30945
30946         * object.c (mono_runtime_run_main): Convert command-line arguments
30947         into utf8, falling back to the user's locale encoding to do so.
30948
30949 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30950
30951         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30952         at this time.
30953
30954         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30955
30956         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30957         up icalls at method definition time. Partially fixes #33569.
30958
30959 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30960
30961         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30962         marshalling of arrays. Fixes #50116.
30963
30964         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30965
30966         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30967         points to a vtable in the dying appdomain.
30968
30969         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30970         listeners into unmanaged code inside the lock.
30971
30972         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30973         domains and add some comments.
30974
30975 2003-10-25  Martin Baulig  <martin@ximian.com>
30976
30977         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30978
30979         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30980
30981         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30982         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30983         currently parsing.  Create the generic class and store it in
30984         `generic_inst->klass' before parsing the type arguments.  This is
30985         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30986         for an example.
30987         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30988         to support recursive typespec entries.
30989
30990         * class.c (mono_class_setup_parent): If our parent is a generic
30991         instance, we may get called before it has its name set.
30992         (mono_class_from_generic): Splitted into
30993         mono_class_create_from_generic() and mono_class_initialize_generic().
30994
30995 2003-10-25  Martin Baulig  <martin@ximian.com>
30996
30997         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30998         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30999         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
31000         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
31001
31002         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
31003         (create_typespec): Likewise.
31004         (mono_reflection_bind_generic_parameters): Return a
31005         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
31006         (mono_reflection_inflate_method_or_ctor): New public function.
31007
31008         * reflection.h (MonoReflectionGenericInst): New typedef.        
31009
31010 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
31011
31012         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
31013         inside the domain lock. Fixes #49993.
31014         
31015         * object.c (mono_class_vtable): When typed allocation is used, 
31016         allocate vtables in the GC heap instead of in the mempool, since the
31017         vtables contain GC descriptors which are used by the collector even
31018         after the domain owning the mempool is unloaded.
31019
31020         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
31021
31022         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
31023         reflect what it does. Also invalidate mempools instead of freeing
31024         them if a define is set.
31025
31026         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
31027         of the appdomain.
31028         
31029         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
31030         hold the finalizable objects in this domain.
31031
31032         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
31033         appdomain.
31034
31035         * appdomain.c (mono_domain_set): New function to set the current
31036         appdomain, but only if it is not being unloaded.
31037
31038         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
31039         appdomain which is being unloaded.
31040         
31041         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
31042         unloading of the root appdomain.
31043
31044         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
31045         icall to execute a method in another appdomain. Intended as a 
31046         replacement for InternalSetDomain, which can confuse the code 
31047         generation in the JIT.
31048
31049         * appdomain.c (mono_domain_is_unloading): New function to determine
31050         whenever an appdomain is unloading.
31051
31052         * appdomain.c (mono_domain_unload): New function to correctly unload
31053         an appdomain.
31054
31055         * assembly.c (mono_assembly_load_references): Check that an assembly
31056         does not references itself.
31057
31058         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
31059         domain manually, it asks the finalizer thread to do it, then waits for
31060         the result. Also added a timeout.
31061
31062         * icall.c: Register the new icalls.
31063
31064         * threads.h threads.c: Export the mono_gc_stop_world and 
31065         mono_gc_start_world functions.
31066         
31067         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
31068         function to fill out the mempool with 0x2a.
31069
31070 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
31071
31072         * reflection.h (MonoReflectionMethodAux): New structure to store
31073         information which is rarely used, thus is not in the MonoMethod
31074         structure.
31075
31076         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
31077         store the aux info.
31078
31079         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
31080         and marshalling info into the aux structure.
31081
31082         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
31083         from the aux structure.
31084
31085         * loader.c (mono_method_get_param_names): Retrieve the param names from
31086         the aux structure.
31087         
31088 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
31089
31090         * exception.h exception.c: Add AppDomainUnloadedException && fix 
31091         warning.
31092
31093 2003-10-21  Dick Porter  <dick@ximian.com>
31094
31095         * socket-io.c
31096         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
31097         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
31098
31099 2003-10-21  Martin Baulig  <martin@ximian.com>
31100
31101         * reflection.c (mono_reflection_bind_generic_parameters):
31102         `klass->parent' is NULL for interfaces.
31103
31104 2003-10-21  Martin Baulig  <martin@ximian.com>
31105
31106         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31107
31108 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
31109
31110         * exception.c (mono_exception_from_name_msg): New helper function for
31111         creating exceptions and initializing their message field.
31112
31113         * exception.c: Simplify functions using the new helper.
31114
31115         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
31116         New function.
31117
31118         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
31119         mono_raise_exception, since otherwise gcc doesn't generate the function
31120         epilog for raise_exception, confusing the stack unwinding in the JIT.
31121         Fixes #45043.
31122
31123         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
31124         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
31125         Fixes #49499.
31126
31127 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31128
31129         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
31130         utf8.
31131
31132 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
31133
31134         * icall.c: Removed GetUninitializedObject method because
31135           AllocateUninitializedClassInstance does the same.
31136
31137 2003-10-18  Martin Baulig  <martin@ximian.com>
31138
31139         * class.c (inflate_generic_signature): Renamed to
31140         mono_class_inflate_generic_signature() and made it public.
31141         (my_mono_class_from_generic_parameter): New static function; if we
31142         don't already have the generic parameter's MonoClass, create a
31143         very simple one which is just used internally in the runtime and
31144         not passed back to managed code.
31145
31146         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
31147
31148         * metadata.h (MonoMethodSignature): Moved the
31149         `MonoGenericParam *gen_params' to the MonoMethodHeader.
31150         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
31151
31152         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
31153         ves_icall_MonoMethod_GetGenericArguments(); this is now an
31154         interncall on the MonoMethod class, not on MethodInfo.
31155         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
31156         calling mono_reflection_bind_generic_method_parameters() directly.
31157
31158         * loader.c (mono_method_get_signature): If this is a MethodSpec;
31159         return the already computed `method->signature'.
31160         (method_from_methodspec): New static function to load a method
31161         from a MethodSpec entry.
31162         (mono_get_method_from_token): Call the new method_from_methodspec()
31163         for MethodSpec tokens.  
31164         (mono_get_method_from_token): If we're a generic method, load the
31165         type parameters.
31166
31167         * reflection.c (mono_image_get_memberref_token): Allow
31168         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
31169         table.
31170         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
31171         (mono_image_create_token): First check whether it's a generic
31172         method (so we'd need to create a MethodSpec), then do the other
31173         two alternatives.
31174         (mono_reflection_bind_generic_method_parameters): Return a
31175         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
31176         called directly from the interncall.
31177
31178 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
31179
31180         * reflection.c (load_public_key): Move loading of the public key
31181         into managed code.
31182
31183         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
31184
31185         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
31186         fields.
31187
31188         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
31189         culture, hash_alg and public_key. Fixes #49555.
31190
31191 2003-10-17  Martin Baulig  <martin@ximian.com>
31192
31193         * class.h (MonoGenericInst): Moved this declaration here and added
31194         `MonoMethod *generic_method'.
31195
31196         * icall.c
31197         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
31198         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
31199
31200         * metadata.c (mono_metadata_type_equal): Two types of
31201         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
31202         index; ie. don't compare the address of the `MonoGenericParam'
31203         structure.
31204         (mono_metadata_load_generic_params): Removed the `MonoMethod
31205         *method' argument.
31206
31207         * metadata.h (MonoGenericInst): Moved declaration to class.h.
31208         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
31209
31210         * reflection.c (method_encode_signature): Encode the number of
31211         generic parameters.
31212         (encode_generic_method_sig): New static function.
31213         (method_encode_methodspec): New static function; creates an entry
31214         in the MethodSpec table for a generic method.
31215         (mono_image_get_methodspec_token): New static function.
31216         (mono_image_create_token): Call mono_image_get_methodspec_token()
31217         for generic methods.
31218         (mono_reflection_bind_generic_method_parameters): New public
31219         function.  Instantiates a generic method.
31220
31221 2003-10-16  Martin Baulig  <martin@ximian.com>
31222
31223         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
31224         *gen_params' here from MonoMethodHeader.
31225
31226         * metadata.c (mono_metadata_parse_method_signature): If we have
31227         generic parameters, initialize `method->gen_params' and then set
31228         the correct `type->data.generic_param' in all the parameters.
31229
31230 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
31231
31232         * threads.c (mono_threads_get_default_stacksize): New function to 
31233         return the default stacksize.
31234
31235         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
31236         termination of the finalizer thread, since the previous method had
31237         race conditions. Fixes #49628.
31238
31239         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
31240         as for the other managed threads.
31241
31242 2003-10-16  Martin Baulig  <martin@ximian.com>
31243
31244         * class.c (inflate_generic_signature): Copy `generic_param_count'
31245         and `gen_params'.
31246
31247         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
31248         New interncall.
31249
31250         * metadata.c (mono_metadata_parse_method_signature): Actually set
31251         the `method->generic_param_count' here.
31252         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
31253
31254 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
31255
31256         * object.h: Add a new field to TypedRef to simplify the implementation
31257         of the REFANY opcodes in the JIT.
31258
31259         * icall.c: Make use of the new field.
31260
31261         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
31262         dynamically.
31263
31264 2003-10-15  Martin Baulig  <martin@ximian.com>
31265
31266         * class.c (mono_class_from_gen_param): Renamed to
31267         mono_class_from_generic_parameter() and moved most of the
31268         functionality from mono_reflection_define_generic_parameter()
31269         here; ie. we create a "real" class here.
31270         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
31271         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
31272         previously been called.
31273
31274         * class.h (MonoGenericParam): Moved the declaration of this struct
31275         here from metadata.h and added `MonoMethod *method'.
31276
31277         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
31278         interncall.
31279
31280         * loader.c (mono_get_method_from_token): If we have any generic
31281         parameters, call mono_metadata_load_generic_params() to read them
31282         from the MONO_TABLE_GENERICPAR.
31283
31284         * metadata.c (mono_metadata_load_generic_params): Added
31285         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
31286
31287         * metadata.h (MonoMethodSignature): Replaced
31288         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
31289         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
31290
31291         * reflection.c (mono_reflection_define_generic_parameter): Moved
31292         most of the functionality into the new
31293         mono_class_from_generic_parameter(); set the `method' field if
31294         we're a method parameter.       
31295
31296 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
31297
31298         * marshal.c (emit_struct_conv): if native size is 0
31299         emit no code.
31300
31301 2003-10-14  Martin Baulig  <martin@ximian.com>
31302
31303         * icall.c: The generics API has changed in the spec since it was
31304         added to System.Type; these modifications make it match the spec
31305         again.
31306         (ves_icall_Type_GetGenericParameters): Renamed to
31307         `ves_icall_Type_GetGenericArguments'.
31308         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
31309         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
31310         `ves_icall_MonoType_get_HasGenericArguments'.
31311         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
31312         `ves_icall_MonoType_get_IsGenericParameter'.
31313         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
31314         this is no interncall anymore.
31315         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
31316         `ves_icall_TypeBuilder_get_IsGenericParameter'.
31317
31318 2003-10-14  Martin Baulig  <martin@ximian.com>
31319
31320         * reflection.c (mono_reflection_bind_generic_parameters): Also
31321         inflate generic methods if we're reading the class from IL.
31322
31323 2003-10-13  Martin Baulig  <martin@ximian.com>
31324
31325         * reflection.c (mono_reflection_define_generic_parameter): This
31326         method isn't called directly from the icall anymore; take a
31327         `MonoReflectionAssemblyBuilder *' so we can use this for type and
31328         method generic parameters.
31329         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
31330         (method_builder_encode_signature): Encode generic parameters.
31331         (mono_image_get_method_info): Write generic params to the
31332         MONO_TABLE_GENERICPARAM table.
31333
31334         * reflection.h (MonoReflectionMethodBuilder): Added
31335         `MonoArray *generic_params'.
31336
31337         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
31338
31339         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
31340         wrapper for mono_reflection_define_generic_parameter().
31341         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
31342
31343 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
31344
31345         * marshal.h: Add missing function to fix build.
31346
31347         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
31348         the SetLastError pinvoke attribute.
31349
31350         * marshal.c (mono_marshal_set_last_error): New helper function called
31351         by the generated code.
31352         
31353         * marshal.c (mono_mb_emit_branch): New helper function.
31354
31355         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
31356
31357         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31358         classes as parameters and return values of delegates. Fixes #29256. 
31359
31360 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
31361
31362         * locales.c: use gint32 in non HAVE_ICU case
31363
31364 2003-10-11  Martin Baulig  <martin@ximian.com>
31365
31366         * mono-debug.c (mono_debug_add_method): Added a workaround for
31367         bug #48591.
31368
31369 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
31370
31371         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
31372         delegates passed to native code must use the STDCALL calling 
31373         convention. Fixes #35987.
31374
31375 2003-10-10  Martin Baulig  <martin@ximian.com>
31376
31377         * class.c (inflate_generic_type): If we're inflating for a generic
31378         type instance (and not for a generic method), return
31379         MONO_TYPE_MVAR unchanged.
31380
31381 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31382
31383         * string-icalls.c: Join ignores null strings in the source array.
31384         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
31385         * threads.c: GetAvailableTheads is slightly more accurate.
31386
31387 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31388
31389         * threads.h threads.c : add mono_threads_set_default_stacksize
31390         and pass default to CreateThread calls.
31391
31392 2003-10-09  Dick Porter  <dick@ximian.com>
31393
31394         * icall.c:
31395         * locales.h:
31396         * locales.c: Internal calls for constructing CultureInfo and
31397         related objects from libicu (if its available.)
31398
31399 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31400
31401         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31402
31403 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31404
31405         * threadpool.c: added an argument to async_invoke_thread that is the
31406         item to process, pass the MonoAsyncResult to the thread start function
31407         when creating a new thread. This way we don't need to acquire any lock
31408         when we're creating a new thread. Readded a semaphore for faster
31409         response times (instead of that Sleep i added).
31410
31411 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31412
31413         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31414         get daylight change dates better on Windows, fix handling
31415         of platforms without tm_gmtoff.
31416
31417 2003-10-06  Martin Baulig  <martin@ximian.com>
31418
31419         * class.c (inflate_generic_method): Renamed to
31420         mono_class_inflate_generic_method() and made public.
31421         (mono_class_init): Don't inflate the generic methods here.
31422         (mono_class_from_generic): Added `gboolean inflate_methods'
31423         argument.  Inflate the methods here.
31424
31425         * loader.c (mono_method_get_param_names): Ignore instances of
31426         generic types for the moment.
31427
31428         * reflection.c (fixup_method): Added support for inflated methods.
31429         (mono_image_create_token): Use mono_image_get_methodref_token()
31430         for inflated methods.
31431         (mono_custom_attrs_from_param): Ignore instances of generic types
31432         for the moment.
31433         (mono_reflection_bind_generic_parameters): New public function.
31434         Moved all the functionality from
31435         ves_icall_Type_BindGenericParameters() here and added support for
31436         dynamic types.
31437         (mono_reflection_define_generic_parameter): Initialize
31438         `klass->methods' here.
31439
31440         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31441         functionality into mono_reflection_define_generic_parameter().
31442         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31443         TypeBuilder, return that TypeBuilder.
31444
31445 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31446
31447         * appdomain.c: removed mono_delegate_semaphore.
31448
31449         * threadpool.c:
31450         (mono_thread_pool_add): moved hash table creation inside and the thread 
31451         creation outside of the critical region.
31452         (mono_thread_pool_finish): removed obsolete code.
31453         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31454         continue or exit the thread depending on the queue.
31455
31456 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31457
31458         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31459         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31460         handle more bool marshalling options
31461
31462 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31463
31464         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31465         arrays of structs. Also add a more descriptive error message when
31466         a structure member is marshalled as LPArray.
31467
31468 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31469
31470         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31471         marshalling arrays of complex types. Fixes #29098. Also remove an
31472         usused and incomplete function.
31473
31474 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31475
31476         * gc.c: report heap_size - free_bytes as total memory allocated
31477         (bug#49362).
31478
31479 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31480
31481         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31482         fix timezone handling problems on Windows.
31483         
31484         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31485         asserts when the year is outside the range handled by ms the functions.
31486
31487         * class.c (setup_interface_offsets): If the class is an interface,
31488         fill out its interface_offsets slot.
31489
31490 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31491
31492         * threadpool.c: mark threadpool threads as background.
31493
31494 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31495
31496         * decimal.c - define DECINLINE to nothing if not using GCC
31497
31498 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31499
31500         * assembly.c: More refcount fixes.
31501
31502 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31503
31504         * string-icalls.c: if we're not trimming, return the same string.
31505         When not splitting, don't create a new string.
31506
31507 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31508
31509         * image.c:
31510         (mono_image_open): increment the ref_count inside the critical section.
31511
31512 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31513
31514         * image.c (mono_image_open): Fix reference counting bug.
31515
31516 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31517
31518         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31519         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31520         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31521         mono_lookup_pinvoke_call throws.        
31522
31523 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31524
31525         * reflection.c (mono_reflection_parse_type): Fix #49114.
31526
31527         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31528         temporary workaround for cygwin header problem.
31529
31530         * object.c (mono_object_isinst): Synchronize this with the code
31531         generated by the JIT for casts.
31532
31533 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31534
31535         * reflection.c (encode_type): Fix #38332.
31536
31537 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31538
31539         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31540         the original method from the wrapper method.
31541
31542 2003-09-25  Martin Baulig  <martin@ximian.com>
31543
31544         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31545         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31546         (ves_icall_Type_get_IsGenericInstance): New interncall.
31547
31548 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31549
31550         * object.c: fix cast warning in big endian code.
31551
31552 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31553
31554         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31555         
31556 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31557
31558         * assembly.c: don't call check_env from mono_assembly_load. It's
31559         already done once in mono_assemblies_init and may cause headaches when
31560         multiple threads are loading assemblies.
31561
31562 2003-09-19  Martin Baulig  <martin@ximian.com>
31563
31564         * reflection.c (mono_reflection_define_generic_parameter): Don't
31565         allocate `klass->methods', set `klass->flags' to
31566         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31567
31568 2003-09-18  Martin Baulig  <martin@ximian.com>
31569
31570         * class.c (mono_class_init): Don't create `class->methods' if it's
31571         already initialized.
31572
31573         * metadata.c (mono_metadata_load_generic_params): Make this
31574         actually work.
31575
31576         * reflection.c (mono_reflection_define_generic_parameter): Set
31577         parent class and interfaces from the constraints.
31578
31579         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31580         to keep this struct in sync with the declaration in TypeBuilder.cs.
31581
31582 2003-09-17  Martin Baulig  <martin@ximian.com>
31583
31584         * metadata.h (MonoType): Replaced the data's `int type_param'
31585         field with `MonoGenericParam *generic_param'.
31586         (MonoGenericParam): Added `MonoClass *klass'.
31587
31588         * class.c (mono_class_from_gen_param): Removed the
31589         `MonoImage *image' and `int type_num' arguments.
31590
31591         * metadata.c (mono_metadata_parse_generic_param): New static
31592         method; creates a MonoGenericParam which just contains the index.
31593         (do_mono_metadata_parse_type): Call
31594         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31595         MONO_TYPE_MVAR.
31596
31597         * reflection.c (mono_image_typedef_or_ref): Generic type
31598         parameters may be in the same assembly, but never use a typedef
31599         for them.
31600         (mono_reflection_define_generic_parameter): We're now creating a
31601         "real" class for the type parameter; it's now safe to call
31602         mono_class_from_mono_type() on the class'es type, it'll do the
31603         right thing.
31604
31605 2003-09-16  Martin Baulig  <martin@ximian.com>
31606
31607         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31608         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31609         the `symfile' data structure must be fully initialized before it
31610         gets added to the table.
31611
31612 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31613
31614         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31615
31616         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31617         class init trampolines.
31618
31619 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31620
31621         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31622         to the built-in profiler to turn off time and allocation profiling
31623         respectively.
31624
31625 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31626
31627         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31628         g_direct_equal.
31629
31630         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31631         in human readable form.
31632
31633 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31634
31635         * reflection.c icall.c: Fixed warnings.
31636
31637         * image.c (load_class_names): Use a temporary hash table to hold the
31638         namespaces in order to avoid doing many string comparisons.
31639
31640         * image.h: Fix typo.
31641
31642         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31643         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31644         since the NULL case is short-circuited inside g_hash_table_lookup, 
31645         leading to better performance.  
31646
31647         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31648         obtain the first custom attribute for a given index. Depends on the
31649         CustomAttribute table being sorted by the parent field.
31650
31651         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31652         for better performance.
31653
31654 2003-09-07  Martin Baulig  <martin@ximian.com>
31655
31656         * class.c (mono_class_init): If we're a generic instance, inflate
31657         all our methods instead of loading them from the image.
31658         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31659
31660 2003-09-07  Martin Baulig  <martin@ximian.com>
31661
31662         * mono-debug-debugger.c: Added support for constructors.
31663
31664 2003-09-06  Martin Baulig  <martin@ximian.com>
31665
31666         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31667         New interncall.
31668
31669         * reflection.c (mono_reflection_setup_generic_class): Call
31670         ensure_runtime_vtable() to create the vtable.
31671
31672 2003-09-05  Martin Baulig  <martin@ximian.com>
31673
31674         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31675         MONO_TYPE_MVAR.
31676
31677 2003-09-04  Martin Baulig  <martin@ximian.com>
31678
31679         * reflection.c (mono_reflection_define_generic_parameter): Generic
31680         parameters start with zero.
31681
31682 2003-09-04  Martin Baulig  <martin@ximian.com>
31683
31684         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31685
31686         * reflection.h (MonoReflectionGenericParam): New typedef.
31687         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31688         the generic parameters from the managed TypeBuilder.
31689
31690         * reflection.c (mono_reflection_define_generic_parameter): New function.
31691         (mono_reflection_create_runtime_class): Encode generic parameters.
31692         (mono_reflection_setup_generic_class): New function; this is
31693         called after adding adding all generic params to the TypeBuilder.
31694         (encode_type): Added MONO_TYPE_VAR.
31695
31696 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31697
31698         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31699         here from the JIT.
31700
31701         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31702         load hook.
31703
31704 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31705
31706         * reflection.h reflection.c class.h class.c: Delete duplicate 
31707         definition of mono_type_get_name () from reflection.c and export the
31708         one in class.c.
31709
31710         * class.c: Class loading fixes from Bernie Solomon 
31711         (bernard@ugsolutions.com).
31712
31713         * reflection.c: Endianness fixes from Bernie Solomon 
31714         (bernard@ugsolutions.com).
31715         
31716 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31717
31718         * assembly.h assembly.c: Define a file format version for AOT
31719         libraries.
31720         
31721         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31722
31723         * appdomain.h (MonoJitInfo): New field to determine whenever the
31724         code is domain neutral.
31725         
31726 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31727
31728         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31729
31730 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31731
31732         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31733         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31734         Avoid caching the result since strings must be domain specific. Fixes
31735         #48050.
31736
31737 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31738
31739         * marshal.c (mono_marshal_init): Make this callable multiple times
31740         since it is hard to find a correct place to call it.
31741
31742         * object.c (mono_runtime_class_init): Execute static constructors in
31743         the correct appdomain.
31744
31745         * image.c (build_guid_table): Handle the case when multiple images have
31746         the same GUID.
31747
31748 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31749
31750         * icall.c: added a couple of icalls for System.Web.
31751
31752 2003-08-28  Martin Baulig  <martin@ximian.com>
31753
31754         * icall.c (ves_icall_Type_BindGenericParameters): Use
31755         `klass->generic_inst' instead of `&klass->byval_arg' in the
31756         mono_type_get_object() call.  The returned type must be
31757         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31758
31759 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31760
31761         * NOTES: New file.
31762
31763         * object.c (mono_class_proxy_vtable): Make it thread safe.
31764
31765         * pedump.c: Fix warning.
31766
31767         * object.c appdomain.h: Get rid of metadata_section. 
31768         It is no longer needed and it was causing deadlocks with domain->lock.
31769
31770         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31771
31772 2003-08-26  Martin Baulig  <martin@ximian.com>
31773
31774         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31775
31776 2003-08-26  Martin Baulig  <martin@ximian.com>
31777
31778         * pedump.c (main): Call mono_metadata_init(),
31779         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31780         and mono_loader_init().
31781
31782 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31783
31784         * loader.h: Add missing include to fix build.
31785
31786         * image.h: mono_image_load_references is no more.
31787
31788         * assembly.c: Reworked assembly loading to make it really thread safe.
31789         After these changes, the assembly returned by mono_assembly_open is
31790         fully initialized, i.e. all its references assemblies are loaded.
31791
31792         * assembly.c (mono_image_load_references): Renamed to 
31793         mono_assembly_load_references, and made private, since clients no
31794         longer need to call it.
31795
31796         * class.c: Removed calls to mono_assembly_load_references, since it was
31797         a source of deadlocks.
31798
31799         * loader.h loader.c class.h class.c: Protect data structures using a 
31800         new lock, the loader lock.
31801
31802         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31803         GPtrArrays only when needed.
31804
31805         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31806         into empty structures by mcs. Fixes pinvoke7.cs.
31807         
31808         * domain.c (mono_init): Call a new initialization function.
31809
31810         * appdomain.c (mono_runtime_init): Call the new initializer function
31811         of the marshal module.
31812
31813         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31814         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31815
31816         * marshal.h marshal.c: Added locks around the wrapper caches to make
31817         this module thread safe.
31818
31819         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31820         this argument. Fixes pinvoke1.exe.
31821
31822 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31823
31824         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31825         enumeration of values. Removed fields to store remote call output values in
31826         MonoAsyncResult. Not needed any more.
31827         * object.c: Initialize call_type and async_result fields in mono_message_init.
31828         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31829         dispatching the message.
31830         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31831         async call to finish. To do it use a message with EndInvoke call type.
31832
31833 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31834
31835         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31836         determines whenever a method has marshalling info.
31837
31838 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31839
31840         * assembly.c: fix the build on windows.
31841
31842 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31843
31844         * object.cs: Fixed bug #47785.
31845
31846 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31847
31848         * string-icalls.c (StringReplace): If their are no occurances of
31849         the old string found return a reference to the supplied
31850         string. This saves some memory and matches MS behavoir.
31851         
31852 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31853
31854         * socket-io.c: fixed compilation for systems that define AF_INET6
31855         and don't define SOL_IP/SOL_IPV6.
31856
31857 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31858
31859         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31860         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31861
31862         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31863
31864         * domain.c: Make this module thread safe.
31865
31866         * domain.c (mono_init): Call new initialization function.
31867
31868         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31869         reference types too. Fixes #38812.
31870
31871         * image.c (mono_image_init): Fixed warnings.
31872
31873         * class.c (mono_class_from_typeref): Handle assembly load failure
31874         correctly.
31875
31876         * appdomain.c (add_assemblies_to_domain): Handle the case when
31877         the references of an assembly are not yet loaded.
31878
31879         * metadata.c image.c assembly.c: Moved initialization of global
31880         variables to a separate function called at startup since lazy 
31881         initialization of these variables is not thread safe.
31882         
31883         * image.c assembly.c: Made this module thread safe by adding locks in 
31884         the appropriate places.
31885
31886         * domain.c (mono_init): Call the new initialization functions of the
31887         three modules.
31888
31889 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31890
31891         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31892           make a direct call. It is proxy's work to make the call asynchronous.
31893           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31894           the return values.
31895         * object.cs: mono_method_call_message_new(): read AsyncResult and
31896           state object from parameters list, if this info is requested.
31897         * object.h: Added fields to store remote call output values in
31898           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31899
31900 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31901
31902         * object.h: add needed fields to MonoThread.
31903         * threads.c, threads.h: allow registering a function to cleanup data
31904         allocated per thread by the JIT.
31905
31906 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31907
31908         * loader.h: portability fix by Bernie Solomon
31909         * <bernard@ugsolutions.com>.
31910
31911 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31912
31913         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31914         return a MonoArray. This simplifies the code and also ensures that
31915         the cache allways contains an object reference as a value.
31916
31917         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31918         function.
31919
31920 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31921
31922         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31923         fixes a problem with byte ordering when getting the address family for
31924         a socket.
31925
31926 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31927
31928         * .cvsignore: Added monosn.
31929
31930         * reflection.h reflection.c loader.c: Added support for parameter
31931         marshalling to dynamically created types. Fixes #47295.
31932
31933 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31934
31935         * rand.c: remove useless warnings.
31936
31937 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31938
31939         * class.c: implemented ldtoken for methods and fieldrefs.
31940
31941 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31942
31943         * threadpool.c: when mono_async_invoke was called, no one took care of
31944         monitoring the queue. So if the method invoked took some time and we
31945         got new async invoke requests after 500 ms (the thread created waited
31946         that long in WaitForSingleObject), the new async invoke was not called
31947         until the previous one finished.
31948
31949         This is fixed now. Thanks to Totte for helping with it.
31950
31951 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31952
31953         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31954
31955 2003-08-11  Martin Baulig  <martin@ximian.com>
31956
31957         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31958
31959 2003-08-06  Martin Baulig  <martin@ximian.com>
31960
31961         * mono-debug-debugger.c: Added support for static fields,
31962         properties and methods.
31963
31964 2003-08-06  Martin Baulig  <martin@ximian.com>
31965
31966         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31967         make this work for applications with multiple application domains.
31968
31969 2003-08-04  Martin Baulig  <martin@ximian.com>
31970
31971         * mono-debug-debugger.c: Completely reworked the type support; the
31972         most important thing is that we're now just using one single
31973         `MonoType' instance per type.
31974
31975 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31976
31977         * mono-endian.h, mono-endian.c, icall.c: Added icall
31978         ves_icall_System_Double_AssertEndianity to assert double word endianity
31979         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31980
31981 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31982
31983         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31984         support, icalls and fixes.
31985
31986 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31987
31988         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31989         classes that are a punctuation character in .NET is not the same a
31990         g_unichar_ispunct.
31991
31992 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31993
31994         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31995
31996 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31997
31998         * icall.c: Add new MemCopy internalcall.
31999         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
32000         Simplified code; It is not necessary to handle all the cases here,
32001         as the C# code takes care of it.  Only handle the case of the name
32002         resource embedded into the assembly.
32003
32004         Changed signature to return the data pointer and the size of the
32005         data. 
32006
32007 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
32008
32009         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
32010         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
32011
32012 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32013
32014         * socket-io.c: ignore EINTR error in select.
32015
32016 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32017
32018         * class.h, class.c: removed unused subclasses field in MonoClass.
32019
32020 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32021
32022         * icall.c: improve fix of get_base_definition(). If the parent class
32023           doesn't have the mehod, look at the parent of the parent.
32024         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
32025           to check if a parameter is an in or out parameter
32026           (PARAM_ATTRIBUTE_IN is not set by default).
32027           mono_method_return_message_restore(): Use mono_class_value_size to
32028           get the size of a value type. mono_type_stack_size (parameterType)
32029           does not return the correct value if parameterType is byRef.
32030           mono_load_remote_field(), mono_load_remote_field_new(),
32031           mono_store_remote_field(), mono_store_remote_field_new():
32032           raise exception if the remote call returns an exception.
32033
32034 2003-07-28  Martin Baulig  <martin@ximian.com>
32035
32036         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
32037         method.  This is a wrapper around mono_runtime_invoke() which
32038         boxes the instance object if neccessary.
32039
32040 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32041
32042         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
32043         metadata.h, row-indexes.h, verify.c: first cut of generics support.
32044
32045 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32046
32047         * icall.c: disable mcs bug workaround.
32048
32049 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
32050
32051         * object.c (mono_runtime_class_init): Take the metadata_section
32052         mutex before obtaining the domain mutex.
32053
32054         * appdomain.h: Added definition of metadata_section mutex here. 
32055
32056         * object.c: define metadata_mutex here.
32057
32058 2003-07-24  Ravi Pratap  <ravi@ximian.com>
32059
32060         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
32061         fixed.
32062
32063 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
32064
32065         * reflection.c: Fix bug #46669
32066
32067 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32068
32069         * exception.c:
32070         * exception.h:
32071         * icall.c:
32072         * object.h: fill in the type name for TypeLoadException.
32073
32074 2003-07-23  Ravi Pratap  <ravi@ximian.com>
32075
32076         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
32077         relationship between TypeBuilders while compiling corlib) and bug
32078         45993 (Array types returned from the runtime while compiling
32079         corlib were from the loaded corlib).
32080
32081 2003-07-22  Martin Baulig  <martin@ximian.com>
32082
32083         * mono-debug-debugger.c: Reworked the type support a bit more;
32084         distinguish between types and classes.
32085
32086 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
32087
32088         * icall.c: add IsArrayImpl icall.
32089
32090 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
32091
32092         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
32093         initializing real_size only once. Also fix bug #46602.
32094
32095 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
32096
32097         * object.c: Renamed mono_metadata_section to metadata_section.
32098
32099 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
32100
32101         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
32102           empty array if the type is an array. Fixed.
32103           ves_icall_MonoMethod_get_base_definition: if the base method
32104           is abstract, get the MethodInfo from the list of methods of
32105           the class.
32106         * reflection.c: ParameterInfo.PositionImpl should be zero-based
32107           and it was 1-based. Fixed in mono_param_get_objects.
32108
32109 2003-07-20  Martin Baulig  <martin@ximian.com>
32110
32111         * mono-debug.h: Set version number to 31.
32112         (mono_debug_init): Added `MonoDomain *' argument.
32113
32114         * mono-debug-debugger.c: Reworked the type support; explicitly
32115         tell the debugger about builtin types; pass the `klass' address to
32116         the debugger.
32117
32118 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
32119
32120         * image.c: Allow new metadata tables to be loaded without a
32121         warning. Also update the warning message to give the new constant value.
32122                 
32123 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
32124
32125         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
32126         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
32127         array type representation changes.
32128
32129 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32130
32131         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
32132         on Environment.Exit () call.
32133
32134 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
32135
32136         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
32137         requires a matching corlib.
32138
32139 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32140
32141         * Changelog: My editor decided to add a CR to each line. Sorry about that.
32142           Committed again without the CRs.
32143         
32144 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32145
32146         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
32147           getting it from the "this" socket instance. Did not work
32148           if the socket is a subclass of Socket.
32149           Also fixed bug #35371.
32150
32151 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32152
32153         * metadata.c: fixed size for TypedByRef.
32154         * loader.c: when searching for a method, consider the vararg amrker.
32155         * unicode.c, decimal.c: constify some arrays.
32156
32157 2003-07-15  Dick Porter  <dick@ximian.com>
32158
32159         * socket-io.c: Fixed compilation for gcc < 3.2.
32160
32161         Fixed compilation for machines that don't have AF_INET6 (thanks to
32162         Bernie Solomon <bernard@ugsolutions.com> for that part.)
32163
32164         Fixed compile warnings.
32165         
32166         Fixed formatting and line endings.
32167
32168 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
32169
32170         * socket-io.h:
32171         * socket-io.c: Added IPv6 support.
32172
32173 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
32174
32175         * class.c (mono_class_is_assignable_from): New function to implement
32176         the is_assignable_from logic. Used by mono_object_isinst, 
32177         Type::IsAssignableFrom () and the interpreter.
32178
32179         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
32180         Object, even interfaces.
32181         
32182         * object.c (mono_object_isinst): Implement in terms of 
32183         is_assignable_from.
32184
32185         * icall.c (ves_icall_type_is_assignable_from): New icall.
32186
32187 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
32188
32189         * domain.c (foreach_domain): fix compiler warning.
32190
32191 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
32192
32193         * image.c (load_metadata_ptrs): use g_strndup because strndup is
32194         not available on all plattforms
32195
32196 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
32197
32198         * image.h image.c: Store the metadata version string in MonoImage.
32199         * icall.c: New icall to retrieve the image version.
32200         * reflection.c (create_dynamic_image): Fill in the image version field
32201         * reflection.c (build_compressed_metadata): Use the image version
32202         from the image structure.
32203
32204 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32205
32206         * appdomain.c: modified comment.
32207         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
32208         That will be its last iteration when mono_gc_cleanup is called from
32209         mono_runtime_cleanup and before the domain is unloaded.
32210
32211         Fixes bug #45962.
32212
32213 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
32214
32215         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
32216         attributes.
32217
32218 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32219
32220         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
32221         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
32222         Bernie Solomon <bernard@ugsolutions.com>.
32223
32224 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32225
32226         * object.c, object.h: provide mono_object_new_fast() for faster
32227         allocation in some special cases.
32228
32229 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
32230
32231         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
32232         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
32233
32234 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
32235
32236         * threadpool.c: fix leaks.
32237
32238 2003-07-01  Dick Porter  <dick@ximian.com>
32239
32240         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
32241         using MonoGHashTables.  Fixes threadpool bug posted to list.
32242
32243 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
32244
32245         * image.h, image.c: added support to load an assembly from a byte array.
32246         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
32247         assembly bundle support.
32248
32249 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
32250
32251         * threadpool.c (mono_thread_pool_add): keep a reference to the
32252         AsyncResult to prevent GC
32253
32254 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32255
32256         * class.c: leak fix.
32257
32258 2003-06-25  Dick Porter  <dick@ximian.com>
32259
32260         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
32261         for the async object, the WaitHandle object will close the handle.
32262         Fixes bug 45321.
32263
32264 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32265
32266         * class.c: in mono_array_class_get (), lookup from the hash with the
32267         same type we insert: this works around a bug in
32268         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
32269         lluis. The real fix will have to wait for after the release.
32270
32271 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32272
32273         * icall.c: fix memory leak when getting type members.
32274
32275 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32276
32277         * reflection.c: added more pubtoken special cases.
32278
32279 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
32280
32281         * class.c: handle field offset correctly when class size
32282         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
32283
32284 2003-06-20  Martin Baulig  <martin@ximian.com>
32285
32286         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
32287         *image' field.
32288
32289 2003-06-20  Martin Baulig  <martin@ximian.com>
32290
32291         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
32292
32293 2003-06-20  Martin Baulig  <martin@ximian.com>
32294
32295         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
32296         just distinguish between variables in registers and variables at
32297         an offset relative to a register.
32298
32299 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32300
32301         * icall.c: #ifdef out latest changes until mcs is fixed.
32302
32303 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32304
32305         * icall.c: return members in metadata order.
32306
32307 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32308
32309         * icall.c: avoid infinite loop in GetTimeZoneData.
32310
32311 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
32312
32313         * icall.c: added Marshal.Prelink/All icalls.
32314
32315 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32316
32317         * object.c, object.h: fix warnings and do some overflow checking
32318         when creating arrays.
32319
32320 2003-06-17  Dick Porter  <dick@ximian.com>
32321
32322         * file-io.h:
32323         * file-io.c: File attributes need to be tweaked slightly when
32324         passed from the managed to the w32 world.
32325
32326 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32327         * profiler.h profiler-private.h profiler.c: Rework last patch
32328         based on suggestion by Paolo.
32329         
32330 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32331
32332         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
32333         instruction level coverage data collection.
32334         * profiler.h profiler.c (: Added new callback function which can be
32335         used by the profiler to limit which functions should have coverage
32336         instrumentation.
32337         * profiler.c (mono_profiler_load): Call g_module_build_path to
32338         generate the file name of the profiler library.
32339
32340 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32341
32342         * profiler.c, profiler.h, profiler-private.h: added basic block 
32343         coverage profiling API.
32344
32345 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
32346
32347         * reflection.c (mono_reflection_create_runtime_class): Add support
32348         for events in dynamically generated code.
32349
32350         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
32351         not allocated.
32352
32353 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32354
32355         * icall.c: when getting timezone info, return reasonable values if we
32356         can't get the actual data.
32357
32358 2003-06-14  Dick Porter  <dick@ximian.com>
32359
32360         * threads.c (start_wrapper): Remove the reference to the thread
32361         object in the TLS data, so the thread object can be finalized.
32362         This won't be reached if the thread threw an uncaught exception,
32363         so those thread handles will stay referenced :-( (This is due to
32364         missing support for scanning thread-specific data in the Boehm GC
32365         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
32366
32367 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
32368
32369         * reflection.c: ensure streams and tables are first allocated with
32370         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
32371
32372 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32373
32374         * icall.c: fixed GetElementType for byrefs (bug# 44792).
32375
32376 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
32377
32378         * reflection.c (mono_reflection_create_runtime_class): Add support for
32379         properties to dynamically created classes.
32380         * reflection.c: Fix a few places where non-MonoObjects were inserted
32381         into the tokens hashtable.
32382
32383 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32384
32385         * object.c: some support to handle out of memory exceptions.
32386
32387 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32388
32389         * marshal.c (mono_marshal_get_native_wrapper): support reference
32390         return types
32391
32392 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32393
32394         * object.h, object.c: more portability stuff from Bernie Solomon.
32395         Unexport mono_object_allocate(). Added mono_object_unbox ().
32396         Set exitcode when an unhandled exception is thrown.
32397
32398 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32399
32400         * marshal.c (mono_marshal_get_native_wrapper): use custom
32401         marshaler for return types.
32402
32403 2003-06-10  Dick Porter  <dick@ximian.com>
32404
32405         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32406         ip_mreq is available
32407
32408 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32409
32410         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32411         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32412         by Bernie Solomon <bernard@ugsolutions.com>.
32413
32414 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32415
32416         * gc.c (mono_gc_init): Avoid error message on shutdown when
32417         GC_DONT_GC=1 is used.
32418
32419         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32420         New icall to return the GUID of a module.
32421
32422 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32423
32424         * class.c: ensure instance size always includes the parent's size
32425         even whem class size is set explicitly (fixes bug#44294).
32426
32427 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32428
32429         * profiler.h, profiler.c: made the simple profiler thread-safe,
32430         get more accurate timing info. Allow the loading of an
32431         externally-developed profiler module.
32432
32433 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32434
32435         * marshal.c (mono_marshal_get_native_wrapper): improved
32436         class/byref arguments.
32437         (mono_marshal_get_native_wrapper): better string marshaling support.
32438
32439 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32440
32441         * class.c: ensure .pack and .size are handled correctly and
32442         simplified layout of static fields.
32443
32444 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32445
32446         * appdomain.c
32447         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32448
32449         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32450         current directory (fix bug 44008)
32451
32452 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32453
32454         * marshal.c (mono_marshal_get_native_wrapper): started support for
32455         custom marshalers.
32456         (mono_delegate_to_ftnptr): consider marshalling specifications
32457
32458 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32459
32460         * reflection.c, reflection.h: emit custom marshal info.
32461
32462 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32463
32464         * object.c: free the GError.
32465         * icall.c: added CloseEvent_internal.
32466         * threads.[ch]:
32467         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32468         call.
32469
32470 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32471
32472         * loader.c (mono_method_get_signature): Add support for dynamic
32473         assemblies.
32474
32475 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32476
32477         * reflection.c: fixed bug #43905.
32478
32479 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32480
32481         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32482         handling TypedReference and ArgIterator.
32483         * loader.c, loader.h: added function to get signature at call site.
32484
32485 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32486
32487         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32488         data readonly. Buglets and warning fixes. Some MethodSpec support.
32489
32490 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32491
32492         * class.h, class.c, object.c: remove relative numbering support.
32493
32494 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32495
32496         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32497         free the string, until we get a chance to fix Gtk#
32498
32499 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32500
32501         * marshal.c: revert last patch.
32502
32503 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32504
32505         * icall.c: updates for new mono_class_vtable() not calling
32506         the type constructor anymore.
32507
32508 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32509
32510         * object.h, object.c: separate vtable creation from type
32511         initialization. Make running the .cctor thread safe.
32512
32513 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32514
32515         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32516
32517 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32518
32519         * loader.c (mono_get_method): consider calling convention
32520
32521 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32522
32523         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32524         to return the invisible global type for a module.
32525
32526         * reflection.c (mono_image_build_metadata): Emit global fields too.
32527
32528 2003-05-20  Peter Williams  <peterw@ximian.com>
32529
32530         * loader.c (mono_lookup_internal_call): Add a few newlines.
32531
32532 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32533
32534         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32535         literal strings.
32536
32537         * appdomain.c (set_domain_search_path): Recalculate search path when
32538         AppDomainSetup.PrivateBinPath changes.
32539
32540         * object.c (mono_class_compute_gc_descriptor): It turns out some
32541         parts of the class libs (like System.Thread) holds pointers to
32542         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32543         to treat native int a pointer type here.
32544         
32545 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32546
32547         * appdomain.h, domain.c: add hashtable for jump target resolution.
32548
32549 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32550
32551         * reflection.h reflection.c icall.c: Added new icalls 
32552         GetManifestResourceInfoInternal, GetModulesInternal and support
32553         infrastructure.
32554
32555 2003-05-16  Dick Porter  <dick@ximian.com>
32556
32557         * icall.c:
32558         * file-io.h:
32559         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32560
32561 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32562
32563         * object.c: mono_store_remote_field: little fix to previous patch.
32564
32565 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32566
32567         * class.c: add constructors to array classes.
32568         * icall.c: special case array construction for InternalInvoke (),
32569
32570 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32571
32572         * class.h class.c reflection.c object.c: Added support for field
32573         defaults in dynamically generated classes.
32574
32575 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32576
32577         * reflection.c: properly encode charset for ddlimport.
32578
32579 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32580
32581         * threads.c: allow compiling without GC.
32582
32583 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32584
32585         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32586         handling of thread static data.
32587
32588 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32589
32590         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32591
32592 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32593
32594         * class.c (mono_array_class_get): always set the serializable flags
32595         (mono_array_class_get): always set the SEALED attribute for array types
32596
32597 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32598
32599         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32600         attributes (fix for bug 42021).
32601
32602 2003-05-12  Dick Porter  <dick@ximian.com>
32603
32604         * gc.c: Don't run finalizers when the finalizer thread is
32605         finishing up, because the default domain has already been
32606         destroyed.
32607
32608 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32609
32610         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32611         value is null, we should throw an exception.   This is slightly
32612         different than the other conventions used for the constructor.
32613
32614 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32615
32616         * socket-io.c: fixed windows build.
32617
32618 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32619
32620         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32621
32622 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32623
32624         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32625         compilers.
32626
32627 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32628
32629         * class.c (mono_class_layout_fields): Add experimental GC aware
32630         auto layout facility. Requires class library changes to work correctly.
32631
32632         (mono_class_setup_vtable): Avoid overriding explicit interface
32633         method implementations. Fixes iface3.exe test.
32634
32635         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32636         object reference.
32637         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32638         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32639
32640         * metadata.h: Add new type classification macro which determines
32641         whenever the type holds an object reference.
32642
32643 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32644
32645         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32646
32647 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32648
32649         * gc.c (finalizer_thread): Work around a GC bug.
32650
32651 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32652
32653         * marshal.c (emit_struct_conv): allow unions
32654
32655         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32656
32657 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32658
32659         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32660
32661 2003-05-06  Martin Baulig  <martin@ximian.com>
32662
32663         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32664
32665 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32666
32667         * socket-io.c:
32668         (Select_internal): allow NULLs, don't create arrays if not needed.
32669         Coupled with Socket.cs changes.
32670
32671         * threadpool.c:
32672         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32673         register a finalizer for it that will close the semaphore handle. This
32674         fixes the leak and make Lupus' test run with > 4080 loops.
32675
32676 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32677
32678         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32679         Jerome Laban (bug #42287)
32680
32681 2003-05-02  Martin Baulig  <martin@ximian.com>
32682
32683         * debug-mono-symfile.h
32684         (MonoSymbolFile): Moved declaration into mono-debug.h.
32685         (MonoDebugMethodJitInfo): Likewise.
32686         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32687         argument.
32688         (_mono_debug_address_from_il_offset): Take a
32689         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32690
32691         * mono-debug.h
32692         (MonoDebugDomainData): New struct.
32693         (mono_debug_get_domain_data): New function.
32694         (mono_debug_add_method): Take an additional `MonoDomain *'
32695         argument.
32696         (mono_debug_source_location_from_address): Likewise.
32697         (mono_debug_il_offset_from_address): Likewise.
32698         (mono_debug_address_from_il_offset): Likewise.
32699
32700 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32701
32702         * reflection.c: one more check for null type in custom attrs.
32703
32704 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32705
32706         * reflection.c: avoid warning (comparison is always false due to limited
32707         range of data type).
32708
32709 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32710
32711         * icall.c: throw an exception in Type.GetField if the argument 'name'
32712         is NULL.
32713
32714 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32715
32716         * reflection.c: fixed handling of enums in named arguments to custom
32717         attributes (bug #42123).
32718
32719 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32720
32721         * reflection.c: use the right array element type and handle
32722         a null for a Type argument, too.
32723
32724 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32725
32726         * reflection.c: handle arrays as arguments to custom attributes.
32727
32728 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32729
32730         * reflection.c: handle a string value in a custom attr
32731         ctor that takes an object.
32732
32733 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32734
32735         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32736         (fix bug #42063)
32737
32738 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32739
32740         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32741
32742 2003-04-27  Martin Baulig  <martin@ximian.com>
32743
32744         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32745         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32746         MONO_DEBUGGER_EVENT_BREAKPOINT.
32747         (mono_breakpoint_trampoline_code): Removed.
32748         (mono_debugger_event_handler): The last argument is now a
32749         `guint32'.
32750         (mono_debugger_insert_breakpoint_full): Removed the
32751         `use_trampoline' argument.
32752         (mono_debugger_method_has_breakpoint): Likewise.
32753         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32754         mono_debugger_breakpoint_callback(); take the method and
32755         breakpoint number as arguments.
32756
32757 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32758
32759         * metadata.c: fix off by one when loading parameters attributes.
32760
32761 2003-04-24  Martin Baulig  <martin@ximian.com>
32762
32763         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32764
32765 2003-04-24  Martin Baulig  <martin@ximian.com>
32766
32767         * mono-debug-debugger.c: Moved all code which interacts with the
32768         Mono Debugger here.
32769
32770         * debug-mono-symfile.c: This code now just deals with the symbol
32771         file itself, the debugger code is now in mono-debug-debugger.c.
32772
32773 2003-04-23  Martin Baulig  <martin@ximian.com>
32774
32775         * mono-debug.c (mono_debug_source_location_from_il_offset):
32776         New method; like mono_debug_source_location_from_address(), but
32777         takes an IL offset instead of a machine address.
32778
32779 2003-04-23  Martin Baulig  <martin@ximian.com>
32780
32781         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32782         `line' field; this is now computed by the debugger.
32783
32784 2003-04-23  Martin Baulig  <martin@ximian.com>
32785
32786         * mono-debug.[ch]: New files.  This is the new debugging interface.
32787
32788         * mono-debug-debugger.[ch]: New files.  Moved all code which
32789         interacts with the Mono Debugger here.
32790
32791 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32792
32793         * domain.c (mono_init): initialize mono_defaults.monitor_class
32794
32795 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32796
32797         * reflection.c (method_encode_code): Add a spicy exception to help
32798         future compiler authors.
32799
32800 2003-04-21  Martin Baulig  <martin@ximian.com>
32801
32802         * icall.c
32803         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32804         Make this work with relative pathnames; g_filename_to_uri() needs
32805         an absolute filename.
32806
32807 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32808
32809         * icall.c: Track name changes in Object and ValueType.
32810
32811 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32812
32813         * metadata.c (mono_type_stack_size): size should be a multiple of
32814         sizeof (gpointer)
32815
32816 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32817
32818         * gc.c:
32819         (internal_domain_finalize): moved into mono_domain_finalize. No need
32820         to create another thread because the finalizers will be run in the
32821         finalizer thread.
32822         
32823         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32824         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32825         to be run (MS does this too).
32826
32827 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32828
32829         * object.c (mono_class_compute_gc_descriptor): Update comment.
32830
32831         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32832
32833         * image.h: Add synchronized wrapper cache.
32834
32835         * image.c (do_mono_image_open): Initialize cache.
32836
32837         * reflection.c (create_dynamic_mono_image): Initialize cache.
32838
32839 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32840
32841         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32842         ves_icall_System_Buffer_ByteLengthInternal.
32843
32844 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32845
32846         * reflection.c: setup klass->nested_in earlier. Allow
32847         a dash in the assembly name.
32848
32849 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32850
32851         * metadata.c (mono_type_to_unmanaged): dont access
32852         type->data.klass for MONO_TYPE_OBJECT
32853         (mono_type_to_unmanaged): consider System.Delegate class
32854
32855 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32856
32857         * class.c: just setup supertypes in the proper place instead of
32858         initializing the full element class for arrays.
32859
32860 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32861
32862         * class.c: ensure the element class of arrays is initialized.
32863         Setup the supertype info for array classes, too.
32864
32865 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32866
32867         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32868
32869 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32870
32871         * Makefile.am: re-added -m option when running cygpath. This way,
32872         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32873         separator.
32874         * mono-config.c: same codepath for locating mono config file for WIN32
32875         and the rest.
32876         * assembly.c: if mono_assembly_setrootdir is called, don't override
32877         the value set.
32878
32879 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32880
32881         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32882         MONO_ASSEMBLIES variable.
32883
32884 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32885
32886         * icall.c: added Assembly::GetNamespaces() icall.
32887
32888 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32889
32890         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32891
32892 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32893
32894         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32895         * object.c: fixed bug in the construction of vtable for proxies
32896
32897 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32898
32899         * object.c (mono_array_new): Mark mono_array_new as an icall.
32900
32901 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32902
32903         * class.c: fixed test for public method when overriding interfaces.
32904         Closes bug #40970.
32905
32906 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32907
32908         * appdomain.h, domain.c: added mono_domain_foreach() to
32909         be able to access the currently loaded appdomains.
32910         * object.c: make string interning work across sppdomains.
32911         Mark some functions for use as icalls.
32912
32913 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32914
32915         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32916
32917         * reflection.h reflection.c: Allocate long living data using 
32918         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32919
32920         * reflection.c: Double the allocation size in streams instead of
32921         increasing it, to prevent unneccesary copying on large assemblies.
32922         
32923         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32924         creation if the assembly does not have the Run flag set.
32925
32926 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32927
32928         * class.h: avoid the C++ keywords in header files (Jerome Laban
32929         spotted and fixed this).
32930
32931 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32932
32933         * object.c:
32934         (mono_unhandled_exception): fill in the arguments for the
32935         UnhandledException event. Only trigger that event for the default
32936         domain (as MS does).
32937
32938 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32939
32940         * object.c: Improve typed allocation stuff based on suggestions from
32941         Paolo. Also turn it on if the GC library supports it.
32942
32943 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32944
32945         * object.c object.h class.h: Added experimental typed allocation
32946         facility using the interfaces in gc_gcj.h.
32947
32948         * os/gc_wrapper.h: Added new include files.
32949         
32950 2003-04-03  Martin Baulig  <martin@ximian.com>
32951
32952         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32953         which is not yet enabled by default.
32954
32955         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32956         functions.
32957         (mono_gc_lock, mono_gc_unlock): New static functions.
32958
32959         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32960         functions; stop/start the world for the garbage collector.  This
32961         is using the windows API; we need to complete the SuspendThread()/
32962         ResumeThread() implementation in the io-layer to make this work on Unix.
32963         (mono_gc_push_all_stacks): New public function; tells the garbage
32964         collector about the stack pointers from all managed threads.
32965
32966 2003-04-03  Martin Baulig  <martin@ximian.com>
32967
32968         * object.h (MonoThread): Added `gpointer stack_ptr'.
32969
32970         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32971
32972 2003-04-03  Martin Baulig  <martin@ximian.com>
32973
32974         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32975
32976 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32977
32978         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32979         field.last.
32980
32981 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32982
32983         * loader.c (mono_lookup_internal_call): Report the corlib that is
32984         out of sync.
32985
32986 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32987
32988         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32989         System.DBNull (it's class not valuetype).
32990
32991 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32992
32993         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32994         if the array method was already assigned a token (fixes bug#40646).
32995
32996 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32997
32998         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32999         if no assembly is given.
33000
33001 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
33002
33003         * metadata.h: Added the new tables.
33004
33005         * row-indexes.h: Added definitions for new tables.
33006
33007         * metadata.c: Add schemas for new tables, and add support for
33008         computing the sizes of them.
33009
33010         * class.c: Update for handling the new type cases.
33011
33012 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
33013
33014         * metadata.h (MONO_TYPE_IS_VOID): new macro
33015
33016 2003-03-31  Martin Baulig  <martin@ximian.com>
33017
33018         * threads.h (MonoThreadCallbacks): Added `thread_created'.
33019
33020         * threads.c (mono_thread_new_init): Call `thread_created' in the
33021         mono_thread_callbacks.
33022
33023 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
33024
33025         * loader.h: added marshalbyrefobject_class to mono_defaults
33026         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
33027         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
33028           generation of output parameters.
33029           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
33030         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
33031           contextbound and the target object belongs to the context of the caller.
33032         * object.h: added context and unwrapped_server variables in MonoRealProxy.
33033         * object.c: Implemented support for interfaces and abstract classes
33034           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
33035           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
33036
33037 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
33038
33039         * class.h class.c (mono_class_is_subclass_of): New function.
33040         
33041         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
33042         routines for most common case (calls from ArrayList::ToArray).
33043
33044         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
33045         routine so programs which call Environment::Exit() can be profiled.
33046
33047         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
33048         Added MONO_ARCH_SAVE_REGS.
33049
33050         * icall.c (ves_icall_type_is_subtype_of): Use new function.
33051
33052 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
33053
33054         * blob.h: Add a couple of new MonoType types definitions.
33055
33056         * tabledefs.h: Add a couple of new call convs.
33057
33058 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
33059
33060         * reflection.h (MonoReflectionDynamicAssembly): track changes in
33061         the layout of the class.
33062
33063         * reflection.c (alloc_table): double the size on overflow to avoid
33064         unnecessary copying.
33065
33066         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
33067         avoid filling out metadata tables and blobs. Also set mb->ilgen to
33068         null so it can be garbage collected.
33069         
33070 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
33071
33072         * reflection.c (mono_reflection_get_type): Return the resolved type
33073         only if it is in the assembly we searched.
33074
33075         * reflection.c (ensure_runtime_vtable): Initialize method slots.
33076
33077         * class.c (mono_class_setup_vtable): Set the slot of the overriding
33078         method.
33079
33080 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33081
33082         * appdomain.c:
33083         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
33084         the right one is 'file:///blah', but MS allows it.
33085         * assembly.c:
33086         (mono_assembly_open): allow 'file://blah'
33087
33088         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
33089
33090 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
33091
33092         * socket-io.c: fixes bug #40310.
33093
33094 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
33095
33096         * reflection.c (mono_reflection_parse_type): handle deeply nested
33097         types correctly.
33098
33099         * reflection.c (mono_image_create_token): Use unique token values
33100         since they will be put into a hash table.
33101
33102         * class.c (mono_class_setup_vtable): If a method occurs in more than
33103         one place in the vtable, and it gets overriden, then change the
33104         other occurances too.
33105
33106         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
33107         object as return type.
33108
33109 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33110
33111         * icall.c: Deleted "ToString" implementation for double and float
33112         because they are full implemented in managed code.
33113
33114 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33115
33116         * reflection.c, reflection.h: implemented and exported functions
33117         to retrieve info about custom attributes.
33118
33119 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33120
33121         * appdomain.c: moved Uri handling to assembly.c
33122         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
33123         work when using a file Uri in *nix and windows.
33124
33125         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
33126         GetReferencedAssemblies.
33127
33128 2003-03-18  Dick Porter  <dick@ximian.com>
33129
33130         * icall.c: Rename a couple of internal calls
33131
33132         * threads.c: Set the thread state to Stopped when a thread exits.
33133         Fixes bug 39377.
33134
33135 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
33136
33137         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
33138         New icall.
33139
33140         * object.c (mono_class_vtable): fix warning.
33141
33142 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
33143
33144         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
33145
33146         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
33147         memory.
33148         (method_encode_clauses): Create exception info structures in the right
33149         order.
33150         (mono_reflection_setup_internal_class): Initialize supertypes field.
33151
33152         * class.c object.c: Handle interfaces which implement other interfaces 
33153         correctly.
33154
33155         * class.h class.c: Move the supertypes array initialization code into 
33156         a separate function so it can be used for dynamic types too. Also call
33157         it earlier, in mono_class_init(), since it can be used before the
33158         type is initialized.
33159
33160 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33161
33162         * Makefile.am:
33163         * assembly.c:
33164         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
33165
33166         * appdomain.c:
33167         * appdomain.h:
33168         * marshal.c:
33169         * object.c: remove warnings.
33170
33171 2003-03-13  Martin Baulig  <martin@ximian.com>
33172
33173         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
33174         (MonoDebugLexicalBlockEntry): New types.
33175
33176         * debug-mono-symfile.c
33177         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
33178
33179 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33180
33181         * process.c: ret can be any non-zero value accroding to MS doc.
33182
33183 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
33184
33185         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
33186         fixing a warning for a miss-used prototype, would have cause
33187         random memory corruption.
33188
33189 2003-03-07  Martin Baulig  <martin@ximian.com>
33190
33191         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
33192         getting really annoying ....
33193
33194 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
33195
33196         * reflection.c (fixup_method): added support for array methods.
33197
33198 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
33199
33200         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
33201         (pointed out by Michael Adams).
33202
33203 2003-03-04  Dick Porter  <dick@ximian.com>
33204
33205         * icall.c: Temporarily reverted the Double and Single ToString()
33206         change, because it broke nunit.
33207
33208 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
33209
33210         * object.h, threads.h: make include files compatible with C++
33211         (patch by Jerome Laban <jlaban@wanadoo.fr>).
33212
33213 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33214
33215         * icall.c: Erased ToString helper functions for Double and Single.
33216         Now, that implementations ar all in managed code (Double and Single
33217         Formatters).
33218
33219 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
33220
33221         * appdomain.c: Added method for initializing the default context of
33222         a domain. Added internal call for getting the default context.
33223         * appdomain.h: Added context variable in MonoDomain struct.
33224         * domain.c: mono_domain_set also sets the default context of the domain
33225         * icall.c: Mapped internal method InternalGetDefaultContext.
33226         * object.c: mono_object_get_virtual_method returns always a remoting
33227         wrapper if the object is a transparent proxy.
33228         mono_runtime_invoke_array: when creating an object by calling the
33229         constructor, if the created object is a proxy, then the constructor should
33230         be called using the a remoting wrapper.
33231
33232 2003-03-03  Dick Porter  <dick@ximian.com>
33233
33234         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
33235         variable so it compiles on solaris.  Problem spotted by
33236         Christopher Taylor <ct@cs.clemson.edu>
33237
33238 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33239
33240         * appdomain.c:
33241         (get_info_from_assembly_name): don't leak value.
33242
33243         * icall.c:
33244         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
33245         result.
33246
33247 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
33248
33249         * assembly.c: export mono_image_load_references ().
33250         * class.c: handle function pointers. mono_class_from_name() now
33251         supports nested type names directly.
33252
33253 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
33254
33255         * reflection.h reflection.c: Encode already created dynamic methods 
33256         and fields correctly as a DEF instead of a REF.
33257
33258         * reflection.c: Get rid of the force_ref argument to 
33259         mono_image_typedef_or_ref since it was wrong in the first place.
33260
33261         * string-icalls.c: add error checking to string constructors according
33262         to the MSDN docs.
33263
33264         * reflection.c: Emit types in the order their TypeBuilders were 
33265         created. Previously, a new table index was assigned to each type before
33266         the tables were emitted. This was wrong because the signature blob
33267         might already refer to a type by its original table index.
33268
33269 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
33270
33271         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
33272         change.
33273         
33274 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33275
33276         * Makefile.am: make assemblies dir have \ instead of / on windows.
33277
33278 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
33279
33280         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
33281         iterate over the NESTEDCLASS table using a linear search since the
33282         table is not guaranteed to be sorted by the secondary key.
33283
33284         * class.c (mono_class_create_from_typedef): fixed up call to
33285         mono_metadata_nesting_typedef.
33286         
33287 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
33288
33289         * marshal.c (mono_string_to_byvalstr): clear the memory as
33290         suggested by Jerome Laban <jlaban@wanadoo.fr>
33291
33292 2003-02-26  Dick Porter  <dick@ximian.com>
33293
33294         * process.c: Cope with padding in .rsrc blocks
33295
33296 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33297
33298         * metadata.h: reverted the filter_len change, it breaks reflection
33299         
33300 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33301
33302         * metadata.h: added a new field to store the filter_len
33303         
33304
33305 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
33306
33307         * reflection.c: handle custom attributes for types and members
33308         created with Reflection.Emit (bug#38422).
33309
33310 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
33311
33312         * reflection.c: define RTSpecialName automatically for constructors for
33313         compatibility with MS.NET.
33314
33315         * reflection.c (mono_reflection_create_runtime_class): initialize
33316         nested_in field of dynamically created classes.
33317
33318 2003-02-22  Martin Baulig  <martin@ximian.com>
33319
33320         * debug-mono-symfile.h: Incremented version number.
33321
33322 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33323
33324         * object.h icall.c process.c: fix warnings.
33325
33326 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33327
33328         * appdomain.h appdomain.c:
33329         (mono_domain_try_type_resolve): split the 
33330         name_or_tb argument into a name and a tb argument.
33331         (mono_domain_has_type_resolve): new function to check whenever the
33332         application has registered a TypeResolve event handler.
33333         
33334         * icall.c reflection.h reflection.c: move the type resolve logic into
33335         mono_reflection_get_type () so it will be invoked when 
33336         Assembly::GetType () is called.
33337
33338         * reflection.c:
33339         (mono_reflection_get_type): renamed to get_type_internal.
33340         (mono_reflection_get_type): fixed type name generation so it works 
33341         for nested types too.
33342         (mono_reflection_get_type): call has_type_resolve () to avoid the 
33343         costly type name generation if there is no resolve event handler.
33344
33345 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33346
33347         * class.c, image.c: load exported types from file references.
33348
33349 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
33350
33351         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
33352           used to cache the managed methods used to create proxies and make 
33353           remote invocation of methods.
33354         * class.h: Added in MonoVTable a flag to indicate that a class needs 
33355           to be remotely created.
33356         * object.c: Modified the method mono_class_vtable(). It now initializes 
33357           the remote flag of the vtable. Modified mono_object_new_specific(), 
33358           so now it checks the remote flag.
33359         * icall.c: Added a couple of internal methods, one for enabling instance 
33360           creation interception for a type, and one for creating objects bypassing
33361           the remote check.
33362
33363 2003-02-18  Martin Baulig  <martin@ximian.com>
33364
33365         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
33366         New interncall to get a method's metadata token.
33367
33368         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
33369         New interncall for the debugger.
33370
33371 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
33372
33373         * class.c (mono_class_setup_vtable): allocate supertype array
33374
33375 2003-02-18  Martin Baulig  <martin@ximian.com>
33376
33377         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
33378
33379 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33380
33381         * reflection.c:
33382         (assembly_name_to_aname): jump over unknown properties (i've found
33383         something like: 'type, assembly, version=xxx, custom=null, public...',
33384         so now will ignore custom=null and still get the rest of the values).
33385
33386 2003-02-17  Dick Porter  <dick@ximian.com>
33387
33388         * threads.c: Have Thread.Start() wait for a semaphore to signal
33389         that the thread has set up all its local data.  This fixes bug
33390         34323, where Abort() raced the new thread's TLS data.
33391
33392         Also removes the handle_store() call from start_wrapper, because
33393         threads are now always created suspended and there is no longer a
33394         race between the parent and child threads to store the info.
33395
33396 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33397
33398         * image.c: explain the #- heap issue in a message, hopefully
33399         avoiding FAQs on mono-list.
33400
33401 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33402
33403         * icall.c:
33404         (GetEntryAssembly): if the domain has not invoked
33405         AppDomain.ExecuteAssembly yet, return the assembly of the default
33406         AppDomain.
33407
33408 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33409
33410         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33411
33412 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33413
33414         * metadata.c, reflection.c: simple speedup to type hash
33415         and equals code.
33416
33417 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33418
33419         * image.c, image.h, class.c, assembly.c: move module loading
33420         to MonoImage. When loading metadata, consider alignemnet from
33421         the start of metadata, not from the metadata address in memory.
33422
33423 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33424
33425         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33426         AssemblyBuilder objects. Factored out custom attribute creation into
33427         a separate function.
33428         (create_custom_attr): new function to create custom attributes.
33429
33430 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33431
33432         * Makefile.am: Got tired of typing the full pathname to pedump.
33433         Until there is another option, am installing this.
33434
33435 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33436
33437         * class.c (class_compute_field_layout): always set field->parent 
33438         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33439
33440 2003-02-11  Dick Porter  <dick@ximian.com>
33441
33442         * threads-types.h:
33443         * monitor.c: Rewrote Monitor, making lock much faster and
33444         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33445         creates them as needed.
33446
33447         * exception.c: Added SynchronizationLockException
33448
33449         * threads.c: Deleted old Monitor implementation.  The new one is
33450         in a new file.
33451
33452 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33453
33454         * class.c: handled TypedReference type code. Set the correct size for
33455         class data. Setup interface_offsets for interface classes, too.
33456
33457 2003-02-09  Martin Baulig  <martin@ximian.com>
33458
33459         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33460
33461 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33462
33463         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33464         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33465         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33466         * verify.c: check for code that runs after the end of the method.
33467
33468 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33469
33470         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33471         "System.Math::Round2".
33472         * sysmath.h: Added Floor, Round and Round2 definitions.
33473         * sysmath.c: Modified certain functions that were not 100% compliant
33474         with MS.NET (math precision) and added the implementation of Floor,
33475         Round and Round2.
33476
33477 2003-02-07  Martin Baulig  <martin@ximian.com>
33478
33479         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33480
33481 2003-02-07  Martin Baulig  <martin@ximian.com>
33482
33483         * debug-mono-symfile.c: Reflected latest symwriter changes.
33484         (mono_debug_create_mono_symbol_file): Removed.
33485         (mono_debug_open_mono_symbol_file): Take an argument which
33486         specifies whether to create a dynamic symbol file.
33487
33488 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33489
33490         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33491
33492 2003-02-05  Martin Baulig  <martin@ximian.com>
33493
33494         * reflection.c (mono_image_build_metadata): Make this public,
33495         protect it against being called multiple times, don't create
33496         resources and don't build the compressed metadata here.
33497         (mono_image_create_pefile): Do this here.
33498
33499         * icall.c
33500         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33501
33502 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33503
33504         * socket-io.c: fixed bug #36322.
33505
33506 2003-02-06  Piers Haken <piersh@friskit.com>
33507
33508         * appdomain.[ch]:
33509         * class.h:
33510         * debug-mono-symfile.c:
33511         * icall.c:
33512         * loader.c:
33513         * mono-config.c:
33514         * monosn.c:
33515         * reflection.c:
33516         * socket-io.c: warning cleanups
33517
33518 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33519
33520         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33521         function. works like remoting invoke, but does a check for the Proxy first.
33522
33523 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33524
33525         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33526
33527 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33528
33529         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33530         array of pointers.
33531         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33532         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33533
33534         * object.c (mono_store_remote_field_new): used by the new jit
33535         instead of mono_store_remote_field
33536         (mono_load_remote_field_new): used by the new jit
33537         instead of mono_load_remote_field
33538
33539 2003-02-05  Patrik Torstensson
33540
33541         * appdomain.c: changed unload to take the domain id instead
33542         of domain
33543         
33544         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33545
33546
33547 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33548
33549         * appdomain.c: don't look for assemblies in ApplicationBase if
33550         PrivateBinPathProbe is set.
33551
33552 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33553
33554         * object.c: make the first argument in main_args contain the absolute
33555         path to the assembly. Fixes bug #37511.
33556
33557 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33558
33559         * icall.c: get correct UTC offset for countries not using daylight
33560         time saving. Fixes bug #30030.
33561
33562 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33563
33564         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33565         and 1 are the family).
33566
33567 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33568
33569         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33570
33571         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33572
33573 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33574
33575         * reflection.c: added support for SignatureHelper tokens, which is
33576         needed by the Calli opcode.
33577
33578         * reflection.h: track changes to SignatureHelper class.
33579
33580         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33581
33582 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33583
33584         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33585
33586 2003-02-03  Patrik Torstensson
33587         * appdomain.[c|h], domain.c : 
33588          - Added support for getting a domain via domain id
33589          - Support for setting and getting domain from System.AppDomain 
33590            (used in cross appdomain channel)
33591          - Added support for get/set for a MonoAppContext on a thread 
33592            (Context class in System.Runtime.Remoting.Contexts),
33593          - Removed hack in Get/SetData and ExecuteAssembly.
33594         
33595         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33596         the managed world to get control when a proxy is created.
33597
33598         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33599         
33600 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33601
33602         * icall.c
33603         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33604         Populate the codebase field as well.
33605
33606 2003-02-02  Martin Baulig  <martin@ximian.com>
33607
33608         * debug-mono-symfile.c
33609         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33610         (mono_debug_symfile_add_method): Allow interncalls.
33611
33612 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33613
33614         * icall.c: throw parse exception if strtod fails or the string is empty.
33615
33616 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33617
33618         * marshal.c: handle object type separately from defined
33619         class types.
33620
33621 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33622
33623         * marshal.c: handle NATIVE_LPSTR for strings when it's
33624         explicitly specified.
33625
33626 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33627
33628         * reflection.c, reflection.h, icall.c: setup the reflection
33629         handle cache for ModuleBuilders and AssemblyBuilders.
33630
33631 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33632
33633         * reflection.c (reflection_methodbuilder_to_mono_method): set
33634         pinvoke flag
33635
33636 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33637
33638         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33639
33640 2003-01-29  Dick Porter  <dick@ximian.com>
33641
33642         * threads.c: No need for the fake_thread kludge now that Thread
33643         doesn't run a class constructor
33644         
33645 2003-01-29  Dick Porter  <dick@ximian.com>
33646
33647         * threads.c: Use g_direct_hash instead of the rather bogus
33648         g_int_hash
33649
33650 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33651
33652         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33653         (fix pinvoke12.exe)
33654         (mono_marshal_get_struct_to_ptr): generate valid IL code
33655         (mono_marshal_get_ptr_to_struct): generate valid IL code
33656         (*): correctly set sig->pinvoke, we need to memdup the signature
33657         to do that
33658
33659 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33660
33661         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33662         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33663
33664 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33665
33666         * profiler.c: provide more callers information.
33667
33668 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33669
33670         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33671
33672         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33673
33674         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33675
33676 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33677
33678         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33679         exception instead of going into an infinite loop on dates which it 
33680         can't yet handle.
33681
33682         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33683         out-of-range exception if needed.
33684
33685         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33686         an implementation for an interface method and to override an inherited
33687         method at the same time. 
33688         Imagine a scenario when a virtual method is used to override a
33689         virtual abstract method in a parent class, and this same method 
33690         provides an implementation for an method inherited from an interface. 
33691         In this case, the interface resolution code will set im->slot, which 
33692         means that the virtual method override pass will skip this method 
33693         which means a pointer to the abstract method inherited from the parent
33694         will remain in the vtable of this non-abstract class.
33695
33696         * class.c: (mono_class_setup_vtable): continue search for a real 
33697         method if only an abstract method is found.     
33698
33699 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33700
33701         * reflection.c: add size to encoding for ByValStr and ByValArray
33702         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33703
33704 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33705
33706         * class.c (mono_class_setup_vtable): pass the override info as an
33707         argument.
33708
33709         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33710         correctly.
33711         
33712         * reflection.c (ensure_runtime_vtable); add support for method 
33713         overrides.
33714         
33715 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33716
33717         * reflection.c (resolution_scope_from_image): Hack to work to work with
33718         dynamic assemblies.
33719
33720         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33721         added a 'force_ref' argument to force this function to allways return 
33722         a TypeRef. This is needed by mono_image_get_memberref_token ().
33723         
33724 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33725
33726         * reflection.c (mono_image_get_type_info): interfaces really don't have
33727         a parent.
33728
33729         * reflection.c (mono_image_basic_init): fill out missing fields of
33730         image structure.
33731
33732         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33733         dynamic assemblies. This is required so dynamic assemblies show up in
33734         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33735         Type::GetType() etc. This is consistent with MS behaviour.
33736
33737         * image.c image.h reflection.c: add newly created classes to the name 
33738         cache so mono_class_get () will find them.      
33739
33740 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33741
33742         First part of changes to get IKVM.NET running under mono.
33743         
33744         * appdomain.h, appdomain.c: added new function 
33745         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33746         This function will call AppDomain::DoTypeResolve to do the actual work.
33747
33748         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33749         moved existing code dealing with dynamic tokens to a new function 
33750         called mono_reflection_lookup_dynamic_token (). This function will 
33751         raise TypeResolve events when appropriate. Since reflection.c is not 
33752         part of libmetadata, a new hook function called 
33753         mono_lookup_dynamic_token() is added to class.c which will call this.
33754
33755         * assembly.h assembly.c: make the invoke_load_hook function public,
33756         so it can be called for dynamic assemblies.
33757
33758         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33759
33760         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33761         type isn't found.
33762
33763         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33764         MonoGHashTable, since it contains pointers to objects which the GC 
33765         needs to track.
33766
33767         * assembly.c (search_loaded): remove unused variable.
33768         
33769 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33770
33771         * object.c: fixed issue exposed by gcc-generated IL programs
33772         that use RVA data for pointers.
33773
33774 2003-01-25  Martin Baulig  <martin@ximian.com>
33775
33776         * threads.c (start_wrapper): Moved the initialization of
33777         `start_func' above the mono_new_thread_init() call to which we
33778         pass it as argument.
33779
33780 2003-01-24  Martin Baulig  <martin@ximian.com>
33781
33782         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33783         the MonoThread pointer.
33784
33785 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33786
33787         * icall.c: Rename `PowImpl' to Pow.
33788
33789 2003-01-23  Dick Porter  <dick@ximian.com>
33790
33791         * threads.c (start_wrapper): Create a Thread object if needed, so
33792         the Main() thread can do the class initialisation in a subthread
33793         that has been set up to allow managed code execution.
33794
33795         Pass the thread ID instead of the MonoThread pointer to the thread
33796         start and attach callbacks.  This change is required, because the
33797         jit thread start callback must be called _before_ the Thread
33798         object can be created.
33799         
33800         (mono_thread_init): Removed much object creation code that is no
33801         longer needed.  No managed code is called from here now.
33802
33803         * object.c (mono_runtime_exec_managed_code): Create a subthread
33804         for Main, and call back to the runtime to use it.
33805         Set the exit code when Main exits.
33806
33807         * gc.c: Make sure domain finalisation happens in a subthread.
33808         Re-enable threaded GC, fixing bug 31333 (again).
33809
33810         * environment.c: System.Environment internall calls (so far just
33811         ExitCode is here, the others are still in icall.c)
33812
33813         * appdomain.c (mono_runtime_cleanup): All threads running managed
33814         code should have finished before mono_runtime_cleanup() is
33815         reached, so no need to clean up threads.
33816
33817 2003-01-22  Martin Baulig  <martin@ximian.com>
33818
33819         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33820         `gpointer func' arguments.      
33821         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33822         but added `MonoThread *thread' argument.
33823         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33824
33825         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33826         and pass it to the mono_thread_start_cb callback.
33827         (mono_install_thread_callbacks): New public function to install a
33828         set of callbacks which are set by the debugger.
33829         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33830
33831 2003-01-22  Martin Baulig  <martin@ximian.com>
33832
33833         * Makefile.am: Install debug-mono-symfile.h.
33834
33835 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33836
33837         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33838
33839 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33840
33841         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33842         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33843         (mono_array_class_get): correctly set access levels of arrays
33844
33845 2003-01-20      Patrik Torstensson
33846         * image.h (MonoAssemblyName): changed major, minor, build, revision
33847         from signed to unsigned.
33848
33849 2003-01-20  sean kasun <skasun@azstarnet.com>
33850
33851         * reflection.c (load_cattr_value): Now this handles
33852         MONO_TYPE_SZARRAY.  Fixes bug #35629
33853
33854 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33855
33856         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33857         integer value
33858
33859 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33860
33861         * decimal.c: fixed bug #26056.
33862
33863 2003-01-17  Martin Baulig  <martin@ximian.com>
33864
33865         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33866
33867 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33868
33869         * exception.[ch]:
33870         (mono_get_exception_type_initialization): new function.
33871
33872         * object.c: throw a TypeInitializationException when an exception is
33873         thrown invoking the class constructor.
33874
33875 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33876
33877         * reflection.c: fixed attribute reading.
33878
33879 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33880
33881         * icall.c:
33882         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33883         provided, look for the type in the calling assembly and then in
33884         mscorlib; if the assembly name is provided, only try that one.
33885
33886 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33887
33888         * object.c: register the vtable before there is a chance it's
33889         queried again recursively.
33890
33891 2003-01-13  Duncan Mak  <duncan@ximian.com>
33892
33893         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33894         gc-internal.h. 
33895         
33896 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33897
33898         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33899
33900 2003-01-11  Martin Baulig  <martin@ximian.com>
33901
33902         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33903         this to 20 for the release.
33904
33905 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33906
33907         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33908
33909         * loader.c (mono_method_get_marshal_info): bug fix
33910
33911         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33912         structures with explicit layout
33913
33914 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33915
33916         * profiler.c: made the output more readable (and sorted). 
33917         Added caller information for the allocation profiler.
33918
33919 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33920
33921         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33922
33923 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33924
33925         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33926         to get value types.
33927         
33928 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33929
33930         * object.c, profiler.h, profiler.c, profiler-private.h:
33931         Added object allocation profiler.
33932
33933 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33934
33935         * reflection.h, reflection.c: handle global methods.
33936         Compress blob entries.
33937
33938 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33939
33940         * marshal.c: fix compilation.
33941
33942 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33943
33944         * loader.c (mono_method_get_marshal_info): impl.
33945
33946         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33947
33948 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33949
33950         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33951         for reference types.
33952
33953 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33954
33955         * loader.c: fixed off by one error in loaded parameter names.
33956
33957 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33958
33959         * marshal.c (mono_marshal_get_icall_wrapper): like
33960         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33961         instead of a MonoMethod.
33962
33963 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33964
33965         * decimal.c: fixed bug #36537.
33966
33967 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33968
33969         * marshal.c: throw a missing method exception if a
33970         P/Invoke method is not found.
33971
33972 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33973
33974         * icall.c: allow a null this for constructors.
33975
33976 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33977
33978         * icall.c: raise the proper exceptions if the arguments to the
33979         internal Invoke are incorrect.
33980
33981 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33982
33983         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33984
33985 2003-01-03  Martin Baulig  <martin@ximian.com>
33986
33987         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33988
33989 2002-12-31  Martin Baulig  <martin@ximian.com>
33990
33991         * debug-mono-symfile.c: Completely rewrote the type section.
33992         Instead of using individual malloc()ed fields, we use one big
33993         continuous memory area and offsets into this area.
33994         See the comments in the source code for details.
33995
33996 2002-12-30  Martin Baulig  <martin@ximian.com>
33997
33998         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33999
34000 2002-12-30  Martin Baulig  <martin@ximian.com>
34001
34002         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
34003         line number table in this data blob instead of using an external
34004         pointer.
34005
34006 2002-12-28  Martin Baulig  <martin@ximian.com>
34007
34008         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
34009
34010 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
34011
34012         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
34013         as a boxed return type.
34014
34015 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
34016
34017         * appdomain.c
34018         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
34019         g_build_filename to properly get separators on the filename created.
34020
34021         * object.h: Small change, introduce MonoMarshalByRefObject to
34022         track the layout of that structure in the C# universe as we make
34023         changes there.
34024
34025 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
34026
34027         * object.c: removed assert to allow static fields on interfaces.
34028         * loader.c: a TypeSpec may be used for any type, not just arrays.
34029
34030 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34031
34032         * class.c, class.h: added mono_class_array_element_size ().
34033         Ignore static methods in interfaces.
34034
34035 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34036
34037         * threads.c: fixed the build under cygwin.
34038
34039 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34040
34041         * reflection.c: handle nullref constants. Allocate keys for
34042         reflection handles with the GC.
34043
34044 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34045
34046         * threads.c, threads.h: added mono_thread_get_abort_signal()
34047         to get a suitable signal for thread abort.
34048
34049 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34050
34051         * metadata.c: fix handling of ExportedType table.
34052
34053 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34054
34055         * icall.c: added WriteWindowsDebugString internal call.
34056
34057 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34058
34059         * reflection.h: added fields to match C# implementation.
34060
34061 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34062
34063         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
34064
34065 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
34066
34067         * gc.h, gc-internal.h: Rename header for GC internal calls to
34068         gc-internal.h from gc.h as to not clash with Boehm GC having its
34069         header installed as <gc.h> in outside include paths.
34070         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
34071         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
34072
34073 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34074
34075         * icall.c: assign minor, build and revision in FillName.
34076
34077 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
34078
34079         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
34080         Added support for running code generated by Reflection.Emit.
34081
34082 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34083
34084         * appdomain.c: check for NULL argument in LoadFrom.
34085
34086 2002-12-10  Dick Porter  <dick@ximian.com>
34087
34088         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
34089
34090 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34091
34092         * appdomain.c: fix buglet when building exe file name.  Handle full
34093         assembly name (needed after latest changes to AssemblyName).
34094         * image.c:
34095         (mono_image_close): free some hashtables.
34096
34097 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
34098
34099         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
34100         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
34101         on some systems (redhat 7.3) 
34102
34103 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
34104
34105         * threads.c: delete the critical section of a sync block,
34106         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
34107
34108 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
34109
34110         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
34111
34112 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34113
34114         * appdomain.[ch]: handle the assembly preload event to try loading the
34115         assemblies using the paths we have in the current domain.
34116
34117         * assembly.[ch]: created an assembly preload hook that is called to try
34118         loading the assembly by other means that the ones provided here.
34119
34120         * domain.c: initialize the domain search path.
34121
34122         From now on, assemblies (TODO: except corlib and System) are loaded
34123         according to these rules when using mono_assembly_load ():
34124
34125                 1. It tries to load the assembly from the ApplicationBase
34126                 of the current domain appending .dll and .exe (TODO: have to
34127                 try loading from name/name.dll and name/name.exe).
34128
34129                 2. It tries the search path specified in PrivateBinPath for the
34130                 current domain (if any).
34131
34132                 3. Previous behavior.
34133
34134 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
34135
34136         * icall.c: implemented GetInterfaceMap() related icall.
34137         * domain.c, loader.h: load MethodInfo in mono_defaults.
34138
34139 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34140
34141         * gc.c: disable the finalizer thread for now, untill all the issues
34142         with it are resolved.
34143
34144 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34145
34146         * string-icalls.c: handle embedded nulls in string ctor when the
34147         length is specified.
34148
34149 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34150
34151         * class.c: look for explicit interface implementation in parent
34152         classes, too.
34153
34154 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
34155
34156         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
34157
34158 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34159
34160         * gc.c: protect handles with a critical section.
34161
34162 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34163
34164         * icall.c:
34165         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
34166         parameters. If no assembly specified, try getting the type from all
34167         the assemblies in the current domain, else, load the assembly and get
34168         the type from it.
34169
34170 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34171
34172         * marshal.c: applied patch from Aleksey Demakov that fixes
34173         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
34174
34175 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34176
34177         * icall.c: fixed get_location.
34178
34179 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
34180
34181         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
34182         declarations to make it work with older gcc. 
34183
34184         * loader.c (mono_get_method): set signature->pinvoke for native calls
34185
34186 2002-11-20  Dick Porter  <dick@ximian.com>
34187
34188         * threads.c (mono_thread_init): Set the main thread's handle
34189
34190 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34191
34192         * gc.c: allow compilation without GC support. Changed to match the
34193         mono coding style.
34194
34195 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34196
34197         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
34198
34199 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
34200
34201         * reflection.c: set a public key token on the core assemblies.
34202
34203 2002-11-18  Dick Porter  <dick@ximian.com>
34204
34205         * threads.c: Split out some thread initialisation so that other
34206         files can set the start callback function.
34207
34208         * gc.c: Run finalisers in a separate thread, to avoid stack
34209         overflow.  Fixes bug 31333.
34210
34211         * appdomain.c: Set up GC finalisation thread.
34212
34213         * reflection.c: 
34214         * object.c: 
34215         * domain.c: Use gc.h macros for GC_malloc
34216         
34217 2002-11-15  Dick Porter  <dick@ximian.com>
34218
34219         * threadpool.c: 
34220         * threads.c:
34221         * appdomain.c: Removed mono_runtime_init_with_attach(),
34222         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
34223         merging the extra parameter with the existing function.  Removed
34224         unneeded code in mono_thread_attach().
34225
34226 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
34227
34228         * image.c (mono_image_loaded_by_guid): a method to get loaded
34229         images by guid. 
34230         (load_metadata_ptrs): we store the guid as string.
34231
34232 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
34233
34234         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
34235
34236         * metadata.c (mono_guid_to_string): imported method form Zoltan
34237         Varga (slightly modified)
34238
34239         * assembly.c (mono_assembly_open): load precompiled code
34240
34241         * loader.h (MonoMethod): we store the method token for use in the
34242         aot compiler. 
34243
34244 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34245
34246         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
34247         the hook function called when an assembly is loaded.
34248         
34249         * domain.c: Modified file.
34250         (mono_domain_assembly_load): removed hash table insertion of assemblies.
34251
34252         Fixes bug #33196.
34253
34254 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
34255
34256         * reflection.c: Map PEFileKind to the value expected by the WinNT
34257         image loader. 
34258
34259 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34260
34261         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
34262         Read until the buffer is filled completely.
34263
34264 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34265
34266         * icall.c: implemented MonoType.InternalGetEvent ().
34267
34268 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34269
34270         * appdomain.c: implemented InitAppDomainSetup. Delayed
34271         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
34272         the entry_assembly.
34273
34274         * assembly.c: base_dir is now an absolute path ending with
34275         G_DIR_SEPARATOR.
34276
34277         * icall.c: modified get_location according to the above changes.
34278
34279         * object.c: init AppDomain.SetupInformation for the default domain after
34280         we have the entry assembly.
34281
34282         * domain.c: when unloading a domain, setup = NULL.
34283
34284 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
34285
34286         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
34287
34288 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
34289
34290         * object.h, object.c: introduced mono_object_get_virtual_method ()
34291         to lookup the method invoked on an object when a callvirt is done on
34292         a method.
34293         * icall.c: make MethodInfo::Invoke() always do a virtual call.
34294
34295 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34296
34297         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
34298         current domain when loaded an assembly and failed to load it.
34299
34300         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
34301
34302 2002-10-31  Dick Porter  <dick@ximian.com>
34303
34304         * icall.c: 
34305         * file-io.h: 
34306         * file-io.c: Return the error status in a parameter, as the
34307         GetLastError() value has long since been blown away if we try and
34308         look it up in a subsequent internal call invocation.  Delete the
34309         GetLastError() internal call, because it's useless.
34310
34311 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
34312
34313         * class.[ch]: added cast_class to fix bug 29517
34314
34315 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
34316
34317         * marshal.c: create valid IL code in the filter clause:
34318         the new JIT is less forgiving:-)
34319
34320 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34321
34322         * icall.c: removed get_property internal call.
34323
34324 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
34325
34326         * appdomain.h domain.c: Added an ID to appdomains.
34327         
34328         * threads.c threads.h icall.c: Implement icall
34329         Thread:GetDomainID(), and remove unused icall 
34330         CurrentThreadDomain_internal.
34331
34332 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34333
34334         * icall.c: Don't recurse through the base types in GetConstructor.
34335         Fixes bug #32063. 
34336
34337 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34338
34339         * mempool.h, mempool.c: added mono_mempool_empty() and
34340         mono_mempool_stats().
34341
34342 2002-10-23  Dick Porter  <dick@ximian.com>
34343
34344         * file-io.c: 
34345         * file-io.h: 
34346         * icall.c: Added MonoIO.GetFileType internal call
34347
34348 2002-10-17  Dick Porter  <dick@ximian.com>
34349
34350         * appdomain.c (mono_runtime_cleanup): Don't signal the async
34351         delegate semaphore before waiting for all threads to finish,
34352         because new threads can also call async delegates.  Fixes bug
34353         32004.
34354
34355         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
34356         of 3 seconds, in case another async job is queued.  (This part is
34357         needed because the bug fix reintroduced the 3s exit lag.)  This
34358         makes the mono_runtime_shutdown flag superfluous.
34359
34360 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34361
34362         * reflection.c: include ehader size in method section headers.
34363         Really check for suplicated modules entries.
34364
34365 2002-10-17  Martin Baulig  <martin@gnome.org>
34366
34367         * debug-mono-symfile.c: Added back support for locals.
34368
34369 2002-10-14  Martin Baulig  <martin@gnome.org>
34370
34371         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
34372         MONO_TYPE_VOID.
34373
34374 2002-10-14  Martin Baulig  <martin@gnome.org>
34375
34376         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
34377         mono_class_get() instead of looking in the class cache. 
34378
34379 2002-10-13  Martin Baulig  <martin@gnome.org>
34380
34381         * debug-mono-symfile.c: Set version number to 28, include the
34382         signature in method names.
34383
34384 2002-10-13  Martin Baulig  <martin@gnome.org>
34385
34386         * debug-mono-symfile.h: Set version number to 27.
34387
34388 2002-10-11  Martin Baulig  <martin@gnome.org>
34389
34390         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34391
34392 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34393
34394         * metadata.c, metadata.h: added helper function to allocate signatures.
34395
34396 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34397
34398         * icall.c: added internal call to get the location of machine.config.
34399
34400 2002-10-08  Martin Baulig  <martin@gnome.org>
34401
34402         * debug-mono-symfile.c: Ignore classes with a pending init for the
34403         moment.
34404
34405 2002-10-03  Dick Porter  <dick@ximian.com>
34406
34407         * threads.c: Freebsd pthread_t is a pointer
34408
34409 2002-10-03  Dick Porter  <dick@ximian.com>
34410
34411         * socket-io.c: Implemented GetHostName_internal
34412
34413 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34414
34415         * mono-config.c:
34416         (mono_config_parse_file): don't leak the text.
34417
34418 2002-10-02  Martin Baulig  <martin@gnome.org>
34419
34420         * debug-mono-symfile.c: Added support for methods.
34421
34422 2002-10-01  Martin Baulig  <martin@gnome.org>
34423
34424         * debug-mono-symfile.c: Don't emit methods and line numbers for
34425         the dynamic symbol file, just write the type table.  We can easily
34426         have an external helper program which creates a symbol file for an
34427         IL file.        
34428
34429 2002-10-01  Dick Porter  <dick@ximian.com>
34430
34431         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34432         Only add the handle to the cleanup array when we're about to
34433         launch the thread.  Bug 31425 deadlocked when the test was run on
34434         mono under w32.
34435
34436 2002-10-01  Martin Baulig  <martin@gnome.org>
34437
34438         * debug-mono-symfile.c: Added support for properties.
34439
34440 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34441
34442         * reflection.c: unaligned store fix from Mark Crichton
34443         <crichton@gimp.org>.
34444
34445 2002-09-27  Martin Baulig  <martin@gnome.org>
34446
34447         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34448         New interncall.
34449
34450 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34451
34452         * assembly.h, assembly.c: use a sane API to hook into the assembly
34453         loading process instead of a useless special-purpouse hack
34454         (ngen needs a hook, too, for example).
34455
34456 2002-09-27  Dick Porter  <dick@ximian.com>
34457
34458         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34459         io-layer can set up some process handle info.  Not needed on w32,
34460         but doesn't hurt either.
34461
34462         * process.c: Pass the program name in the second parameter to
34463         CreateProcess, so the path is searched.  Include the working
34464         directory. Implemented process name, process enumeration, and some
34465         process detail internal calls.
34466         
34467         * icall.c: Added internal calls for process lookup, and some
34468         process details
34469
34470 2002-09-26  Martin Baulig  <martin@gnome.org>
34471
34472         * assembly.c (mono_install_open_assembly_hook): New global
34473         function to install a function to be invoked each time a new
34474         assembly is loaded.
34475         (mono_assembly_open): Run this callback function if set.
34476
34477         * debug-mono-symfile.c: Put back line numbers for the dynamic
34478         symbol file and also record the .il file as source file.  This
34479         allows us to install the temporary symbol file as `file.dbg' just
34480         like a compiler-generated one.
34481
34482 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34483
34484         * Corrected typo in gc.c (BOHEM vs BOEHM).
34485
34486 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34487
34488         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34489         GetProperties. Also avoid calling g_slist_length in GetProperties and
34490         GetMethods.
34491
34492 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34493
34494         * reflection.c: avoid unaligned stores (bug spotted by
34495         Mark Crichton  <crichton@gimp.org>).
34496
34497 2002-09-25  Martin Baulig  <martin@gnome.org>
34498
34499         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34500         instead of guint64 for addresses and added prologue/epilogue info.
34501
34502 2002-09-25  Martin Baulig  <martin@gnome.org>
34503
34504         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34505         store line number info.  For the dynamic symbol file, we only need
34506         to provide the JIT generated dynamic line number info for the dynamic
34507         symbol file.
34508
34509 2002-09-25  Martin Baulig  <martin@gnome.org>
34510
34511         * debug-mono-symfile.h: Incremented version number.
34512
34513 2002-09-24  Martin Baulig  <martin@gnome.org>
34514
34515         * class.c (mono_debugger_class_init_func): New global function
34516         pointer variable.
34517         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34518         call it.
34519
34520         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34521         function.  This is called via the mono_debugger_class_init_func
34522         hook to add all types to the dynamic type table.
34523         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34524         from its metadata token.
34525
34526         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34527         New interncall for the debugger.
34528
34529 2002-09-24  Nick Drochak <ndrochak@gol.com>
34530
34531         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34532         before using it in case it is null.
34533         
34534 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34535
34536         * metadata.c: allow custom modifiers in local var signatures
34537         (bug spotted by Zoltan Varga).
34538
34539 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34540
34541         * class.c: deal with the <Module> class that may have a NULL vtable.
34542         Eliminate warnings.
34543
34544 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34545
34546         * image.c, image.h: more strong name helpers.
34547         * monosn.c: more work: convert pem keys to cryptoapi format.
34548
34549 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34550
34551         * string-icalls.c: speedup IndexOf.
34552
34553 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34554
34555         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34556
34557 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34558
34559         * icall.c: cleanup: use mono_object_domain ().
34560
34561 2002-09-23  Martin Baulig  <martin@gnome.org>
34562
34563         * debug-mono-symfile.c: Improved type support.
34564
34565 2002-09-22  Martin Baulig  <martin@gnome.org>
34566
34567         * debug-mono-symfile.c: Added support for reference types and strings.
34568
34569 2002-09-22  Martin Baulig  <martin@gnome.org>
34570
34571         * debug-mono-symfile.c: Started to work on the type table.
34572
34573 2002-09-21  Martin Baulig  <martin@gnome.org>
34574
34575         * debug-mono-symfile.c: Largely reworked the symbol table format.
34576         The symbol table is now incrementally updated each time a new
34577         method is added.  We're now also using our own magic and version
34578         so that you don't need to recompile all your classes if the
34579         dynamic table changes.
34580         (mono_debug_update_mono_symbol_file): Removed.
34581         (mono_debug_symfile_add_method): New function to add a method.
34582
34583 2002-09-21  Martin Baulig  <martin@gnome.org>
34584
34585         * icall.c
34586         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34587         New interncall.
34588
34589         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34590         New interncall to get a method from its metadata token.
34591
34592 2002-09-21  Martin Baulig  <martin@gnome.org>
34593
34594         * debug-mono-symfile.c: Create type table.
34595
34596 2002-09-20  Martin Baulig  <martin@gnome.org>
34597
34598         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34599
34600 2002-09-20  Martin Baulig  <martin@gnome.org>
34601
34602         * debug-mono-symfile.c: Provide information about params and locals.
34603
34604 2002-09-20  Martin Baulig  <martin@gnome.org>
34605
34606         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34607         New interncall.
34608
34609         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34610         interncall to get a method from its metadata token.
34611
34612 2002-09-20  Martin Baulig  <martin@gnome.org>
34613
34614         * debug-mono-symfile.c: Added a few checks for method->header
34615         being non-NULL.  This should never happen, but for the moment
34616         let's use a g_warning() rather than a g_assert().
34617
34618 2002-09-19  Mark Crichton  <crichton@gimp.org>
34619
34620         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34621         even if support for it isn't present.  Added an #ifdef to fix this.
34622
34623         * socket-io.c: Added checks back for Solaris support.
34624
34625 2002-09-19  Martin Baulig  <martin@gnome.org>
34626
34627         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34628         changes in the symbol file format.
34629
34630 2002-09-18  Martin Baulig  <martin@gnome.org>
34631
34632         * debug-mono-symfile.c: Set version number to 21.
34633
34634 2002-09-18  Dick Porter  <dick@ximian.com>
34635
34636         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34637         on netbsd.  Fixes bug 30051.
34638
34639 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34640
34641         * reflection.c:
34642         (set_version_from_string): little fix.
34643
34644 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34645
34646         * monosn.c, Makefile.am: added strong name utility.
34647         * reflection.h, reflection.c: implemented delayed signing,
34648         locale, version and hash id assembly attributes.
34649
34650 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34651
34652         * loader.c, metadata.c: load param attributes in signatures.
34653
34654 2002-09-16  Martin Baulig  <martin@gnome.org>
34655
34656         * debug-mono-symfile.c: Added string table with all method names.
34657
34658 2002-09-14  Martin Baulig  <martin@gnome.org>
34659
34660         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34661         fast method lookup.
34662
34663 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34664
34665         * reflection.c: record the public key token of referenced assemblies.
34666
34667 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34668
34669         * image.c, image.h: added functions to get the strong name and the
34670         public key of an assembly.
34671         * pedump.c: use them.
34672
34673 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34674
34675         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34676
34677 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34678
34679         * marshal.c (mono_marshal_get_managed_wrapper): Added
34680         MONO_TYPE_BOOLEAN 
34681
34682 2002-09-11  Martin Baulig  <martin@gnome.org>
34683
34684         * gc.c: Call GC_unregister_disappearing_link() on all links when
34685         finalizing them, this is necessary to aviod a crash in boehm's
34686         finalize handler.
34687
34688 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34689
34690         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34691         nick@chemlab.org.
34692
34693 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34694
34695         * icall.c: implemented MonoType::Module.
34696         * reflection.c, reflection.h: mono_module_get_object () from
34697         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34698
34699 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34700
34701         * icall.c: ignore overridden methods in GetMethods ().
34702         Fix for FieldInfo::SetValue().
34703         * object.c: handle float/double in runtime invoke.
34704
34705 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706
34707         * object.c: allow a constructor to be called again on an object.
34708
34709 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34710
34711         * class.h, class.c: move field layout code to it's own function and
34712         export it. Get an interface id earlier. Move fields in MonoClass
34713         so they are more cache friendly and align the bitfields.
34714         * loader.c: temporary handle get_param_names() for a runtime method.
34715         * reflection.c, reflection.h: more code to handle runtime creation of
34716         types.
34717
34718 2002-09-09  Martin Baulig  <martin@gnome.org>
34719
34720         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34721         signature with the pinvoke field being set for the actual call.
34722
34723 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34724
34725         * icall.c: removed some unused icalls. Start of map of glib charsets
34726         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34727
34728 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34729
34730         * debug-helpers.c: break infinite loop (found and fixed by
34731         Holger Arnold <harnold@gmx.de>).
34732
34733 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34734
34735         * icall.c: target may be null in create_delegate.
34736
34737 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34738
34739         * marshal.c: handle a boolean return type.
34740
34741 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34742
34743         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34744
34745 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34746
34747         * gc.c: fix weakreferences.
34748
34749 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34750
34751         * icall.c: added icall to get default codepage.
34752
34753 2002-09-03  Dick Porter  <dick@ximian.com>
34754
34755         * threads.h: 
34756         * threads.c: Use MonoThread instead of MonoObject where
34757         apropriate.
34758
34759         Store running thread objects in a hash table, so that we have all
34760         the info to hand when waiting for them to finish
34761         (means we don't need OpenThread() any more, so mingw builds should
34762         be fully functional again.)
34763
34764         * verify.c:
34765         * object.h: Added thread ID to MonoThread
34766
34767 2002-09-03  Martin Baulig  <martin@gnome.org>
34768
34769         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34770
34771 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34772
34773         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34774
34775 2002-09-03  Martin Baulig  <martin@gnome.org>
34776
34777         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34778         argument to store the end address of the disassembled instruction.
34779
34780         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34781         here from debug-symfile.h.
34782         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34783         JIT into this struct.
34784         (MonoSymbolFile): Added `char *image_file' field.
34785         (MonoDebugGetMethodFunc): Removed.
34786         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34787         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34788         (mono_debug_find_method): New method.
34789
34790         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34791         create a full symbol file.
34792         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34793         and static symbol files.
34794         (mono_debug_find_method): The symbol file keeps an internal method hash,
34795         call this to get a MonoDebugMethodInfo from a MonoMethod.
34796
34797         * debug-symfile.[ch]: Removed.
34798
34799 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34800
34801         * image.c (do_mono_image_open): Remove linker version check.
34802
34803 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34804
34805         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34806         wrappers for instance methods.
34807         
34808 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34809
34810         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34811
34812 2002-08-28  Dick Porter  <dick@ximian.com>
34813
34814         * Makefile.am: Export HOST_CC for w32 builds
34815
34816 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34817
34818         * file-io.c process.c: MonoString are null terminated, no
34819         need for mono_string_to_utf16() anymore.
34820
34821 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34822
34823         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34824
34825 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34826
34827         * icall.c, reflection.h: speedup System.MonoType.
34828
34829 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34830
34831         * reflection.c: allow null as the value of a string argument in
34832         custom attributes constructors.
34833
34834 2002-08-27  Martin Baulig  <martin@gnome.org>
34835
34836         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34837         `trampoline_address' field.
34838
34839 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34840
34841         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34842         check (fixes bug #29486) 
34843
34844 2002-08-27  Martin Baulig  <martin@gnome.org>
34845
34846         * debug-mono-symfile.c: Changed the file format in a way that allows us
34847         open it read-only and to use a specially malloced area for all the
34848         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34849         debugging IL code and there is no MCS generated symbol file for it.
34850
34851 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34852
34853         * object.c: added a define for a good string and array
34854         creation speedup (not enabled by default because we need to deal with
34855         the synch stuff).
34856
34857 2002-08-26  Martin Baulig  <martin@gnome.org>
34858
34859         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34860         function to create a dynamic symbol file.  This is used by the
34861         debugger to create a symbol file for IL code on-the-fly.
34862
34863 2002-08-26  Martin Baulig  <martin@gnome.org>
34864
34865         * loader.c (mono_lookup_pinvoke_call): Include the error message
34866         from g_module_error() in the error message.
34867
34868 2002-08-24  Martin Baulig  <martin@gnome.org>
34869
34870         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34871         function to update the symbol file.  The symbol file is mmap()ed
34872         writable, but private.  This allows us to install the symbol file
34873         together with the assembly.
34874
34875 2002-08-24  Martin Baulig  <martin@gnome.org>
34876
34877         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34878         but they can read the new symbol file format which mcs is now creating.
34879
34880         * debug-symfile.c (mono_debug_find_source_location): Moved to
34881         debug-mono-symfile.c; this is now operating on the new symbol file.
34882
34883 2002-08-23  Martin Baulig  <martin@gnome.org>
34884
34885         * debug-helpers.c (mono_method_desc_from_method): New function to get
34886         a MonoMethodDesc from a MonoMethod.
34887
34888 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34889
34890         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34891         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34892
34893 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34894
34895         * string-icalls.[ch]: make helper methods static.
34896
34897 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34898
34899         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34900         types to it and to SetValueInternal.
34901
34902         * object.c: Moved handle_enum label to its proper place. This was the
34903         f... bug! ;-)
34904
34905         This time i compiled mcs and gtk-sharp and they both work.
34906
34907 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34908
34909         * icall.c: reverted partially my previous patch until 
34910         object.c:set_value handles enums correcly.
34911
34912 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34913
34914         * icall.c:
34915         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34916         (ves_icall_System_Environment_get_MachineName): removed warning when
34917         compiling under cygwin.
34918
34919 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34920
34921         * object.c: fixed field_get_value() for reference types.
34922
34923 2002-08-22  Dick Porter  <dick@ximian.com>
34924
34925         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34926         Don't free a buffer while it's still needed.  Patch from Jonathan
34927         Liger <Jonathan.liger@wanadoo.fr>
34928
34929 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34930
34931         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34932         internal call.
34933
34934 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34935
34936         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34937         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34938
34939         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34940         we call unmanaged code which throws exceptions.
34941
34942 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34943
34944         * appdomain.h: added per-domain entry_assembly.
34945         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34946         arguments.
34947         * icall.c: Assembly::GetEntryAssembly icall.
34948         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34949         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34950
34951 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34952
34953         * appdomain.h, gc.c: added mono_domain_finalize ().
34954
34955 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34956
34957         * object.c:
34958         (mono_print_unhandled_exception): changed g_warning by g_printerr
34959         because g_log has a 1024 characters limit (yeah, i got a big stack
34960         trace). Don't print exception name, that should be in ToString 
34961         returned string.
34962
34963 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34964
34965         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34966         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34967
34968 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34969
34970         * object.c:
34971         (mono_print_unhandled_exception): after previous commit, i realized
34972         that MS calls ToString on the exception. I changed this function to
34973         do that. This way we get stack_trace for free.
34974
34975 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34976
34977         * object.c:
34978         (mono_print_unhandled_exception): invoke Message property instead of
34979         getting 'message' field from Exception. Don't allocate memory for
34980         'trace' and 'message' if not needed.
34981
34982 2002-08-18  Dick Porter  <dick@ximian.com>
34983
34984         * unicode.c: Fix asserts to match Encoder.cs checks
34985
34986 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34987
34988         * marshal.c: fix unaligned store issue and a few wrong
34989         opcode argument types.
34990
34991 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34992
34993         * icall.c: added GetUninitializedObjectInternal internal call.
34994
34995 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34996
34997         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34998         to the right domain.
34999
35000 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
35001
35002         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
35003
35004         * class.c (class_compute_field_layout): set blittable to false for Strings
35005
35006         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
35007
35008 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35009
35010         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
35011         first chunk of code to create types at runtime. Code to
35012         handle ReflectedType/DeclaringType. Make reflection handles
35013         domain specific.
35014
35015 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35016
35017         * class.c: set correct name in arrays.
35018
35019 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
35020
35021         * appdomain.c (mono_domain_transfer_object): make it work with
35022         valuetypes. bug fixes.
35023
35024 2002-08-12  Dick Porter  <dick@ximian.com>
35025
35026         * object.h: Rename some parameters to avoid c++ keywords (Patch
35027         from Joseph Wenninger <kde@jowenn.at>)
35028
35029 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
35030
35031         * icall.c: added icall to implement Assembly.GetFile*.
35032
35033 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35034
35035         * reflection.h, reflection.c: code to embed managed resources.
35036
35037 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35038
35039         * class.c: move all the type size stuff into
35040         class_compute_field_layout().
35041
35042 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35043
35044         * class.c: ensure enums have always the correct instance size.
35045         * unicode.c: remove wrong assert.
35046
35047 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35048
35049         * assembly.c: fix mem corruption issue.
35050         * image.h, image.c: added mono_image_get_resource () to access
35051         managed resources.
35052         * icall.c: implemented Assembly.EntryPoint property and some
35053         Managed Resources related internalcalls.
35054
35055
35056 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35057
35058         * image.c, image.h: impemented mono_image_get_entry_point ().
35059         * appdomain.c: use mono_image_get_entry_point.
35060
35061 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35062
35063         * reflection.c: support the object type argument when loading
35064         custom attributes.
35065
35066 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
35067
35068         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
35069         String as return type.
35070
35071 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
35072
35073         * reflection.c: fix encoding of named args for custom attrs to match
35074         the ms implementation. Read them back when instantiating custom
35075         attributes.
35076
35077 2002-08-02  Radek Doulik  <rodo@ximian.com>
35078
35079         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
35080         by Dietmar as quick fix
35081         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
35082         16 as stack size, used on more places as quick fix before Dietmar
35083         will fix it properly
35084
35085 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35086
35087         * object.h, object.c: added accessors for fields and properties.
35088
35089 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35090
35091         * class.c, class.h: made mono_class_get_field_from_name ()
35092         loop on parent types.
35093         Added mono_class_get_property_from_name ().
35094
35095 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096
35097         * class.c, class.h: move the code to setup the type vtable in its own
35098         function so that it can be reused also for types created at runtime.
35099         Eliminate the "class" identifier from the header file.
35100         * reflection.c: setup the vtable for enums so that we can create
35101         objects for use in SetConstant ().
35102
35103 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
35104
35105         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
35106         instead of the delegate itself as this pointer (bug #28383)
35107
35108 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
35109
35110         * marshal.c (mono_marshal_get_managed_wrapper): added return type
35111         conversions.
35112
35113 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35114
35115         * loader.c: don't set the pinvoke bit on icalls.
35116
35117 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
35118
35119         * debug-helpers.c (mono_method_full_name): only print a number to
35120         indicate wrapper type (so that the output is more readable in traces).
35121
35122 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
35123
35124         * class.c (mono_class_init): include method override patch from Paolo
35125
35126 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
35127
35128         * icall.c: fixed GetTypeCode().
35129
35130 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
35131
35132         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
35133         use real delegate invoke function to make it work with multicast
35134         delegates (fix bug# 28291).
35135
35136 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35137
35138         * object.c: load constant strings.
35139
35140 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35141
35142         * reflection.c: no magic numbers.
35143         * tabledefs.h: security action enum.
35144
35145 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35146
35147         * assembly.c: fix possible memory corruption.
35148
35149 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35150
35151         * reflection.h, reflection.c: added support for linking resources.
35152         * verify.c: check we have an updated corlib.
35153
35154 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
35155
35156         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
35157         string arrays.
35158         (mono_marshal_string_array): null terminate unmanaged string arrays.
35159         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
35160
35161 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35162
35163         * icall.c: Type.GetType () can now return also types from the
35164         calling assembly.
35165
35166 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35167
35168         * loader.h, loader.c: stack walking support.
35169         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
35170         GetCallingAssembly.
35171
35172 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
35173
35174         * marshal.c: added optimisations for blittable types 
35175
35176         * class.c (mono_array_class_get): do not set blittable attribute on arrays
35177         (mono_class_setup_mono_type): set blittable attribute for single
35178         and double.
35179
35180         * marshal.c (mono_string_utf8_to_builder): impl.
35181         (mono_string_builder_to_utf8): impl.
35182         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
35183
35184 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
35185
35186         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
35187         (mono_marshal_get_managed_wrapper): impl. byref types
35188
35189 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35190
35191         * icall.c:
35192         (search_method): don't display debug message. 
35193
35194 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35195
35196         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
35197
35198 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35199
35200         * appdomain.c: set the missing filename when throwing exception.
35201
35202 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35203
35204         * metadata.c (mono_type_size): code cleanup
35205         (mono_type_stack_size): removed some test code
35206
35207 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
35208
35209         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
35210         mono_get_exception_file_not_found now.
35211
35212         * exception.c (mono_exception_from_name_two_strings): New version
35213         that will call a constructor with two string arguments. 
35214         (mono_get_exception_file_not_found): New helper routine, used to
35215         report file-not-found errors.
35216
35217 2002-07-20  Dick Porter  <dick@ximian.com>
35218
35219         * process.h:
35220         * process.c: Pass file handles to CreateProcess
35221         
35222         * icall.c:
35223         * file-io.h:
35224         * file-io.c: Implemented CreatePipe
35225
35226 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35227
35228         * metadata.c (mono_get_param_info): set alignment for value types
35229
35230 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35231
35232         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
35233         Constify mono_domain_assembly_open().
35234         * loader.c: handle null namespace in icalls.
35235
35236 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35237
35238         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
35239         (emit_str_to_ptr_conv): marshal object as structs
35240
35241         * metadata.c (mono_type_to_unmanaged): marshal object as structs
35242
35243         * marshal.c (mono_marshal_get_runtime_invoke): support value types
35244
35245 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
35246
35247         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
35248         (mono_marshal_get_native_wrapper): we an now return value types
35249
35250 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35251
35252         * verify.c: more checks implemented.
35253
35254 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
35255
35256         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
35257         (fix bug #27695)
35258         (mono_marshal_get_native_wrapper): allow byref arguments
35259         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
35260         impl. PtrToStringXXX methods
35261         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
35262         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
35263         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
35264         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
35265         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
35266
35267 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35268
35269         * reflection.c: fix buglet in parsing an assembly name.
35270
35271 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35272
35273         * marshal.c (emit_ptr_to_str_conv): first impl.
35274
35275 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35276
35277         * object.c, class.h: cache the vtable in the class as suggested by
35278         vargaz@freemail.hu (Zoltan Varga).
35279
35280 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35281
35282         * class.h, loader.c: added mono_field_from_token().
35283         * verify.c: first cut of type checking code.
35284
35285 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35286
35287         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
35288
35289 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
35290
35291         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
35292         (fix bug #27782)
35293         (mono_marshal_get_remoting_invoke): impl.
35294         (mono_delegate_begin_invoke): impl.
35295         (mono_mb_emit_save_args): impl.
35296         (mono_delegate_end_invoke): impl.
35297         (mono_marshal_get_delegate_begin_invoke):
35298         (mono_marshal_get_delegate_end_invoke):
35299         (mono_marshal_get_delegate_invoke): generate a special name for
35300         those methods (including the signature) and associate them whith
35301         the delegate class. 
35302
35303 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
35304
35305         * reflection.[ch]: 
35306         (mono_reflection_type_from_name): now it has a MonoImage parameter
35307         which is used as the default image to search the type in. If the image
35308         is NULL or getting the type from it fails, it defaults to corlib.
35309
35310         * icall.c: changed 1 call to mono_reflection_type_from_name to match
35311         new parameter.
35312
35313 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35314
35315         * reflection.c: update the parameter table index.
35316
35317 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35318
35319         * domain.c: don't include the mark byte in the string hash.
35320
35321 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35322
35323         * icall.cs: icall for Type.GetTypeCode ().
35324         * verify: a couple of fixes and disabled local initialization checks.
35325
35326 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
35327
35328         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
35329
35330         * debug-helpers.c (mono_method_full_name): print the type of the
35331         runtime wrapper
35332
35333         * metadata.c (mono_signature_hash): a hash function for signatures
35334         (mono_signature_hash): better hash algorithm
35335
35336         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
35337
35338         * debug-helpers.c (mono_method_full_name): this can now generate
35339         method names with signatures
35340
35341         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
35342         method dont have this pointers.
35343
35344 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35345
35346         * reflection.c: fixup typebuilder tokens.
35347         * image.c: fix buglet.
35348         * marshal.h: remove whitespace.
35349         * metadata.h, metadata.c: reinstate code that was removed.
35350         * verify.c: handle catch directives and fix another couple of bugs.
35351
35352 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
35353
35354         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
35355         (mono_marshal_get_native_wrapper): make it comp. with the old code
35356         (mono_marshal_get_native_wrapper): support boolean
35357         (mono_marshal_get_managed_wrapper): support more types
35358
35359 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
35360
35361         * class.c (class_compute_field_layout): compute class->blittable attribute.
35362
35363 2002-07-09  Dick Porter  <dick@ximian.com>
35364
35365         * threads.c: Make the thread cleaning up cope with threads that
35366         call ExitThread()
35367
35368 2002-07-08  Radek Doulik  <rodo@ximian.com>
35369
35370         * reflection.c (method_encode_code): use non-translated values to
35371         compute finally_start, this fixes exception handling on ppc, yay!
35372
35373         * decimal.h (struct signscale): fix endianess
35374
35375 2002-07-07  Radek Doulik  <rodo@ximian.com>
35376
35377         * reflection.c: swap box_val and not val
35378
35379 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35380
35381         * reflection.c, reflection.h: handle full assembly info in type name.
35382         Handle Type arguments when loading custom attributes.
35383         * icall.c: updated to use new mono_reflection_type_from_name () method.
35384
35385 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35386
35387         * loader.c:
35388         (method_from_memberref): also print assembly name when method not found.
35389
35390 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35391
35392         * icall.c:
35393         (ves_icall_TypeGetProperties): fixed bug #27473. 
35394
35395 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35396
35397         * reflection.c: display image name and token when cannot find the
35398         .ctor for an attribute.
35399
35400 2002-07-05  Martin Baulig  <martin@gnome.org>
35401
35402         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35403
35404 2002-07-04  Dick Porter  <dick@ximian.com>
35405
35406         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35407         compile on mingw.  This will cause mingw builds to not wait for
35408         subthreads to terminate after the main thread does.  I've lodged a
35409         bug with the mingw developers for them to wrap OpenThread().
35410
35411 2002-07-03  Dick Porter  <dick@ximian.com>
35412
35413         * threads.c: Store thread IDs instead of handles, because
35414         GetCurrentThread() returns a pseudohandle and therefore stores
35415         useless values.  mono_thread_cleanup() continues checking the
35416         array of threads until it is empty, to cope with subthreads
35417         spawning new threads after the main thread has finished.
35418
35419         * profiler.h:
35420         * profiler.c:
35421         * profiler-private.h: Pass the thread ID to thread profiler
35422         functions, instead of a handle
35423
35424 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35425
35426         * verify.c: fixes to make it more usable.
35427         * pedump.c: added --verify code to verify IL code in an assembly.
35428
35429 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35430
35431         * reflection.c: turn errors into warnings to allow compiling corlib.
35432
35433 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35434
35435         * reflection.c: add special cases to compile corlib.
35436
35437 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35438
35439         * reflection.c: handle properties with only a set method.
35440
35441 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35442
35443         * opcodes.h: add enum with opcodes in opval order.
35444
35445 2002-07-01  Dick Porter  <dick@ximian.com>
35446         
35447         * object.h:
35448         * object.c (mono_runtime_run_main): Removed unneeded argument
35449
35450 2002-06-28  Martin Baulig  <martin@gnome.org>
35451
35452         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35453
35454 2002-06-27  Dick Porter  <dick@ximian.com>
35455
35456         * threads.c: Store the handle in both the parent thread and in the
35457         subthread, to minimise the time between starting a new thread and
35458         storing its ID.
35459
35460 2002-06-26  Dick Porter  <dick@ximian.com>
35461
35462         * appdomain.c (mono_runtime_cleanup): Close the socket library
35463         after all the threads have finished, not before
35464
35465 2002-06-26  Martin Baulig  <martin@gnome.org>
35466
35467         * debug-symfile.c (mono_debug_find_source_location): Added
35468         `guint32 *line_number' argument.  If it's not NULL, store the line number
35469         there and return the file name without the line number.
35470
35471 2002-06-25  Dick Porter  <dick@ximian.com>
35472
35473         * icall.c:
35474         * process.h:
35475         * process.c: Process forking and other support functions
35476
35477 2002-06-25  Dick Porter  <dick@ximian.com>
35478
35479         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35480         things dont happen when the image is closed.
35481         (mono_image_lookup_resource): Walk the resource section looking
35482         for a particular entry
35483
35484         * cil-coff.h: PE resource section decoding
35485
35486 2002-06-25  Dick Porter  <dick@ximian.com>
35487         
35488         * assembly.h:
35489         * assembly.c: 
35490         (mono_assembly_foreach): Accessor functions to walk the list of
35491         loaded assemblies
35492         (mono_assembly_set_main):
35493         (mono_assembly_get_main): Process methods need to know which
35494         assembly is the "main" one
35495
35496         * object.c (mono_runtime_run_main): Record the main assembly
35497
35498         * debug-helpers.c: Fix typo
35499
35500 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35501
35502         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35503         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35504
35505 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35506
35507         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35508
35509 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35510
35511         * image.c (do_mono_image_open): Initialize reference count,
35512         otherwise we leak the MonoImage.
35513
35514 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35515
35516         * reflection.c: small tweak to handle self-hosting.
35517
35518 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35519
35520         * reflection.c: fix type name parse code.
35521
35522 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35523
35524         * reflection.c: break out of the loop.
35525         * image.c: special case corlib.
35526
35527 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35528
35529         * reflection.c: add all the custom attrs at the end to ensure the
35530         ctors have been properly initialized when the attributes are defined
35531         in the current assembly.
35532
35533 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35534
35535         * reflection.c: handle correctly multiple-nested types.
35536
35537 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35538
35539         * row-indexes.h: fix typos.
35540         * reflection.c: adjust for typos and fix method_def_or_ref
35541         encoding in MethodImpl table.
35542
35543 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35544
35545         * reflection.c: fix entry point patching (thanks Serge!).
35546
35547 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35548
35549         * verify.c: add check for System.Exception
35550
35551 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35552
35553         * image.c, class.c: minifix for code just c&p'ed.
35554         * reflection.c: warning fix.
35555         * object.h, loader.h, domain.c: load also StringBuilder.
35556
35557 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35558
35559         * marshal.h, marshal.c: some support code to handle complex marshaling.
35560
35561 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35562
35563         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35564         Better signatures with vtable error dump.
35565
35566 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35567
35568         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35569
35570 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35571
35572         * icall.c (ves_icall_Type_GetField): impl.
35573
35574 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35575
35576         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35577         to retrieve a marshal description blob for a field or param.
35578
35579 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35580
35581         * reflection.h, reflection.c: change order of nested type emission
35582         to avoid table corruption. The NestedTypes table is sorted.
35583         * icall.c: change order of GetConstructor results to workaround mcs bug.
35584
35585 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35586
35587         * reflection.h, reflection.c: handle field and param marshal
35588         information.
35589
35590 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35591
35592         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35593
35594 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35595
35596         * reflection.c: fix call convention.
35597
35598 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35599
35600         * reflection.h, reflection.c: mono_image_get_memberref_token()
35601         takes a type instead of a class, now. Added
35602         mono_image_get_array_token() to create tokens for the special
35603         multi-dim array methods.
35604
35605 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35606
35607         * assembly.c: handle modules (no assembly table). Split
35608         loading references in its own function.
35609         * class.c: handle moduleref resolution scope.
35610         * image.c, image.h: cache module name in image.
35611
35612 2002-06-07  Martin Baulig  <martin@gnome.org>
35613
35614         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35615         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35616
35617 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35618
35619         * icall.c: more signature fixes that used uint instead of int.
35620
35621 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35622
35623         * reflection.c: fixed signature of field refs.
35624
35625 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35626
35627         * class.c, reflection.c: handle typerefs of nested types
35628         (both on read and when writing files).
35629
35630 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35631
35632         * icall.c: fix method signatures that tried to workaround the previous
35633         typo, d'oh!
35634
35635 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35636
35637         * debug-helpers.c: fix typo.
35638
35639 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35640
35641         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35642         rewrote the PE/COFF writing code (our programs are understood by the
35643         ms runtime, now).
35644
35645 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35646
35647         * gc.c, gc.h, icall.c: weakreference support.
35648
35649 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35650
35651         * Makefile.am, mono-config.c: use $(sysconfdir).
35652
35653 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35654
35655         * icall.c: changed default precision of Double.ToString() to 15.
35656         Fixed memory leak. Unified with Single.ToString.
35657
35658 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35659
35660         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35661
35662 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35663
35664         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35665         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35666         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35667         and myself.
35668
35669 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35670
35671         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35672
35673 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35674
35675         * reflection.c, socket-io.c: more compilation fixes.
35676
35677 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35678
35679         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35680         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35681         unicode.c: warning and compiler compatibility fixes.
35682
35683 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35684
35685         * class.h, metadata.c: fixed warnings/compilation errors.
35686
35687 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35688
35689         * Makefile.am, mono-config.c, mono-config.h: configuration file
35690         support routines.
35691         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35692         config file. Export methods to insert and lookup mappings.
35693
35694 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35695
35696         * reflection.c: handle types and boxed objects in custom attr
35697         constructors.
35698
35699 2002-05-30  Martin Baulig  <martin@gnome.org>
35700
35701         * debug-symfile.c
35702         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35703
35704 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35705
35706         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35707         to lookup the implmap row for a P/Invoke method.
35708         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35709         P/Invoke method from the runtime on an as needed basis.
35710
35711 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35712
35713         * metadata.c (mono_metadata_parse_signature): impl.
35714
35715 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35716
35717         * class.c: handle .pack directive.
35718
35719 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35720
35721         * object.c: initialize static fields with RVA data.
35722
35723 2002-05-25  Martin Baulig  <martin@gnome.org>
35724
35725         * debug-symfile.c
35726         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35727
35728 2002-05-24  Martin Baulig  <martin@gnome.org>
35729
35730         * debug-symfile.c
35731         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35732         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35733         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35734
35735 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35736
35737         * object.c: special case string ctros in invoke.
35738         * gc.c: silly whitespace changes.
35739
35740 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35741
35742         * threadpool.[ch]: impl. a threadpool that can
35743         be used by mint and mono.
35744
35745 2002-05-22  Martin Baulig  <martin@gnome.org>
35746
35747         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35748         The first argument is now a `MonoReflectionModuleBuilder *', the return
35749         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35750         `methods' field to get the method builder.  The `token' argument is the
35751         unfixed token.
35752
35753         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35754         invalid characters instead of g_assert_not_reached()ing.  This seems
35755         to be the behaviour of mscorlib.
35756
35757 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35758
35759         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35760         Hestilow to fix bug #25104
35761
35762 2002-05-21  Martin Baulig  <martin@gnome.org>
35763
35764         * debug-symfile.c (mono_debug_find_source_location): New function.
35765         Looks up an IL offset in the line number table and returns the source
35766         location as a string.
35767
35768 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35769
35770         * icall.c:
35771         (mono_double_ToStringImpl): changed %f by %g until we have something
35772         better.
35773
35774 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35775
35776         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35777         parameters first in C#.
35778
35779 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35780
35781         * icall.c, reflection.h: added icall to get info about an event.
35782
35783 2002-05-20  Radek Doulik  <rodo@ximian.com>
35784
35785         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35786         endian
35787         (mono_value_box): don't use memcpy for small sizes on
35788         architectures with unaligned access
35789
35790 2002-05-20  Martin Baulig  <martin@gnome.org>
35791
35792         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35793         if `tb->parent == NULL'.
35794         (mono_reflection_create_internal_class): New function.  This is
35795         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35796         for enum types.
35797
35798         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35799         New interncall.
35800
35801 2002-05-19  Martin Baulig  <martin@gnome.org>
35802
35803         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35804         argument to get the length, don't default to the array length.
35805
35806 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35807
35808         * assembly.c (mono_assembly_setrootdir): New function used to
35809         override the MONO_ASSEMBLIES directory.
35810
35811 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35812
35813         * icall.c: ValueType_GetHashCode() initialize local var.
35814
35815 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35816
35817         * reflection.c: sort custom attributes table.
35818
35819 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35820
35821         * reflection.c: support named args in custom attributes (write support).
35822
35823 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35824
35825         * reflection.c: fix finally position calculation.
35826
35827 2002-05-15  Radek Doulik  <rodo@ximian.com>
35828
35829         * reflection.c: fixed endianess at many places
35830
35831         * icall.c (ves_icall_InitializeArray): comment out debug msg
35832
35833 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35834
35835         * object.c (mono_unhandled_exception): new function to handle
35836         unhandled exceptions.
35837         (mono_unhandled_exception): call the UnhandledException event.
35838         (mono_runtime_delegate_invoke): impl.
35839
35840 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35841
35842         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35843         returns the RVA, not the direct pointer to the data. Handle the case
35844         when the class size is fixed.
35845
35846 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35847
35848         * reflection.c: fix some endianess issues.
35849
35850 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35851
35852         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35853
35854         * threads.c (mono_thread_init): added a callback which is invoked
35855         at thread start.
35856
35857 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35858         
35859         * icall.c: make GetHashCode return non-negative values.
35860
35861 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35862
35863         * object.c, icall.c, gc.c: revert to address-based hashcode.
35864
35865 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35866
35867         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35868
35869 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35870
35871         * icall.c, class.c: special case <Module>.
35872
35873 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35874
35875         * icall.c: fix bug in GetNow().
35876
35877 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35878
35879         * object.c (mono_runtime_class_init): make sure that we call all
35880         static class constructors.
35881
35882 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35883
35884         * reflection.c: sort methodsemantics table.
35885
35886 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35887
35888         * reflection.h, reflection.c: honour init locals setting.
35889
35890 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35891
35892         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35893
35894 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35895
35896         * reflection.c: support ContructorBuilders in attribute blob creation.
35897
35898 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35899
35900         * reflection.c: some changes to build a binary that can be run
35901         directly in windows.
35902
35903 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35904
35905         * loader.c: print a big message when an icall can't be found.
35906
35907 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35908
35909         * string-icalls.c: fix bug 24248.
35910
35911 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35912
35913         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35914         icall.c, reflection.h: separate assembly loading by pathname and by
35915         assembly name. Use the MONO_PATH env var to search for assemblies.
35916
35917 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35918
35919         * assembly.c, image.h: add some support for assemblies
35920         with multiple modules.
35921         * class.c, class.h: export mono_class_from_typeref().
35922         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35923         instead.
35924
35925 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35926
35927         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35928         documentation says (the ECMA one is correct).
35929
35930 2002-05-02  Dick Porter  <dick@ximian.com>
35931
35932         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35933         Don't name the synchronisation mutex.
35934
35935 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35936
35937         * rand.c
35938         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35939         Make the prototypes match.
35940         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35941         Same.
35942
35943         * icall.c
35944         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35945         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35946         all systems have tm.tm_zone, so use strftime() with %Z to print
35947         the timezone abreviation into a temp string.
35948
35949         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35950         rather than mono_array_addr() on a MonoString on Big Endian
35951         machines.
35952
35953 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35954
35955         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35956         fix bug 24041
35957
35958 2002-04-30  Dick Porter  <dick@ximian.com>
35959
35960         * socket-io.c: Cope with SOCKET being an integer rather than a
35961         pointer now.
35962
35963         * threads.c: Added Thread_free_internal, to deal with thread
35964         handle cleanup.  Moved calls to handle_store() and handle_remove()
35965         to start_wrapper(), so each can only be called once.  Allocate
35966         synchronisation blocks with GC_malloc(), and use GC finalisation
35967         to close the handles.
35968
35969         * icall.c: added System.Threading.Thread::Thread_free_internal
35970
35971 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35972
35973         * icall.c: support Environment.Exit, CommandLineArgs().
35974
35975 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35976
35977         * object.c, object.h: added mono_runtime_run_main () and
35978         mono_runtime_get_main_args () for use in System.Environment.
35979
35980 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35981
35982         * gc.c: fix thinko, enable actual finalization since the jit is now
35983         fixed.
35984
35985 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35986
35987         * gc.c, object.c: take into account that an object may be offset wrt the address
35988         returned by GC_malloc().
35989
35990 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35991
35992         * image.c: handle files without entries in the assembly table (modules).
35993
35994 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35995
35996         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35997         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35998         allowed to be null when it's System.Object class setup.
35999
36000 2002-04-27  Martin Baulig  <martin@gnome.org>
36001
36002         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
36003         if `tb->parent == NULL' rather than crashing.
36004
36005 2002-04-28  Nick Drochak  <ndrochak@gol.com>
36006
36007         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
36008         calling acos() where asin() should have been called.
36009
36010 2002-04-26  Martin Baulig  <martin@gnome.org>
36011
36012         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
36013         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
36014         there's a subdirectory called `System', but we don't want to read that
36015         subdirectory as an assembly.
36016
36017 2002-04-25  Martin Baulig  <martin@gnome.org>
36018
36019         * debug-symfile.c: Reflect latest MonoString changes.
36020
36021 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
36022
36023         * rand.c, rand.h: instance method icalls need to have an explicit
36024         this pointer as first argument in the C implementation.
36025
36026 2002-04-25  Nick Drochak <ndrochak@gol.com>
36027
36028         * icall.c: Fix typo in map for GetNonZeroBytes
36029
36030 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36031
36032         * string-icalls.c : String does now passes unit tests without any 
36033         errors, the following changes has been made:
36034         
36035         Implemented replace methods.
36036         Renaming of methods to (try) follow the standard.
36037         Fixed compare ordinal
36038         Made all memory allocated directly to function instead of via icall function.
36039         Small performance fix in is_in_array function
36040                         
36041  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
36042
36043         c (mono_string_Internal_ctor_charp_int_int):
36044         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
36045         sindex < 0, throw ArgumentOutOfRangeException instead of
36046         ArgumentNullException.
36047
36048         Added new check for length == 0, however
36049         I need to make it return String.Empty from the C code.
36050         
36051         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
36052         that calculate the length for us here.
36053         
36054         (mono_string_Internal_ctor_sbytep_int_int): Replaced
36055         mono_string_new_utf16 with mono_string_new, since value is utf8.
36056
36057 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36058
36059         * object.c: register the object for finalization if needed.
36060         Allocate one more char in the string for the terminating 0 char.
36061
36062 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
36063
36064         * class.c, class.h, image.c: check if a type implemenst a destructor.
36065         Use the proper key for array class lookups.
36066         * icall.c: register the icalls in the System.GC class.
36067         * gc.c, gc.h: GC-related functions and icalls.
36068
36069 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36070
36071         * icall.c:
36072         * socket-io.c:
36073         * unicode.c: free some strings gotten from mono_string_to_utf8 and
36074         changed a couple of free () by g_free ().
36075
36076         * decimal.c: one-liner in the comments for decimal2string ().
36077
36078 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36079
36080         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
36081
36082 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36083
36084         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
36085         * object.c (mono_runtime_invoke_array) : handle null in params
36086
36087 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36088
36089         * string-icalls.c: fixed bug in split (one off bug)
36090
36091 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36092
36093         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
36094         * icalls.c: added String::Equals as internal method
36095
36096 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36097
36098         * threads.c: fixed bug in the double interlocked functions
36099
36100 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
36101
36102         * threads.c: implemented all of the new interlocked icalls.
36103         * string-icalls.c: fix a bug in insert.
36104         * icalls.c: added the icalls for interlocked, removed old string functions.
36105         
36106 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36107
36108         * loader.c: fix off-by-one error when reading argument names.
36109
36110 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36111
36112         * profiler.c: win32 counter implementation (untested).
36113         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
36114         (the latter needs testing and more complete impl. from win32 folks).
36115
36116 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
36117
36118         * object.c: mono_array_new_full workaround mono_array_class_get
36119         problem.
36120
36121 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36122
36123         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
36124         * object.h (mono_string_chars): Changed casting type.
36125
36126 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36127
36128         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
36129                            method signatures to use gunichar2 instead of gint16.
36130
36131 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
36132
36133         * object.h, object.c: domain-specific versions of mono_object_new and
36134         mono_array_new.
36135
36136 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
36137
36138         * object.c: changed String layout
36139
36140         * string-icalls.c (mono_string_Internal_ctor_chara): added
36141         internal string constructors.
36142
36143 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
36144
36145         * threads.c: pass 'this' to the thread start routine.
36146
36147 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36148
36149         * string-icalls.c: fix IndexOf and LastIndexOf. Now
36150         InternalCompareStr don't call twice mono_string_cmp_char for the last
36151         character. Improved performance in mono_string_cmp_char.
36152
36153 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
36154
36155         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
36156         code into its own library: libmonoruntime.
36157
36158 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
36159
36160         * object.h, object.c: changed array format so that szarrays do not
36161         require a bounds structure.
36162         * icall.c, appdomain.c: support for new szarray format.
36163
36164 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
36165
36166         * metadata.c: compare also the retuns type when comparing signatures:
36167         we didn't do this as an optimization since really overloaded methods
36168         must differ also in the arguments, but this doesn't work with
36169         low-level IL code (or when using explicit conversion operators: see
36170         bug#23498 for an example).
36171
36172 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
36173
36174         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
36175
36176 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
36177
36178         * icall.c: make MonoType::GetElementType its own icall.
36179
36180 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
36181
36182         * icall.c: remove MonoMethod_get_Name().
36183         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
36184         object.
36185
36186 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36187
36188         * string-icalls.c: optimized a few methods.
36189
36190 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36191
36192         * icall.c: added all new string internal calls
36193         * string-icalls.c: added, new string internal call implementation.
36194         * object.c: added mono_string_new_size for allocating a string a size
36195
36196 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
36197
36198         * object.c (mono_object_isinst): use the same code as in the
36199         optimized x86 version.
36200
36201 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36202
36203         * profiler.c: TSC-based timer code (faster and more accurate).
36204         Not hooked up in configure, yet (set USE_X86TSC to 1).
36205
36206 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
36207
36208         * profiler.c, profiler.h: track time spent compiling methods.
36209         * threads.c: track thread creation/destruction.
36210
36211 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
36212
36213         * profiler.c, profiler.h, profiler-private.h: profiling interface
36214         and sample implementation. Moved here so that it can be used also by
36215         the jit.
36216
36217 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
36218
36219         * reflection.c, reflection.h: keep types and other handles separate in
36220         the hash tables for referred tokens. Add guid for modules.
36221
36222 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
36223
36224         * assembly.c: fix bugs found with valgrind.
36225         * metadata.h, metadata.c: added mono_metadata_guid_heap().
36226
36227 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
36228
36229         * threads: added icall support for getting current domain for
36230                    the thread.
36231  
36232 2002-04-13  Martin Baulig  <martin@gnome.org>
36233
36234         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
36235         (MonoDebugVarInfo): Added `index' field for register based addresses.
36236         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
36237         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
36238         `MonoDebugVarInfo *params' and `guint32 this_offset' with
36239         `MonoDebugVarInfo *this_var'.
36240
36241         * debug-symfile.c (relocate_variable): New static function to write
36242         a location description for a local variable or method parameter.
36243
36244 2002-04-12  Martin Baulig  <martin@gnome.org>
36245
36246         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
36247         stack offset and begin/end scope address of a local variable.
36248         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
36249         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
36250         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
36251
36252         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
36253         Added new relocation types for start/end scope of a local variable.
36254
36255 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36256
36257         * object.h: add mono_object_domain() macro.
36258         * reflection.c: handle typespecs.
36259         * icall.c: MonoMethod::get_Name() implementation.
36260
36261 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36262
36263         * icall.c: String::GetHashCode() icall implementation.
36264
36265 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36266
36267         * icall.c: String::IndexOfAny icall.
36268         * object.c, object.h: make array->max_length more useful.
36269         Intrduced mono_object_class() and mono_string_length() macros.
36270
36271 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36272
36273         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
36274         instead of g_unichar_isdigit.
36275
36276 2002-04-11  Nick Drochak  <ndrochak@gol.com>
36277
36278         * icall.c: Implement a simple Double.ToString().
36279
36280 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36281
36282         * appdomain.h: only io-layer.h is supposed to be included.
36283         * icall.c: explicitly import environ. Fix warning.
36284
36285 2002-04-10  Nick Drochak  <ndrochak@gol.com>
36286
36287         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
36288                 return true even if it's not Daylight Savings time.
36289                 Only return false for the case where the function isn't
36290                 implemented for a plaform (read Windows).
36291
36292 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36293
36294         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
36295         data with a mutex.
36296
36297 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
36298
36299         * mempool.c (mono_mempool_alloc): only use g_malloc when
36300         absolutely necessary.
36301
36302 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36303
36304         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
36305
36306         * class.c (mono_class_vtable): use domain mempool to allocate vtable
36307         (mono_class_proxy_vtable): use domain mempool
36308
36309 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
36310
36311         * appdomain.h, appdomain.c: split initialization that requires the
36312         execution engine support into mono_runtime_init().
36313
36314 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36315
36316         * class.c (mono_class_init): don't include vtable inside MonoClass
36317         to save some memory, gather some statistics.
36318         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
36319
36320 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36321
36322         * icall.c: internalcall implementation for ValueType.Equals().
36323
36324 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
36325
36326         * object.c (mono_message_init): moved 
36327         (mono_runtime_exec_main): new arch. independent impl.
36328         (mono_runtime_invoke_array): new method - like
36329         mono_runtime_invoke, but you can pass an array of objects.
36330         (mono_remoting_invoke): new arch. independent impl.
36331         (mono_message_invoke): new arch. independent impl.
36332         (mono_runtime_class_init): new arch. independent impl.
36333         (mono_runtime_object_init): new arch. independent impl.
36334
36335 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36336
36337         * metadata.c, object.c, reflection.c: documented the exported
36338         functions.
36339
36340 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
36341
36342         * icall.c: simpler code to pass the assembly builder data to corlib.
36343         Implement GetNestedTypes() internalcall.
36344
36345 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36346
36347         * class.c: warn if a type can't be loaded.
36348
36349 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
36350
36351         * image.h: typedef MonoImageOpenStatus
36352         * types.h: removed unused file
36353         
36354 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
36355
36356         * icall.c: Enum_ToObject accepts enum value arguments.
36357
36358 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
36359
36360         * class.c: move initialization of properties, events and nested
36361         classes, so that they happen for interfaces, too.
36362
36363 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
36364
36365         * icall.c: cleanup some ugly casts in Array_SetValue*.
36366
36367 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36368
36369         * icall.c: the values array fro enums is of the correct type, now.
36370         Implement (correctly) getFullName instead of assQualifiedName for
36371         MonoType.
36372         * reflection.h, reflection.c: added mono_type_get_name ().
36373
36374 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36375
36376         * assembly.c, image.h: for each MonoImage, record from wich assembly
36377         it was loaded.
36378         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
36379         Make Type.Assembly work.
36380
36381 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
36382
36383         * debug-symfile.h: use char* instead of gpointer to avoid
36384         unnecessary casts.
36385
36386         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36387
36388         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36389         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36390
36391 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36392
36393         * icall.c (mono_message_init): impl. (code cleanup)
36394         (ves_icall_InternalExecute): impl. FieldGetter
36395
36396         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36397         defined we call all (non-static)methods through the vtable. 
36398
36399 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36400
36401         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36402         finalizer even though the memory is still referenced (and the chunk of
36403         memory is not freed).
36404
36405 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36406
36407         * assembly.c: fix brokeness.
36408
36409 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36410
36411         * class.c: kill some warnings. Check explicit interface method
36412         implementation also without considering the namespace.
36413         Load also literal strings in static class data.
36414
36415 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36416
36417         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36418         (default_assembly_name_resolver): Make the resolver take the
36419         "base" directory where the assembly was originally defined, so we
36420         can load DLLs that are in the same directory as the assembly that
36421         is being referenced.
36422
36423 2002-03-28  Dick Porter  <dick@ximian.com>
36424
36425         * file-io.h: 
36426         * file-io.c:
36427         * socket-io.c: 
36428         * unicode.h: 
36429         * unicode.c: Warning cleanups
36430
36431 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36432
36433         * object.h, reflection.h: use the correct type instead of MonoObject.
36434
36435 2002-03-28  Martin Baulig  <martin@gnome.org>
36436
36437         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36438         (mono_debug_update_symbol_file): Initialize classes if necessary.
36439
36440 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36441
36442         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36443         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36444
36445 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36446
36447         * assembly.h: fix function prototype.
36448         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36449         * mono-endian.h: use const cast.
36450
36451 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36452
36453         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36454
36455 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36456
36457         * loader.c: don't assert when a typeref can't be loaded, give
36458         a chance to the runtime to trow an exception instead.
36459         * loader.h: fix warning.
36460
36461 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36462
36463         * class.c (mono_class_proxy_vtable): added proxy support
36464
36465 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36466
36467         * icall.c: removed last of PAL calls, added System.Environment
36468         * file-io.h, file-io.c: MonoIO implementation
36469         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36470
36471 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36472
36473         * appdomain.c: do not use the byte marker in ldstr table lookup.
36474         * debug-helpers.c: allow two ':' to separate class and method name.
36475         * object.c: allocate arrays bounds with the GC, too.
36476         * verify: add a few more checks.
36477
36478 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36479
36480         * reflection.c: output also literal strings. Allocate parameter data
36481         with GC_malloc() (thanks, Martin, for catching this!).
36482
36483 2002-03-26  Martin Baulig  <martin@gnome.org>
36484
36485         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36486         include the `this' offset in the `param_offsets'.
36487
36488 2002-03-25  Martin Baulig  <martin@gnome.org>
36489
36490         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36491         mono_debug_get_class() function to get the classes. Added new
36492         relocation types for arrays and strings.
36493         (mono_debug_get_class): New static function to search in all
36494         referenced assemblies for a metadata token.
36495
36496         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36497
36498 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36499
36500         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36501         hold gc-allocated objects. Make the string heap a stream like the
36502         others. Removed duplicated code when writing stream info.
36503         Added asserts to catch possible buffer overflows. Set the sorted map
36504         for tables that need sorting. Added some documentation.
36505
36506 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36507
36508         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36509         for interned strings and vtables.
36510
36511 2002-03-24  Martin Baulig  <martin@gnome.org>
36512
36513         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36514         it in the array since it was created with g_slist_prepend().
36515
36516 2002-03-24  Martin Baulig  <martin@gnome.org>
36517
36518         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36519         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36520         (mono_debug_method_from_token): Renamed to
36521         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36522         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36523
36524         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36525         relocation types.
36526
36527         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36528
36529 2002-03-24  Martin Baulig  <martin@gnome.org>
36530
36531         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36532         (mono_debug_method_from_token): New func.
36533
36534         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36535         New interncall, calls mono_debug_local_type_from_signature().
36536         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36537         calls mono_debug_method_from_token().
36538
36539 2002-03-23  Martin Baulig  <martin@gnome.org>
36540
36541         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36542         specifies the number of bytes to be converted, not the array size.
36543         Return the number of chars, not the number of bytes.
36544         (ves_icall_iconv_get_chars): The `byteCount' argument
36545         specifies the number of bytes to be converted, not the array size.
36546
36547 2002-03-23  Martin Baulig  <martin@gnome.org>
36548
36549         * reflection.h (MonoReflectionSigHelper): New type.
36550
36551         * reflection.c (mono_reflection_sighelper_get_signature_local),
36552         (mono_reflection_sighelper_get_signature_local): New functions.
36553
36554         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36555         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36556         interncalls.
36557
36558 2002-03-23  Martin Baulig  <martin@gnome.org>
36559
36560         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36561         is_writeable is set.
36562         (mono_raw_buffer_update): New function to write the modified map
36563         back to disk.
36564
36565         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36566
36567         * debug-symfile.c (mono_debug_update_symbol_file): Call
36568         mono_raw_buffer_update() when done writing.
36569
36570 2002-03-23  Martin Baulig  <martin@gnome.org>
36571
36572         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36573
36574         * debug-symfile.c: Added support for arguments and local variables.
36575
36576 2002-03-23  Dick Porter  <dick@ximian.com>
36577
36578         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36579         protected by ifdefs, hence breaking the w32 build.
36580
36581 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36582
36583         * object.c: implement is_interned() the right way.
36584
36585 2002-03-21  Martin Baulig  <martin@gnome.org>
36586
36587         * debug-symfile.[ch]: New files to handle debugging information
36588         files. There's also support to dynamically update these symbol
36589         files to include machine dependent information.
36590
36591 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36592
36593         * threads.c (mono_thread_create): new function to create thread
36594         from C
36595
36596 2002-03-20  Martin Baulig  <martin@gnome.org>
36597
36598         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36599         method is a constructor.
36600         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36601         points to ves_icall_InternalInvoke().
36602
36603 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36604
36605         * file-io.c: Flush shouldn't throw exceptions.
36606
36607 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36608
36609         * file-io.c: FileStream flush support; FileSetLength now
36610         restores file pointer.
36611
36612 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36613
36614         * class.c: set image for pointer classes.
36615
36616 2002/03/19  Nick Drochak <ndrochak@gol.com>
36617
36618         * sysmath.c: Forgot one.
36619
36620 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36621
36622         * sysmath.c: Avoid redefining existing names.
36623
36624 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36625
36626         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36627         handled by runtime as icall rather than dllimport from libm.so
36628         * file-io.c, file-io.h: fixed handle argument type.
36629
36630 2002-03-18  Dick Porter  <dick@ximian.com>
36631
36632         * reflection.c (mono_image_get_type_info): rename interface to
36633         iface, because of "#define interface struct" on windows.
36634
36635 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36636
36637         * class.c, class.h: rename and export mono_ptr_class_get().
36638         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36639         * reflection.c, reflection.h, icall.c: better/saner type name
36640         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36641         method signatures.
36642
36643 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36644
36645         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36646
36647         * icall.c (ves_icall_InternalInvoke): impl.
36648
36649 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36650
36651         * reflection.c: output the interface map table, too.
36652
36653 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36654
36655         * class.c (class_compute_field_layout): separate computation of 
36656         static field layout
36657
36658 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36659
36660         * icall.c: added System.Buffer support.
36661         * file-io.c: moved file icalls from PAL to FileStream.
36662
36663 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36664
36665         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36666
36667 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36668
36669         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36670
36671 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36672
36673         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36674
36675 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36676
36677         * debug-helpers.{c,h}: moved here from monograph some useful functions
36678         to locate a method by name/signature in a class or image. Included
36679         also a small and flexible IL disassembler.
36680
36681 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36682
36683         * reflection.c: fixup tokens in methods with small header size, too.
36684
36685 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36686
36687         * object.c (mono_string_to_utf8): remove assert(!error), instead
36688         print a warning. 
36689
36690 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36691
36692         * icall.c: update to the new mono_Array_class_get interface.
36693
36694 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36695
36696         * appdomain.c, object.c: Boehm-GC enable.
36697         * icall.c: make get_data_chunk() support split data requests.
36698         Ensure a class is initialized in more cases. Return only the first
36699         property found in GetProperties() or the compiler gets confused. 
36700         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36701         * reflection.h, reflection.c: add fixup mechanism for field and method
36702         tokens. Initialize assembly->typeref in a single place. Output
36703         properties after events. Support custom attributes for events, too.
36704         Typo fix for paramter custom attrs.
36705
36706 2002-03-07  Martin Baulig  <martin@gnome.org>
36707
36708         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36709
36710 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36711
36712         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36713
36714 2002-03-06  Martin Baulig  <martin@gnome.org>
36715
36716         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36717         non-zero lower bounds. See testcases #F10-#F13.
36718
36719 2002-03-05  Martin Baulig  <martin@gnome.org>
36720
36721         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36722
36723         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36724         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36725         here.
36726         (ves_icall_System_Array_SetValue): Likewise.
36727         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36728         as argument and does the actual work. This function is used when copying a
36729         multi-dimensional array.
36730         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36731         now do all the widening conversions of value types.
36732         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36733
36734 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36735
36736         * class.c: remove some magic numbers and use the smbolic names,
36737         instead. Added init_events() to load event info at class init time.
36738         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36739         and mono_metadata_methods_from_event().
36740         * reflection.h, reflection.c: added support for writing out the evnets
36741         related information.
36742
36743 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36744
36745         * reflection.h, icall.c: use a different method (GetInterfaces)
36746         to gather interface info and add isbyref, isprimitive and
36747         ispointer to the ves_icall_get_type_info() return value.
36748
36749 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36750
36751         * class.h: stared adding support for events.
36752         * icall.c: split find_members implementation. Added debug icall to get
36753         the address of an object.
36754         * reflection.c: handle TypeBuilders in mono_type_get_object().
36755
36756 2002-03-01  Martin Baulig  <martin@gnome.org>
36757
36758         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36759         ArgumentOutOfRangeException(), not an ArgumentException().
36760         (ves_icall_System_Array_GetLowerBound): Likewise.
36761         (ves_icall_System_Array_GetValue): Improved argument checking.
36762         (ves_icall_System_Array_SetValue): Improved argument checking.
36763
36764 2002-03-01  Martin Baulig  <martin@gnome.org>
36765
36766         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36767         called with invalid arguments rather than just dying with g_assert().
36768         (ves_icall_System_Array_SetValue): Likewise.
36769         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36770         raise a NotImplementedException instead.
36771         (ves_icall_System_Array_GetLength): Added argument checking.
36772         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36773
36774 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36775
36776         * object.h (mono_assert): new macros mono_assert and
36777         mono_assert_not_reached
36778
36779 2002-02-28  Martin Baulig  <martin@gnome.org>
36780
36781         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36782         and "System::String::IsInterned" to "System::String::_IsInterned".
36783
36784 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36785
36786         * icall.c: remove hacks for typebuilder. Added icall to create a
36787         modified type from a tybebuilder.
36788         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36789         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36790         to create a backing MonoClass for a TypeBuilder.
36791
36792 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36793
36794         * class.c, class.h: more refactoring of class init.
36795         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36796
36797 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36798
36799         * marshal.c, marshal.h: start of marshaling interface.
36800
36801 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36802
36803         * icall.c: fix order in assembly qualified name icall.
36804
36805 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36806
36807         * class.c: do not free str, since we store it in the hash table.
36808         * reflection.h: add label field to MonoILExceptionInfo.
36809         * reflection.c: handle references to more than one assembly. Handle
36810         case when there isn't a module created in the assembly.
36811
36812 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36813
36814         * class.c: Fix typo. Start refactoring of class init code.
36815
36816 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36817
36818         * appdomain.c: exit with 1 on error.
36819         * class.c: we already have the name in MonoClassField.
36820         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36821         MonoStreamHeader instead of an offset of image->raw_metadata.
36822
36823 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36824
36825         * appdomain.c (mono_init): Be even more descriptive about the error.
36826
36827 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36828
36829         * appdomain.c: give the user an informative message when corlib can't
36830         be loaded.
36831
36832 2002-02-26  Martin Baulig  <martin@gnome.org>
36833
36834         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36835         New icall to get the time zone data.
36836
36837 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36838
36839         * reflection.c: set virtual and raw size of section correctly.
36840         * threads.c: transfer domain information to newly created threads.
36841
36842 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36843
36844         * class.c: when instancing a class in a domain, load the default
36845         vaules for static fields from the constant table. Fix System.Enum to
36846         not be an enum.
36847         * icall.c: implement Object::GetType() internalcall. Implemented
36848         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36849         Fixed checking of binding flags in find_members().
36850         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36851         * reflection.c: handle enumerations when writing to the constant
36852         table. Use a different object cache for types.
36853
36854
36855 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36856
36857         * object.c (mono_object_isinst): fix for arrays
36858
36859         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36860
36861 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36862
36863         * object.c: don't use mprotect ()  and fix intern pool hash table
36864         lookup for big endian systems.
36865
36866 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36867
36868         * icall.c: change type_is_subtype_of () signature.
36869
36870 2002-02-21  Mark Crichton  <crichton@gimp.org>
36871
36872         * rand.c, rand.h: Added random number generator for
36873         System.Security.Cryptography classes.
36874
36875         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36876
36877         * icall.c: Added System.Security.Cryptography calls.
36878
36879 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36880
36881         * class.c, icall.c, metadata.c: better support for pointer types.
36882         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36883         * reflection.c: Add support for getting custom attrs for properties
36884         and simplify some code.
36885
36886 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36887
36888         * icall.c: change getToken () and add custom attribute GetBlob()helper
36889         method.
36890         * reflection.h: add custom attrs array to the reflection builder structures.
36891         * reflection.c: encode and emit custom attributes for all the relevant
36892         reflection objects. Cache fieldref and methodref tokens. Change
36893         mono_image_create_token() interface to take a MonoDynamicAssembly.
36894         More complete custom attributes decoder. Load custom attributes for
36895         Assembly, Field, Method and Constructor objects, too. Make the
36896         returned array an Attribute[] one, not object[]. Added
36897         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36898         custom attribute constructor.
36899
36900 2002-02-20  Dick Porter  <dick@ximian.com>
36901
36902         * icall.c:
36903         * rawbuffer.c:
36904         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36905         problem code out for now).
36906
36907 2002-02-19  Radek Doulik  <rodo@ximian.com>
36908
36909         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36910
36911 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36912
36913         * icall.c: register the GetCustomAttributes method.
36914         * object.c, object.h: add mono_string_new_len ().
36915         * reflection.h, reflection.c: added mono_runtime_invoke(),
36916         mono_install_runtime_invoke(). Added
36917         mono_reflection_get_custom_attrs () to load custom attributes and
36918         create the attribute objects.
36919
36920 2002-02-19  Dick Porter  <dick@ximian.com>
36921         * threads-dummy-types.c:
36922         * threads-dummy-types.h:
36923         * threads-dummy.c:
36924         * threads-dummy.h:
36925         * threads-pthread-types.c:
36926         * threads-pthread-types.h:
36927         * threads-pthread.c:
36928         * threads-pthread.h:  Deleted obsolete files
36929
36930 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36931
36932         * class.c (mono_class_vtable): runtime init the class when we
36933         allocate static class data.
36934
36935         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36936
36937         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36938         and String - but we will need generic marshalling support in the
36939         future. 
36940         (mono_init): set the domain name in a ms compatible way
36941
36942         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36943         String[].
36944
36945 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36946
36947         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36948         for sizes
36949
36950         * appdomain.c (mono_domain_unload): impl.
36951
36952 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36953
36954         * appdomain.c, object.c: fix intern pool implementation.
36955         * class.c: fix alignment code.
36956
36957 2002-02-16  Radek Doulik  <rodo@ximian.com>
36958
36959         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36960         and s2 > s1, just copy lower bytes to be compatible with little
36961         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36962         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36963
36964         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36965         force big_endian to be 1 for big endian machines 
36966         (ves_icall_iconv_new_decoder): ditto
36967
36968 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36969
36970         * socket-io.c (convert_sockopt_level_and_name): If the system
36971         doesn't define SOL_IP or SOL_TCP, get them by hand using
36972         getprotobyname() and caching the values (because this could be a
36973         slow operation).
36974         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36975         Use the appropriate struct when the system does support it. Ie,
36976         not all systems have struct ip_mreqn so use struct ip_mreq when
36977         appropriate.
36978
36979 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36980
36981         * reflection.c: handle finally clauses.
36982
36983 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36984
36985         * socket-io.c: use g_snprintf() instead of snprintf.
36986
36987 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36988
36989         * reflection.c (mono_param_get_objects): Cast second argument to
36990         mono_method_get_param_names to a const char** to silence the
36991         compiler warning.
36992
36993         * appdomain.c (mono_domain_assembly_open): Put parens around the
36994         truth statement in the for-loop.
36995
36996         * unicode.c (iconv_convert): Got rid of a compiler warning about
36997         int i being unused when the system has a new iconv.
36998         (iconv_get_length): Same.
36999
37000         * image.c (load_class_names): Cast the second argument to
37001         g_hash_table_insert() to char* to hush compiler warnings about the
37002         arg being a const.
37003         (mono_image_open): Same here.
37004
37005         * socket-io.c: Don't conditionally include sys/filio.h or
37006         sys/sockio.h here anymore since we now get them from
37007         io-layer/io-layer.h
37008         (inet_pton): If the system doesn't support inet_aton, implement
37009         using inet_addr and also #define INADDR_NONE if it isn't defined
37010         by the system.
37011
37012 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
37013
37014         * metadata.c, metadata.h: added function to get packing and size info
37015         of a typedef.
37016         * reflection.h, reflection.c: handle field RVA data. Save info about
37017         the table layout if needed. Assign typedef indexes to all the types
37018         before dumping the info about them to avoid forward reference problems.
37019
37020 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
37021
37022         * socket-io.c (convert_sockopt_level_and_name): ifdef
37023         SO_ACCEPTCONN because it is not defined on my system (old debian)
37024
37025 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
37026
37027         * opcode.c: use stddef.h to get NULL.
37028
37029 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37030
37031         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
37032         for FIONBIO, FIONREAD and SIOCATMARK.
37033         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
37034         define INADDR_NONE and besides, inet_addr() is deprecated and
37035         should not be used. Use inet_pton() instead - it also has the
37036         added bonus that it can easily handle IPv6 addresses as well.
37037         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
37038
37039 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
37040
37041         * decimal.c: remove _MSC_VER conditional.
37042
37043 2002-02-13  Dick Porter  <dick@ximian.com>
37044
37045         * socket-io.c: 
37046         * icall.c: Internal calls for Blocking, Select, Shutdown,
37047         GetSocketOption and SetSocketOption
37048
37049 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37050
37051         * assembly.cs: better resolver: use it instead of some kludgy
37052         code.
37053
37054 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
37055
37056         * reflection.c: the best way to speed-up the compiler is to avoid
37057         infinite loops.
37058
37059 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
37060
37061         * class.c (mono_class_vtable): changed the object layout
37062         (obj->vtable->class). 
37063         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
37064
37065 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37066
37067         * assembly.c: look for assemblies in the assembly dir, too.
37068
37069 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37070
37071         * class.c: fix thinko in mono_class_from_type().
37072
37073 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
37074
37075         * exception.h, exception.c: added TypeLoadException.
37076         * object.h, object.c: added mono_array_clone ().
37077         * icall.c: handle throwOnError in AssemblyGetType().
37078         Added Array.Clone().
37079         * opcode.h, opcode.c: use a single value for the opcode val.
37080         Compile fix for non-gcc compilers.
37081
37082 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
37083
37084         * opcodes.c, opcodes.h: export interesting info about opcodes.
37085
37086 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
37087
37088         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
37089         icalls. 
37090
37091         * class.c (class_compute_field_layout): set element_class for enums
37092         (mono_class_create_from_typedef): set element_class for normal classes
37093
37094         * icall.c (ves_icall_System_Enum_get_value): impl.
37095
37096         * class.c (mono_class_create_from_typedef): do not set valuetype
37097         flag for System.ValueType and System.Enum
37098
37099 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
37100
37101         * unicode.c (iconv_convert): fix big endian problem.
37102
37103 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
37104
37105         * class.c: add asserts if we are ever going to scribble over memory.
37106         * socket-io.c: not all systems have AF_IRDA defined.
37107
37108 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
37109
37110         * class.c (class_compute_field_layout): do not consider static
37111         fields to compute alignment
37112
37113 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
37114
37115         * appdomain.c (mono_appdomain_get): impl.
37116         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
37117
37118 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
37119
37120         * icall.c: ignore "file://" prefix when loading an assembly.
37121
37122 2002-01-23  Dick Porter  <dick@ximian.com>
37123
37124         * socket-io.c:
37125         * icall.c:
37126         * Makefile.am: Added socket support
37127
37128 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37129
37130         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
37131         code back.  This should return the assemblies that are loaded by
37132         the runtime on behalf of an application domain. 
37133
37134         The current implementation is still broken, it just returns every
37135         assembly loaded, but until we get real applications domain this
37136         will do.
37137
37138 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
37139
37140         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
37141         AppDomain object.
37142
37143 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37144
37145         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
37146         the mono_class_from_name lookup.
37147         (ves_icall_get_parameter_info): ditto.
37148         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
37149         method.
37150         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
37151
37152 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
37153
37154         * class.c: load also nested classes on class init.
37155         System.ValueType instance methods gets passed boxed
37156         values, unless methods in derived classed that get a pointer to the
37157         data.
37158         * icall.c: use better name parsing code in GetType().
37159         * image.c, image.h: add mono_image_loaded ().
37160         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
37161         * reflection.c, reflection.h: added mono_reflection_parse_type().
37162
37163 2002-01-22  Veronica De Santis <veron78@interfree.it>
37164
37165         * icall.c : Added mapping of internal calls for Manual and Auto reset events
37166         * threads.c : Added the implementation of internal calls for events
37167         * threads.h : Added prototypes of internal calls for events
37168         
37169 2002-01-21  Radek Doulik  <rodo@ximian.com>
37170
37171         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
37172
37173 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
37174
37175         * class.c (mono_class_init): set min_align to 1 (instead of 0)
37176         (mono_class_value_size): use min_align
37177
37178 2002-01-20  Dick Porter  <dick@ximian.com>
37179
37180         * threads.h:
37181         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
37182         so it compiles on w32.
37183
37184 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
37185
37186         * metadata.c (mono_type_stack_size): impl.
37187
37188         * class.c (mono_class_get_field): impl. memberref token
37189
37190 2002-01-16 Veronica De Santis <veron78@@interfree.it>
37191
37192         * icall.h : Added the internal calls mapping for CreateMutex_internal
37193                     and ReleaseMutex_internal.
37194         * threads.h : Added the prototype of mutexes internal calls.
37195         * threads.c : Added the implementations of mutexes internal calls.
37196
37197 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
37198
37199         * metaparse.h: removed unused file.
37200         * reflection.c, reflection.h: added stream_data_align () function 
37201         to align data in streams and keep stream aligned. Add support for
37202         exception support in method headers.
37203
37204 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
37205
37206         * unicode.c: make iconv_convert () return the number of bytess written
37207         in the output buffer.
37208
37209 2002-01-15  Dick Porter  <dick@ximian.com>
37210         * threads.c: Make the runtime's idea of infinite timeouts coincide
37211         with the class library's
37212
37213         Fix a particularly egregious bug in mono_thread_cleanup(). That
37214         code was so utterly bogus it must have been written on a Monday.
37215
37216 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
37217
37218         * reflection.h: add subtypes field to TypeBuilder.
37219         * reflection.c: encode constants for literal fields.
37220         Handle subtypes. Fix user string token (and add a zero byte)
37221         at the end.
37222         
37223 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
37224
37225         * class.c (mono_class_init): bug fix: assign slot numbers for
37226         abstract methods.
37227
37228 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37229
37230         * reflection.c: don't try to output a code RVA for abstract methods.
37231         Small fixes for method header format. Output parameter info to the
37232         ParamDef table. Save method overriding info to MethodImpl table.
37233         Fix property support. Allow typedef.extends to be a type in the
37234         building assembly.
37235         * verify.c: fix off-by-one error.
37236
37237 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
37238
37239         * class.c: fix mono_class_from_mono_type () for szarray types.
37240         Remove unused cache check in mono_class_from_type_spec().
37241         * icall.c: *type_from_name () functions handle simple arrays and byref.
37242         * reflection.c: handle byref and szarray types. Handle methods without
37243         body (gets P/Invoke compilation working). Handle types and fields in
37244         get_token ().
37245         * reflection.h: add rank to MonoTypeInfo.
37246
37247 2002-01-10  Dick Porter  <dick@ximian.com>
37248
37249         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
37250         internal calls
37251
37252 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
37253
37254         * icall.c: initialize class in type_from_handle ().
37255         Loop also in parent classes for get_method ().
37256         * reflection.c: properly encode class and valuetype types.
37257         Start on encoding TypeBuilder types. Handle fieldrefs.
37258         Use correct length when registering a user string.
37259         Handle ConstructorBuilder and MonoMethod in get_token ().
37260         Make mono_type_get_object () aware of cached types.
37261         * object.c: back out change to mono_string_new ().
37262
37263 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
37264         * object.c: mono_string_new should return a NULL when the string 
37265         passed in is NULL -- not try to deference it.
37266         
37267 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
37268
37269         * icall.c: hack to make IsSubType work for TypeBuilders.
37270         * reflection.c: emit constructors before methods.
37271         Retrieve param names in mono_param_get_objects().
37272
37273 2002/01/05  Nick Drochak  <ndrochak@gol.com>
37274
37275         * Makefile.am: fix list of headers and sources so automake 1.5
37276         doesn't complain. Removed \# at end of list.
37277
37278 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
37279
37280         * reflection.c: get token for a method ref. Set return type of
37281         constructor to void.
37282         * loader.c: debug message.
37283         * class.c: typo fix.
37284
37285 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
37286
37287         * icall.c: fix array init with rank > 1. FindMembers
37288         loops in parent class as well.
37289         * image.c: do not insert nested types in name cache.
37290         * reflection.c: warning fix.
37291         * reflection.h: add override method (for interface impl).
37292
37293 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
37294
37295         * metadata.c: fix customattr decoding.
37296
37297 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
37298
37299         * rawbuffer.cs: Added native Win32 implementation, avoids using
37300         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
37301
37302 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
37303
37304         * class.c: make the low-level routines handle the cache.
37305
37306 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
37307
37308         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
37309
37310 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
37311
37312         * class.c: fix mono_array_element_size() for objects.
37313         * class.h, class.c: add properties to MonoClass and load them
37314         at init time.
37315         * icall.c: check with isinst() when assigning a value to an array
37316         instead of requiring the classes to match exactly.
37317         Implemented icall for System.Type::GetType().
37318         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
37319         enums. Handle bindingflags when looking for methods and fields.
37320         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
37321         and mono_metadata_methods_from_property().
37322         * reflection.h, reflection.c: added structures for propreties,
37323         parameters and enums. Implemented mono_property_get_object() and
37324         mono_param_get_objects().
37325
37326 2001-12-18  Dick Porter  <dick@ximian.com>
37327
37328         * file-io.c: Use mono_string_to_utf16() instead of
37329         mono_string_chars()
37330
37331         * object.c: Added mono_string_to_utf16(), which copies the non
37332         NULL-terminated MonoString into a new double-null-terminated
37333         buffer.
37334
37335 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
37336
37337         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
37338
37339 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
37340
37341         * file-io.c: raise exceptions if handle is invalid.
37342
37343 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
37344
37345         * assembly.c: yet another check for mscorlib.
37346         * class.c, class.h: load nesting info for classes.
37347         * icall.c: many new functions to support the Reflection classes.
37348         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
37349         * reflection.h, reflection.c: mono_image_create_token(),
37350         mono_assembly_get_object(), mono_type_get_object(),
37351         mono_method_get_object(), mono_field_get_object(): methods to return
37352         objects that parallel the C representation of assemblies, types,
37353         methods, fields.
37354
37355 2001-12-11  Dick Porter  <dick@ximian.com>
37356
37357         * icall.c:
37358         * file-io.c: Internal calls for file IO.
37359
37360 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
37361
37362         * tabledefs.h: missing FileAttributes.
37363         * verify.h, verify.c: use is_valid_string () to simplify and check for
37364         valid strings more correctly. Fix warnings and speeling.
37365         Check more tables: Filed, File, ModuleRef, StandAloneSig.
37366         Check code: branches, maxstack, method calls.
37367
37368 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
37369
37370         * object.c (mono_object_allocate): removed static, so that the jit
37371         can allocate value types.
37372
37373         * icall.c (ves_icall_System_DateTime_GetNow): impl.
37374
37375 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37376
37377         * class.c: init enum types right away and register the
37378         token->MonoClass map in mono_class_create_from_typedef ().
37379         * verify.h, verify.c: first cut of the verifier.
37380         * pedump.c: add --verify switch to verify metadata tables.
37381         * tabledefs.h: add some missing enums.
37382
37383 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
37384
37385         * class.c (mono_install_runtime_class_init): impl.
37386         (mono_class_init): renamed mono_class_metadata_init to
37387         mono_class_init, also removed the metadata_inited flag
37388
37389         * object.c (mono_object_isinst): use faster algorithm
37390
37391 2001-11-30  Radek Doulik  <rodo@ximian.com>
37392
37393         * mono-endian.h: reverted last change
37394         added function prototypes
37395
37396         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37397         add mono-endian.c back
37398
37399         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37400         for unaligned access, I've mistaked it with endianess. I am
37401         sorry.
37402         (mono_read16): fix reverted endianess
37403         (mono_read64): ditto
37404         (mono_read32): ditto
37405
37406 2001-11-30  Dick Porter  <dick@ximian.com>
37407
37408         * exception.c: Implement mono_exception_from_name()
37409
37410 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37411
37412         * metadata.h, metadata.c: remove params_size and locals_size and their
37413         calculation from the metadata code: they are only usefult to the
37414         interp.
37415
37416 2001-11-29  Radek Doulik  <rodo@ximian.com>
37417
37418         * object.c (mono_ldstr): swap bytes here, it's probably not the
37419         best place, but works for me now, I'll redo it once I know mono
37420         better, also note that I add PROT_WRITE and don't reset back, also
37421         note that it's only affects big endians, so x86 should be OK
37422
37423         * mono-endian.h (read16): use just glib macros for both endians
37424
37425         * mono-endian.c: removed as glib macros are used in in
37426         mono-endian.h so we don't need to care about endianess for read
37427         macros as glib does that for us already
37428
37429 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37430
37431         * class.h, class.h: take minimum alignment into consideration so
37432         that the fields of a class remain aligned also when in an array.
37433
37434 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37435
37436         * loader.h, loader.c: add mono_method_get_param_names().
37437         * class.c: 0-init class fields.
37438
37439 2001-11-26  Dick Porter  <dick@ximian.com>
37440
37441         * icall.c:
37442         * threads-types.h:
37443         * threads.c: New file that handles System.Threading on all platforms
37444
37445         * object.c: 
37446         * object.h: Remove the synchronisation struct from MonoObject,
37447         replace it with a pointer that gets initialised on demand
37448
37449         * Makefile.am: Replace all the system-specific threading code with
37450         a single file that uses the new wrapper library
37451
37452 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37453
37454         * class.c, class.h: add mono_install_trampoline() so that the runtime
37455         can register a function to create a trampoline: removes the ugly
37456         requirement that a runtime needed to export arch_create_jit_trampoline.
37457         * object.h, object.c: added mono_install_handler() so that the runtime
37458         can install an handler for exceptions generated in C code (with
37459         mono_raise_exception()). Added C struct for System.Delegate.
37460         * pedump.c: removed arch_create_jit_trampoline.
37461         * reflection.c: some cleanups to allow registering user strings and
37462         later getting a token for methodrefs and fieldrefs before the assembly
37463         is built.
37464         * row-indexes.h: updates and fixes from the new ECMA specs.
37465
37466 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37467
37468         * class.h, class.c: add enum_basetype field to MonoClass.
37469         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37470         to get index in the constant table reated to a field, param or
37471         property.
37472         * reflection.h, reflection.c: handle constructors. Set public-key and
37473         version number of the built assembly to 0.
37474         * row-indexes.h: update from new ECMA spec.
37475
37476 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37477
37478         * class.h, class.c: add a max_interface_id to MonoClass.
37479         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37480         since it's used to do that. Added mono_type_type_from_obj().
37481         Make GetType() return NULL instead of segfaulting if the type was not
37482         found. Handle simple arrays in assQualifiedName.
37483         * object.h: add a struct to represent an Exception.
37484         * reflection.c: output call convention in method signature.
37485         Add code to support P/Invoke methods and fixed offsets for fields.
37486
37487 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37488
37489         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37490         the value.
37491         * icall.c: use mono_array_addr instead of array->vector: fixes the
37492         reflection image writing.
37493         * reflection.c: init call convention byte to 0 in method signature.
37494         Encode the property signature. Don't output property-related methods
37495         twice. Really process the properties for a type (don't cast a field to
37496         a property, my mom always told me that).
37497         Fix 64 bit issues in pointer alignment in a different and more
37498         readable way.
37499
37500 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37501
37502         * loader.h: Removed type class from MonoDefaults, added monotype
37503
37504         * loader.c: Loaded MonoType, removed loading of Type
37505
37506         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37507         and fills in System.Type._impl with a RuntimeTypeHandle rather
37508         than the actual MonoClass *
37509
37510         (ves_icall_type_from_handle): change from type_class to
37511         monotype_class
37512
37513         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37514         implemented
37515
37516         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37517         implemented
37518
37519         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37520
37521         (ves_icall_System_Reflection_Assembly_GetType): implemented
37522
37523         (ves_icall_System_MonoType_assQualifiedName): implemented
37524
37525         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37526
37527 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37528
37529         * assembly.c (mono_assembly_open): Implement a cache for the
37530         assemblies. 
37531
37532         (mono_assembly_close): only destroy the assembly when the last
37533         reference is gone.
37534         
37535 2001-11-09  Dick Porter  <dick@ximian.com>
37536
37537         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37538
37539 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37540
37541         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37542
37543 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37544
37545         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37546         from Martin Weindel.
37547         * object.h: add mono_string_chars ().
37548
37549 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37550
37551         * reflection.c (build_compressed_metadata): Eliminates warnings
37552         and uses 64-bit clean code.
37553
37554         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37555         (mono_type_equal): Change signature to eliminate warnings.
37556
37557 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37558
37559         * icall.c, loader.c: remove the internalcall array constructors.
37560         Changes to match the new MonoArray structure.
37561         * object.h, object.c: an array object doesn't allocate an extra
37562         vector. Add mono_array_new_full () to create jagged arrays easily.
37563
37564 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37565
37566         * metadata.h, metadata.c: add mono_metadata_field_info () to
37567         retreive all the info about a field from vairous tables.
37568         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37569         * class.h, class.c: augment MonoClassField with more info.
37570         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37571         policy and load a field's RVA if needed.
37572
37573 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37574
37575         * class.c (mono_class_metadata_init): create a trampoline for all
37576         virtual functions instead of actually compiling them.
37577
37578 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37579
37580         * class.h, class.c: include name in MonoClassField.
37581         * class.c: fix fundamental type of System.Object and System.String.
37582         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37583         tokens in ldtoken.
37584         * icall.c: remove internalcalls for the Reflection stuff that is now
37585         done in C# code.
37586         * loader.c: mono_field_from_memberref () implementation.
37587         * mono-endian.c: thinko (s/struct/union/g).
37588         * object.c, object.h: make the mono_string_* prototypes actually use
37589         MonoString instead of MonoObject.
37590         * reflection.c, reflection.h: updates for changes in the reflection
37591         code in corlib: we use C structures that map to the actual C# classes.
37592         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37593         fat method header if needed and use the info from the ILGenerator for
37594         methods. Handle fields in types. Misc fixes.
37595
37596 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37597
37598         * class.c (mono_class_metadata_init): bug fix: always allocate
37599         space for static class data
37600
37601 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37602
37603         * class.c (mono_compute_relative_numbering): use relative
37604         numbering to support fast runtime type checks.
37605
37606 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37607
37608         * class.c (mono_class_create_from_typeref): added debugging output
37609         to print class name when MonoDummy is returned instead of real class
37610
37611 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37612
37613         * class.c (mono_class_metadata_init): interface offset table now
37614         contains pointers into the vtable - this is more efficient for the jit
37615
37616 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37617
37618         * class.c (mono_class_metadata_init): use a temporary vtable (the
37619         old algorithm only worked for the interpreter, but not for the jit)
37620
37621 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37622
37623         * loader.c (method_from_memberref): use mono_class_get to get the
37624         class of an array instead of using System.Array directly.
37625         (mono_get_method): also add MEMBERREF methods to the method cache
37626         which usefull for arrays.
37627
37628 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37629
37630         * pedump.c (arch_compile_method): added to compute vtable entry
37631
37632         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37633         number of interfaces.
37634         
37635         * class.h: merged MonoArrayClass into MonoClass
37636
37637         * class.c (mono_class_create_from_typedef): compute the vtable size and
37638         allocate space to include the vtable inside MonoClass
37639         (mono_class_metadata_init): initialize the vtable
37640
37641 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37642
37643         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37644         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37645         * image.c: endian fixes by Laurent Rioux.
37646         * object.h, object.c: rename MonoStringObject to MonoString and
37647         MonoArrayObject to MonoArray. Change some function names to conform to
37648         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37649         guint16* as first argument, so don't use char*.
37650         Provide macros to do the interesting things on arrays in a portable way.
37651         * threads-pthread.c: updates for the API changes and #include <sched.h>
37652         (required for sched_yield()).
37653         * icall.c: updates for the API changes above.
37654         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37655         platforms that need them.
37656
37657 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37658
37659         * class.c: set the correct type for all the fundamental
37660         type when loading the class.
37661
37662 2001-10-05  Dick Porter  <dick@ximian.com>
37663
37664         * threads-pthread.c (pthread_mutex_timedlock): Simple
37665         compatibility version for C libraries that lack this call.
37666
37667 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37668
37669         * class.c: MonoTypes stored in MonoClass are stored as
37670         fundamental MonoTypes when the class represents a
37671         fundamental type (System.Int32, ...).
37672         The TypeHandle return by ldtoken is a MonoType*.
37673         * icall.c: ves_icall_get_data_chunk () write out all the
37674         PE/COFF stuff. Implement ves_icall_define_method (),
37675         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37676         * image.c: properly skip unknown streams.
37677         * loader.h, loader.c: add type_class to mono_defaults.
37678         * metadata.c, metadata.h: export compute_size () as
37679         mono_metadata_compute_size () with a better interface.
37680         Typo and C&P fixes.
37681         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37682         * reflection.c, reflection.h: many cleanups, fixes, output method
37683         signatures and headers, typedef and typeref info, compress the metadata
37684         tables, output all the heap streams, cli header etc.
37685         * row-indexes.h: typo fixes.
37686
37687 2001-10-04  Dick Porter  <dick@ximian.com>
37688
37689         * object.h: Add a synchronisation mutex struct to MonoObject
37690
37691         * object.c (mono_new_object): Initialise the object
37692         synchronisation mutexes
37693
37694         * icall.c: System.Threading.Monitor internal calls
37695         
37696         * threads-pthread.h:
37697         * threads-pthread.c: System.Threading.Monitor internal calls
37698
37699         * threads-types.h: New file, includes the system-specific thread
37700         structures
37701         
37702         * threads-pthread-types.h:
37703         * threads-pthread-types.c: New files, handle pthread-specific
37704         synchronisation types
37705
37706         * threads-dummy-types.h: 
37707         * threads-dummy-types.c: New files of dummy support for
37708         thread-specific types
37709
37710         * metadata.c:
37711         * image.c:
37712         * pedump.c: include mono-endian.h not endian.h
37713         
37714         * Makefile.am: More threads files.
37715         Name mono-endian.h not endian.h
37716
37717 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37718
37719         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37720         stuff and implement a few more bits.
37721         * icall.c: a field needs to be dereferenced twice. Do not use the same
37722         name for two variables in the same scope.
37723         * image.c, image.h: cleanups.
37724
37725 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37726
37727         * class.c (mono_class_metadata_init): bug fix: compute the right size
37728
37729 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37730
37731         * icall.c: implemented some of the Reflection internalcalls.
37732         * image.c, image.h: start writing out the PE/COFF image.
37733         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37734         that does the reverse than decode_blob_size ().
37735         * object.c: use mono_metadata_encode_value (). Move here
37736         temporary implementation of mono_string_to_utf8 ().
37737         * rawbuffer.c: make malloc_map static.
37738
37739 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37740
37741         * metadata.c: fix type comparison for arrays.
37742         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37743         Added a couple of new classes to monodefaults.
37744         * icall.c: added a couple of Reflection-related internalcalls.
37745         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37746         Added a byval_arg MonoType to MonoClass.
37747
37748 2001-09-28  Dick Porter  <dick@ximian.com>
37749
37750         * icall.c:
37751         * threads-pthread.h: 
37752         * threads-pthread.c: Implemented internal calls for
37753         LocalDataStoreSlot operations.  Applied mutexes around all shared
37754         data.  Reworked the thread creation and Start() operations to
37755         avoid a race condition.
37756         
37757         * threads-dummy.h:
37758         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37759
37760 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37761
37762         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37763
37764 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37765
37766         * class.c, loader.c: warn and return NULL instead of erroring out.
37767         * icall.c: added System.AppDomain::getCurDomain().
37768         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37769
37770 2001-09-25  Dick Porter  <dick@ximian.com>
37771
37772         * threads-pthread.h:
37773         * threads-pthread.c: Implemented timed thread joining and added
37774         System.Threading.Thread::Join_internal internal call
37775
37776         * icall.c: Added System.Threading.Thread::Join_internal internal call
37777
37778         * threads-dummy.h:
37779         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37780
37781 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37782
37783         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37784         mono_string_intern () to implement the semantics of the ldstr opcode
37785         and the interning of System.Strings.
37786         * icall.c: provide hooks to make String::IsIntern and String::Intern
37787         internalcalls.
37788
37789 2001-09-23  Dick Porter  <dick@ximian.com>
37790
37791         * threads-dummy.c: 
37792         * threads-dummy.h: New files of dummy threading routines
37793
37794         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37795         support code based on system specifics
37796
37797         Rename PTHREAD_LIBS to THREAD_LIBS
37798         
37799 2001-09-23  Dick Porter  <dick@ximian.com>
37800
37801         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37802         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37803         internal calls.
37804         (mono_thread_init): Set up a Thread object instance to return when
37805         the main thread calls Thread.CurrentThread
37806         (mono_thread_cleanup): Wait for all subthreads to exit
37807
37808         * icall.c: New internal calls for System.Threading.Thread::Sleep
37809         (including Schedule) and CurrentThread
37810
37811         * threads.h: New file, to insulate thread-specific stuff from the
37812         rest of the code
37813
37814 2001-09-21  Dick Porter  <dick@ximian.com>
37815
37816         * threads-pthread.h: 
37817         * threads-pthread.c: New file, for handling pthreads-style
37818         threading support.  Start() now starts a new thread and executes
37819         the ThreadStart delegate instance.
37820
37821         * icall.c: Added the internalcall for
37822         System.Threading.Thread::Start_internal
37823
37824         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37825
37826 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37827
37828         * loader.c: work around the different signatures for delegates
37829         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37830
37831 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37832
37833         * class.h, class.c: add mono_class_get_field_from_name ().
37834         * *: Fix C comments and other ANSI C issues.
37835
37836 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37837
37838         * endian.h, assembly.c: fix some endianness issues.
37839
37840 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37841
37842         * loader.h, load.c: add delegate_class to mono_defaults.
37843         Handle runtime provided methods in mono_get_method ().
37844
37845 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37846
37847         * loader.c (mono_get_method): use pinvoke for internal call
37848
37849         * icall.c: use pinvoke for internal call
37850
37851         * loader.c (method_from_memberref): set the method name
37852
37853 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37854
37855         * metadata.c: help the compiler generate better code for
37856         mono_class_from_mono_type ().
37857
37858 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37859
37860         * class.c (mono_class_metadata_init): delayed computing of the
37861         class size to mono_class_metadata_init ()
37862
37863 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37864
37865         * class.c, class.h: add an interfaces member to MonoClass.
37866         * image.c, image.h: add assembly_name field to MonoImage
37867         from the assembly table.
37868         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37869
37870 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37871
37872         * class.c: Handle Array in mono_class_from_mono_type ().
37873         * metadata.c, pedump.c: some endian fixes.
37874
37875 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37876
37877         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37878         * metadata.c: fix small problem introduced with the latest commit.
37879
37880 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37881
37882         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37883         We don't need a MonoMetadata pointer anymore to compare signatures in
37884         mono_metadata_signature_equal (), update callers.
37885         Reduced memory usage an number of allocations for MonoMethodHeader and
37886         MonoMethodSignature.
37887
37888 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37889
37890         * metadata.c: added compare for szarray.
37891
37892 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37893
37894         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37895         and add a couple more types to it and mono_defaults. Give an hint on
37896         classes that need implementing in our corlib and are referenced
37897         in mscorlib.
37898
37899 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37900
37901         * class.h, class.c: keep track if a class is also an Enum.
37902         * loader.c: Implement a couple more types for use in libffi
37903         marshalling. Gives better diagnostics when failing to dlopen
37904         a library. Set method->klass for P/Invoke methods, too.
37905
37906 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37907
37908         * class.c, class.h: add a MonoType this_arg to MonoClass that
37909         represents a pointer to an object of the class' type that
37910         can be used by the interpreter and later the type cache.
37911         Add best guess alignment info for valuetype objects.
37912
37913 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37914
37915         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37916         into MonoType: one less level of indirection and allocation and
37917         simplifies quite a bit of code. Added cache for MonoTypes that are
37918         used frequently, so that we don't need to allocate them all the time.
37919
37920 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37921
37922         * class.c (mono_class_create_from_typedef): System.Enum is also a
37923         value type, although it does not derive from System.ValueType
37924         (maybe a bug in the ms compiler?)
37925
37926         * metadata.c (mono_type_size): return the right size for value types
37927
37928         * loader.c (mono_get_method): only initialize method header if not abstract
37929
37930         * class.c (mono_class_from_mono_type): use mono_default values. 
37931
37932 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37933
37934         * *: use MonoClass pointers instead of <type_tokens>
37935         
37936         * class.h: new flag: metadata_inited.
37937
37938         * class.c (mono_class_metadata_init): impl.
37939         (mono_class_instance_size): impl.
37940         (mono_class_data_size): impl.
37941
37942 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37943
37944         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37945         MonoClass now has the name and name_space fields. 
37946         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37947         mono_get_method () takes and optional MonoClass as argument.
37948         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37949         instead that takes advantage of a map from class names to typedef
37950         tokens in MonoImage.
37951
37952 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37953
37954         * metadata.c: zero is not a valid alignment boundary.
37955         Merge MONO_TYPE_VOID in default decoding code.
37956
37957 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37958
37959         * image.h: merged MonoMetadata into MonoImage
37960
37961         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37962         identify the type of elements.
37963
37964 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37965
37966         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37967         * cil-coff.h: split MonoMSDOSHeader and add size info.
37968         * image.c: add some consistency checks.
37969         * metadata.c: fix row size computation: one programmer
37970         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37971         add explanation for the locator routine.
37972         Fix decoding of size in method header.
37973         
37974 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37975
37976         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37977         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37978         function from gnome-libs.  This uses the right path separator
37979         based on the OS, and also works around a bug in some systems where
37980         a double slash is not allowed. 
37981         (default_assembly_name_resolver): Use g_concat_dir_and_file
37982         (mono_assembly_open): ditto.
37983
37984 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37985
37986         * metadata.c (mono_metadata_signature_equal): impl.
37987
37988         * *: void is now a realy MonoType (instead of using NULL)
37989         
37990         * metadata.c (do_mono_metadata_parse_type): use
37991         mono_metadata_parse_type to parse void value.
37992
37993 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37994
37995         * metadata.c, metadata.h: in the signature and method header store
37996         only the space required for holding the loca vars and incoming arguments.
37997
37998 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37999
38000         * metadata.c (do_mono_metadata_parse_type): treat void like any
38001         other type (instead of assigning NULL);
38002
38003 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
38004
38005         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
38006
38007 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
38008
38009         * image.c (do_mono_image_open): added a cache for arrays.
38010
38011 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38012
38013         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
38014         decode a single column from a row in a metadata table and changes
38015         to take advantage of it in the typedef locator (gives a nice speed up).
38016         Store offset info for function params.
38017
38018 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
38019
38020         * image.h (MONO_IMAGE_IS_CORLIB): removed 
38021
38022 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
38023
38024         * assembly.c: how could mono_assembly_close () had ever worked?
38025         * metadata.c, metadata.h: provide offset info for local vars.
38026         Implement mono_type_size () to take care of alignment as well
38027         as size (it was mono_field_type_size in cli/class.c before).
38028
38029 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
38030
38031         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
38032
38033         * assembly.h (CORLIB_NAME): set to corlib.dll
38034
38035         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
38036
38037 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38038
38039         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
38040         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
38041         tokentype.h: massive namespace cleanup.
38042
38043 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
38044
38045         * metadata.h, metadata.c: decode exception clauses when parsing method header.
38046
38047 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
38048
38049         * metadata.c (mono_metadata_free_type): added check for type !=
38050         NULL (void) before calling mono_metadata_free_type()
38051
38052 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
38053
38054         * metadata.h, row_indexes.h: added header with enumerations to use
38055         to index in the columns from tables in metadata and to decode coded
38056         tokens: we should start using this instead of embedding magic numbers
38057         all over the code.
38058
38059 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
38060
38061         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
38062         Move metadata_t info from cli_image_info_t to MonoImage, where
38063         it's easily accessible. Changed all the uses accordingly.
38064         Added the method and class caches to MonoImage.
38065         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
38066         and mono_metadata_decode_value () signature to be more consistent
38067         with the other parse functions (and simplify code). Taken advantage
38068         of zero-length array allocation with GCC. Removed reduntant (and
38069         wrong) MonoFieldType struct and use MonoParam instead. Changed
38070         mono_metadata_parse_field_type () to use common code for parsing.
38071         Added mono_metadata_typedef_from_field () and
38072         mono_metadata_typedef_from_method () to lookup a typedef index from a
38073         field or method token.
38074         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
38075
38076 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
38077
38078         * metadata.c (mono_metadata_parse_field_type): Implement. 
38079         (do_mono_metadata_parse_type): Split engine from
38080         mono_metadata_parse_type, so that we can create smaller structures
38081         for things that just have one pointer to the MonoType (look at
38082         the MonoFieldType)
38083
38084 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
38085
38086         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
38087         as Jan Gray found out, it is incorrect. 
38088
38089 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
38090
38091         * assembly.c: Implement asssembly loading.  This loads an image
38092         and loads all the referenced assemblies.  Come to think of it, we
38093         could always do lazy loading of the assemblies. 
38094
38095         * image.c (mono_image_open): Keep loaded images in a hashtable.
38096
38097         * image.h (MonoImage): Add reference count.
38098
38099 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
38100
38101         * assembly.c (mono_assembly_open): Keep track of the file name in
38102         case the assembly has no ASSEMBLY table.
38103
38104         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
38105         from get.c here.
38106
38107 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
38108
38109         * metadata.c, metadata.h: decode local vars in method header
38110         parse function. Change callers accordingly.
38111
38112 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
38113
38114         * metadata.h, cil-coff.h: protect against multiple inclusion.
38115         Added some new structures to hold information decoded from metadata:
38116         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
38117         and relevant decoding/free functions.
38118         * metadata.c: implement decoding functions. Add warning for out of bounds
38119         index in mono_metadata_locate(). Implement mono_get_method () to retreive
38120         all the info about a method signature and invocation. Remove check on
38121         uninitialized local var in parse_mh() and fix memory leak.
38122
38123 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
38124
38125         * metadata.h: More macros.
38126
38127         * tokentype.h: New file.
38128
38129 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
38130
38131         * assembly.c: added a consistency check and initialize
38132         some structures with g_new0().
38133         * metadata.c: fixed a couple more bugs in table size computation
38134         and add other checks for out-of bound access to metadata.
38135
38136 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
38137
38138         * metatada.c: fix bugs computing table sizes. Spew a
38139         warning when index in string heap is out of bounds.
38140
38141 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
38142
38143         * metadata.h: Add a couple of macros to manipulate tokens. 
38144
38145 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
38146
38147         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
38148         cli_section_tables).
38149
38150 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
38151
38152         * metadata.c (mono_metadata_user_string): New function, provides
38153         access to the UserString heap. 
38154
38155 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
38156
38157         * metadata.c: Add inline documentation.
38158
38159 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
38160
38161         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
38162         files. 
38163
38164 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
38165
38166         * typeattr.h: New file, TypeAttribute flags. 
38167
38168 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
38169
38170         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
38171         mono_assembly_ensure_section): Section loading code.
38172         (load_section_tables): Load the sections.
38173
38174         * mono/metadata/metadata.c (mono_metadata_locate_token,
38175         mono_metadata_locate): Functions to locate the information
38176         definition given a token or a table and an index.
38177         (mono_metadata_compute_table_bases): New.
38178         (compute_size): New function to compute the sizes of the various
38179         tables.
38180
38181         * mono/metadata/metadata.h: Finish listing the different index
38182         types. 
38183
38184         * mono/metadata/pedump.c: Improve to dump new information.
38185
38186 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
38187
38188         * mono/metadata/metadata.c: Entered all the tables matching
38189         Beta2. 
38190
38191         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2