[corlib] Improve CancellationTokenSource test
[mono.git] / mono / metadata / ChangeLog
1 2011-01-04  Veerapuram Varadhan  <v.varadhan@gmail.com>
2
3         * assembly.c (framework_assemblies): Map System.Transactions to
4         4.0 framework assemblies.
5
6         Fixes #635335
7
8 2010-11-03  Martin Baulig  <martin@ximian.com>
9
10         * mono-debug.c (mono_register_symfile_for_assembly): New method.
11         This is used together with mono_register_bundled_assemblies() and
12         mono_register_config_for_assembly() to support bundles.
13
14 2010-07-30  Mark Probst  <mark.probst@gmail.com>
15
16         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Add casts to fix
17         compiler warnings on AMD64.
18
19 2010-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
20
21         Add support for calling vararg methods from SRE code.
22         This requires storing per-memberref signatures so
23         the JIT can know how many varargs parameters are
24         been passed.
25
26         * loader.c (mono_method_get_signature_full): If the
27         image is dynamic call mono_reflection_lookup_signature
28         to lookup the signature.
29
30         * reflection.c (mono_image_create_method_token): Save
31         the method object into the MonoDynamicImage::tokens.
32         Create a signature struct for MethodBuilders.
33         Save the signature into vararg_aux_hash so it can be
34         retrieved later.
35
36         * reflection.c (mono_reflection_lookup_signature): New
37         function. Check vararg_aux_hash for a signature before
38         returning method's own signature.
39
40         * metadata-internals.h (MonoDynamicImage): Add new
41         vararg_aux_hash hashtable.
42
43         * object-internals.h: Add mono_reflection_lookup_signature.
44
45         Fixes #626441
46
47 2010-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
48
49         * verify.c (mono_method_verify): Don't move forward
50         with verification if a stack overflow is detected for
51         the ARGLIST opcode.
52
53         Fixes #601953
54
55 2010-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
56
57         * class.c (mono_bounded_array_class_get): Fail arrays
58         of void or typedbyref. Those two types are not allowed
59         to be used with arrays. Failing them is easier and less
60         error prone than returning NULL.
61
62         Fixes #603279
63
64 2010-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
65
66         * object.c (mono_get_delegate_invoke): Don't assert if
67         the Invoke method is not found. This can happen with
68         broken types and it's the caller resposibility to deal
69         with a null return.
70
71         Fixes #553403
72
73 2010-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
74
75         * class.c (mono_assembly_name_from_token): Handle
76         images with null assembly. This can happen with resource
77         or broken assemblies.
78
79         Fixes #623586.
80
81 2010-07-27 Rodrigo Kumpera  <rkumpera@novell.com>
82
83         * class.c (concat_two_strings_with_zero): Guard against
84         null strings.
85
86         Modified version of patch by Sebastien Pouliot.
87
88         Fixes #623653.
89
90 2010-07-27 Rodrigo Kumpera  <rkumpera@novell.com>
91
92         * image.c (mono_image_load_module): Handle the case of
93         module index equal or smaller than zero. It is possible
94         to embed a valid zero index into metadata so this case
95         must be explicitly handled.
96
97         Patch by Sebastien Pouliot.
98
99         Fixes #623581.
100
101 2010-07-27 Rodrigo Kumpera  <rkumpera@novell.com>
102
103         * metadata-verify.c (INVALID_IMPLMAP_FLAGS_BITS): Add non standard
104         bits for best fit on/off (4,5) and throw on unmappable on/off (12/13).
105
106         Fixes #622221.
107
108 2010-07-27  Geoff Norton  <gnorton@novell.com>
109
110         * sgen-archdep.h: Ensure we store the registers we actually
111         need to scan.
112
113 2010-07-27 Rodrigo Kumpera  <rkumpera@novell.com>
114
115         * verify.c (do_invoke_method): Improve error message.
116
117 2010-07-27 Rodrigo Kumpera  <rkumpera@novell.com>
118
119         * verify.c (mono_generic_param_is_constraint_compatible): Don't
120         fail a contraint check even if the candidate has no constraints.
121         All constraints might resolve to the candidate itself so it can
122         have none.
123
124         Fixes #622225.
125
126 2010-07-25  Mark Probst  <mark.probst@gmail.com>
127
128         * sgen-internal.c: Only compile this if HAVE_SGEN_GC is defined.
129
130 2010-07-24  Mark Probst  <mark.probst@gmail.com>
131
132         * sgen-internal.c, sgen-gc.h, sgen-major-copying.c: Make the
133         internal allocator fast by keeping free-lists of chunks, not only
134         within chunks.  Align the chunks, so that on freeing we can get
135         the chunk without searching.
136
137 2010-07-24  Mark Probst  <mark.probst@gmail.com>
138
139         * sgen-internal.c, sgen-gc.c, sgen-gc.h, sgen-gray.c,
140         sgen-major-copying.c, sgen-marksweep.c, sgen-pinning-stats.c,
141         sgen-pinning.c: Allocate fixed-size structs without specifying the
142         size, instead registering it once with its type.
143         Dynamically-sized need their size specified when being freed.
144
145 2010-07-24  Mark Probst  <mark.probst@gmail.com>
146
147         * sgen-major-copying.c, sgen-internal.c, sgen-gc.c, sgen-gc.h,
148         sgen-pinning.c: Copying major collector doesn't mess around with
149         internals of the internal allocator anymore, instead using public
150         functions.
151
152 2010-07-24  Mark Probst  <mark.probst@gmail.com>
153
154         * sgen-internal.c: Internal allocator in its own module.
155
156         * sgen-gc.c, sgen-gc.h, sgen-gray.c, sgen-los.c,
157         sgen-major-copying.c, sgen-marksweep.c, sgen-pinning.c,
158         sgen-pinning-stats.c: Remove internal allocator and call the
159         public functions now.
160
161         * Makefile.am: Added new file.
162
163 2010-07-24  Zoltan Varga  <vargaz@gmail.com>
164
165         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix warnings on amd64.
166
167 2010-07-24  Sanjoy Das <sanjoy@playingwithpointers.com>
168
169         * sgen-gc.h: Removed 'foo defined but not used' warnings for the
170           *_signal_num variables.
171
172 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
173
174         * file-io.c (ves_icall_System_IO_MonoIO_Read): Add a null check.
175         (ves_icall_System_IO_MonoIO_Write): Ditto.
176
177         * loader.c (mono_loader_cleanup): Delete loader_mutex, the shutdown races should
178         be fixed now.
179
180 2010-07-23  Zoltan Varga  <vargaz@gmail.com>
181
182         * loader.c (mono_loader_lock_if_inited): New helper function which can be called
183         during startup before the loader lock is initialized.
184         (mono_loader_unlock_if_inited): Ditto.
185
186
187 2010-07-21  Geoff Norton  <gnorton@novell.com>
188
189         * sgen-archdep.h: Fix the build on amd64-darwin.
190
191 2010-07-16  Zoltan Varga  <vargaz@gmail.com>
192
193         * object.c (mono_print_unhandled_exception): Fix a warning.
194
195 2010-07-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
196
197         * threadpool.c: use a monitor thread to start up new ones when needed.
198         Fixes bug #622398.
199
200 Thu Jul 15 18:44:44 CEST 2010 Paolo Molaro <lupus@ximian.com>
201
202         * reflection.c, class-internals.h, class.c, icall.c: support
203         reflection of default constant value for Re.Emit properties.
204
205 2010-07-14  Miguel de Icaza  <miguel@novell.com>
206
207         * reflection.c (load_cattr_value): Add support for encoding
208         DateTime constants into the blob.    Turns out that this is
209         required by .NET, it was only documented post 1.0.
210
211         * icall.c (ves_icall_type_GetTypeCodeInternal): Guard test for
212         System.Decimal and System.DateTime inside a mono_is_corlib_image
213         call.   A sample program showed that we could return the wrong
214         TypeCode just by creating a class with those names. 
215
216         * class.c (mono_is_corlib_image): Exposed this to other metadata/
217         code.
218
219 2010-07-14  Sebastien Pouliot  <sebastien@ximian.com>
220
221         * security-core-clr.c: Don't abort (only warn) if we cannot find 
222         a caller for relfecting code (transparent is assumed). Fix
223         get_method_access_exception to accept a NULL caller.
224
225 2010-07-14  Mark Probst  <mark.probst@gmail.com>
226
227         * sgen-gc.c: Heavy statistics on the internal allocator.
228
229 2010-07-13  Mark Probst  <mark.probst@gmail.com>
230
231         * sgen-marksweep.c, sgen-gc.h: Keep track of num_empty_blocks
232         properly and in a thread-safe way.
233
234 2010-07-13  Mark Probst  <mark.probst@gmail.com>
235
236         * sgen-gc.c, sgen-marksweep.c: Make object marking thread-safe.
237
238 2010-07-13  Mark Probst  <mark.probst@gmail.com>
239
240         * sgen-gc.c: Versions of safe_object_get_size() and
241         copy_object_no_checks() that work without the object's vtable
242         intact, by passing the correct vtable as an argument.
243
244 2010-07-13  Mark Probst  <mark.probst@gmail.com>
245
246         * sgen-marksweep.c: Make allocation of major sections thread-safe.
247
248 2010-07-13  Mark Probst  <mark.probst@gmail.com>
249
250         * sgen-gc.c, sgen-gc.h, sgen-los.c, sgen-major-copying.c,
251         sgen-marksweep.c: Update the heap boundaries thread-safe and lock
252         free if parallel mark is enabled.
253
254 2010-07-13  Mark Probst  <mark.probst@gmail.com>
255
256         * sgen-gc.c, sgen-gc.h, sgen-major-copying.c: Lock the internal
257         allocator if parallel mark (not committed yet) is enabled.
258
259 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
260
261         * reflection.c (inflate_mono_method): Handle dynamic
262         generic instances that have method.count set but
263         methods not. Fixes another crash from boo's test suite.
264
265 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
266
267         * icall.c (ves_icall_MonoMethod_get_base_method): If
268         the method slot is bigger than the class vtable, return
269         the original method. Makes booc work again.
270
271 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
272
273         * verify.c (mono_generic_param_is_constraint_compatible):
274         The candidate type itself might satisty the required
275         constraints.
276
277         Fixes #621599.
278
279 2010-07-12 Rodrigo Kumpera  <rkumpera@novell.com>
280
281         * reflection.c (fix_partial_generic_class): Inflate the
282         generic instance parent in case it was changed after
283         MonoGenericClass was instantiated.
284
285         Fixes one of the issues from #389886.
286
287 2010-07-10  Mark Probst  <mark.probst@gmail.com>
288
289         * sgen-gray.c: Store only a pointer to one end of the gray queue.
290
291 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
292
293         * loader.c (mono_method_signature_checked): Release the domain
294         lock on failure.
295
296 2010-07-10  Mark Probst  <mark.probst@gmail.com>
297
298         * sgen-gc.c: Store the forwarding address in the first word of an
299         object, where the forwarding bit is stored.
300
301 2010-07-10  Mark Probst  <mark.probst@gmail.com>
302
303         * gc.c, gc-internal.h, sgen-gc.c, sgen-gc.h, sgen-os-mach.c: An
304         interface to register our Mach exception thread which will not be
305         suspended by stop-the-world.
306
307 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
308
309         * loader.c (mono_get_method_constrained): Properly unlock the
310         domain lock on failure. Use checked variant of
311         inflate_generic_signature.
312
313 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
314
315         * loader.c (mono_method_signature_checked): Use checked
316         variant of inflate_generic_signature.
317
318         Fixes #606353.
319
320 2010-07-10 Rodrigo Kumpera  <rkumpera@novell.com>
321
322         * metadata.c (mono_metadata_parse_type_internal): Don't use
323         cannonical types when a transient type was requested.
324
325         Fixes #608626.
326
327 2010-07-10  Mark Probst  <mark.probst@gmail.com>
328
329         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
330         All functions that touch the gray queue directly or indirectly now
331         take it as an argument.
332
333 2010-07-10  Mark Probst  <mark.probst@gmail.com>
334
335         * sgen-gray.c, sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c:
336         Put the gray queue data into a struct and pass it around.
337
338 2010-07-09 Rodrigo Kumpera  <rkumpera@novell.com>
339
340         * class.c (mono_method_can_access_method_full): Handle type
341         accessibility with very deep nested types.
342
343         * class.c (mono_method_can_access_field_full): Ditto.
344
345         Fixes #619300.
346
347 2010-07-10  Mark Probst  <mark.probst@gmail.com>
348
349         * sgen-gc.c, sgen-los.c, sgen-major-copying.c, sgen-marksweep.c,
350         sgen-scan-object.h: Use a macro for rounding up sizes and
351         addresses to ALLOC_ALIGN.
352
353 2010-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
354
355         * file-io.c: fix GetFileSystemEntries for patterns containing
356         directories.
357
358 2010-07-09  Mark Probst  <mark.probst@gmail.com>
359
360         * sgen-marksweep.c (major_finish_major_collection): Don't free
361         major heap blocks on 32 bit platforms because it can lead to
362         address space fragmentation.  We'll figure this out later.
363
364 2010-07-09  Mark Probst  <mark.probst@gmail.com>
365
366         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c: Free major
367         heap blocks for mark&sweep eventually.
368
369 2010-07-09  Mark Probst  <mark.probst@gmail.com>
370
371         * sgen-protocol.c: Fix build when binary protocol is disabled.
372
373 2010-07-09  Mark Probst  <mark.probst@gmail.com>
374
375         * sgen-protocol.c, sgen-gc.c: Make binary protocol lock-freely
376         thread-safe.
377
378 2010-07-08 Neale Ferguson <neale@sinenomine.net>
379
380         * sgen-archdep.h: Add support for s390x
381         * domain.c: Use gsize so that 64-bit big endian systems produce 
382         bitmap.
383
384 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
385
386         * pedump.c (verify_image_file): Initialize the vtable as well.
387
388 2010-07-07  Geoff Norton  <gnorton@novell.com>
389
390         * sgen-gc.h:  Not every system has sys/signal.h.  Prefer the posix
391         header.
392
393 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
394
395         * assembly.c (mono_assembly_load_reference): Replace a g_warning
396         with a mono_trace calls. This makes compiling MD a lot less scary.
397
398 2010-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
399
400         * verify.c (do_stobj): Improve error message.
401
402 2010-07-08  Mark Probst  <mark.probst@gmail.com>
403
404         * sgen-gc.c (OBJ_COMPLEX_ARR_FOREACH_PTR): Don't load the vtable
405         from the object because it might have pinned/forwarding bits set.
406
407 2010-07-06  Zoltan Varga  <vargaz@gmail.com>
408
409         * Makefile.am (sgen_sources): Add missing sgen files.
410
411 2010-06-07  Martin Baulig  <martin@ximian.com>
412
413         * mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
414         New helper function since mono_thread_get_abort_signal() is now
415         internal.
416
417 2010-06-07  Martin Baulig  <martin@ximian.com>
418
419         * mono-debug.h, debug-mono-symfile.h: Kill glib dependencies.
420
421 2010-07-02  Michael Hutchinson  <mhutchinson@novell.com>
422
423         * object-internals.h, object.h: Make mono_string_to_utf_8_checked 
424         public, as mono_string_to_utf_8 is deprecated.
425
426         * object.(c|h): Added mono_object_to_string, a public helper function 
427         that calls ToString on a MonoObject and returns a MonoString.
428
429         * object.c (mono_print_unhandled_exception): Use mono_object_to_string.
430
431 2010-07-01  Zoltan Varga  <vargaz@gmail.com>
432
433         * filewatcher.h filewatcher.h decimal.c threads-types.h: Applied patch
434         from Elijah Taylor (elijahtaylor@google.com). Fix some definitions to
435         match their declarations and vice-versa.
436
437
438 Wed Jun 30 12:08:36 CEST 2010 Paolo Molaro <lupus@ximian.com>
439
440         * class-internals.h, domain-internals.h: mark functions that are
441         needed by the llvm module.
442
443 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
444
445         * assembly.c (framework_assemblies): Add 3.5 assemblies.
446
447         * domain-internals.h (MonoRuntimeInfo): Increase version_sets
448         by one to have room to remap 3.5 assemblies.
449
450         * domain.c (supported_runtimes): Add 3.5 remapping information.
451
452 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
453
454         * reflection.c (mono_image_create_token): Handle a
455         FieldBuilder from a different assembly.
456
457         Fixes #611836.
458
459 2010-06-30 Rodrigo Kumpera  <rkumpera@novell.com>
460
461         * verify.c (do_store_static_field): Improve error
462         message.
463
464 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
465
466         * assembly.c: Revert r159692 since it breaks loading 3.5
467         assemblies under 2.0.
468
469 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
470
471         * icall.c (ves_icall_Type_make_array_type): Raise a TLE if a
472         TypedByRef is passed.
473
474         * icall.c (ves_icall_Type_make_byref_type): Ditto.
475
476         * icall.c (ves_icall_Type_MakePointerType): Ditto.
477
478         Fixes #612780.
479
480 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
481
482         * assembly.c: Add a few more assemblies to the list of framework
483         assemblies.
484
485         Fixes #617714.
486
487 2010-06-28  Zoltan Varga  <vargaz@gmail.com>
488
489         * class.c (mono_class_get_vtable_entry): Avoid a crash if mono_class_setup_vtable ()
490         fails.
491
492 2010-06-25  Mark Probst  <mark.probst@gmail.com>
493
494         * class.c (mono_class_inflate_generic_method_full_checked): Added
495         a comment regarding a hack in mini-trampolines.c.
496
497 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
498
499         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Use SIZEOF_VOID_P instead of
500         sizeof(SIZEOF_VOID_P) which is 4.
501
502         * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c.
503
504 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
505
506         * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these
507         GCs too.
508
509         * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs.
510
511         * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move
512         objects.
513
514         * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in
515         desktop mode.
516
517 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
518
519         * *-gc.c (mono_gc_get_description): New function returning a human readable
520         description of the current GC.
521
522 2010-06-24  Miguel de Icaza  <miguel@novell.com>
523
524         * mono-hash.c: Moved here from mono/utils as this file is
525         GC-aware, and the utils directory is not.
526
527 2010-06-23  Miguel de Icaza  <miguel@novell.com>
528
529         * Makefile.am: Add support for building a sgen-aware versions of
530         the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la,
531         they share all the components of the default, but use a differen
532         set of CFLAGS to enable SGEN instead.
533
534         Put the BOEHM defines in the CFLAGS definition. 
535
536         * domain-internals.h (MonoJitInfo): this structure used to have
537         different sizes depending on the GC that was configured (Boehm vs
538         SGen).   I have removed this difference for the sake of avoiding
539         the complexity of dealing with the mono/arch directory requiring
540         GC-specific changes to their Makefiles.
541
542 2010-06-23  Mark Probst  <mark.probst@gmail.com>
543
544         * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.
545
546 2010-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
547
548         * metadata.c (mono_metadata_type_hash): Don't hash
549         the type kind for dynamic types since it can change.
550
551 2010-06-22 Geoff Norton  <gnorton@novell.com>
552
553         * sgen-os-mach.c: We cannot call malloc from the gc, so we need to use
554         alloca instead to prevent a deadlock.
555
556 2010-06-22  Geoff Norton  <gnorton@novell.com>
557
558         * domain.c: Allow gettings the tls key, since we need it for
559         cross thread tls poking in sgen-mach
560         * sgen-gc.(c|h), gc-internal.h: Rework sgen into having some functions
561         in external files for platform specific STW support.
562         * sgen-os-mach.c: Add a new mach kernel backend implementation of STW.
563         * sgen-os-posix.c: Move the existing posix signal based STW here.
564
565 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
566
567         * marshal.c (mono_array_to_lparray): Allow MONO_TYPE_PTR. Fixes #615952.
568
569 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
570
571         * object-internals.h: Map new PropertyBuilder fields.
572
573         * reflection.c (property_encode_signature): Emit an instance
574         signature if property's callconv is hasthis.
575
576         * appdomain.c: Bump corlib version.
577
578 2010-06-20  Jb Evain  <jbevain@novell.com>
579
580         * metadata-verify.c: do not consider the assembly invalid if it
581         doesn't have a #Blob stream as resource assemblies don't
582         necessarily have one.
583
584 2010-06-17  Geoff Norton  <gnorton@novell.com>
585
586         * sgen-archdep.h: sgen support for arm linux and darwin.
587
588 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
589
590         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
591         has a faulty header.
592
593 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
594
595         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
596         way to mono_gc_wbarrier_value_copy but takes a bitmap that
597         indicates which slots need a write barrier.
598
599 2010-06-14  Jonathan Pryor <jpryor@novell.com>
600
601         * Makefile.am (EXTRA_DIST): Add runtime.h.
602
603 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
604
605         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
606
607 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
608
609         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
610         IMT slot which is passed to callbacks.get_imt_trampoline.
611
612 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
613
614         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
615         imt trampoline per imt slot when using LLVM.
616
617 2010-06-10  Jonathan Pryor <jpryor@novell.com>
618
619         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
620           runtime.c:mono_runtime_shutdown().
621         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
622           AppDomain.ProcessExit event in all AppDomains.
623
624 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
625
626         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
627         done by the caller.
628
629 2010-06-05  Mark Probst  <mark.probst@gmail.com>
630
631         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
632         up freeing.
633
634 2010-06-05  Mark Probst  <mark.probst@gmail.com>
635
636         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
637         segments of memory at once, to reduce the number of mmap/munmap
638         calls.
639
640 2010-06-05  Mark Probst  <mark.probst@gmail.com>
641
642         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
643         allocations and distinguish between normal, degraded and pinned
644         allocations.
645
646 2010-06-05  Mark Probst  <mark.probst@gmail.com>
647
648         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
649         allocations count toward major collections and trigger major
650         collections from degraded allocations if appropriate.
651
652 2010-06-05  Mark Probst  <mark.probst@gmail.com>
653
654         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
655
656 2010-06-05  Mark Probst  <mark.probst@gmail.com>
657
658         * sgen-gc.c: Enable mark&sweep again.
659
660 2010-06-05  Mark Probst  <mark.probst@gmail.com>
661
662         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
663
664 2010-06-05  Mark Probst  <mark.probst@gmail.com>
665
666         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
667         major heap allowance for minor collections, instead of two
668         separate ones for small and large objects.  This reduces the
669         number of major collections.
670
671 2010-06-04  Damien Diederen  <dd@crosstwine.com>
672
673         * icall.c (ves_icall_System_Char_GetDataTablePointers),
674         char-conversions.h: New Unicode category tables compatible with MS .NET
675
676         These new category tables, generated using create-category-table(.cs)
677         available in the mcs sources, make the Mono runtime understand the
678         same Unicode category codes as recent versions of Microsoft's runtime.
679
680         CategoryData_v2 matches versions v2.0.50727 and v3.5.21022 of .NET.
681
682         CategoryData_v4 matches version v4.0.30319 of .NET.  The v4 tables
683         can be disabled by defining the DISABLE_NET_4_0 preprocessor symbol.
684
685         Similarly, the astral portions of both tables can be disabled by
686         defining the DISABLE_ASTRAL preprocessor symbol.
687
688         CAUTION: Mcs has to be updated with the corresponding patches, or
689         Mono will suffer a low-level (internal call) crash when
690         initializing System.Char.
691
692
693 2010-06-04  Marek Habersack  <mhabersack@novell.com>
694
695         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
696         the BFLAGS_IgnoreCase is raised
697
698 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
699
700         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
701         all information in a single structure. Return information about scopes as well.
702
703         * mono-debug.c (mono_debug_lookup_locals): Ditto.
704
705 2010-06-02  Geoff Norton  <gnorton@novell.com>
706
707         * appdomain.c: If we are running with IOMAP we might
708         have been provided a string that isn't case-aware for our file-
709         system, so we need to use io-portability to check if the file 
710         exists, rather than a simple glib test.
711
712         Fixes #608849
713
714 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
715
716         * verify.c (verify_generic_parameters): Verify if
717         there are not loops in constraints.
718
719 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
720
721         * verify.c (is_compatible_boxed_valuetype): Constaints
722         must be recursively checked if one generic argument
723         has a constraint on another.
724
725         Fixes #610625.
726
727 2010-05-31  Miguel de Icaza  <miguel@novell.com>
728
729         * console-unix.c (terminal_get_dimensions): Fix my previous
730         botched commit and return the actual value obtained from the ioctl.
731
732 2010-05-29  Mark Probst  <mark.probst@gmail.com>
733
734         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
735         references so that we don't have to do the cache-cold fetch of the
736         class in copy_object_no_checks().
737
738 2010-05-29  Robert Jordan  <robertj@gmx.net>
739
740         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
741         mono_marshal_string_to_utf16_copy () to avoid memory allocation
742         mismatches under Windows. Fixes pinvoke2:test_0_asany.
743
744 2010-05-28  Mark Probst  <mark.probst@gmail.com>
745
746         * sgen-gc.c: Change default nursery size to 4MB, because it
747         improves performance on many applications and benchmarks.
748
749 2010-05-28  Mark Probst  <mark.probst@gmail.com>
750
751         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
752         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
753         the GC descriptor by one bit, and don't encode the size for value
754         types not containing references.  Also get rid of
755         DESC_TYPE_STRING.
756
757 2010-05-28  Mark Probst  <mark.probst@gmail.com>
758
759         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
760         other than for remset processing.
761
762 2010-05-28  Mark Probst  <mark.probst@gmail.com>
763
764         * sgen-gc.c: More and better remset consistency checks.
765
766 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
767
768         * sgen-gc.c: Add a note about the int[] trick to avoid some
769         memset.
770
771 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
772
773         * sgen-gc.c (sort_addresses): Use heap sort since it has better
774         performance.
775
776         This helps programs with lots of threads or thread with big stacks
777         since the bottleneck the pin queue can get quite big.
778
779 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
780
781         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
782         a separate function called setup_fragment.
783
784         * sgen-gc.c (search_fragment_for_size_range): Variant of
785         search_fragment_for_size that does search for a secondary smaller
786         size.
787
788         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
789         for tlab allocation so small fragments are used.
790
791         This patch uses small fragments for tlab allocation when possible in order
792         to improve nursery utilization. With a fixed size tlab this patch is not very
793         usefull but once size gets dynamically adjusted, this will be invaluable.
794
795         Performance under pystone 500k is unchanged. Nursery utilization improves by
796         3.5% and 18 more fragments are used per minor GC.
797
798         Performance under modified binary-tree is unchanged. Nursery utilization
799         improves by 0.5% and 3 more fragments are used per minor GC.
800
801         These numbers make sense since as more pinning happens, more fragments are
802         created and so are the chances of having a bunch of small ones.
803
804 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
805         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
806         the current fragment when allocating a TLAB.
807
808         Reduces number of pystone 500k minor collections by 7%.
809
810 2010-05-25  Martin Baulig  <martin@ximian.com>
811
812         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
813
814         * debug-mono-symfile.c: Release memory from symfiles that were
815         loaded from memory.
816
817 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
818
819         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
820         during shutdown.
821
822 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
823
824         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
825         target class and remove some dead code.
826
827 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
828
829         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
830         the MonoTypes inside method headers can be freed when the header is freed.
831
832 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
833
834         * threadpool.c: Fix the DISABLE_SOCKETS build.
835
836 2010-05-19 Martin Baulig  <martin@novell.com>
837
838         Fix #604911.
839
840         * threads.c (wait_for_tids_or_state_change): Use an
841         alertable WaitForMultipleObjectsEx().
842         (wait_for_tids): Likewise.
843
844 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
845
846         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
847         icall.
848
849         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
850         gc tracked memory.
851
852         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
853         argument from a gchandle.
854
855         * marshal.c: Get rid of the delegate_target_locations hash table.
856
857         Fixes #605295.
858
859 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
860
861         * sgen-gc.c: Use _fast variants for string and array length.
862
863 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
864
865         * sgen-gc.c: Fix counters to be 64 bits.
866
867         * sgen-gc.c (dump_heap): Fix formating strings.
868
869 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
870
871         * sgen-gc.c (global_remset_location_was_not_added): New
872         function that implements a 2 element LRU cache for just
873         added remsets. It is used to avoid adding duplicate ones.
874
875         * sgen-gc.c (add_to_global_remset): Check cache before
876         adding new entry.
877
878         * sgen-gc.c (scan_from_remsets): Don't process global remsets
879         that fail the cache test.
880
881         * sgen-gc.c (scan_from_remsets): Simplify the global remset
882         loop removing one condtion that is not possible.
883
884         A 2 element LRU cache was chosen by profiling IronPython 2.6
885         pytones with 1M passes and corlib compilation.
886
887         For the ipy test duplication was originally 940.92, measured
888         by "Store remsets" divided by "Unique store remsets".
889
890         With a 2-element LRU, duplication went to 1.007. Without the
891         check in scan_from_remsets 1.438.
892
893         With a 16-elements LRU, duplication reduction was negligibe.
894         A single element cache was basically of no use.
895
896         With corlib compilation duplication went from  1.4 to 1.02.
897
898         Performance results is a 20% time decrease for ipy and 2%
899         with corlib.
900 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
901
902         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
903
904 2010-05-15  Geoff Norton  <gnorton@novell.com>
905
906         * mono-debug.c: Fix a leak of the global table on shutdown.
907
908 2010-05-15  Geoff Norton  <gnorton@novell.com>
909
910         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
911         to clean up MonoDebugSourceLocation's.
912
913 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
914
915         * class.c (mono_class_create_from_typedef): Fail a class
916         if there is a loop with its parent.
917
918         Fixes #598239.
919
920 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
921
922         * loader.c (mono_loader_set_error_type_load): Convert
923         a g_warninig to mono_trace_warning.
924
925 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
926
927         * class.c (mono_class_get_full): Release strings on failure
928         to avoid leaking them.
929
930 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
931
932         * class.c (mono_class_create_from_typedef): Only return
933         the class if no exceptions were detected.
934
935         * class.c (mono_class_create_from_typedef): Don't remove
936         broken classes from class_cache. Just set failure and
937         bail out.
938
939         This fixes a memory a memory leak where resolving the same
940         broken class multiple times resulted in a memory leak.
941
942         The right behavior would be to actually return the class
943         a let the caller figure it out.
944
945 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
946
947         * mono-ptr-array.h: Add mono_ptr_array_sort.
948
949         * reflection.c (mono_image_build_metadata): Replace that ugly
950         qsort call with mono_ptr_array_sort.
951
952 2010-05-13  Mark Probst  <mark.probst@gmail.com>
953
954         * sgen-gc.c: Switch to the copying major collector, because
955         Mark&Sweep is still buggy.
956
957 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
958
959         * reflection.c (mono_image_build_metadata): Don't put managed
960         references on non-tracked memory.
961
962 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
963
964         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
965
966 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
967
968         * icall.c: Switch to mono-ptr-array.h.
969
970 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
971
972         * Makefile.am: Add mono-ptr-array.h.
973
974         * mono-ptr-array.h: New header that implements
975         a GC tracked equivalent of g_ptr_array. 
976
977 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
978
979         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
980         method to avoid initializing the class.
981
982         Fixes #605115.
983
984 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
985
986         * icall.c (ves_icall_System_MonoType_getFullName): It
987         doesn't require to init the class.
988
989 2010-05-11  Miguel de Icaza  <miguel@novell.com>
990
991         * console-unix.c: Signal handlers now save and restore errno.   We
992         have never had a bug report about this, ioctl does change errno. 
993
994         Hide the unused method.   
995
996         Remove internal declarations from public headers.
997
998         Document what the signal handler is doing
999
1000 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
1001
1002         * sgen-gc.c (clear_unreachable_ephemerons): Clear
1003         unreachable keys with a tombstone.
1004
1005         * sgen-gc.c (mark_ephemerons_in_range): Ignore
1006         tombstone keys.
1007
1008 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
1009
1010         * icall-def.h:
1011         * gc-internals.h:
1012         * gc.c: New GC:get_ephemeron_tombstone.
1013
1014 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
1015
1016         * appdomain.c (create_exceptions): Rename to
1017         create_domain_objects. Create the ephemeron tombstone object.
1018
1019         * domains-internals.h (MonoDomain): Add new field for the
1020         ephemeron tombstone.
1021
1022         * domain.c (mono_domain_free): Set ephemeron_tombstone to
1023         NULL.
1024
1025 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
1026
1027         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
1028         and dislinks must be processed before LOS since they
1029         could end up with pointers to memory returned to the
1030         OS.
1031
1032 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
1033
1034         * class.c (mono_class_alloc): New helper function to centralize memory allocation
1035         for classes, allocates either from the image mempool or from the heap.
1036
1037         * class.c: Use mono_class_alloc to allocate memory owned by classes.
1038
1039         * metadata.c (free_generic_class_dependents): Free more items belonging to
1040         generic classes.
1041
1042 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
1043
1044         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
1045         as well. Fixes #604054.
1046
1047 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
1048
1049         * metadata-verify.c: MS doesn't mind duplicates in the
1050         typeref table. Move it to full verification.
1051
1052         Fixes #600508.
1053
1054 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
1055
1056         * image.c (do_mono_image_load): Report verification
1057         errors when loading an image fails.
1058
1059 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
1060
1061         * reflection.c (mono_type_get_object): Remove chunk of code
1062         no longer in use.
1063
1064 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
1065
1066         * icall-def.h
1067         * icall.c: Delete some unused icalls.
1068
1069 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
1070
1071         * appdomain.c (mono_domain_has_type_resolve): Check for
1072         NULL domain objects to make pedump happy.
1073
1074         * object.c (mono_field_get_value): Assert on NULL object.
1075         It's the caller resposibility to check for this.
1076
1077         * object.c (mono_field_get_value_object): Ditto.
1078
1079         Fixes #601384.
1080
1081 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
1082
1083         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
1084         checks can avoid doing a mono_class_init.
1085
1086         * icall.c: Remove mono_class_init from a bunch of icalls that
1087         don't need it.
1088
1089         Hopefully we're now lazy enough to fix most victims of #601431.
1090
1091 2010-05-07  Mark Probst  <mark.probst@gmail.com>
1092
1093         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
1094
1095 2010-05-07  Mark Probst  <mark.probst@gmail.com>
1096
1097         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
1098
1099 2010-05-07  Marek Habersack  <mhabersack@novell.com>
1100
1101         * culture-info-tables.h: updated to include en-TT culture. Fixes
1102         bug #594035
1103
1104 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
1105
1106         Move mono_class_init from mono_type_get_object to icalls.
1107         This causes massive memory savings for Assembly::GetTypes () and
1108         make it fail a lot less due to missing dependencies.
1109
1110         This is a conservative, naive change as it doesn't remove some
1111         mono_class_init from places that might not need them. Carefull
1112         review of those should follow.
1113
1114         * reflection.c (mono_type_get_object): Don't mono_class_init the
1115         returning type.
1116
1117         * reflection.c:
1118         * cominterop.c:
1119         * icall.c:
1120         * marshal.c: Call mono_class_init in functions receiving a MonoType
1121         object.
1122
1123         First step into fixing #601431.
1124
1125 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
1126
1127         * gc-internal.h: Add new functions required for ephemeron support.
1128
1129         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
1130
1131         * icall-def.h: Add GC::register_ephemeron_array.
1132
1133         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
1134         under sgen. Its fields must not be marked.
1135
1136         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
1137
1138         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
1139         handling finalizable objects. Clean dead ones after all finalizable
1140         handling.
1141
1142         * sgen-gc.c (dump_heap): Add new kind of internal memory.
1143
1144         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
1145         arrays from the dead domain.
1146
1147         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
1148
1149         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
1150         whose keys are reachable.
1151
1152         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
1153         list of live ephemeron arrays.
1154
1155 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
1156
1157         * class.c (mono_class_layout_fields): Don't perform alignment
1158         if align is zero.
1159
1160         * class.c (mono_class_layout_fields): Init field related information
1161         to sane defaults.
1162
1163 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
1164
1165         * verify.c (mono_verifier_verify_class): Verify the constraint
1166         of generic type definitions.
1167
1168 2010-05-04  Mark Probst  <mark.probst@gmail.com>
1169
1170         * sgen-marksweep.c: Simplify free list maintenance in sweep.
1171
1172 2010-05-02  Mark Probst  <mark.probst@gmail.com>
1173
1174         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
1175         major_do_collection() across the two major collectors.
1176
1177 2010-05-02  Mark Probst  <mark.probst@gmail.com>
1178
1179         * sgen-gc.c: Add heavy statistics counter for re-added global
1180         remsets.
1181
1182 2010-05-02  Mark Probst  <mark.probst@gmail.com>
1183
1184         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
1185         get rid of a division in critical code.
1186
1187 2010-04-29  Mark Probst  <mark.probst@gmail.com>
1188
1189         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
1190         blocks for objects without references in mark&sweep, to improve
1191         performance.
1192
1193 2010-04-28  Mark Probst  <mark.probst@gmail.com>
1194
1195         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
1196         statistics up-to-date.
1197
1198 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1199
1200         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
1201         heap-dump for mark&sweep.
1202
1203 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
1204
1205         * loader.c (mono_method_get_header): Move the is_inflated case before the
1206         wrapper case, as a method can be both.
1207
1208 2010-04-27  Mark Probst  <mark.probst@gmail.com>
1209
1210         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
1211         separate pass to scan pinned and large object but use the gray
1212         queue like for regular objects.
1213
1214 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
1215
1216         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
1217         string.h for memmove.
1218
1219         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
1220         ipaddress_to_struct_in6_addr() is only needed when
1221         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
1222
1223 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1224
1225         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
1226         separate copy_object functions for major vs nursery.  Allows us to
1227         get rid of a few checks and the start and end parameters for many
1228         functions.
1229
1230 2010-04-25  Mark Probst  <mark.probst@gmail.com>
1231
1232         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
1233         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
1234         collector.
1235
1236 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
1237
1238         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
1239         calling setup_mono_type () since the nested parent could recursively reference
1240         the nested class using generic constraints. Fixes #599469.
1241
1242 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1243
1244         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
1245         abstraction.
1246
1247 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1248
1249         * sgen-gc.c: Remove more unneeded code.
1250
1251 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1252
1253         * sgen-gc.c: Disable managed allocator and wbarrier when the
1254         binary protocol is enabled.
1255
1256 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1257
1258         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
1259
1260 2010-04-24  Mark Probst  <mark.probst@gmail.com>
1261
1262         * sgen-gc.c: Remove a few commented out and unneeded bits.
1263
1264 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1265
1266         * threadpool.c: patch from Robert Nagy that fixes a nullref and
1267         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
1268
1269 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
1270
1271         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
1272         types.
1273
1274         Fixes #331126
1275
1276 2010-04-21  Mark Probst  <mark.probst@gmail.com>
1277
1278         * sgen-gc.c: Turn off semi-precise stack mark.
1279
1280 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
1281
1282         * reflection.c (mono_custom_attrs_from_index): Use right function
1283         to free 'list' (i.e. g_list_free) if the verifier fails.
1284
1285 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1286
1287                 * verify.c: Handle the case where mono_type_get_underlying_type_any
1288                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
1289                 and MONO_TYPE_VALUETYPE in those case.
1290
1291                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
1292
1293                 Hopefully Fixes #564253.
1294
1295 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
1296
1297         * domain-internals.h: made threadpool_jobs volatile.
1298         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
1299         all local jobs.
1300         * threadpool.c:
1301                 -When two threads try to initialize the socket IO pool,
1302                 the second one waits until the intialization is finished
1303                 instead of continuing right away.
1304                 -Add checks for domain unload: no items added in this case.
1305                 -Only measure the time every 10 elements added to the queue.
1306                 This is an experiment since linux x86 gettimeofday() sucks.
1307                 -Create new thread if there are none waiting for work items.
1308                 -There was a missing decrement of the busy threads.
1309                 -Make sure the local queue is cleaned up before exiting the
1310                 thread when the program ends.
1311
1312 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
1313
1314         * reflection.c (mono_type_get_object): Normalize generics types
1315         as to how managed code expect them to be. A generic instance over
1316         the GTD arguments must have the same mirror as the GTD itself.
1317
1318         Fixes #473289.
1319
1320 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
1321
1322         * locales.c: Implement support for DISABLE_NORMALIZATION.
1323
1324 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1325
1326         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
1327         since it is not a MonoMethod.
1328
1329 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
1330
1331         * icall-def.h: Add get_RequiresElevatedPermissions icall to
1332         System.Security.SecurityManager - used only by Moonlight
1333         * security-core-clr.c|h: Add Elevated Trust/Permission support
1334         for CoreCLR / Moonlight
1335
1336 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
1337
1338         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
1339         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
1340
1341 2010-04-16  Marek Habersack  <mhabersack@novell.com>
1342
1343         * mono-perfcounters.c: added code for the "Mono
1344         Memory/Total Physical Memory" performance counter.
1345
1346         * mono-perfcounters-def.h: added definition of the "Mono
1347         Memory/Total Physical Memory" performance counter.
1348
1349 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1350
1351         * class.c (mono_class_get_method_by_index): Return NULL
1352         on type load failures.
1353
1354 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1355
1356         * class.c (mono_class_from_typeref): Check if the supplied
1357         image has an assembly bound to it.
1358
1359         Fixes #567884.
1360
1361 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1362
1363         * loader.c (mono_method_get_signature_full): Use new function
1364         inflate_generic_signature_checked to check for errors.
1365
1366         Fixes #560839.
1367
1368 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1369
1370         * loader.c (inflate_generic_signature): Add _checked variant
1371         and move this function to use it.
1372
1373 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1374
1375         * class.c (mono_class_setup_vtable_general): Use error checking
1376         version of mono_class_inflate_generic_method_full.
1377
1378         Fixes #596975.
1379
1380 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
1381
1382         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
1383         error handling passing MonoError around.
1384
1385         Fixes #560336.
1386
1387 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1388
1389         * socket-io.c: make GetHostByName ("") work on windows.
1390         Fixes bug #456723.
1391
1392 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1393
1394         * object-internals.h:
1395         * threads.c: use a spin lock when accesing the per-thread appdomain
1396         list.
1397
1398 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
1399
1400         * threads.c: no need to take the threads lock in push/pop appdomain.
1401
1402 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1403
1404         * reflection.c (_mono_reflection_parse_type): MS supports
1405         non-assembly-qualified types in a generic type parameter list
1406         when enclosed in '[]' (which signals that they should be a fqn).
1407
1408         This breaks ECMA specs for how type names are encoded in cattr
1409         blobs but F# does it.
1410
1411         Fixes #576342.
1412
1413 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
1414
1415         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
1416         for instance methods/ctors.
1417
1418         Fixes #422113.
1419
1420 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1421
1422         * reflection.c: Use the new verifier support for checking
1423         custom attributes.
1424
1425         Fixes #595306.
1426
1427 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1428
1429         * metadata-verify.c: Implement structural verification
1430         of custom attributes. This check requires access to the
1431         loader since to resolve the size of an enum we have to
1432         look it up.
1433         We don't check if named argumenments are encoded in a
1434         compatible fashion to their underlying field/prop.
1435         Maybe we should?
1436
1437         * verify-internals.h: Add two new cattr verification API.
1438
1439 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1440
1441         * metadata-verify.c (decode_signature_header): Fix signature.
1442
1443 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1444
1445         * verify.c (mono_verifier_is_enabled_for_method): Handle
1446         assembly less images.
1447
1448         * verify.c (mono_verifier_is_class_full_trust): Ditto.
1449
1450 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1451
1452         * loader.c (mono_method_signature_checked): Properly
1453         init MonoError.
1454
1455         * loader.c (mono_method_signature): It's the calee
1456         resposibility to init the error object.
1457
1458 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
1459
1460         * metadata-verify.c (decode_signature_header): Do proper
1461         overflow checking.
1462
1463 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
1464
1465         * reflection.c: maintain the invariants required by
1466         mono_class_layout_fields() also in typebuilder_setup_fields ().
1467
1468 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
1469
1470         * security-core-clr.c: Call mono_class_setup_methods in 
1471         get_default_ctor before checking klass->methods. Fix typo in
1472         comment
1473
1474 2010-04-10  Jb Evain  <jbevain@novell.com>
1475
1476         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
1477         add .net 4.0 RTM version.
1478
1479 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1480
1481         * reflection.c (resolve_object): Properly inflate generic
1482         methods when a context is supplied.
1483
1484         Fixes #591226.
1485
1486 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1487
1488         * verify.c (mono_method_verify): A switch op don't empty
1489         the stack for the next one. Fixes a bug when running fsi
1490         under --verify-all.
1491
1492 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1493
1494         * metadata-verify.c (is_valid_standalonesig_blob): Accept
1495         fields as valid standalone sig too. F# does generate them.
1496
1497         * metadata-verify.c (verify_typedef_table_full): Ignore
1498         what <module> extends.
1499
1500 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
1501
1502         * verify.c (do_invoke_method): It's ok to do use call with
1503         virtual, non-final methods if their class is sealed.
1504
1505 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1506
1507         * icall.c (ves_icall_MonoField_GetValueInternal): This function
1508         is a near identical copy of mono_field_get_value_object. So simply
1509         call it.
1510
1511         * object.c (mono_field_get_value_object): Handle literal fields
1512         on open generic classes.
1513
1514         Fixes #594942.
1515
1516 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
1517
1518         * reflection.c (mono_reflection_create_runtime_class): Setup
1519         parent/supertype information again since it can be changed
1520         without notice.
1521
1522 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1523
1524         * verify.c (verify_type_compatibility_full): Properly handle
1525         stores between arrays of primitives.
1526
1527         Fixes the verifier side of #555950.
1528
1529 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1530
1531         class.c (mono_bounded_array_class_get): Properly init
1532         cast_class to take the fact that uint[] and int[] can be
1533         casted between each other.
1534
1535         Fixes #555950.
1536
1537 2010-04-07  Geoff Norton  <gnorton@novell.com>
1538
1539         * domain.c: Avoid a deadlock on osx.  Fixes #565765
1540
1541 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1542
1543         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
1544         builders. Fixes #594464.
1545
1546 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1547
1548         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
1549         waiting for all threads to suspend, as those threads can't be suspended.
1550
1551 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1552
1553         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
1554         to avoid crashes on newly created threads.
1555
1556 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1557
1558         * file-io.c: reset the MonoIOStat structure in case of error.
1559         Fixes bug #582667.
1560
1561 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
1562
1563         * class.c (print_implemented_interfaces): Print proper type name.
1564
1565         * class.c (mono_class_setup_vtable): Don't try that hard to produce
1566         the override map for generic instances since it later ignored.
1567
1568         * class.c (mono_class_implement_interface_slow): Don't break for
1569         dynamic generic instances.
1570
1571         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
1572
1573         * reflection.c (mono_reflection_method_get_handle): New method that
1574         resolves a method handle.
1575
1576         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
1577         case when we override methods from a dynamic generic instance interface.
1578
1579         Fixes #575941.
1580
1581 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1582
1583         * threadpool.c: don't attempt to close the pipe when it has not been
1584         created.
1585
1586 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1587
1588         * threadpool.c: if there are no waiting threads, try to start a new
1589         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1590         No need to use InterlockedCompareExchange to read volatile variables.
1591
1592 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1593
1594         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1595         and reference types that point to the same class.
1596
1597         Fixes #565598.
1598
1599 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1600
1601         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1602         when verifying compatibility between a generic instance and a generic
1603         parameter.
1604
1605         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1606
1607         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1608         name.
1609
1610         Fixes #587849.
1611
1612 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1613
1614         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1615
1616 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1617
1618         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1619
1620 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1621
1622         * process.c: when cross-compiling with MinGW, force GetProcessId
1623         lookup using GetProcAddress.
1624
1625 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1626
1627         * sgen-gc.c: parse_environment_string_extract_number() must be
1628         static.
1629
1630 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1631
1632         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1633         gray_object_dequeue(), to make sure they're inlined.
1634
1635 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1636
1637         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1638         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1639
1640 2010-04-02  Jb Evain  <jbevain@novell.com>
1641
1642         * exception.c: remove dead code.
1643
1644 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1645
1646         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1647         with mono-gc.h.
1648
1649 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1650
1651         * sgen-gc.c: Make the nursery size adjustable by the
1652         MONO_GC_PARAMS environment variable.
1653
1654         Code is contributed under MIT/X11 license.
1655
1656 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1657
1658         * threadpool.c: threadpool threads wait is alertable.
1659         Fixes bug #592964.
1660         Reduced the stack size of the *poll_wait thread.
1661
1662 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1663
1664         * exception.c|metadata-internals.h: Add new mono_get_exception_
1665         field_access_msg and mono_get_exception_method_access_msg 
1666         functions that accept a const char* parameter to provide more 
1667         details when the exception is thrown.
1668         * security-core-clr.c|h: Rework code to allow logging exceptions
1669         (export MONO_LOG_MASK="security") and to supply more details in
1670         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1671         mono_security_core_clr_is_field_access_allowed and 
1672         mono_security_core_clr_is_call_allowed to return an exception,
1673         with messages and logging, that can be emitted by method-to-ir.c
1674
1675 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1676
1677         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1678         pinned object.
1679
1680 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1681
1682         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1683         the assembly name is not well formed utf8. Fixes #567882.
1684
1685 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1686
1687         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1688         the generic parameters from the builder. Fixes #473298.
1689
1690 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1691
1692         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1693
1694         * marshal.c (emit_marshal_boolean): Eliminate possible
1695         uninitialized local warning. 
1696
1697 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1698
1699         * class.c (mono_class_init): Postpone coreclr inheritance check
1700         until the end of the initialization (so we can check up the 
1701         default ctor manually for the core-clr inheritance rules).
1702         * security-core-clr.c: Add the missing (undocumented) checks on
1703         default constructors when verifying inheritance rules.
1704
1705 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1706
1707         * domain-internals.h (MonoJitExceptionInfo): Add new field
1708         handler_end to the data union. To be used to point the end
1709         of a finally block.
1710
1711 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1712
1713         * reflection.c: Add support for new v4 type
1714         System.Reflection.MonoModule that is the concrete version
1715         of Module which is abstract unver v4.
1716
1717 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1718
1719         * class.c (mono_class_init): Don't set class failure after
1720         inited = 1 is set. It must be done before.
1721
1722 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1723
1724         * mono-config.c: Add support for OS "haiku"
1725         * ChangeLog: Fix UTF-8 encoding
1726
1727         Code is contributed under MIT/X11 license.
1728
1729 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1730
1731         * console-unix.c: fixed include logic for sys/ioctl.h.
1732
1733 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1734
1735         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1736         systems.
1737
1738 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1739
1740         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1741         unfinished/broken typebuilders.
1742
1743 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1744
1745         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1746         for the minor section allowance.
1747
1748 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1749
1750         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1751         "NoOptimization".
1752
1753 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1754
1755         * sgen-gc.c: Count bytes allocated with heavy statistics.
1756
1757 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1758
1759         * sgen-gc.c: More detailed time statistics.
1760
1761 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1762
1763         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1764         fix the user defined mark interface to pass a pointer
1765         to the object location and not the object itself.
1766
1767 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1768
1769         * reflection.c (mono_method_body_get_object): Release
1770         the method header before the call to CACHE_OBJECT since
1771         this is a macro that returns.
1772
1773 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1774
1775         * class.c (inflate_generic_type): mono_metadata_type_dup
1776         already dupes array information, the g_memdup was just
1777         leaking memory.
1778
1779 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1780
1781         * verify.c: Add stack_peek function. Fix CEE_DUP
1782         to not read from invalid memory if push did expand
1783         the stack.
1784
1785 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1786
1787         * verify.c: Remove old table verification code that has
1788         been superseeded by the new metadata verifier.
1789
1790         * verify.h: Remove mono_image_verify_tables from the public
1791         API.
1792
1793         * pedump.c: Fix for removed bits.
1794
1795 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1796
1797         * verify.c: Allocate stack slows lazily to reduce stack usage
1798         in case of methods with huge stacks. Reduces memory consumption
1799         for mcs yyparse from 459Mb to 1.8Mb.
1800
1801 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1802
1803         * threadpool.c: don't try executing items from domains being
1804         unloaded. Fixes appdomain-async-invoke test.
1805
1806 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1807
1808         * threadpool.c: spin while the threadpool initializes.
1809         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1810         down, don't do anything.
1811
1812 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1813
1814         * threads.c (mono_thread_create_internal): Set the GC type of the
1815         threads_starting_up hash table.
1816
1817 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1818
1819         * threadpool.c: reset 'state' to avoid returning non-null when the
1820         event type is not found.
1821
1822 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1823
1824         * sgen-gc.c: make copy_object () take the address of the
1825         slot holding the reference. This allows saving memory stores
1826         when not needed and it allows keeping track of oldspace->nursery
1827         references for the card table code.
1828
1829 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1830
1831         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1832
1833         Code is contributed under MIT/X11 license.
1834
1835 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1836
1837         * object.c, threads.c, threads-types.h, threads.h: make the
1838         managed thread local storage references precisely tracked.
1839
1840 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1841
1842         * threadpool.[ch]: reworked the threadpool:
1843                 -Threadpool threads use a work-stealing queue. Adding a work
1844                 item from a threadpool thread will queue it in the thread
1845                 local queue without locking (in most cases).
1846                 -epoll events are coalesced before being added to the IO
1847                 queue.
1848                 -Dynamically change the number of active threads
1849                 -Changed the global queue to be more GC friendly
1850
1851         * class-internals.h: add 2 new performance counters for the number of
1852         threads in the threadpool and the IO threadpool.
1853
1854         * object-internals.h: new field in MonoAsyncResult.
1855         * icall-def.h: new internal call for queueing work items.
1856
1857         * Makefile.am: add 2 new files.
1858
1859         * appdomain.c: bump up corlib version.
1860
1861         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1862
1863         * mono-perfcounters-def.h:
1864         * mono-perfcounters.c: added 2 new performance counters.
1865
1866 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1867
1868         * sgen-gc.c: More FIXME/TODO updates.
1869
1870 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1871
1872         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1873         function mono_gc_invoke_with_gc_lock() which invokes a function
1874         with the guarantee that no collection will occur during its execution.
1875
1876 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1877
1878         * sgen-gc.c: Update a few comments.
1879
1880 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1881
1882         * reflection.c: Add support for new v4 type
1883         System.Reflection.MonoAssembly that is the concrete version
1884         of Assembly which is abstract unver v4.
1885
1886 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1887
1888         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1889         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1890
1891         Expose a few macros that are needed for SR but not SRE to the
1892         world (previous inside the SRE ifdef)
1893
1894 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1895
1896         * sgen-gc.c (gc_register_current_thread): We need
1897         stack_start_limit as well in the non-attribute pthread case.
1898
1899 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1900
1901         * threads.c: Fix windows build.
1902
1903 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1904
1905         * thread-types.h: Add mono_thread_resume_interruption.
1906
1907         * threads.c: Add mono_thread_resume_interruption, this
1908         function should be called after the last protected handler
1909         found at interruption time has finished.
1910
1911 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1912
1913         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1914         Check MonoInternalThread's ::state instead of ::abort_exc
1915         since the later can be lazily created.
1916
1917         This is specially problematic when running a finally block
1918         under AbortRequested state. ResetAbort must work, but the
1919         abort_exc object has not been created because interruption
1920         has not began.
1921
1922 2010-03-22  Geoff Norton  <gnorton@novell.com>
1923
1924         * locales.c: Its possible for CFStringGetCStringPtr
1925         to return null and not convert encodings.  Use
1926         CFStringGetCString instead.
1927
1928 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1929
1930         * class-internals.h, class.c, object.c: introduce compressed
1931         interface bitmaps (for now only under small config): this saves
1932         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1933         startups.
1934
1935 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1936
1937         * mono-debug.c: don't try to get the method header, it causes a
1938         deadlock and it is not used for anything anymore.
1939
1940 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1941
1942         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1943         broken by the last change.
1944
1945 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1946
1947         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1948         SOCK_RDM.
1949         
1950         Code is contributed under MIT/X11 license.
1951
1952 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1953
1954         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1955         nursery.
1956
1957         Code is contributed under MIT/X11 license.
1958
1959 2010-03-19  Martin Baulig  <martin@ximian.com>
1960
1961         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1962         dummy field, containing an empty string.
1963         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1964
1965
1966 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1967
1968         * class.c: setup_interface_offsets() refactor to not call
1969         mono_class_get_implemented_interfaces () more times than needed and
1970         to reduce the runtime memory requirements to be O(num_interfaces)
1971         instead of O(max_interface_id).
1972
1973 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1974
1975         * mono-mlist.[ch]: add mono_mlist_set_next ().
1976
1977 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1978
1979         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1980         associated changes to support holes in the protected range of a
1981         try block.
1982
1983         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1984         retrieves the holes table from a given MonoJitInfo.
1985
1986 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1987
1988         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1989         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1990         hide the contents of the MonoString and MonoArray structs from the
1991         public API. Change the accessor macros to accessors functions where
1992         needed. Adjusted the array API to allow for pointer-sized lengths and
1993         starting positions, so 64 bit arrays can be optionally provided in an
1994         API compatible way if needed on 64 bit systems.
1995
1996 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1997
1998         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1999         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
2000
2001 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
2002
2003         * class-internals.h: remove the method header from MonoMethod since
2004         from now on it will be transient. We have a header pointer for method
2005         wrappers, since in that case we need to keep track of it. For this
2006         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
2007         structs now. The same happens with MonoMethodInflated.
2008         * class.c: reset the sre_method flag for inflated method structures:
2009         this makes the code that cares look at the header in the MonoMethodInflated
2010         structure.
2011         * loader.c: lookup the method header in the appropriate field now that
2012         it is removed from MonoMethod.
2013         * metadata-internals.h: add a flag to the method header to know if it
2014         can be freed inside mono_metadata_free_mh ().
2015         * method-builder.c: updates after moving the header field from
2016         MonoMethod to MonoMethodWrapper.
2017         * reflection.c: MonoMethods generated from Reflection.Emit use
2018         MonoMethodWrapper structs if they need a method header now (later take
2019         advantage of this and remove all the current unsafe uses of method_aux_hash).
2020         * metadata.c: make method header parsing not leak when verification
2021         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
2022         These changes save a few hundred KB of runtime memory in a mcs
2023         bootstrap or a monodevelop startup.
2024
2025 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
2026
2027         * verify.c: Improve error message.
2028
2029 2010-03-12  Jb Evain  <jbevain@novell.com>
2030
2031         * reflection.c (add_exported_type): populate the exported
2032         table with the type's nested type.
2033
2034 2010-03-10  Mark Probst  <mark.probst@gmail.com>
2035
2036         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
2037         can't read parentheses.
2038
2039 2010-03-10  Mark Probst  <mark.probst@gmail.com>
2040
2041         * threads.c (thread_cleanup): Add a guard to dereferencing
2042         "thread" to avoid an unlikely race condition.
2043
2044 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
2045
2046         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
2047         instead of an empty string.
2048
2049 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
2050
2051         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
2052         convert to a boolean, recent gcc versions compile this differently.
2053
2054 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
2055
2056        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
2057        inlined.
2058
2059 2010-03-09  Mark Probst  <mark.probst@gmail.com>
2060
2061         * sgen-gc.c (STRING_SIZE): Off by one.
2062
2063 2010-03-09  Mark Probst  <mark.probst@gmail.com>
2064
2065         * sgen-archdep.h: Fix the signal context register access for
2066         AMD64.
2067
2068 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
2069
2070         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
2071
2072 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
2073
2074         * verify.c: Store the initial basic block returned by mono_basic_block_split
2075         so we can release the whole list and not just the first one.
2076
2077 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
2078
2079         * verify.c, debug-helpers.c, profiler.c, loader.c,
2080         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
2081         MonoMethodHeader a transient entity.
2082
2083 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
2084
2085         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
2086         uncontrolled growth of the gray stack.
2087
2088         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
2089         added items are removed first, improving cache locality. Avoid freeing queue
2090         segments in the fast path, use the list of segments as the free list, truncate
2091         it to its max size at the start of collection.
2092
2093 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
2094
2095         * metadata-internals.h: more memory savings, both with small config and without.
2096
2097
2098 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
2099
2100         * appdomain.c, domain-internals.h, domain.c, object.c:
2101         make class_vtable_hash into an array to reduce memory usage.
2102
2103 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
2104
2105         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
2106         object-internals.h, object.c, reflection.c, threadpool.c:
2107         reduce resource usage when the small config is selected.
2108         In particular, up to 64K of methods/fields/properties/events
2109         are allowed and "other" methods in events are ignored.
2110
2111 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
2112
2113         * threads.c: reduce resource usage when compiled for a small config.
2114
2115 2010-03-05  Mark Probst  <mark.probst@gmail.com>
2116
2117         * sgen-gc.c: Also collect number of degraded-alloced objects with
2118         heavy statistics.
2119
2120 2010-03-04  Geoff Norton  <gnorton@novell.com>
2121
2122         * assembly.c: Only support OSX bundling if the bundle is 
2123         actually detectable.
2124
2125 2010-03-04  Geoff Norton  <gnorton@novell.com>
2126
2127         * loader.c: The marshal specs are freed at the end of the call
2128         but it explicitly frees the strings as well as the container,
2129         so we need to dup them too to avoid referencing free'd memory.
2130
2131 2010-03-04  Geoff Norton  <gnorton@novell.com>
2132
2133         * icall-def.h:
2134         * icall.c: Add a new private internal icall to construct
2135         an object from its type without running the ctor.
2136
2137 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
2138
2139         * profiler.c: allow multiple profiler engines to be loaded
2140         at the same time.
2141
2142 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
2143
2144         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
2145         profiler event to track object moves.
2146
2147 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
2148
2149         * object.c, profiler.c, profiler.h, string-icalls.c:
2150         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
2151
2152 2010-03-03  Miguel de Icaza  <miguel@novell.com>
2153
2154         * decimal.c (mono_double2decimal): Add support for reducing the
2155         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
2156         expected.
2157
2158 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
2159
2160         * icall-def.h:
2161         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
2162
2163 2010-03-03  Marek Habersack  <mhabersack@novell.com>
2164
2165         * mono-config.c (mono_config_parse_assembly_bindings): added -
2166         parses assembly binding redirections from appdomain's config
2167         file.
2168
2169         * metadata-internals.h: added definition of a new function -
2170         mono_config_parse_assembly_bindings - to support parsing assembly
2171         binding redirections defined in appdomain's config file.
2172
2173         * domain-internals.h: added two new fields to _MonoDomain - a list
2174         of assembly bindings and a flag to parse the config file only
2175         once.
2176
2177         * assembly.c (assembly_binding_maps_name): empty culture name and
2178         NULL culture name are considered equal.
2179         (mono_assembly_apply_binding): added support for domain specific
2180         assembly binding redirections, read from the appdomain's
2181         configuration file. Fixes bug #580185
2182
2183 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
2184
2185         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
2186         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
2187         support.
2188
2189 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
2190
2191         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
2192         from this function. The new function receive the parent token instead of a type.
2193
2194         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
2195         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
2196         typebuilders. This make it possible to properly encode generic type builders since
2197         their unmanaged type don't have generics data while unfinished.
2198
2199         Fixes #583655.
2200
2201 2010-03-02  Mark Probst  <mark.probst@gmail.com>
2202
2203         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
2204         writing binary log files (can be enabled by #define'ing
2205         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
2206         bugs in longer running programs.
2207
2208 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
2209
2210         * metadata.c: added some API documentation.
2211
2212 2010-03-01  Robert Jordan  <robertj@gmx.net>
2213
2214         * filewatcher.h: Include glib.h to fix the MSVC build.
2215
2216 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
2217
2218         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
2219         a GC handle instead. This is a bit slower to access, but avoids burdening the
2220         GC with 100s of individual roots.
2221
2222         * reflection.c (mono_class_get_ref_info):
2223         (mono_class_set_ref_info):
2224         (mono_class_free_ref_info): New internal helper fuctions.
2225
2226         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
2227         of accessing klass->reflection_info directly.
2228
2229         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
2230         words.
2231
2232         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
2233         the previous array.
2234
2235 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
2236
2237         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
2238         needs an indirection.
2239
2240 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2241
2242         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
2243         so all generic sharing code is in one place.
2244
2245         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
2246         we don't call setup_interface_offsets () for unfinished types.
2247
2248 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2249
2250         * class.c (mono_class_generic_sharing_enabled): Move this to
2251         generic-sharing.c.
2252
2253         * image.c: Add an unload hook which is called before an image is unloaded.
2254
2255         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
2256         metadata.c having to depend on generic sharing.
2257
2258 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2259
2260         * class.c: reduce size of ridiculously large cache.
2261
2262 2010-02-26  Martin Baulig  <martin@ximian.com>
2263
2264         * mono-debug.h
2265         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
2266
2267         * threads.c (mono_thread_internal_reset_abort): New method; resets
2268         the abort, but doesn't throw any exception if no abort was requested.
2269
2270 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
2271
2272         * class.c (get_implicit_generic_array_interfaces): Call
2273         mono_class_setup_interface_offsets () before accessing
2274         eclass->interface_offsets_count. This only shows up on platforms without IMT for
2275         some reason.
2276
2277 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
2278
2279         * environment.c, environment.h, icall.c: make the GetOSVersionString()
2280         icall internal.
2281
2282 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
2283
2284         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
2285         direct access to the MonoType fields.
2286
2287 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
2288
2289         * threads.h: Move some internal functions which were added to this header by
2290         mistake to threads-types.h.
2291
2292         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
2293
2294 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
2295
2296         * class-internals.h, class.h, object.h: make MonoRemoteClass
2297         and mono_remote_class() internal.
2298
2299 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
2300
2301         * metadata-internals.h, class-internals.h, metadata.h: make the
2302         MonoType guts internal as well.
2303
2304 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
2305
2306         * reflection.h: the MonoTypeNameParse guts are internal now.
2307         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
2308         are internal now, provide accessors as needed.
2309         * metadata.h, metadata-internals.h: the MonoMethodSignature
2310         guts are internal now.
2311         * Makefile.am: mempool.h is an internal header now.
2312         * *.h, *.c: remove glib.h usage from the public headers.
2313
2314 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
2315
2316         * culture-info-table.h : regenerated.
2317
2318 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
2319
2320         * metadata.c: Add mono_method_get_header_summary which returns minimal
2321         information about the header of a method. This is the information used
2322         by the inline oracle to reject methods.
2323
2324         This method doesn't decode local variables and doesn't cache it's result,
2325         so it should cause a minimal reduction in memory usage.
2326
2327         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
2328         mono_method_get_header_summary.
2329
2330 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
2331
2332         * threads.c (mono_thread_exit): Make sure that the main thread is
2333         non-null before dereferencing it.
2334
2335 2010-02-21  Geoff Norton  <gnorton@novell.com>
2336
2337         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
2338         locale.
2339         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
2340         before falling back to the posix lookup.
2341
2342 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
2343
2344         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
2345         the DONT_MANAGE flag set.
2346
2347 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2348
2349         * domain.c: Remove old v1 version strings. Let the runtime
2350         default to 2.0 instead of failing because it can't find a
2351         working 1.0 instalation.
2352
2353 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2354
2355         * domain.c: Add v4 RC version string.
2356
2357 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
2358
2359         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
2360         of overflow checking function.
2361
2362 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
2363
2364         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
2365         generic methods.
2366
2367         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
2368         cases for ParameterInfo.
2369
2370         Fixes #579493.
2371
2372 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
2373
2374         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
2375         have has_cctor set. Fixes #575946.
2376
2377 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
2378
2379         * appdomain.c: display a warning if the parsing the config file
2380         produces any error.
2381         Skip the BOM in UTF-8 files.
2382         Copy the AppDomainSetup before setting the privateBinPath so that the
2383         correct configuration file is read.
2384
2385 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
2388         vtable trampoline per vtable slot index. Not used yet.
2389
2390 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2391
2392         * icall-def.h:
2393         * icall.c: add internal call that returns the system page size.
2394
2395 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
2396
2397         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
2398         'int' for system classes.
2399
2400 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
2401
2402         * icall.c, icall-def.h: new icall to check for sufficient
2403         stack space.
2404
2405 2010-02-12  Mark Probst  <mark.probst@gmail.com>
2406
2407         * reflection.c (ensure_complete_type): Check that reflection_info
2408         is set, too.  Fixes crash of corlib testsuite with -O=-all.
2409
2410 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
2411
2412         * attrdefs.h:
2413         * tabledefs.h: Add NoOptimization flag.
2414
2415 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2416
2417         * sgen-gc.c: Don't consider it a missing remset if the target
2418         object is pinned - we might have done the store but not added the
2419         remset yet.
2420
2421 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2422
2423         * sgen-gc.c: When checking for missing remsets, don't assert on
2424         the first one, but print them all and then assert.
2425
2426 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2427
2428         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
2429
2430 2010-02-09  Miguel de Icaza  <miguel@novell.com>
2431
2432         * console-unix.c: On OSX Control-Y is assigned to
2433         VDSUSP (non-Posix), the
2434         suspend-program-next-time-it-tries-to-read-input command (this is
2435         different than C-z, which suspends immediately).
2436
2437         Do the same thing that bash does and ignore this setting,
2438         making our repl/getline support pasting.
2439
2440 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2441
2442         * sgen-gc.c: Simple plausibility check for scan_starts.
2443
2444 2010-02-10  Mark Probst  <mark.probst@gmail.com>
2445
2446         * sgen-gc.c: Round up when calculating the number of scan starts.
2447
2448 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2449
2450         * reflection.c: Export mono_get_object_from_blob.
2451
2452         * object-internals.h: Ditto.
2453
2454         * icall.c: New icall property_info_get_default_value to get the default
2455         value of a property. Since using this is not common, no caching is done.
2456
2457         * icall-def.h: Add new icall.
2458
2459 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2460
2461         * class.c: Add mono_class_get_property_default_value.
2462
2463         * class-internal.h: Export mono_class_get_property_default_value.
2464
2465 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
2466
2467         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
2468
2469 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
2470
2471         * sgen-gc.c: introduced critical regions to allow some lockless
2472         operations and increase scalability.
2473
2474 2010-02-10  Geoff Norton  <gnorton@novell.com>
2475
2476         * reflection.c: Support building with DISABLE_REFLECTION
2477
2478 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
2479
2480         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
2481         Closes bug #566057.
2482
2483         * exception.c: fix typo in comment.
2484
2485 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
2486
2487         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
2488         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
2489
2490         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
2491
2492         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
2493         the internal API.
2494
2495         Fixes #574434.
2496
2497 2010-02-09  Mark Probst  <mark.probst@gmail.com>
2498
2499         * threads.c: Removed two assertions that were too strict.  Added a
2500         clarifying comment.  Fixes #577090.
2501
2502 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
2503
2504         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
2505         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
2506
2507         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
2508
2509         * verify.c (mono_type_get_stack_name): Fix a warning.
2510
2511 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
2512
2513         * marshal.c (mono_marshal_get_wrapper_info): Rename from
2514         mono_marshal_wrapper_info_from_wrapper.
2515
2516         * marshal.c (mono_marshal_set_wrapper_info): Rename from
2517         mono_marshal_method_set_wrapper_data, and export.
2518
2519         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
2520         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
2521         by calling mono_marshal_get_wrapper_info ().
2522
2523         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
2524         small objects which does no size checks.
2525
2526 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
2527
2528         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
2529
2530 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2531
2532         * verify.c (mono_method_verify): Use the new basic block formation pass
2533         to avoid verifying dead basic blocks. This is the same behavior as the
2534         runtime MS verifier.
2535
2536 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2537
2538         * mono-basic-block.c:
2539         * mono-basic-block.h: New implementation of a basic block formation pass.
2540         The formation pass does static liveness analysis as well to detect dead
2541         basic blocks.
2542
2543 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2544
2545         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
2546         'this' argument in icalls.
2547
2548 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2549
2550         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
2551
2552 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2553
2554         * object.c, domain.c: When using SGen, we must register
2555         vtable->type as a root if it's not a MonoType, because then it
2556         wasn't pin-alloced.
2557
2558 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2559
2560         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
2561         at the start of nursery collections, because we might have had
2562         degraded allocations which changed next_data.
2563
2564 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2565
2566         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
2567         custom attr so this function works in cross-compiling mode.
2568
2569 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2570
2571         * class.c (make_generic_param_class): Initialize interface offsets since we
2572         set klass->inited. Fixes #574819.
2573
2574 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2575
2576         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
2577         calling the JIT domain cleanup hook.
2578
2579 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2580
2581         * pedump.c (main): Properly set the verifier mode when running the metadata
2582         verifier.
2583
2584 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2585
2586         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
2587         overlapping fields now that we're called before has_references is set.
2588
2589         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2590         method. Otherwise all sort of weird stuff happens.
2591
2592 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2593
2594         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2595         Fixes #572874.
2596
2597 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2598
2599         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2600         Fixes #573322.
2601
2602 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2603
2604         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2605         pin_staging_area_index is greater than 0.
2606
2607 2010-01-22 Miguel de Icaza (miguel@novell.com)
2608
2609         * loader.c: Since we do nothing with the error returned, pass NULL
2610         to ignore the error.
2611
2612 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2613
2614         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2615         happened before starting to encode the actual fields. This avoid ciclic
2616         dependencies and eventual crashes.
2617
2618         Fixes #572660.
2619
2620 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2621
2622         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2623         atomic and remove the half-constructed hack in SGen.
2624
2625 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2626
2627         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2628         has a recursive reference to itself.
2629
2630         Fixes #571863.
2631
2632 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2633
2634         * loader.c (mono_method_signature): Fix error message.
2635
2636 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2637
2638         * sgen-gc.c: Reuse to-space sections between nursery collections.
2639
2640 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2641
2642         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2643         from the current assembly or mscorlib. Fixes bug #322957.
2644
2645 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2646
2647         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2648         get_wrapper_target_class.
2649
2650 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2651
2652         * sgen-gc.c: Fix warnings.
2653
2654 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2655
2656         * verify.c (store_local): Better error message.
2657
2658 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2659
2660         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2661         arguments.
2662
2663 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2664
2665         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2666         function is generics variance aware.
2667
2668 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2669
2670         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2671         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2672
2673 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2674
2675         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2676           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2677
2678         Code is contributed under MIT/X11 license.
2679
2680 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2681
2682         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2683         on a GTD.
2684
2685 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2686
2687         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2688         return a point to a wrapper specific info structure describing the wrapper.
2689         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2690  
2691 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2692  
2693         * sgen-gc.c: Make minor collection section allowance adaptive,
2694         depending on the amount of memory reclaimed in the last major
2695         collection.  If more memory was reclaimed (i.e. more garbage
2696         produced), do the next collection earlier.
2697
2698 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2699
2700         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2701         to itself.
2702
2703         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2704         the token as parameter.
2705
2706         * verify-internals.h: Ditto.
2707
2708         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2709
2710         Fixes #571460.
2711
2712 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2713
2714         * sgen-gc.c: Make store_remset_buffer_index long.
2715
2716 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2717
2718         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2719
2720         Fixes #569579.
2721
2722 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2723
2724         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2725         off precise marking if it is available.
2726         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2727
2728 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2729
2730         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2731
2732         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2733         pinned objects.
2734
2735         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2736         to the array allocator.
2737
2738 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2739
2740         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2741         result of mono_compile_method (), it already includes an ftnptr.
2742
2743 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2744
2745         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2746
2747 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2748
2749         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2750         hash value which doesn't depend on glib/eglib versions.
2751         (mono_metadata_type_hash): Use it.
2752
2753         * object.c (mono_method_get_imt_slot): Ditto.
2754
2755 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2756
2757         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2758         independently of the GTD.
2759
2760         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2761
2762         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2763         to the upper limit since instance_size includes this amount.
2764
2765         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2766
2767         Fixes #569544.
2768
2769 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2770
2771         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2772         with static methods.
2773
2774         * object.c (build_imt_slots): Avoid asserting when static methods are
2775         encountered in an interface.
2776
2777 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2778
2779         * sgen-gc.c (to_space_expand): Fix assertion.
2780
2781 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2782
2783         * string-icalls.c: missing declaration fixes.
2784         * sgen-gc.c: portability fixes.
2785
2786 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2787
2788         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2789
2790         * class.c:
2791         * cominterop.c:
2792         * icall.c:
2793         * object.c: 
2794         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2795
2796 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2797
2798         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2799         it can fail loading the type.
2800
2801         * class.c: Add mono_class_inflate_generic_class_checked.
2802
2803         * class.c:
2804         * verify.c:
2805         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2806
2807 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2808
2809         * loader.c (mono_method_signature_checked): New internal function taking an
2810         MonoError argument.
2811
2812         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2813         Fixes build on rh 7.3.
2814
2815 2010-01-10  Aaron Bockover  <abockover@novell.com>
2816
2817         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2818         at runtime in the same way as on Windows, which yields a relocatable
2819         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2820         of the running mono process.
2821
2822         On TARGET_ARM, fallback () will always be executed.
2823
2824 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2825
2826         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2827
2828 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2829
2830         * class.c (mono_class_is_assignable_from_slow): Support variant
2831         generic delegates.
2832
2833         * class.c (mono_class_implement_interface_slow): Support types with
2834         variant generic arguments.
2835
2836 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2837
2838         * verify.c: Remove some code duplication.
2839
2840 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2841
2842         * object.c: Update docs.
2843
2844 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2845
2846         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2847
2848         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2849         fallback trampoline as well.
2850
2851         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2852         out argument that is set to TRUE if the match was direct. 
2853
2854         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2855
2856         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2857
2858 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2859
2860         * class.c: Add mono_class_interface_offset_with_variance function that does same
2861         as mono_class_interface_offset but takes variance into account.
2862
2863         * class-internal.h: Export mono_class_interface_offset_with_variance.
2864
2865         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2866
2867 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2868
2869         * object.c:
2870         * icall.c:
2871         * class.c: Add some FIXME for due to variant generic arguments.
2872
2873         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2874         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2875         the bitfield check fails.
2876
2877 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2878
2879         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2880         to be easier to read and fix bugs in the case a non generic type implements a variant
2881         interface.
2882
2883         * class.c (mono_class_has_variant_generic_params): Make non static.
2884
2885         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2886         the private API.
2887
2888 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2889
2890         * assembly.c: fix MONO_PATH debug output.
2891
2892 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2893
2894         * culture-info-table.h : regenerated.
2895
2896 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2897
2898         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2899         types that are meant to not have a parent.
2900
2901 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2902
2903         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2904         from the image mempool, so it is not leaked.
2905
2906 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2907
2908         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2909
2910 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2911
2912         * verify.c (verify_valuetype_layout_with_target): Fix case
2913         that can lead to infinite recursion. Fix bug #567861
2914
2915 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2916
2917         * pedump.c: Run code verifier even if image verification fails
2918         due to a failed type we. This allows more errors to be shown.
2919
2920 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2921
2922         * class.c (count_virtual_methods): Remove the assert and now
2923         fail properly.
2924         
2925         * class.c (setup_interface_offsets): This can fail now.
2926
2927         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2928         errors. Check setup_interface_offsets errors.
2929
2930         * class.c (setup_interface_offsets): Simplify the return error logic
2931         and remove class_init_ok.
2932
2933         Fixes #560327.
2934
2935 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2936
2937         * class.c (mono_class_init): Do class verification at the beginning. Add
2938         some asserts to avoid tripping into invalid memory.
2939
2940         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2941         g_error and a decent message.
2942
2943         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2944
2945         Fixes #567548.
2946
2947 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2948
2949         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2950         as inline functions instead of defining them in mempool.c.
2951
2952         * metadata-internals.h (MonoImageSet): New structure representing a set of
2953         MonoImages, which own a collection of generic instances.
2954
2955         * metadata.c: Get rid of the global generic caches, instead assign each generic
2956         instance to the image set which consists of all the images referenced by the
2957         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2958         the memory used by generic instances to be allocated from a per image-set mempool
2959         later.
2960
2961 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2962
2963         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2964
2965 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2966
2967         * appdomain.c (zero_static_data): Fix a warning.
2968
2969         * locales.c (construct_culture_from_specific_name): Applied patch from
2970         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2971         not found. Fixes #567900.
2972
2973 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2974
2975         * loader.c (mono_method_get_signature_full): Remove two asserts.
2976         Return NULL instead so that the verifier can handle both cases 
2977         gracefully.
2978
2979 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2980
2981         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2982         so we can properly fail types instead of crashing.
2983
2984         Fixes #567676.
2985
2986 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2987
2988         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2989         generic method.
2990
2991 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2992
2993         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2994
2995 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2996
2997         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2998         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2999         we can't remove it from it since we don't hold the lock.
3000         (mon_new): Free the orphaned events here when a mon structure is added to the
3001         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
3002         this down.
3003
3004 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
3005
3006         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
3007         as max stack might be zero.
3008
3009         Fixes #562320.
3010
3011 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
3012
3013         Rework all uses of mono_class_setup_methods to accept that it can fail now.
3014
3015         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
3016         instances if the GTD did.
3017
3018         * class.c (mono_class_setup_properties): Ditto.
3019
3020         * class.c (mono_class_setup_events): Ditto.
3021
3022         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
3023
3024         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
3025         error setting.
3026
3027         * class.c (mono_class_init): Fail if GTD did.
3028
3029         * cominterop.c:
3030         * generic-sharing.c:
3031         * icall.c:
3032         * loader.c:
3033         * object.c:
3034         * verify.c: Properly handle failure of mono_class_setup_methods.
3035
3036 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
3037
3038         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
3039         mono_class_inflate_generic_method_full internal.
3040
3041         * class.c (inflate_generic_context): Now takes a MonoError argument.
3042
3043         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
3044         errors.
3045
3046 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
3047
3048         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
3049         they cannot be patched. Partly fixes #564408.
3050
3051 2009-12-24  Mark Probst  <mark.probst@gmail.com>
3052
3053         * metadata-internals.h, reflection.c: Use the
3054         MonoDynamicImage.handleref hash table only with unmanaged keys,
3055         and add a managed hash table handleref_managed for managed keys.
3056
3057 2009-12-24  Mark Probst  <mark.probst@gmail.com>
3058
3059         * sgen-gc.c: Unset to-space bumper between collections.  It might
3060         become invalid due to degraded allocations.
3061
3062 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
3063
3064         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
3065         with the one from the original method.
3066
3067         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
3068         compatibility.
3069
3070         * verify-internals.h: Add new function to the internal API.
3071
3072 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
3073
3074         * culture-info-tables.h: regenerated it to include the Georgian culture.
3075
3076 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
3077
3078         * sgen-gc.c: Include mono/utils/memcheck.h.
3079
3080         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
3081         instead of the current domain, since the two might not match if this is called
3082         from the debugger.
3083
3084         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
3085         domain which created this assembly.
3086
3087 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
3090
3091 2009-12-17  Mark Probst  <mark.probst@gmail.com>
3092
3093         * sgen-gc.c: Managed implementation of the specialized generic
3094         store write barrier.
3095
3096 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
3097
3098         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
3099         A private virtual newslot method is used to implement an interface method without exposing
3100         it to users. When querying for public instance methods, such method would hide a public one
3101         on a parent type.
3102
3103         Fixes #564379.
3104
3105 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
3106
3107         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
3108         conventions.
3109
3110 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
3111
3112         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
3113
3114 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
3115
3116         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
3117         as they are no longer used.
3118         
3119          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
3120
3121         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
3122
3123 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
3124
3125         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
3126         if the owner class has not been finished before returning reflection_info.      
3127
3128         Fixes #565127.
3129
3130 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
3131
3132         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
3133         param doesn't have custom attributes. Fixes #565117.
3134
3135         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
3136         #565120.
3137
3138 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
3139
3140         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
3141
3142 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
3143
3144         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
3145         same amount done by a core-clr enabled runtime.
3146
3147 2009-12-15  Marek Habersack  <mhabersack@novell.com>
3148
3149         * appdomain.c (mono_make_shadow_copy): make sure access mode of
3150         the target files is reset to writable by owner and readable by
3151         everyone else to prevent problems when updating shadow copies of
3152         files whose source is read-only. Fixes bug #556884
3153
3154 2009-12-15  Mark Probst  <mark.probst@gmail.com>
3155
3156         * class.c (mono_generic_class_get_class): Allocate the generic
3157         class via malloc again, so that it can be freed when any one of
3158         the images of its constituent types is closed.
3159
3160         * metadata.c: When closing an image, don't free generic insts and
3161         generic classes right away, but put them into a list for later
3162         freeing.
3163
3164         * image.c, metadata-internals.h: Store the free list and in the
3165         second pass of closing an image, free it.
3166
3167 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
3168
3169         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
3170
3171         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
3172         types in type_hash.
3173
3174         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
3175
3176 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
3177
3178         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
3179         user type.
3180
3181         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
3182         is used.
3183
3184 2009-12-14  Miguel de Icaza  <miguel@novell.com>
3185
3186         * verify.c (mono_method_verify): The Unused opcodes produce an
3187         InvalidProgramException on .NET
3188
3189 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
3190
3191         * loader.c (mono_method_get_header): Move assert after the verifier
3192         has been called on the method header.
3193
3194 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
3195
3196         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
3197
3198         * appdomain.c: Bump corlib version.
3199
3200 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
3201
3202         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
3203         types as well since otherwise generic instances would not return UT as arguments but
3204         their undelying system type.
3205
3206         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
3207         to reflect the fact that they can have now multiple different types.
3208
3209         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
3210
3211         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
3212
3213         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
3214
3215         * reflection.c (mono_reflection_register_with_runtime): Init super types
3216         if the image is not dynamic.
3217
3218         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
3219         check if the generic type definition is a TypeBuilder.
3220
3221         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
3222         doesn't belong to a dynamic image, skip initialization.
3223
3224         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
3225         base definition is not a dynamic type.
3226
3227 2009-12-11  Marek Habersack  <mhabersack@novell.com>
3228
3229         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
3230         mono_profiler_string_allocation
3231
3232         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
3233         if string profiling is enabled, call
3234         mono_profiler_string_allocation
3235
3236         * profiler.h: added two MonoProfileFlags -
3237         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
3238         installation functions for the hooks below.
3239
3240         * profiler-private.h, profiler.c: added two hooks:
3241         mono_profiler_string_allocation called whenever a string is
3242         allocated by InternalAllocateStr and mono_profiler_iomap called
3243         whenever IOMAP code performs an adjustement on a file path.
3244
3245 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
3246
3247         * boehm-gc.c: fixed race condition while getting the target of a
3248         disappearing link (bug #522233).
3249
3250 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3251
3252         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
3253         the error.
3254
3255 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
3256
3257         * reflection.c: Add mono_reflection_register_with_runtime icall to
3258         allow a MonoGenericClass to register itself as the managed mirror of
3259         a given generic instance.
3260         This is a temporary workaround until all MGC instantiation happens in
3261         managed code.
3262
3263         * object-internals.h: Ditto.
3264
3265         * icall-def.h: Ditto.
3266
3267 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3268
3269         * sgen-gc.c (find_in_remsets): Also search the generic store
3270         remsets.
3271
3272 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3273
3274         * sgen-gc.c: Don't access class names in debugging code when
3275         unloading a domain, because they might not be valid anymore.
3276
3277 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3278
3279         * domain.c, domain-internals.h: New function mono_domain_unset().
3280
3281         * appdomain.c (unload_thread_main): Detach the thread again at the
3282         end.
3283
3284         * threads.c: When a thread exists or is detached, unset its domain
3285         so that it's NULL when, for example, a pthread destructor runs.
3286
3287         * sgen-gc.c: Assert that there is no domain set after a thread is
3288         done.
3289
3290 2009-12-10  Mark Probst  <mark.probst@gmail.com>
3291
3292         * class.c (mono_generic_class_get_class),
3293         metadata.c (free_generic_class): Allocate generic MonoClass's from
3294         the image mempool, not via malloc.  The problem with malloc is
3295         that when unloading a domain those classes are freed before
3296         clearing the heap and SGen needs the classes.  Rewriting the
3297         unloading code to do the free later would be more work and there's
3298         no point in using malloc anyway.
3299
3300 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
3301
3302         * loader.c (mono_method_signature): Always call mono_loader_unlock 
3303         before returning.
3304
3305 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3306
3307         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
3308         user string blobs.
3309
3310         * verify-internals.h: Add new function to the internal API.
3311
3312         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
3313         check if it's a valid string.
3314
3315         * object.c (mono_ldstr): Ditto.
3316
3317         Fixes #561943.
3318
3319 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
3320
3321         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
3322         from a method before returning it. This is the expected behavior.
3323
3324 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
3325
3326         * reflection.c (inflate_method): Handle the case of a regular system type.
3327
3328 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3329
3330         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
3331         gathering code.
3332
3333         * mempool.c, mempool-internals.h: New function
3334         mono_mempool_get_bytes_allocated().
3335
3336         * Makefile.am: sgen-pinning-stats.c added.
3337
3338 2009-12-08  Mark Probst  <mark.probst@gmail.com>
3339
3340         * sgen-gc.c (create_allocator): Only use the fast path if the
3341         object size is within the small object size limit.
3342
3343 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3344
3345         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
3346         possibly adding padding to sizeof (GCMemSection).
3347
3348 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3349
3350         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
3351         reference is not in the nursery.
3352
3353 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
3354
3355         * class.c (mono_class_from_typeref): Bounds check idx against the 
3356         assemblyref table.
3357
3358 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3359
3360         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
3361         through the potential roots, then sort the results and find the
3362         pinned objects from there.
3363
3364         * Makefile.am: sgen-pinning.c added.
3365
3366 2009-12-07  Mark Probst  <mark.probst@gmail.com>
3367
3368         * sgen-gc.c: Record generic stores in specialized remset buffers.
3369
3370 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3371
3372         * sgen-gc.c: Make pinned chunks the same size as major heap
3373         sections, and align them as well, so that we can check whether an
3374         object is in a pinned chunk or a major section in constant time.
3375
3376 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3377
3378         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
3379
3380 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3381
3382         * sgen-gc.c: Make all major heap sections the same size (currently
3383         128k) and allocate them on aligned addresses.  Small heap sections
3384         give us better granularity with pinned objects - we can free up
3385         much more memory.
3386
3387 2009-12-06  Mark Probst  <mark.probst@gmail.com>
3388
3389         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
3390         output removed.
3391
3392 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3393
3394         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
3395
3396         * mono/metadata/assembly.c: When opening an assembly image, pass the real
3397         names in addition to the runtime generated one.
3398
3399         * mono/metadata/image.h: Add a function to take the real name of the assembly
3400         image.
3401
3402         * mono/metadata/image.c: If a real name has been passed to load an assembly,
3403         use it instead of the runtime generated one.
3404
3405         Code is contributed under MIT/X11 license.
3406
3407 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3408
3409         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
3410         before the other checks to prevent problems if the DateTime class is blittable.
3411         Hopefully fixes #559600.
3412
3413 2009-12-05  Mark Probst  <mark.probst@gmail.com>
3414
3415         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
3416         returns the largest string length that will not be put into the
3417         LOS.
3418
3419         * sgen-gc.c, gc-internal.h: New function that returns the largest
3420         object size that will not be put into the LOS.
3421
3422         * appdomain.c: Bump corlib version.
3423
3424 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
3425
3426         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3427
3428         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
3429
3430 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3431
3432         * reflection.c (inflate_method): Fix signature.
3433
3434         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
3435         in managed code.
3436
3437 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
3438
3439         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
3440
3441 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3442
3443         * sgen-gc.c: Abstract to-space handling.
3444
3445 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
3446
3447         * loader.c (find_method_in_class): Ignore methods with broken signatures.
3448
3449         Fixes #559906.
3450
3451 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3452
3453         * sgen-gc.c: Only add references from outside the nursery to
3454         within the nursery to the global remset list.
3455
3456 2009-12-03  Mark Probst  <mark.probst@gmail.com>
3457
3458         * appdomain.c (create_exceptions): Set the domain temporarily if
3459         necessary to avoid cross-domain references.
3460
3461 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3462
3463         * verify.c (get_stack_type): Return that the type is invalid instead of
3464         asserting.
3465
3466         * verify.c (mono_method_verify): Verify that all locals and arguments
3467         have valid stack types.
3468
3469         Fixes #559913.
3470
3471 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3472
3473         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
3474         bounds checking overflow aware.
3475
3476         Fixes #559910.
3477
3478 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3479
3480         * verify.c (do_invoke_method): Check for invalid method signatures.
3481
3482         Fixes #553450.
3483
3484 2009-12-02  Jb Evain  <jbevain@novell.com>
3485
3486         * appdomain.c (MONO_CORLIB_VERSION): bump.
3487         * icall-def.h (get_base_definition): renamed to get_base_method
3488         and add a boolean argument indicating we want the original
3489         method definition, or the immediate base method.
3490         * icall.c: apply the get_base_definition to get_base_method change.
3491
3492 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3493
3494         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
3495
3496         Fixes #558042.
3497
3498 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
3499
3500         * class.c: remove asserts for invalid type token in
3501         mono_class_name_from_token(), mono_assembly_name_from_token() and
3502         mono_class_create_from_typedef () (fixes bug #553318).
3503
3504 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
3505
3506         * metadata.c, class.c, loader.c: remove assert after bsearch() for
3507         incorrect assemblies (bug #553322).
3508
3509 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3510
3511         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
3512
3513         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
3514
3515         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
3516
3517         * class.c (inflate_generic_context): Ditto.
3518
3519         * loader.c (method_from_methodspec): Ditto.
3520
3521         Fixes #558230.
3522
3523 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3524
3525         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
3526
3527         * class.c (mono_class_create_from_typespec): Ditto.
3528
3529         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
3530
3531         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
3532
3533         Fixes #558184.
3534
3535 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3536
3537         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
3538
3539         * verify.c (verify_delegate_compatibility): Ditto.
3540
3541         * verify.c (do_newobj): Ditto.
3542
3543         Fixes #558046.
3544
3545 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3546
3547         * sgen-gc.c: Use a gray queue instead of requiring that gray
3548         objects are in a contiguous region.
3549
3550         * sgen-gray.c: The gray queue implementation.
3551
3552         * Makefile.am: sgen-gray.c added.
3553
3554 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3555
3556         * appdomain.c: When unloading a domain, zero its static data and
3557         perform a minor collection when using SGen.  That will get rid of
3558         all the remsets pointing into that domain's static data.
3559
3560         * sgen-gc.c: Allow remsets into static data.  By doing this we
3561         need less checks so we're more efficient.
3562
3563 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3564
3565         * verify.c (mono_method_verify): Check for catch clauses with broken
3566         types.
3567
3568         Fixes #558465.
3569
3570 2009-12-01  Jb Evain  <jbevain@novell.com>
3571
3572         * class.c (make_generic_param_class): set the namespace of
3573         the generic parameter class from its owner, if available.
3574
3575 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3576
3577         * verify.c (code_bounds_check): Do proper overflow checking.
3578
3579         * verify.c (mono_method_verify): The number of switch entries is
3580         an unsigned int. Properly bounds check it.
3581
3582         Fixes #558594.
3583
3584 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3585
3586         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
3587         mono_metadata_method_has_param_attrs which only checks if a given param
3588         list has a non zero flags entry.
3589
3590         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3591         to inform how many params should we expect to decode.
3592
3593         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3594         as it's faster than mono_metadata_get_param_attrs.
3595
3596         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3597         add mono_metadata_method_has_param_attrs.
3598
3599 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3600
3601         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3602         failures.
3603
3604         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3605         is -1 but its class is broken.
3606
3607         Fixes #558522.
3608
3609 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3610
3611         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3612         for parameter overflow.
3613
3614         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3615         of mono_metadata_get_param_attrs.
3616
3617         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3618         API.
3619
3620         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3621
3622 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3623
3624         * class.c (mono_class_setup_fields): Check for fields with broken types.
3625
3626         Fixes #558741.
3627
3628 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3629
3630         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3631         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3632         its TypeBuilder::CreateType ().
3633
3634         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3635         if not needed.
3636
3637         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3638         to make setup_interface_offsets happy.
3639
3640         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3641         compilation now works.
3642
3643 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3644
3645         * appdomain.c (create_exceptions): New helper function extracted from
3646         mono_runtime_init () to precreate objects used during exception handling.
3647         (mono_runtime_init): Call it.
3648         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3649
3650 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3651
3652         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3653         compilation until the proper one is found.
3654
3655 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3656
3657         * class.c (mono_class_setup_vtable_general): Cache the result of
3658         get_virtual_methods () since it can be slow because of the metadata
3659         optimization.
3660
3661         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3662         from a MonoValueHashTable for now, since the later is based on an earlier
3663         version of hpj's internal probing code and seems to have serious collision
3664         issues.
3665
3666         * loader.c (mono_get_method_full): Update after the change above.
3667
3668 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3669
3670         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3671
3672 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3673
3674         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3675         the GTD instead of the DGC instead of crashing.
3676
3677         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3678         required. Inflate fields if needed.
3679
3680         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3681         finished. Renamed.
3682
3683 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3684
3685         * class.c (check_interface_method_override): Check for NULL signatures and fail
3686         the type.
3687
3688         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3689
3690         Fixes #553428.
3691
3692 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3693
3694         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3695         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3696
3697 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3698
3699         * loader.c (field_from_memberref): Resolve the class first then the field
3700         signature. Remove a lot of duplicated code and make sure we don't pass valid
3701         values to mono_loader_set_error_field_load.
3702
3703         Fixes #553306.
3704
3705 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3706
3707         * class.c (inflate_generic_type): Change code to use new signature of
3708         mono_error_set_bad_image.
3709
3710         Fixes #558124.
3711
3712 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3713
3714         * verify.c (mono_method_verify): Don't free ctx.params items if 
3715         we aborted while inflating the ctx.locals. Complete previous fix
3716
3717 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3718
3719         * verify.c (mono_method_verify): Use the uninflated type name, 
3720         when the inflated is null, to report errors. Also take care when
3721         freeing, not to free everything since, in case of an error, some
3722         stuff would be copies (i.e. not allocated by the function itself)
3723         Fix bug #558145
3724
3725 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3726
3727         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3728         or overflow. The caller must have done this check explicitly. This guard us
3729         from accessing invalid memory.
3730
3731         * verify.c (do_push_static_field): Check for stack overflow.
3732
3733         Fixes #553333.
3734
3735 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * loader.c (find_method_in_class): Don't crash if the signature cannot
3738         be resolved.
3739
3740         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3741         of asserting for the case of invalid params.
3742
3743         Fixes #553304.
3744
3745 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3746
3747         * image.c (mono_image_load_module): Fix crash when a bad assembly
3748         has no module at all (fix bug #553412) and also replace the 
3749         g_assert with a return NULL (documented return value for failure)
3750
3751 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3752
3753         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3754
3755 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3756
3757         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3758         file attribute to managed code and avoid doing the mask/attribute
3759         checks here. 
3760
3761 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3762
3763         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3764         the managed world.
3765
3766         * icall-def.h: New entry points.
3767         
3768 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3769
3770         * process.c: Don't put references to managed objects into a
3771         g_ptr_array.
3772
3773 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3774
3775         * class.c (can_access_internals): Allow CoreCLR to participate in
3776         allowing (or not) [InternalsVisibleTo] between assemblies.
3777         * security-core-clr.c|h: Make sure that only trusted code (a 
3778         superset of platform code) can access the internals of platform
3779         code.
3780
3781 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3782
3783         * reflection.c: use the correct base class to get the virtual method
3784         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3785
3786 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3787
3788         * security-core-clr.c (get_caller_no_reflection_related): 
3789         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3790         it's still reflection and must be filtered correctly.
3791
3792 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3793
3794         * object.c (compute_class_bitmap): Fix for large bitmaps.
3795
3796 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3797
3798         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3799
3800         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3801         koush@koushikdutta.com). Disable GC_no_dls on android.
3802
3803 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3804
3805         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3806         tlab_next points outside the TLAB because the allocator was
3807         interrupted.
3808
3809 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3810
3811         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3812
3813 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3814
3815         * object-internals.h: Change signature for mono_string_to_utf8_image.
3816
3817         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3818         argument.
3819
3820         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3821         exceptions due to mono_string_to_utf8.
3822
3823 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3824
3825         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3826
3827         * object.c (mono_remote_class): Make sure all resources are released before
3828         raising an exception.
3829
3830         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3831
3832 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3833
3834         * mono-perfcounters.c (network_get_impl): Change variable initialization
3835         ordering to fix potential memory leak in case of exceptions.
3836
3837         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3838         encoded strings.
3839         
3840 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3841
3842         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3843         variable initialization ordering to fix potential memory leak in case
3844         of exceptions.
3845
3846 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3847
3848         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3849         needed.
3850
3851 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3852
3853         * appdomain.c: Fix shadow path code to better deal with exceptions.
3854
3855 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3856
3857         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3858         exception in the middle of the runtime code.
3859
3860 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3861
3862         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3863         leak memory with broken envvar value.
3864
3865 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3866
3867         * reflection.c (mono_reflection_setup_internal_class): Because
3868         nested classes are not added to the name cache, we must put them
3869         in the reflection_info_unregister_classes list.
3870
3871 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3872
3873         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3874         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3875         platform (trusted) code. Instead we return a TypeLoadException to
3876         be thrown later. This is the exception thrown by Silverlight 2 if
3877         a type, inside application (user) code is marked with [ComImport]
3878
3879 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3880
3881         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3882         mono_is_debugger_attached () too.
3883
3884         * mono-debug.c (mono_is_debugger_attached): New helper function.
3885         (mono_set_is_debugger_attached): Ditto.
3886
3887 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3888
3889         * object-internals.h: Add mono_string_to_utf8_checked.
3890
3891         * object.c: Implement mono_string_to_utf8_checked.
3892
3893 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3894
3895         * class.c: Add missing check for load errors after every
3896         call to mono_class_setup_fields
3897
3898         Fixes #552282.
3899
3900 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3901
3902         metadata-verify.c (verify_tables_schema): Fix the error message.
3903
3904 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3905
3906         * metadata.c: Change event table schema to use TDOR for event type
3907         as this is what it's meant to be.
3908
3909         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3910         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3911         entry.
3912
3913         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3914         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3915         rows in MONO_TABLE_GENERICPARAM.
3916
3917         Fixes #552289.
3918
3919 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3920
3921         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3922         insertion.
3923
3924         * reflection.c (mono_reflection_setup_internal_class): Avoid
3925         registering a gc root the same MonoClass multiple times.
3926         Don't register nested types on the global scope as they should
3927         not be available there.
3928
3929 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3930
3931         * culture-info-tables.h: regenerated.
3932
3933 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3934
3935         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3936
3937 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3938
3939         * string-icalls.c|h: Remove string internal calls that are not 
3940         used anymore by the class libraries.
3941         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3942         which is not used in the class librairies.
3943         * icall-def.h: Update tables.
3944
3945 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3946
3947         * class.h: Move mono_class_inflate_generic_type_checked...
3948
3949         * class-internals.h: to here and make it internal. We don't want to
3950         further expose MonoGenericContext. 
3951
3952 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3953
3954         * verify.c (mono_method_verify): Improve error message.
3955
3956 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3957
3958         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3959         the token is already properly encoded. Fixs 4.0 build.
3960
3961 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3962
3963         * locales.c (construct_number_format): Check if the number index is
3964         valid before trying to use it, if not, just return.
3965         
3966 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3967
3968         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3969         since that loses the abort state. Fixes #539394.
3970
3971 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3972
3973         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3974         explicit this argument to the call signature.
3975         (mono_marshal_get_icall_wrapper): Ditto.
3976
3977 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3978
3979         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3980         to indicate which assembly to use when resolving a custom-mod.
3981
3982         Fixes handling of volatile fields used across assemblies as reported in #551513.
3983
3984 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3985
3986         * loader.c: Improve error messages.
3987
3988 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3989
3990         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3991         of interfaces. Fixes IKVM.
3992
3993         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3994
3995 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3996
3997         * verify.c (verifier_inflate_type): Return the inflated type on success.
3998
3999 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
4000
4001         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
4002
4003         * threads.c (mono_thread_attach): Call the profiler thread start callback.
4004
4005         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
4006
4007         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
4008         flag set.
4009
4010         * profiler.c: Add new profiler callbacks for runtime invoke.
4011
4012         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
4013
4014 2009-11-01  Mark Probst  <mark.probst@gmail.com>
4015
4016         * sgen-gc.c: Keep track of the reason for a major collection and
4017         write it to the heap-dump file.
4018
4019 2009-10-31  Miguel de Icaza  <miguel@novell.com>
4020
4021         * threads.c: refactor the code that initializes the
4022         thread_start_args into a reusable function and use this in the two
4023         methods that start up threads.
4024
4025 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
4026
4027         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
4028         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
4029
4030 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4031
4032         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
4033         Until now, we only had the per-cpu(core) counters.
4034
4035 2009-10-28  Mark Probst  <mark.probst@gmail.com>
4036
4037         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
4038         mono_gc_get_suspend_signal(), which returns the suspend signal
4039         number used by the GC.
4040
4041 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
4042
4043         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
4044
4045         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
4046         signalling start_notify.
4047
4048 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
4049
4050         * appdomain.c: do not test the st_mode field for shadow-copies.
4051         Fixes bug #545276.
4052
4053 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
4054
4055         * threadpool.[ch]: added hooks for thread start/finish and item
4056         processing begin/end. For monotouch use only.
4057
4058 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
4059
4060         * threads.c (mono_thread_get_name): New helper function.
4061
4062         * reflection.c (resolve_object): Set handle_class for strings too.
4063         (mono_reflection_create_custom_attr_data_args): New helper function to decode
4064         a cattr blob into a set of arrays and structures without creating the custom
4065         attributes themselves.
4066         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
4067
4068         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
4069
4070         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
4071         function.
4072
4073 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
4074
4075         * verify.c: Replace calls to mono_class_inflate_generic_type with
4076         mono_class_inflate_generic_type_checked. Fixes #480005.
4077
4078 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
4079
4080         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
4081         object since not all paths lead to callees initing it.
4082
4083 2009-10-23  Alp Toker  <alp@nuanti.com>
4084
4085         Fix embedding API breakage from r144688. mono-compiler.h is an internal
4086         header and should not be shipped:
4087
4088         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
4089         which is specific to the mono build. Not going to work.
4090
4091 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
4092
4093         * security-manager.c: Report if core-clr is active from
4094         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
4095         to allow Moonlight BCL to behave appropriately (both in browser
4096         and outside, e.g. smcs)
4097
4098 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4099
4100         * mono-config.c: ignore UTF-8 BOM and report parser errors.
4101         Fixes bug #549108.
4102
4103 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4104
4105         * class.c: fix typo.
4106
4107 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
4108
4109         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
4110         a MonoError parameter.
4111
4112         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
4113         version that can does proper error handling.
4114
4115         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
4116
4117         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
4118
4119         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
4120
4121 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
4122
4123         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
4124         NO_UNALIGNED_ACCESS is defined.
4125
4126 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
4127
4128         * marshal.c (mono_string_builder_to_utf16): Applied patch from
4129         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
4130         Fixes #549173.
4131
4132 2009-10-22  Mark Probst  <mark.probst@gmail.com>
4133
4134         * sgen-gc.c: Shorten sections whenever possible.
4135
4136 2009-10-22  Mark Probst  <mark.probst@gmail.com>
4137
4138         * sgen-gc.c: Use our portable semaphore #defines.
4139
4140 2009-10-22  Mark Probst  <mark.probst@gmail.com>
4141
4142         * sgen-gc.c: A debug option for dumping the heap layout to a file
4143         after each collection.
4144
4145 2009-10-21  Mark Probst  <mark.probst@gmail.com>
4146
4147         * sgen-gc.c: Make managed write barriers atomic via
4148         thread-restarts.
4149
4150 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
4151
4152         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
4153         methods. Fixes #543021.
4154
4155 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
4156
4157         * socket-io.[ch]: fix VS build.
4158
4159 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
4160
4161         * icall-def.h:
4162         * socket-io.[ch]: implemented SendFile.
4163
4164 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
4165
4166         * class.c (mono_class_create_from_typedef): Initialize class->element_class
4167         before the interfaces to avoid crashes later if class initialization fails.
4168         Fixes #548417.
4169
4170         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
4171         Fixes #548276.
4172
4173 2009-10-20  Marek Safar  <marek.safar@gmail.com>
4174
4175         * domain.c: Bump 4.0 version.
4176
4177 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
4178
4179         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
4180         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
4181         check since 'pubkey' can't be NULL at this stage
4182         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
4183         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
4184         initialization of 'iter'
4185
4186 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
4187
4188         * cominterop.c : Search the interface parts of vtable to find 
4189           method matches.  Fixes 547030.
4190
4191         Code is contributed under MIT/X11 license.
4192
4193 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
4194
4195         * marshal.c: BeginInvoke cannot be called on multicast delegates with
4196         multiple targets. Fixes bug #574426.
4197
4198 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4199
4200         * profiler.h: Put here the definition of
4201         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
4202         (and fix the build...).
4203
4204 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
4205
4206         * profiler.c, profiler.h, profiler-private.h:
4207         Added support for different ways of getting call chains in stat mode.
4208
4209 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4210
4211         * object.c, object-internals.h: New function for computing the
4212         size of an array, factored out of mono_array_new_full().  Use
4213         SGen's functions for allocating arrays and vectors.
4214
4215         * sgen-gc.c, gc-internal.h: Special functions for allocating
4216         arrays and vectors without race conditions.  A managed array
4217         allocator method.
4218
4219         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
4220
4221 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4222
4223         * object.c, object.h, icall.c: Write barriers do the copying now,
4224         as well, so no need for an additional memcpy.
4225
4226         * sgen-gc.c: Lock when storing remsets.  Do the memory
4227         copying/moving in the write barriers.
4228
4229         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
4230
4231         * reflection.c: Added an assert.
4232
4233 2009-10-12  Mark Probst  <mark.probst@gmail.com>
4234
4235         * threads.c, process.c: A few missing write barriers.
4236
4237 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
4238
4239         * mono-perfcounters.c, mono-perfcounters-def.h: Add
4240         network performance counters for bytes sent per second, bytes
4241         received per second, and bytes total per second.
4242
4243         Code is contributed under MIT/X11 license.
4244
4245 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4246
4247         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4248         Fix warning.
4249
4250 2009-10-09  Mark Probst  <mark.probst@gmail.com>
4251
4252         * threads.c, object-internals.h, object.c: Move code for
4253         transferring an object to a different domain (via
4254         serialization/remoting) to object.c.
4255
4256         * object.c (call_unhandled_exception_delegate): If the exception
4257         is in a different domain than the delegate, transfer the exception
4258         to that domain.
4259
4260 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
4261
4262         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
4263         Fixes #322934.
4264
4265 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
4266
4267         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
4268
4269 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4270
4271         * object.c (mono_method_return_message_restore): Handle the case
4272         where the argument is an instance of a generic type.  Fixes
4273         #544446.
4274
4275 2009-10-06  Mark Probst  <mark.probst@gmail.com>
4276
4277         * object.c (set_value): Write barrier fix - we must pass the
4278         count, not the size.
4279
4280 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
4281
4282         * domain.c (mono_init_internal): Print a useful error message when encountering
4283         an old mscorlib, instead of crashing. Fixes #544307.
4284
4285 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
4286
4287         * appdomain.c (copy_app_domain_setup): Fix a warning.
4288
4289         * debug-helpers.c (dis_one): Ditto.
4290
4291 2009-10-04  Mark Probst  <mark.probst@gmail.com>
4292
4293         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
4294         into the new domain, instead of referencing the original one.
4295
4296         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
4297         non-static.
4298
4299         * appdomain.c: Corlib version bump.
4300
4301 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4302
4303         * threadpool.c: one more...
4304
4305 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
4306
4307         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
4308         threads to die because we're shutting down. delgate5.exe works again.
4309
4310 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
4311
4312         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
4313           ccw_interface_hash table when a ccw is finalized.
4314
4315         Code is contributed under MIT/X11 license.
4316
4317 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4318
4319         * assembly.c, domain.c, image.c, metadata-internals.h: Split
4320         domain and image unloading into two steps.  We must do this
4321         because clearing the domain in SGen requires the class metadata to
4322         be intact, but we need to free the mono_g_hash_tables in case a
4323         collection occurs during domain unloading and the roots would trip
4324         up the GC.
4325
4326 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4327
4328         * object-internals.h: Remove serialized culture fields from
4329         MonoInternalThread.
4330
4331         * icall-def.h, thread-types.h, threads.c: Remove serialized
4332         culture icalls.
4333
4334         * appdomain.c: Corlib version bump.
4335
4336 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
4337
4338         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
4339         Fixes #543133.
4340
4341 2009-09-30  Mark Probst  <mark.probst@gmail.com>
4342
4343         * sgen-gc.c: Try to shorten the new section after a major
4344         allocation to avoid ever-growing sections.
4345
4346 2009-10-13  Martin Baulig  <martin@ximian.com>
4347
4348         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
4349         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
4350         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
4351         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
4352
4353         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
4354
4355 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
4356
4357         * threadpool.c: fixed the order in which 'completed' and the wait
4358         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
4359         No need to use the wait_handle field of ASyncCall. Make sure the
4360         threadpool is active when adding a job or queueing an idle thread.
4361
4362 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
4363
4364         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
4365
4366         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
4367         when using --compile-all.
4368
4369 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4370
4371         * metadata.c (free_generic_class): Unregister the field_objects
4372         roots if we're using SGen.
4373
4374 2009-09-27  Mark Probst  <mark.probst@gmail.com>
4375
4376         * reflection.c (mono_dynamic_image_free): Deregister the GC root
4377         for GenericParamTableEntry.gparam.
4378
4379 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4380
4381         * marshal.c: don't create the handle when calling. It is created later
4382         if needed.
4383
4384 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4385
4386         * sgen-gc.c: Warning fixes.
4387
4388 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4389
4390         * sgen-gc.c: New debug option "xdomain-checks", which scans the
4391         whole heap for cross-domain references before each collection.
4392
4393         * sgen-scan-object.h: The scan action can now use SCAN to scan the
4394         object.
4395
4396         * threadpool-internals.h, threadpool.c: New function
4397         mono_thread_pool_is_queue_array() for checking whether a given
4398         array is used as a (cross-domain) queue by the thread pool code.
4399
4400 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4401
4402         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
4403         searches the whole heap for objects containing a specific
4404         reference.  Only for debugging.
4405
4406 2009-09-26  Mark Probst  <mark.probst@gmail.com>
4407
4408         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
4409
4410         * icall-def.h, threads.c, threads-types.h: New icalls for copying
4411         byte arrays between domains.
4412
4413 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4414
4415         * threadpool.c:
4416         * class-internals.h:
4417         * mono-perfcounters-def.h:
4418         * mono-perfcounters.c:
4419         -There is a list of idle threads
4420         -Each of those idle threads wait on their own WaitHandle instead
4421         of all of them using the same semaphore. When a new work item is
4422         added, the job is assigned directly to an idle thread or a newly
4423         created one if possible and then the handle for that thread is
4424         signaled. Compare that to the current approach where all the
4425         threads in the pool compete to dequeue a job from the same
4426         queue.
4427         -New struct ThreadPool that brings together the bunch of static
4428         variable for each threadpool (IO and regular).
4429         -New performance counters: # of items added and its rate per
4430         threadpool. The rate will be used later, perhaps together with
4431         other perf. counters, to decide when idle threads should exit.
4432
4433 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
4434
4435         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
4436         Fix typo on Windows build.      
4437         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
4438         
4439         Code is contributed under MIT/X11 license.
4440
4441 2009-09-25  Mark Probst  <mark.probst@gmail.com>
4442
4443         * object-internals.h: The Thread class is split up into Thread and
4444         InternalThread now.  We have exactly one InternalThread per
4445         thread, and at most one Thread per appdomain per thread.  Most
4446         data is stored in InternalThread.  All InternalThread objects live
4447         in the root domain.
4448
4449         * class-internals.h: Add internal_thread_class to MonoDefaults.
4450
4451         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
4452         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
4453         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
4454         resulting from the split of the Thread class.
4455
4456         * gc-internal.h: Prototype for new function for checking whether a
4457         thread is the finalizer thread.
4458
4459         * appdomain.c: Corlib version bump.
4460
4461 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4462
4463         * appdomain.c|h: Add a mono_domain_try_unload method which is
4464         equivalent to mono_domain_unload, except that it returns an exception
4465         instead of throwing it. Make mono_domain_unload use the
4466         mono_domain_try_unload method to avoid code-duplication.
4467
4468 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
4469
4470         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
4471         a problem.
4472
4473 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
4474
4475         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
4476         aborting when a conversion is not implemented.
4477
4478 2009-09-23  Miguel de Icaza  <miguel@novell.com>
4479
4480         * verify.c: when comparing culture strings, use g_ascii_strcmp
4481
4482         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
4483         when comparing public key tokens to use memcmp on 16 bytes.   I do
4484         not believe this ever worked as advertised in the past.
4485
4486         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
4487         which would have always failed earlier.
4488
4489 2009-06-25  Miguel de Icaza  <miguel@novell.com>
4490
4491         * gc.c: Raise a NullArgumentException if the object passed is
4492         null.
4493
4494 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
4495
4496         * image.c (mono_image_close): Atomically decrement the reference count and
4497         remove the image from the hash tables, to prevent another thread from seeing a
4498         dying MonoImage. Fixes #541194.
4499
4500 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4501
4502         * threadpool.c: actually use the minimum number of 'completion ports'
4503         (for us is just a potential worker thread).
4504
4505 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4506
4507         * threadpool.c: remove ares_htable. It does not make sense any more
4508         since the same objects are now stored in GC-tracked arrays while they are
4509         in the queue.
4510
4511 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4512
4513         * threadpool.c: increase the minimum length of the queues to 128.
4514         Remove warning.
4515
4516 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
4517
4518         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
4519         return the modified signature used by string ctors.
4520
4521 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
4522
4523         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
4524         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
4525         method, to be used by full-aot.
4526
4527 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
4528
4529         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
4530         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
4531         be known to be good.
4532
4533         * class.c (mono_class_init): Fail array types if their element type fails initialization
4534         as well.
4535
4536         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
4537         initialization, additionally we request the element_type vtable to be initialized as well.
4538
4539         This is fine and should not increase the working set in any meaningful way since it's reasonable
4540         to assume       that most code will create an array and eventually populate it, which will require the
4541         type's vtable to be initialized.
4542
4543         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
4544
4545 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
4546
4547         * normalization-tables.h : regenerated.
4548
4549 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4550
4551         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
4552         a leb128 encoding can take up to 5 bytes.
4553
4554 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4555
4556         * class.c (verify_class_overrides): Remove useless argument.
4557
4558         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
4559         before interface enumeration as this is no longer required.
4560
4561 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4562
4563         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
4564         used under mono_class_init context. This functions avoid any code path that
4565         calls mono_class_init, which leads it to be slow as some things like the interface
4566         bitmap are not available.
4567
4568         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
4569         of it's own broken version. Fixes the verifier part of #538588.
4570
4571         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
4572         API.
4573
4574 2009-09-15  Mark Probst  <mark.probst@gmail.com>
4575
4576         * class.c (mono_class_init): Always set an exception in a class if
4577         vtable setup fails.  Fixes #538577.
4578
4579         * generic-sharing.c: Raise an exception if mono_class_vtable()
4580         returns NULL.
4581
4582 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
4583
4584         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
4585         methods of vtypes, as they could be incorrectly shared with static methods
4586         taking an IntPtr argument.
4587
4588 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4589
4590         * domain.c:
4591         * object.c:
4592         * class-internals.h: renamed waithandle_class to
4593         manualresetevent_class.
4594         * marshal.c: propagate the exception if a remoting BeginInvoke call
4595         fails.
4596
4597 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4598
4599         * object.c: Properly handle vtable failures.
4600
4601 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4602
4603         * socket-io.c: Assert on vtable failure.
4604
4605         * mono-mlist.c: Assert on vtable failure.
4606
4607 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4608
4609         * marshal.c: Assert on vtable failure.
4610
4611 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4612
4613         * icall.c: Properly handle vtable failures.
4614
4615 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4616
4617         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4618
4619 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4620
4621         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4622
4623         * console-unix.c (do_console_cancel_event): Same.
4624
4625 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4626
4627         * class-internals.h: Add mono_class_vtable_full function that allows control
4628         if an exception should be raised or not.
4629
4630         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4631         to do what its documentation say, that is to return NULL and set exception_type on
4632         failure.
4633
4634         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4635         and change the code to honor it.
4636
4637 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4638
4639         * verify.c: Fix typo in error message.
4640
4641 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4642
4643         * security-core-clr.c: Fix default_platform_check so it can run
4644         the runtime coreclr tests (without an infinite recursion when
4645         throwing an exception).
4646
4647 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4648
4649         object.c (mono_delegate_ctor_with_method): Guard against null method.
4650
4651 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4652
4653         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4654         that should be replaced with error handling later.
4655
4656 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4657
4658         * marshal.c (mono_delegate_end_invoke): Fix warning.
4659
4660 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4661
4662         * loader.c (mono_field_from_token): Properly handle invalid
4663         dynamic tokens.
4664
4665 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4666
4667         * pedump.c (verify_image_file): Skip types that can't be
4668         decoded.
4669
4670 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4671
4672         * verify.c: Look for recursive valuetypes only against the
4673         type been initialized as this is a lot simpler and works.
4674
4675 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4676
4677         * verify.c: Ensure that fields are properly loaded before
4678         checking them.
4679
4680 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4681
4682         * object.c (mono_object_get_virtual_method) : Call 
4683           mono_cominterop_get_invoke if the object is a COM object.
4684
4685         Code is contributed under MIT/X11 license.
4686
4687 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4688
4689         * verify.c: Check for recursive valuetype definitions.
4690
4691 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4692
4693         Use inheritance-aware interface offsets. Inherited types use the same offsets
4694         of their parents. This reduce offset duplication in case more than one type in
4695         the inheritance tree explicitly implements the same interface.
4696
4697         This also removes a source of vtable bubbles found in #532409. An abstract type
4698         isn't required to provide abstract methods to all interfaces it implements, which
4699         resulted in a bubble with the previous scheme as the child would get a non-full
4700         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4701         should be fixed.
4702
4703         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4704         it's expected to not cause any significant increase beyond that.
4705
4706         * class.c (setup_interface_offsets): Compute super class iface offsets
4707         first to force sharing.
4708
4709         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4710         dumping only the relevant ones.
4711
4712         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4713         methods a new slot regardless if they belong to an interface or not. This allows
4714         an inherited type to override the iface method separately from the class one.
4715
4716 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4717
4718         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4719         applications that take less than 2s to execute.
4720         Bug #524984 fixed.
4721
4722 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4723
4724         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4725
4726         * object.c (mono_get_runtime_callbacks): New helper function to return
4727         the runtime callbacks.
4728
4729         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4730         mono_get_runtime_build_info () as the display name.
4731         
4732 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4733
4734         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4735         argument, since NEWARR expects a native int. Fixes #481559.
4736
4737 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4738
4739         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4740         against broken SRE methods.
4741
4742 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4743
4744         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4745         a NULL variable. Abort early on failure.
4746
4747 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4748
4749         * class.c (can_access_type): Fail visibility test for non nested
4750         types with nested visibility.
4751
4752 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4753
4754         * assembly.c (parse_public_key): Avoid allocating (and not 
4755         freeing) the public key array when it's not requested by the 
4756         caller.
4757         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4758         ves_icall_System_Threading_Thread_Thread_internal): Free 
4759         allocated memory on error.
4760
4761 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4762
4763         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4764
4765 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4766
4767         * class.c (mono_class_setup_fields): Remove duplicated local variable
4768         named gklass.
4769         Rename gklass to gtd to reflect the fact that it points to the generic
4770         type definition.
4771         Remove the duplicated call to mono_class_setup_fields on gtd and move
4772         the error check to the beginning.
4773
4774 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4775
4776         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4777         Remove cruft of the previous patch.
4778
4779 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4780
4781         * metadata-verify.c (verify_method_table): Check for abstract + final.
4782         Fixes #534175.
4783
4784 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4785
4786         * verify.c (verify_class_fields): Check for duplicate fields.
4787
4788 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4789
4790         * metadata-verify.c: Verify the typeref table for duplicates.
4791
4792 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4793
4794         This reverts r140936 and properly handles interfaces with static methods. The
4795         right fix is to ensure vtables without bubles which is an easier to verify
4796         constraint. We should avoid such special cases as of the reverted patch as those
4797         only make the runtime more brittle.
4798
4799         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4800         static methods on interfaces.
4801
4802         * class.c (setup_interface_offsets): Use the number of virtual methods when
4803         calculating interface offsets instead of the number of methods. This way we
4804         avoid bubles on the layout.
4805
4806 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4807
4808         * metadata-verify.c (verify_metadata_header): Some very smart
4809         obfuscators like to add extra stream headers. Ignore them.
4810
4811 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4812
4813         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4814         methods correctly.
4815
4816 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4817
4818         * metadata-verify.c: Verify for duplicated types.
4819
4820 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4821
4822         * metadata-verify.c (verify_typedef_table): Verify for nested types
4823         without an entry on the nested class table.
4824
4825 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4826
4827         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4828         <tom_hindle@sil.org>. Add locking around hash table accesses.
4829
4830 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4831
4832         * verify.c (mono_verifier_verify_class): Verify all interface if
4833         really are interfaces. Fixes #534184.
4834
4835 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4836
4837         * pedump.c: Initialize all types during metadata validation so we report
4838         errors only detected as part of class initialization.
4839
4840 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4841
4842         * metadata-verify.c (verify_method_table): PInvoke requires method to
4843         be static. Fixes #534189
4844
4845 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4846
4847         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4848         being NULL.
4849
4850 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4851
4852         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4853         for holes or bad methods. Fixes #525314.
4854
4855 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4856
4857         * class.c (setup_interface_offsets): Don't allocate slot
4858         for the same interface multiple times. This creates bubbles
4859         that waster space and make vtable verification harder.
4860
4861         The same interface get a slot multiple times since we need
4862         to get the closure of all implemented interfaces, which means
4863         the same interface is reported multiple times.
4864
4865 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4866
4867         * verify.c (mono_verifier_verify_class): Don't check the fields
4868         of generic instances since the context on which they got expanded
4869         might lead to false positives.
4870
4871         Such thing happens when a generic type is inflated in the context
4872         of a generic method and the inflated type of a field turns into a
4873         generic method argument, which causes the checking code to think
4874         it's an invalid class when it's not.
4875
4876 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4877
4878         * verify.c (mono_type_is_valid_in_context): Verify if type
4879         is NULL and remove duplicate test.
4880
4881 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4882
4883         * verify.c (mono_verifier_verify_class): Check fields for
4884         invalid generic arguments.
4885
4886 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4887
4888         * class.c (verify_class_overrides): Verify if for static
4889         and non virtual methods.
4890
4891 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4892
4893         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4894         Check for errors after retrieving the vtable.
4895
4896 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4897
4898         * class.c (mono_class_setup_vtable_general): Verify
4899         if method overrides are valid before processing them.
4900
4901 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4902
4903         * marshal.c (mono_array_to_lparray): Fix minimal build with
4904         cominterop disabled.
4905
4906         * marshal.c (mono_free_lparray): Same.
4907
4908 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4909
4910         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4911         the hash function for the ares_htable.
4912
4913 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4914
4915         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4916         bit for assembly flags. MS is ok with it but there is no spec anywhere
4917         on its mean
4918
4919 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4920
4921         * class.c (mono_class_create_from_typedef): Emit profiler events
4922         in all cases.
4923
4924 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4925
4926         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4927         Release memory on failure.
4928
4929 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4930
4931         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4932         to the internal API.
4933
4934         * metadata.c (get_constraints): Use a single-linked table as we don't
4935         traverse it backward. Fail and return FALSE if only of the contraint types
4936         is not found.
4937
4938         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4939         to mono_metadata_load_generic_param_constraints except for having a return value.
4940         This has to be done since the later is part of the public API.
4941
4942         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4943         and fail the type.
4944
4945         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4946         and fail the method.
4947
4948 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4949
4950         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4951         with MS broken behavior of emmitting EH section sizes without the
4952         header size added.
4953
4954 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4955
4956         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4957         memory until we're sure that we'll need it. This avoids leaking for
4958         broken types or duplicated instantiation.
4959
4960 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4961
4962         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4963         mistake.
4964
4965 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4966
4967         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4968         and expected size calculation.
4969
4970 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4971
4972         * class.c (mono_class_get_field_idx): Add fixme for broken
4973         behavior for types with multiple fields with the same name.
4974         I would rather fix it, but have no idea on how to generate
4975         such artifact for testing.
4976
4977 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4978
4979         * verify.c (verifier_load_field): We should allow references to
4980         fields to be made using the generic type definition. It's up to
4981         the loader system to fail invalid ops.
4982
4983         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4984         are invalid.
4985
4986 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4987
4988         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4989
4990         * metadata-internals.h: Fix declaration of 
4991         mono_metadata_interfaces_from_typedef_full.
4992
4993         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4994         heap_alloc_result parameter that controls if the result should be
4995         g_malloc'd.
4996
4997         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4998         array be g_malloc'd and properly document this public API function.
4999
5000 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
5001
5002         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
5003         remove METHOD_HEADER_TINY_FORMAT1.
5004
5005         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
5006
5007         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
5008
5009         Both spec and MS uses only 2 bits to enumerate the kind of header.
5010         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
5011         is superfluous, only used for tiny headers with odd code lengths.
5012
5013         This change also make sure that mono doesn't wronly interpret bit 2
5014         of fat header flags, which is currently reserved.
5015
5016 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
5017
5018         * metadata.c (do_mono_metadata_parse_type): Do error
5019         checking for element types. Don't abort if presented
5020         with a broken type kind.
5021
5022 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
5023
5024         * metadata.c (mono_metadata_parse_method_signature_full):
5025         Gracefully fail bad vararg signatures.
5026
5027 2009-08-18  Christian Hergert  <chris@dronelabs.com>
5028
5029         * profiler.c:
5030         * class.c: Fix warnings for uninitialized variables.
5031
5032 2009-08-18  Christian Hergert  <chris@dronelabs.com>
5033
5034         * icall.c: Fix _NSGetEnviron method declaration warning.
5035
5036 2009-08-18  Christian Hergert  <chris@dronelabs.com>
5037
5038         * icall.c:
5039         * reflection.c: Make bitwise checks explicit.
5040
5041 2009-08-18  Christian Hergert  <chris@dronelabs.com>
5042
5043         * debug-helpers.c:
5044         * marshal.c: Fix printf warnings.
5045
5046 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
5047
5048         * reflection.c (encode_cattr_value): Fix a warning.
5049
5050 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5051
5052         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
5053         of array bounds.
5054
5055 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5056
5057         * loader.c (mono_method_signature): Don't assert on broken
5058         signature. Print a more useful error message.
5059
5060 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5061
5062         * loader.c (mono_method_get_marshal_info): Assert if
5063         signature is invalid. Bounds check stores to the
5064         mspecs array;
5065
5066 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5067
5068         * loader.c (field_from_memberref): Fix warning.
5069
5070 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5071
5072         * loader.c (mono_method_get_param_names): Check if signature
5073         is null. Don't store beyond the size of the name array.
5074
5075 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5076
5077         * loader.c (mono_get_method_constrained): Check if signature
5078         is null.
5079
5080 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5081
5082         * loader.c (mono_loader_set_error_bad_image): Improve
5083         error messages.
5084
5085 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5086
5087         * loader.c (mono_get_method_full): Convert an assertion
5088         into a loader error.
5089
5090 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
5091
5092         * class-internals.h, class.c: Better naming and documentation.
5093
5094 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
5095
5096         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
5097         obj is NULL.
5098
5099 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
5100
5101         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
5102         parsing fails.
5103
5104 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
5105
5106         * loader.c (mono_loader_error_prepare_exception): Handle missing field
5107         errors with no class set.
5108
5109         * loader.c (field_from_memberref): If the field signature is of the wrong
5110         type fail with a MissingFieldException instead of a BadImageException as
5111         this is the behavior observed on MS. 
5112
5113 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
5114
5115         * loader.c (field_from_memberref): Don't crash if either the field
5116         signature or the typespec class are invalid.
5117
5118 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
5119
5120         * verify.c (verifier_load_field): Don't allow field related
5121         ops to reference fields on generic type definition.
5122
5123 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
5124
5125         * metadata-verify.c: Add new warning level for errors specified
5126         by ECMA 335 but that MS ignores.
5127
5128         * metadata-verify.c (verify_method_table): Make compiler controled
5129         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
5130         this check is safe because the end result will only be some visibility
5131         exceptions been thrown.
5132
5133 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
5134
5135         * verify.c (get_boxable_mono_type): Don't allow the
5136         use of the generic type definition on boxed type positions.
5137
5138         Fixes #531237.
5139
5140 2009-08-14  Mark Probst  <mark.probst@gmail.com>
5141
5142         * threadpool.c: Make sure no cross-domain references remain in
5143         ares_htable or the arrays that are thrown away when resizing.
5144
5145 2009-08-14  Mark Probst  <mark.probst@gmail.com>
5146
5147         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
5148         list of classes for which we have to unregister reflection_info
5149         with the GC and which are not in the namespace cache.
5150
5151         * reflection.c (mono_reflection_initialize_generic_parameter): Add
5152         the class to the list.
5153
5154 2009-08-14  Mark Probst  <mark.probst@gmail.com>
5155
5156         * domain.c (mono_domain_free): Unregister the GC roots in
5157         MonoDomain.
5158
5159 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
5160
5161         * reflection.c (mono_reflection_type_get_handle): Fix typo.
5162
5163 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
5164
5165         * class.c: Add mono_class_get_field_from_name_full which does
5166         the same as mono_class_get_field_from_name but does check field
5167         signature as well.
5168
5169         * class-internals.h: Export mono_class_get_field_from_name_full as
5170         part of the internal API.
5171
5172         * loader.c (field_from_memberref): Search fields by name and signature
5173         as it's valid to have two fields with same name but different types.
5174
5175         Fixes #528055.
5176
5177 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
5178
5179         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
5180
5181         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
5182
5183         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
5184         System.Type.
5185
5186 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
5187
5188         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
5189
5190         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
5191
5192 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5193
5194         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
5195         to sgen-scan-object.h, which can be included and parameterized via
5196         macros.
5197
5198         * Makefile.am: sgen-scan-object.h added.
5199
5200 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5201
5202         * gc.c: #define GC_dont_gc if we're compiling with SGen.
5203
5204 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5205
5206         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
5207         before clearing a domain in the GC.
5208
5209 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5210
5211         * exception.c (mono_exception_from_name_domain): Actually create
5212         the exception in the specified domain.
5213
5214         * appdomain.c (mono_domain_create_appdomain_internal): Create the
5215         OutOfMemoryException a bit later so that the domain is inialized
5216         "enough" that it works.
5217
5218 2009-08-12  Mark Probst  <mark.probst@gmail.com>
5219
5220         * threads.c (thread_cleanup): Clean up the cached_culture_info
5221         array to prevent cross-domain references.
5222
5223 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
5224
5225         * metadata.c: more documentation for MonoType accessors.
5226
5227 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
5228
5229         Fix incorrect size definitions where the tail array isn't a list
5230         of pointers
5231         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
5232         define size.
5233         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
5234         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
5235         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
5236
5237 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5238
5239         * reflection.h:
5240         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
5241
5242 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5243
5244         * metadata.c:
5245         * loader.c:
5246         * metadata-internals.h:
5247         * method-builder.c:
5248         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
5249
5250 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5251
5252         * cominterop.c:
5253         * metadata.c:
5254         * metadata.h:
5255         * loader.c:
5256         * marshal.c:
5257         * reflection.c: #define for sizeof in MonoType and
5258         MonoMethodSignature.
5259
5260 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5261
5262         * domain.c:
5263         * domain-internals.h: add and use #define's instead of sizeof()
5264         for MonoJitInfo and MonoJitInfoTable.
5265
5266 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5267
5268         * object.c:
5269         * class.h: use #define instead of sizeof() for MonoRemoteClass.
5270
5271 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5272
5273         * metadata.c:
5274         * metadata.h:
5275         * object.c:
5276         * class-internals.h:
5277         * generic-sharing.c:
5278         * marshal.c: use a #define instead of sizeof() for a few
5279         structures that use a zero-length array.
5280
5281 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5282
5283         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
5284         to handle inflated generic methods.
5285
5286         * appdomain.c: Bump corlib version.
5287
5288         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
5289         instances.
5290
5291         * reflection.c (fixup_method): Same
5292
5293         * reflection.c (resolve_object): Same.
5294
5295         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
5296         g_error and a decent message.
5297
5298 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
5299
5300         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
5301         from the object because it could not yet be available globally
5302         (it happens if the profiler tries to create a gchandle on the
5303         MonoThread object of a thread that is still registering itself
5304         with the runtime).
5305
5306 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
5307
5308         * reflection.c (mono_generic_class_get_object): Initialized the
5309         managed type arguments array.
5310
5311         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
5312
5313         * appdomain.c: Bump corlib version.
5314
5315 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
5316
5317         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
5318         #527902.
5319
5320 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
5321
5322         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5323         Avoid a crash if synch_cs is not set.
5324         
5325         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
5326         Handle the case when the handle is 0.
5327
5328         * appdomain.c: Bump corlib version.
5329
5330 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
5331
5332         * reflection.c (mono_type_get_object): Fix a warning.
5333
5334 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5335
5336         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
5337         descriptor here.  We assume it's already been computed.
5338
5339         * generic-sharing.c (instantiate_other_info): Compute the GC
5340         descriptor for info type MONO_RGCTX_INFO_KLASS.
5341
5342 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5343
5344         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
5345         type, so don't use MONO_OBJECT_SETREF to set a field.
5346
5347 2009-08-01  Mark Probst  <mark.probst@gmail.com>
5348
5349         * gc.c: We were missing one case where invoking a finalizer would
5350         not reset the domain.  Also, in the finalizer thread loop, assert
5351         that we're in the root domain.
5352
5353 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5354
5355         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
5356         if the type is not an array.
5357
5358 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5359
5360         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
5361         method bound to the declaring type of the method. Raise an exception
5362         if the type is not a generic param.
5363
5364 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
5365
5366         * class.c (print_unimplemented_interface_method_info): Print the
5367         full type name.
5368
5369         * class.c (mono_class_setup_vtable_general): When dealing with a
5370         generic instance first check if the generic type definition is
5371         not broken.
5372
5373 2009-02-11 Tom Hindke <tom_hindle@sil.org>
5374
5375         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
5376
5377         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
5378
5379         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
5380
5381         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
5382
5383         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
5384
5385         Code is contributed under MIT/X11 license
5386
5387 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
5388
5389         * verify.c: Fix naming of stelem and ldelem.
5390
5391 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5392
5393         * generic-sharing.c: Replace the templates lock with the loader
5394         lock because of very hard to resolve deadlock issues.
5395
5396 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
5397
5398         * icall.c (ves_icall_Type_GetMethodsByName): Use 
5399         mono_class_get_vtable_size () instead of accessing klass->vtable_size
5400         directly. Fixes #525338.
5401
5402         * class.c (mono_class_get_vtable_size): New helper function.
5403
5404         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
5405         the field belongs to the type. Fixes #525733.
5406
5407 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5408
5409         * sgen-gc.c: When we stop a thread and its stack top is not within
5410         its allocated stack (because it's in an altstack signal handler),
5411         restart it and stop it again, until it is.
5412
5413 2009-07-30  Mark Probst  <mark.probst@gmail.com>
5414
5415         * sgen-gc.c: Take a thread's stack top and registers from the
5416         sigcontext in the suspend signal handler.
5417
5418         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
5419         stuff to sgen-archdep.h.
5420
5421         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
5422         caller, because have code in sgen-archdep.h to acquire that data.
5423
5424 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
5425
5426         * profiler.c, profiler.h, profiler-private.h:
5427         Added support for keeping track of code chunks and buffers.
5428
5429 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
5430
5431         * metadata-verify.c: Fix endianness problems on decoding functions.
5432         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
5433
5434 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5435
5436         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
5437         schema for vectors and one dimension SZARRAY.
5438
5439 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
5440
5441         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
5442         schema for vectors and one dimension SZARRAY.
5443
5444 2009-07-27  Mark Probst  <mark.probst@gmail.com>
5445
5446         * icall-def.h, thread-types.h, threads.c: New separate icalls for
5447         Interlocked.(Compare)Exchange with object arguments, which invoke
5448         write barriers.
5449
5450 2009-07-26  Miguel de Icaza  <miguel@novell.com>
5451
5452         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
5453         passed invalid arguments.   Fixes another crasher in the
5454         Silverlight test suite.
5455
5456         * class.c (mono_class_array_element_size): Return 0 for the size
5457         of the class;  This fixes the crasher exposed by :
5458
5459         typeof (void).MakeArrayType ();
5460
5461         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
5462         if there is no method to dereference.    Put all the code that
5463         depends on this inside the if (method) block.
5464
5465         This fixes the crasher exposed by Microsoft's Silvelright CLR test
5466         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
5467
5468         With this change, we pass the test.
5469         
5470         * reflection.c (mono_reflection_sighelper_get_signature_local):
5471         Only dereference the assembly if it has been set.    Fixes a
5472         crasher exposed by #525328
5473
5474 2009-07-25  Mark Probst  <mark.probst@gmail.com>
5475
5476         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
5477         don't perform the store in mono_gc_wbarrier_generic_nostore().
5478         Remove the second argument (value), which is not needed.
5479
5480 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
5481
5482         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
5483         the build.
5484
5485         * boehm-gc.c: Ditto.
5486         
5487 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5488
5489         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
5490         not perform the store itself.  Introduce
5491         mono_gc_wbarrier_generic_nostore(), which is the same as
5492         mono_gc_wbarrier_generic_store(), except it doesn't perform the
5493         store.
5494
5495 2009-07-24  Mark Probst  <mark.probst@gmail.com>
5496
5497         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
5498         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
5499         we still need the memcpy().
5500
5501 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5502
5503         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
5504         so that big arrays are handled correctly.  Always use
5505         safe_object_get_size() to calculate array object sizes, which
5506         takes bounds into account.
5507
5508 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5509
5510         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
5511         GC descriptor is computed before we use it.
5512
5513 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5514
5515         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
5516         write barrier if necessary.
5517
5518 2009-07-22  Mark Probst  <mark.probst@gmail.com>
5519
5520         * icall-def.h, icall.c, thread-types.h: New separate icall for
5521         VolatileWrite(object&,object) that uses a write barrier.
5522
5523         * console-unix.c, file-io.c, icall.c, threads.c: Use write
5524         barriers in icalls which write to "ref" or "out" arguments.
5525
5526 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
5527
5528         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
5529         handler in a separate icall, to reduce the size of the wrappers.
5530
5531 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5532
5533         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
5534
5535 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5536
5537         * metadata-verify.c (parse_field): Allow byref field.
5538
5539         * metadata-verify.c (parse_locals_signature): Allow byref locals.
5540
5541         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
5542
5543 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5544
5545         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
5546         Fixes #522784.
5547
5548 2009-07-20  Robert Jordan  <robertj@gmx.net>
5549
5550         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
5551         Fix invalid IL in valuetype handling (STOBJ must push the
5552         corresponding class). Fixes bug #523149.
5553
5554         Code is contributed under MIT/X11 license.
5555
5556 2009-07-20  Geoff Norton  <gnorton@novell.com>
5557
5558         * gc.c: Use proper semaphores where available on posix and darwin.
5559
5560 2009-07-19  Geoff Norton  <gnorton@novell.com>
5561
5562         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
5563
5564 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
5565
5566         * refletion.c (is_sre_usertype): Change name to is_usertype and
5567         invert it's result so it returns true if the type is an user type
5568         and not the opposite.
5569
5570         * reflection.c (is_*_type): Change all of those to use new macro
5571         check_corlib_type_cached that cached the type lookup so we don't
5572         need to do string comparisons all the type. Changed the signature
5573         to take a MonoClass instead.
5574
5575         * reflection.c: Change mono_image_create_token and resolve_object
5576         to use is_sre_* functions.
5577
5578 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5579
5580         * sgen-gc.c: Check for writes to the stack in the managed
5581         wbarrier as well.
5582
5583 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5584
5585         * sgen-gc.c: When a thread is unregistered, don't free its remsets
5586         but put them on a list which is processed with the other thread's
5587         remsets.
5588
5589 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5590
5591         * sgen-gc.c: Fix and enable the internal allocator instead of
5592         using malloc/free (which causes deadlocks).
5593
5594 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5595
5596         * refletion.c: Fix builds with SRE disabled by adding a minimal
5597         implementation of mono_reflection_type_get_handle.
5598
5599 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5600
5601         * refletion.c: Make mono_reflection_type_get_handle non static.
5602
5603         * object-internals.h: Export mono_reflection_type_get_handle.
5604
5605         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5606         unmanaged handle using mono_reflection_type_get_handle.
5607
5608 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5609
5610         * refletion.c: Replace all reads of MonoReflectionType::type with
5611         calls to mono_reflection_type_get_handle. Only the functions that
5612         deal with constructing TypeBuilder::type have not been changed
5613         because they have to deal with NULL values.
5614
5615         This is a first step into supporting reflection types that don't
5616         map directly into their unmanaged counterpart.
5617
5618 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5619
5620         * metadata-verify.c (parse_locals_signature): Don't complain
5621         on signature with zero locals since MS generates it and doesn't
5622         bother with.
5623
5624 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5625
5626         * reflection.c (mono_image_get_array_token): Resolve return
5627         type using mono_reflection_type_get_handle.
5628
5629         * reflection.c (mono_image_get_array_token): Resolve array method
5630         parent type using mono_reflection_type_get_handle.
5631
5632 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5633
5634         * reflection.c (mono_image_basic_init): Applied patch from
5635         <Dax@daxxfiles.net>. Set the public key token from the assembly
5636         builder. Fixes #518909.
5637
5638         * appdomain.c: Bump corlib version.
5639
5640 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5641
5642         * class.c (mono_class_needs_cctor_run): Make this return false if
5643         the class has no cctor.
5644
5645 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5646
5647         * sgen-gc.c: When the minor GC needs to allocate a new section,
5648         invoke the major GC afterwards.
5649
5650 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5651
5652         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5653           Applying the window_style field to the SHELLEXECUTEINFO struct.
5654
5655         Code is contributed under MIT/X11 license.
5656
5657 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5658
5659         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5660         locking earlier.  Fix it in the managed allocator by making sure
5661         that no thread is stopped there before the GC runs.  If we do stop
5662         a thread there, we restart it and let it run a but, until it stops
5663         somewhere else.
5664
5665         * gc-internal.h, gc.c: Function for getting the IP from a signal
5666         context via a function registered by mini.
5667
5668 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5669
5670         * object-internals.h (MonoIntPtr): New structure describing a boxed
5671         IntPtr.
5672
5673         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5674         returns. Fixes #519953.
5675
5676         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5677
5678 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5679
5680         * class-internals.h, generic-sharing.c: New RGCTX info type for
5681         getting a remoting invoke with check wrapper.
5682
5683 2009-07-07  Geoff Norton  <gnorton@novell.com>
5684
5685         * icall-def.h: Fix the enable-minimal build.
5686
5687 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5688
5689         * object-internals.h: Add MonoReflectionDerivedType.
5690
5691         * reflection.c: Implement support for PointerType.
5692         Fixed tons of warnings.
5693
5694 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5695
5696         * object-internals.h: Add MonoReflectionByRefType.
5697
5698         * reflection.c: Implement support for ByRefType.
5699
5700 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5701
5702         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5703
5704         * object-internals.h: Add MonoReflectionArrayType and
5705         mono_reflection_create_unmanaged_type.
5706
5707         * reflection.c: Implement support for ArrayType.
5708
5709 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5710
5711         * metadata-verify.c (is_valid_method_header): Parse EH block
5712         flags correctly.
5713
5714 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5715
5716         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5717         processing the disappearing links, and process disappearing links
5718         in a loop until no new objects are copied.
5719
5720 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5721
5722         * object.c (handle_enum): Invoke the write barrier when copying
5723         value type instances.
5724
5725         * sgen-gc.c: Register remsets for unmanaged write barriers only
5726         when the address written to is actually on the heap.  This makes
5727         set_value() in object.c work without requiring that the result be
5728         on the heap.
5729
5730 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5731
5732         The runtime wrappers are all bound to a given type that must
5733         exist in the same image. For regular images we use the <Module>
5734         type, which is required to exist for all images.
5735
5736         The <Module> type can't be used for dynamic images because it
5737         might not exist at the time the wrapper is required, so we create
5738         a synthetic type to use instead.
5739
5740         The current code works because of the 2 stage setup of MonoClass,
5741         but once this is gone it will no longer work.
5742
5743         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5744
5745         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5746
5747         * object-internals.h: Export mono_image_set_wrappers_type icall
5748         as part of the internal API.
5749
5750         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5751         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5752
5753         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5754         image wrappers_type to the provided value.
5755
5756 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5757
5758         * appdomain.c (deregister_reflection_info_roots): No need
5759         to use the image lock here.
5760
5761 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5762
5763         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5764
5765 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5766
5767         * threads.c: Store the thread start argument in a hash table instead of
5768         registering it as a root, as libgc doesn't support unregistering roots
5769         under windows, leading to 'too many root sets' errors when many threads
5770         are created.
5771
5772         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5773         shutdown, they can still be referenced by the other dying objects.
5774         Fixes #514506.
5775
5776 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5777
5778         * socket-io.c: DontLinger does not allow LingerOptions.
5779
5780 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5781
5782         * metadata-verify.c: The spec doesn't mention that it's possible to add
5783         custom attribute to a generic parameter. Fixed.
5784
5785 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5786
5787         * class.c (inflate_generic_type): Don't crash while trying to output a message
5788         on why we're aborting.
5789
5790 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5791
5792         * socket-io.c: DontLinger can take an int or a boolean too.
5793
5794 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5795
5796         * gc.c: check for a null argument to SuppressFinalize () and
5797         ReRegisterForFinalize ().
5798
5799 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5800
5801         * loader.c (method_from_methodspec): Call into the verifier to check
5802         the signature.
5803
5804         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5805
5806         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5807         part of the internal API.
5808
5809 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5810
5811         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5812         the signature.
5813
5814         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5815
5816         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5817         part of the internal API.
5818
5819 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5820
5821         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5822         the signature.
5823
5824         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5825         blob verification.
5826
5827         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5828         part of the internal API.
5829
5830 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5831
5832         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5833         when doing basic verification. 
5834
5835         This check must be done since the runtime peeks into signatures in much
5836         more places than it does decoding so it makes sense to ensure that all
5837         pointers to blob objects are well formed.
5838
5839 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5840
5841         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5842         Use proper overflow dectection. Fix usage of it.
5843
5844 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5845
5846         * loader.c (field_from_memberref): Call into the verifier to check
5847         the signature.
5848
5849         * loader.c (mono_method_get_signature_full): Same.
5850
5851         * loader.c (method_from_memberref): Same.
5852
5853         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5854
5855         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5856         part of the internal API.
5857
5858 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5859
5860         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5861         or unloaded, still return an AsyncResult, but don't add it to the
5862         threadpool.
5863
5864 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5865
5866         * threads.c: fix missing colon when DEBUG is defined.
5867
5868 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5869
5870         * threadpool.c: Don't add new calls to a threadpool if the domain
5871         of the call is unloading or unloaded.  When dequeuing a job, null
5872         the reference in the queue.
5873
5874 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5875
5876         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5877         generation if an object was moved.
5878
5879 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5880
5881         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5882           parameters of type SAFEARRAY[VARIANT].
5883
5884         * reflection.c (encode_marshal_blob): Properly generate element type
5885           (SafeArraySubType marshal attribute option).
5886
5887         Code is contributed under MIT/X11 license.
5888
5889 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5890
5891         * reflection.c: in mono_method_clear_object () really ensure all the
5892         objects are removed.
5893
5894 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5895
5896         * loader.c (mono_method_signature): Call into the verifier to check
5897         the method signature.
5898
5899         * metadata-verify.c (verify_method_table): Move signature verification
5900         to verify_method_table_full.
5901
5902         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5903
5904         * verify-internals.h: Export mono_verifier_verify_method_signature as
5905         part of the internal API.
5906
5907 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5908
5909         * loader.c (mono_method_get_header): Call into the verifier to
5910         check the method header.
5911
5912         * metadata-verify.c: Add mono_verifier_verify_method_header.
5913
5914         * verify-internals.h: Export mono_verifier_verify_method_header as
5915         part of the internal API.
5916
5917 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5918
5919         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5920         check the field signature. Replace an assert with an explicit check.
5921
5922         * class.c (mono_class_setup_fields): Call into the verifier to check
5923         the field signature.
5924
5925         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5926
5927         * verify-internals.h: Export mono_verifier_verify_field_signature as
5928         part of the internal API.
5929
5930 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5931
5932         * class.c (mono_class_find_enum_basetype): Simplify this function
5933         by moving code outside of the loop and not decoding static fields.
5934
5935 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5936
5937         * metadata-verify.c (verify_typedef_table): Check the extends
5938         token here. Move to here a flags check from verify_typedef_table_full.
5939
5940 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5941
5942         * metadata-verify.c (is_valid_method_header): Fix a warning.
5943
5944         * metadata-internals.h (MonoImage): Remove the unused 
5945         static_rgctx_invoke_wrapper_cache.
5946
5947         * image.c marshal.c: Ditto.
5948
5949 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5950
5951         * image.c (do_mono_image_load): Enable table data verification.
5952
5953 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5954
5955         * metadata-verify.c (is_valid_constant): Fix nullref check.
5956
5957 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5958
5959         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5960
5961 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5962
5963         * sgen-gc.c: Managed allocation with pthreads TLS.
5964
5965         * threads.c, threads-types.h: Functions for the JIT to tell the
5966         runtime whether it supports the MONO_TLS opcode.
5967
5968 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5969
5970         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5971         without methods.
5972
5973 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5974
5975         * metadata-verify.c (is_valid_constant): Fix the string length check.
5976         Use safe overflow checking. Add decent error messages.
5977
5978 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5979
5980         * metadata-verify.c: Move remaininh blob checks to the offline
5981         verification path.
5982
5983 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5984
5985         * metadata-verify.c: Move more blob checks to the offline verification
5986         path.
5987
5988 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5989
5990         * object-internals.h : Adding interrupt_on_stop field.
5991
5992         * threads.c (mono_thread_request_interruption) : On Windows exit the
5993           thread if interrupt_on_stop is set.
5994
5995         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5996          Removing old interrupt logic and setting the interrupt_on_stop for the
5997          thread when calling accept.
5998
5999         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
6000          setting the interrupt_on_stop for the thread when calling accept.
6001
6002         Contributed under MIT/X11 license.
6003
6004 2009-06-20  Martin Baulig  <martin@ximian.com>
6005
6006         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
6007
6008 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
6009
6010         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
6011         running in no-exec mode.
6012
6013 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6014
6015         * metadata-verify.c (verify_method_table): Move header
6016         checking to verify_method_table_full.
6017
6018         * metata-verify.c (mono_verifier_verify_full_table_data):
6019         Call verify_method_table_full.
6020
6021 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6022
6023         * metadata-verify.c (verify_field_table): Move signature
6024         checking to verify_field_table_full.
6025
6026         * metata-verify.c (mono_verifier_verify_full_table_data):
6027         Call verify_field_table_full.
6028
6029 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6030
6031         * metadata-verify.c (verify_typedef_table): Move remaining
6032         stuff to verify_typedef_table_full.
6033
6034 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6035
6036         * metadata-verify.c: Kill is_corlib from VerifyContext.
6037         It is only used by the offline mode.
6038         So we better remove it from the runtime path.
6039
6040 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6041
6042         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
6043         function that perform the offline metadata verification steps.
6044
6045         * metadata-verify.c (verify_typedef_table): Move some checks to
6046         verify_typedef_table_full and make it been called by new function
6047         mono_verifier_verify_full_table_data.
6048
6049         * pedump.c: Call mono_verifier_verify_full_table_data.
6050
6051         * verify-internals.h: Export mono_verifier_verify_full_table_data as
6052         part of the internal API.
6053
6054 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6055
6056         * metadata-verify.c (typedef_is_system_object): Fix System.Object
6057         check.
6058
6059         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
6060         flags bits. SupportLastError was confused as bit 7 instead of 6.
6061
6062         * metadata-verify.c (verify_implmap_table): Fix import scope verification
6063         to check against the module ref table instead of module.
6064
6065         * metadata-verify.c (verify_implmap_table): Fix corlib check.
6066
6067         * pedump.c: Call mono_image_load_names.
6068
6069 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
6070
6071         * image.c: Extract mono_image_load_names from do_mono_image_load.
6072
6073         * metadata-internals.h: Export mono_image_load_names as part of
6074         the internal API.
6075         
6076 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
6077
6078         * metadata.c (mono_metadata_cleanup): Free the generic method cache
6079         first, as it could reference data in the other caches.
6080
6081 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
6082
6083         * metadata-verify.c: Finished with method header verification.
6084
6085 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
6086
6087         * metadata-verify.c: Added more header verification code.
6088         Now only EH clauses are missing.
6089
6090 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
6091
6092         * marshal.c (get_runtime_invoke_type): Don't share primitive types
6093         for return values.
6094
6095 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
6096
6097         * metadata-verify.c: Initial method header verification.
6098
6099 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
6100
6101         * metadata-verify.c (verify_import_table): The IAT contents
6102         might end been patched by the windows DL when running with
6103         coree enabled.
6104
6105 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
6106
6107         * class.c (mono_class_from_typeref): If the enclosing type is not
6108         found return null instead of crashing. Fixes #508487.
6109
6110 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
6111
6112         * normalization-tables.h : updated to the latest unicode charcter
6113           data.
6114         * appdomain.c : bump corlib version.
6115
6116 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
6117
6118         * class.c (mono_class_from_name): Fix support for assembly references
6119         in the EXPORTEDTYPE table. Fixes #511704.
6120
6121 2009-06-13  Geoff Norton  <gnorton@novell.com>
6122
6123         * domain.c: Ensure that mono_domain_assembly_open actually opens the
6124         assembly in the target domain.
6125
6126 2009-06-12  Robert Jordan  <robertj@gmx.net>
6127
6128         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
6129         because "this" of the managed signature has become an
6130         ordinary parameter in the unmanaged signature.
6131
6132 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
6133
6134         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
6135         field for owner-less generic containers.
6136
6137         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
6138         image field of the owner-less generic containers created here.
6139
6140         * metadata.c (mono_metadata_load_generic_params): Ditto, the
6141         contain is ownerless until the caller sets its owner.
6142
6143         * metadata.c (type_in_image): Handle owner-less generic containers
6144         correctly.
6145         
6146 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
6147
6148         * image.c (mono_image_close): Support debug_assembly_unload for
6149         dynamic images too.
6150
6151 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
6152
6153         * class.c: Fix some typos in comments.
6154
6155 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
6156
6157         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
6158
6159         * threads.c (mono_thread_execute_interruption): Avoid creating the
6160         abort exception object while holding the synch_cs lock.
6161
6162 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
6163
6164         * metadata-verify.c: Verify basic cattr content.
6165
6166 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
6167
6168         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
6169         nested types.
6170         
6171         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
6172         support for nested types. Fixes #511704.
6173
6174 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
6175
6176         * metadata-verify.c: Verify methodspec signatures.
6177
6178 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
6179
6180         * metadata-verify.c: Verify typespec signatures.
6181
6182 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
6183
6184         * metadata.c (free_inflated_method): Call 
6185         mono_marshal_free_inflated_wrappers (), which was missed earlier.
6186
6187 2009-06-08  Miguel de Icaza  <miguel@novell.com>
6188
6189         * mono-config.c: Small change to report the PPC64/ILP32 model.
6190
6191 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6192
6193         * metadata-verify.c (parse_type): Check szarray.
6194
6195 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6196
6197         * metadata-verify.c (parse_type): Check fnptr.
6198
6199 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6200
6201         * metadata-verify.c (parse_type): Check generic instances.
6202
6203 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
6204
6205         * metadata-verify.c (parse_type): Check array shape.
6206
6207 2009-06-05  Robert Jordan  <robertj@gmx.net>
6208
6209         * class.c (mono_class_create_from_typedef): Check only for
6210         mscorlib's System.Array.
6211
6212 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6213
6214         * metadata-verify.c (parse_type): Check pointer, class/valuetype
6215         and generic params. 
6216
6217         * metadata-verify.c (parse_field): Check the signature.
6218
6219 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
6220
6221         * metadata-verify.c: Implement locals signature check.
6222
6223 2009-06-04  Marek Safar  <marek.safar@gmail.com>
6224
6225         * domain.c: Add .NET 4.0 Beta 1 version.
6226
6227 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
6228
6229         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
6230           For QueryInterface on CCWs consider the base class
6231           interfaces as well.
6232
6233         Code is contributed under MIT/X11 license.
6234
6235 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6236
6237         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
6238
6239         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
6240         used.
6241
6242         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6243         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
6244
6245         * generic-sharing.c (inflate_other_data): Ditto.
6246         
6247 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
6248
6249         * metadata-verify.c: Implement property signature check.
6250
6251 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6252
6253         * sgen-gc.h: Register saving support for PPC.
6254
6255 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6256
6257         * sgen-gc.c: Fixed a pthread TLS screwup.
6258
6259 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6260
6261         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
6262         supported.
6263
6264 2009-06-04  Mark Probst  <mark.probst@gmail.com>
6265
6266         * sgen-gc.c: Disable TLA and managed allocation if the __thread
6267         keyword is not supported.
6268
6269 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
6270
6271         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
6272         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
6273         the inflated method is freed. Fixes #508389.
6274
6275         The code is contributed under the MIT/X11 license.
6276         
6277 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
6278
6279         * marshal.c (get_wrapper_target_class): New helper function.
6280         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
6281         the <Module> class of the image. Fixes #509049.
6282
6283 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6284
6285         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
6286         Check if the thread was interrupted and proccess it straight away.
6287         Makes abortion much more responsive.
6288
6289 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6290
6291         * threads.c (mono_thread_execute_interruption): Use atomic cas with
6292         MonoThread::interruption_requested to match it's counterpart.
6293
6294         Fixes a hang in abort-stress-1 on a 2 core x86.
6295
6296         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
6297         Fix warning.
6298
6299 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6300
6301         Change MonoImage::name_cache to be protected by the image lock
6302         instead of the loader lock.
6303
6304         * appdomain.c (deregister_reflection_info_roots): Protect access
6305         to name_cache.
6306
6307         * class.c (mono_image_init_name_cache): Change from the loader lock
6308         to the image lock. Check if the cache wasn't already created.
6309
6310         * class.c: Change from the loader to the image lock.
6311
6312         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
6313         the code to hold the image lock while iterating over name_cache and
6314         not go into mono_array_new holding it.
6315
6316         * metadata-internals.h: Add a comment about this change.
6317
6318 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6319
6320         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
6321         Under the 2.0 profile raise the loader error.
6322
6323         Fixes #508532.
6324
6325 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
6326
6327         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
6328         of ldind opcode for generic instances so we don't fail for direct wrappers.
6329         This only affect direct calls.
6330
6331 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
6332
6333         * reflection.c (create_dynamic_mono_image): Fix warnings.
6334
6335         * generic-sharing.c (other_info_equal): Ditto.
6336         
6337 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6338
6339         * metadata-verify.c: Implement field signature check.
6340
6341 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
6342
6343         * metadata-verify.c: Implement standalone signature check.
6344
6345 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
6346
6347         * metadata-verify.c: Implement methodref signature check.
6348
6349 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
6350
6351         * object-internals.h (MonoRuntimeCallbacks): New structure containing
6352         callbacks supplied by the runtime.
6353
6354         * object.c (mono_install_callbacks): New internal function to install
6355         the callbacks.
6356
6357         * object.c (mono_create_ftnptr): Move the implementation of this to
6358         mini/.
6359
6360         * object.c (mono_get_addr_from_ftnptr): Ditto.  
6361
6362 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6363
6364         * metadata-verify.c (parse_return_type): Proper byref check.
6365         * metadata-verify.c (is_valid_method_signature): Check for zero arity
6366         generic signatures and method params.
6367
6368 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
6369
6370         * metadata-verify.c (decode_signature_header): Fix bounds check.
6371
6372         * metadata-verify.c (parse_custom_mods): Check custom mods.
6373
6374         * metadata-verify.c (parse_type): Do initial basic verification
6375         of valid values.
6376         
6377         * metadata-verify.c (is_valid_method_signature): Parse the generic
6378         param count.
6379
6380 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
6381
6382         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
6383         discarded based on their most specific definition so we set the method_slots
6384         array before checking if the method is acceptable or not.
6385
6386         Fixes #506757.
6387
6388 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6389
6390         * icall.c: Free the old array when resizing a mono_ptr_array.
6391
6392 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6393
6394         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
6395         for the hashes whose keys are managed objects.
6396
6397 2009-05-26  Mark Probst  <mark.probst@gmail.com>
6398
6399         * object-internals.h, threads.c: Set the execution context on
6400         thread start here, not in corlib.
6401
6402         * appdomain.c: Bump corlib version.
6403
6404 2009-05-27  Martin Baulig  <martin@ximian.com>
6405
6406         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
6407         if `_mono_debug_using_mono_debugger' is set to make things work
6408         properly when embedding Mono.
6409
6410 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6411
6412         * class.c (mono_class_setup_fields): Don't mark simd types as having
6413         16 bytes alignment as the whole runtime doesn't support.
6414
6415 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
6416
6417         * metadata-verify.c (safe_read): Use endian safe read macros.
6418
6419 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
6420
6421         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
6422         it is read-only when using full aot.
6423
6424 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6425
6426         * metadata-verify.c (is_valid_method_signature): Verify parts
6427         of the return type. Provide an error message in case of failure.
6428
6429 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6430
6431         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
6432
6433 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
6434
6435         * metadata-verify.c: Include the size prefix in the bounds check.
6436
6437 2009-05-22  Miguel de Icaza  <miguel@novell.com>
6438
6439         * icall.c: Remove warnings.
6440
6441         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
6442         prevent auto-detection based on GCC defines.
6443
6444         Add PS3
6445
6446         * metadata-verify.c: Do not include signal.h
6447
6448         * generic-sharing.c, marshal.c: Add returns to avoid some warning
6449         messages.  Not sure why the g_assert_not_reached is not enough to
6450         quiet the compiler.
6451         
6452
6453         * appdomain.c: Remove code that is not used when
6454         DISABLE_SHADOW_COPY is set.
6455
6456         * image.c: use g_getenv
6457
6458 2009-05-21  Miguel de Icaza  <miguel@novell.com>
6459
6460         * reflection.c: Remove code that it not used with
6461         DISABLE_REFLECTION_EMIT is defined.
6462
6463 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
6464
6465         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
6466         invoke wrappers.
6467
6468 2009-05-20  Miguel de Icaza  <miguel@novell.com>
6469
6470         * socket-io.c
6471         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
6472         the ifdef here and instead put that on io-layer
6473
6474 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6475
6476         * metadata-verify.c: Verify the generic param constraint table.
6477
6478 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6479
6480         * metadata-verify.c (verify_generic_param_table): Fix
6481         thinko on the valid flags bits for generic params.
6482
6483 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6484
6485         * metadata-verify.c: Verify the methodspec table.
6486
6487 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
6488
6489         * metadata-verify.c: Verify the generic param table.
6490
6491 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6492
6493         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
6494
6495 2009-05-19  Mark Probst  <mark.probst@gmail.com>
6496
6497         * sgen-gc.c: Use generation enum more consistently and use the
6498         correct generation in mono_gc_register_for_finalization().
6499
6500 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6501
6502         * metadata-verify.c: Verify the nested class table.
6503
6504 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
6505
6506         * metadata-verify.c: Verify the manifest resource table.
6507
6508 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
6509
6510         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
6511
6512 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
6513
6514         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
6515         wrappers, this is now done in the JIT.
6516         
6517         * class.c (mono_set_generic_sharing_supported): New internal function.
6518         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
6519
6520 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6521
6522         * metadata-verify.c: Verify the exported type table.
6523
6524 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6525
6526         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
6527
6528 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6529
6530         * metadata-verify.c: Verify the file table.
6531
6532 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6533
6534         * metadata-verify.c (verify_assembly_table): Fix an error message.
6535
6536         * metadata-verify.c: Verify the assemblyref table.
6537
6538 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6539
6540         * metadata-verify.c (verify_assembly_table): Fix the valid
6541         bits mask for flags.
6542
6543 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
6544
6545         * debug-helpers.c (mono_method_full_name): Print generic parameters of
6546         generic methods as well.
6547
6548 2009-05-15  Geoff Norton  <gnorton@novell.com>
6549
6550         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
6551         use-case and is significantly more performant than the wapi layer.
6552
6553 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6554
6555         * metadata-verify.c: Verify the assembly table.
6556
6557 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6558
6559         * metadata-verify.c: Fix rows limit check.
6560
6561 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6562
6563         * metadata-verify.c: Verify the fieldrva table.
6564
6565 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6566
6567         * sgen.c: Speed up weak links and finalizers by grouping them by
6568         generation.
6569
6570 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6571
6572         * marshal.c (delegate_hash_table_add): When overwriting an entry,
6573         free the old GCHandle (only applies to SGen).
6574
6575 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
6576
6577         * loader.c (mono_get_method_from_token): Avoid the expensive call to
6578         mono_metadata_load_generic_params () for non-generic methods.
6579
6580 2009-05-12  Mark Probst  <mark.probst@gmail.com>
6581
6582         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
6583         New function for returning a monitor's weak link if it has one.
6584
6585         * sgen-gc.c: Remove an object's monitor's weak link (if it has
6586         one) when clearing a domain.  These can still be around because
6587         the object might not have been collected.
6588
6589 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6590
6591         * gc.c: Fix a warning.
6592
6593 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6594
6595         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6596         prevous wait that resulted in a deadlock on Windows when initializing
6597         the runtime form DllMain. Also results in improved startup time.
6598         (finalizer_thread): Get rid of thread_started_event.
6599         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6600         resulting MonoThread.
6601
6602         Contributed under MIT/X11 license.
6603
6604 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6605
6606         * metadata-verify.c: Verify the implmap table.
6607         Don't require that #US and #Strings be present.
6608
6609 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6610
6611         * security-core-clr.c: Delegate checks are done at creation time,
6612         not a invocation time. Fix exception for Telerik Silverlight demo
6613
6614 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6615
6616         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6617         case for the Thread class.
6618
6619         * threads.c: Do clean-up of abort exception/state in
6620         thread_cleanup() instead of Thread.free_internal().  Also clean up
6621         current_appcontext.  The reason we have to do that is because
6622         those references might point into another domain and if that
6623         domain is unloaded before the thread is finalized, they point to
6624         invalid data.
6625
6626 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6627
6628         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6629         stub signatures.
6630         
6631         Contributed unter MIT/X11 license.
6632
6633 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6634
6635         * verify.c, metadata-verifier.c: Add support for disabling the
6636         verifier in some builds.
6637
6638         [ Sorry, my previous commit accidentally commited some work in
6639         progress ]
6640
6641 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6642
6643         * class.c (mono_class_setup_fields): Set class->field.first for
6644         generic instances.
6645
6646 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6647
6648         * metadata-verify.c: Verify the typespec table.
6649
6650 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6651
6652         * metadata-verify.c: Verify the module table.
6653
6654 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6655
6656         * metadata-verify.c: Verify the methodimpl table.
6657
6658 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6659
6660         * metadata-verify.c: Verify the property table.
6661
6662 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6663
6664         * debug-helpers.c (mono_method_desc_match): Add support for generic
6665         glob patterns.
6666
6667 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6668
6669         * metadata-verify.c: Verify the propertymap table.
6670
6671 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6672
6673         * metadata-verify.c: Verify the event table.
6674
6675         * metadata-verify.c (search_sorted_table): Fix offset
6676         calculation.
6677
6678 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6679
6680         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6681
6682 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6683
6684         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6685         because mono_delegate_free_ftnptr() needs it.
6686
6687 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6688
6689         * metadata-verify.c: Verify the eventmap table.
6690
6691 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6692
6693         * metadata-verify.c: Verify the standalonesig table.
6694
6695 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6696
6697         * metadata-verify.c: Verify the field layout table.
6698
6699 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6700
6701         * class.c (mono_type_get_name_recurse): Don't crash
6702         for ownerless generic params.
6703
6704         * debug-helpers.c (mono_type_get_desc): Correct the format
6705         for ownerless generic params.
6706
6707 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6708
6709         * metadata-verify.c: Verify the class layout table.
6710
6711 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6712
6713         * metadata-verify.c: Verify the decl security table.
6714
6715 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6716
6717         * domain.c (mono_domain_set_internal_with_options): Don't do
6718         anything if the old domain is the same as the old one.  Fixes
6719         #499326.
6720
6721 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6722
6723         * appdomain.c: Deregister the reflection_info roots when unloading
6724         a domain.
6725
6726         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6727         memory allocated by a domain and frees its disappearing links.
6728
6729         * boehm-gc.c, null-gc.c: Empty implementation of
6730         mono_gc_clear_domain().
6731
6732 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6733
6734         * appdomain.c (clear_cached_vtable): Free the static fields memory
6735         block.
6736
6737 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6738
6739         * gc.c: Set the correct domain when invoking finalizers.
6740
6741         * appdomain.c: Set the correct domain when creating threads.
6742
6743 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6744
6745         * sgen-gc.c: Fix skip size for vectors.
6746
6747 2009-05-03  Martin Baulig  <martin@ximian.com>
6748
6749         * mono-debug-debugger.c
6750         (mono_debugger_check_breakpoints): Check class init handlers even
6751         if we don't have any method load handers.
6752
6753 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6754
6755         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6756         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6757
6758 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6759
6760         * metadata-verify.c: Verify the field marshal table.
6761
6762 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6763
6764         * metadata-verify.c: Verify the custom attribute table.
6765
6766 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6767
6768         * metadata-verify.c: Verify the constant table.
6769
6770 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6771
6772         * metadata-verify.c: Verify the memberef table.
6773
6774 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6775
6776         * metadata-verify.c (get_coded_index_token): Remove
6777         dead argument.
6778
6779 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6780
6781         * metadata-verify.c: Verify the interfaceimpl table.
6782
6783 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6784
6785         * verify.c: Improve error message.
6786
6787         * debug-helpers.c (mono_type_get_desc): Harden the code that
6788         deals with VAR and MVAR.
6789
6790 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6791
6792         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6793         part of #498692.
6794
6795 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6796
6797         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6798         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6799
6800 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6801
6802         * security-core-clr.c: Avoid redundant checks for platform code, 
6803         e.g. check for method and for class (very common) and check
6804         for class and outer class (less common)...
6805
6806 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6807
6808         * reflection.c: Avoid returning random cattrs for synthetic methods.
6809         Fixes #498545.
6810
6811 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6812
6813         * assembly.c: assemblies in the GAC should never be shadow-copied.
6814
6815 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6816
6817         * domain.c, domain-internals.h: Disable
6818         track_resurrection_{objects,handles}_hash in MonoDomain if using
6819         SGen.
6820
6821 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6822
6823         * metadata-verify.c: Verify the param table.
6824
6825 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6826
6827         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6828         MethodList.
6829
6830         * metadata-verify.c (verify_method_table): Proper check the ParamList
6831         field.
6832
6833 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6834
6835         * metadata-verify.c (verify_method_table): Check for runtime
6836         implemented functions such as delegate .ctors. Remove spurious
6837         printf.
6838         
6839 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6840
6841         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6842
6843 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6844
6845         Don't allocate MonoGenericInfo for ownerless generic params.
6846         * class-internals.h (MonoGenericParam::info): Move field to ...
6847         (MonoGenericParamFull): ... this.  New struct.
6848         (MonoGenericContainer::type_params): Change type to
6849         MonoGenericParamFull.
6850         (MonoGenericParam, MonoGenericContainer): Update accessors.
6851         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6852         'info' field for ownerless generic param.
6853         (mono_metadata_load_generic_params): Update to changes.
6854         * reflection.c (mono_reflection_create_generic_class): Likewise.
6855         (reflection_methodbuilder_to_mono_method): Likewise.
6856         (mono_reflection_initialize_generic_parameter): Likewise.
6857
6858 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6859
6860         Don't use MonoGenericParamInfo for ownerless generic params.
6861         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6862         use ParamInfo class at all.
6863         (mono_class_from_generic_parameter): Use them.
6864         (make_generic_param_class): Fix a couple of instances where 'pinfo
6865         == NULL' wasn't handle.
6866
6867 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6868
6869         * class.c (make_generic_param_class): Carve out of ...
6870         (mono_class_from_generic_parameter): ... here.
6871
6872 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6873
6874         Simplify mono_class_from_generic_parameter
6875         * class-internals.h (MonoGenericParamInfo::token): New field.
6876         * metadata.c (mono_metadata_load_generic_params): Initialize it
6877         from metadata.
6878         * class.c (mono_class_from_generic_parameter): Use it instead of
6879         searching through metadata.
6880
6881 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6882
6883         * metadata-verify.c: Add verification of the method table.
6884
6885 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6886
6887         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6888         Delegate::Invoke optimization.
6889
6890 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6891
6892         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6893         string returned by get_shadow_assembly_location_base.
6894
6895         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6896         about caller's ownership.
6897
6898 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6899
6900         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6901         reflection memory on domain unload.
6902
6903         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6904         reflection cleanup code do it.
6905
6906         * domain-internals.h: Add mono_reflection_cleanup_domain.
6907
6908         This fixes a memory leak for managed mirrors of reflection objects
6909         on domain unload. 
6910
6911 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6912
6913         * metadata-verify.c: Implement more verification of the field table.
6914
6915 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6916
6917         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6918         doesn't try to parse the input assembly, which can be broken.
6919
6920 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6921
6922         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6923         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6924         by using the lowest bit in the link to store whether the link is
6925         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6926
6927 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6928
6929         * Makefile.am: Split the console support in platform specific code
6930         and put together a framework for making this easy in the future so
6931         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6932
6933 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6934
6935         * pedump.c: Fix a warning.
6936
6937 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6938
6939         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6940         mono_class_from_mono_type to avoid bad interactions with the dual representation
6941         of the generic type definition.
6942
6943 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6944
6945         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6946         get the MonoClass for the call context type as it might be a generic
6947         instance.
6948
6949         Fixes #491483.
6950
6951 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6952
6953         * object-internals.h: The Thread object has no execution_context
6954         member anymore.
6955
6956         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6957         the execution context.
6958
6959         * appdomain.c: Bump corlib version.
6960
6961 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6962
6963         * verify.c (do_newobj): Improve error message.
6964
6965 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6966
6967         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6968         is nested in the filter block.
6969
6970         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6971         block is not fully nested.
6972
6973         Fixes #495656.
6974
6975 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6976
6977         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6978         not MonoType to check for equality of valuetypes as the generic type
6979         definition allows for two different encodings: the generic type definition
6980         class or a generic instance over the GTD arguments.
6981
6982         Fixes #496175.
6983
6984 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6985
6986         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6987
6988         * verify.c (do_initobj): Improve error message.
6989
6990 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6991
6992         * metadata-verify.c: Enable pe verification as the issue with #496453
6993         is that the authenticode data directory have a different unspecified
6994         format. Ignore it for now.
6995
6996         * pedump.c: Run the metadata verifier together with the IL verifier.
6997
6998         Fixes ##496453.
6999
7000 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7001
7002         * metadata-verify.c: Temporarily disable pe verification due to #496453.
7003
7004 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
7005
7006         * class.c (can_access_type): Check visibility against
7007         the element type for pointers and arrays.
7008
7009         Fixes #496150.
7010
7011 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
7012
7013         * metadata-verify.c: Fix cli and table verification to use information
7014         from the MonoImage. A lot of duplicated code got killed.
7015
7016 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
7017
7018
7019         This patch starts to integrate the metadata verifier with the runtime code.
7020
7021         This patch causes major regression in functionality for the metadata verifier
7022         as cli and table verification are disabled since they require to be ported to
7023         use MonoImage information.
7024
7025         * image.c (do_mono_image_load): Split the code in this function
7026         into mono_image_load_pe_data and mono_image_load_cli_data.
7027         Add     care_about_pecoff parameter to not load pecoff data.
7028         Call into the metadata verifier for pecoff and cli verification.
7029
7030         * image.c (mono_image_open_raw): New function that doesn't perform
7031         any parsing of the image contents.
7032         
7033         The reason for the 3 new functions is to give pedump better control
7034         into the interaction with the verifier.
7035
7036         * metadata-internals.h: Add new functions from image.c as part of the
7037         internal mono API.
7038
7039         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
7040         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
7041         to make those functions work together with the runtime.
7042
7043         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
7044         true if the image needs to be verified.
7045
7046         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
7047
7048         * pedump.c: Use new metadata verifier API.
7049
7050 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
7051
7052         * object.c (mono_install_vtable_trampoline): Make this receive a
7053         trampoline creation function instead of trampoline, allowing the JIT
7054         to use a different trampoline for each vtable.
7055
7056 2009-04-18  Mark Probst  <mark.probst@gmail.com>
7057
7058         * object.c (mono_raise_exception): Don't reset the thread abort
7059         exception state here.
7060
7061 2009-04-18  Mark Probst  <mark.probst@gmail.com>
7062
7063         * icall-def.h: New icall for getting the thread abort exception
7064         state for a thread.
7065
7066         * object.c, thread.c, object-internals.h: A thread's abort
7067         exception state is now a GC handle.  To get the object it stands
7068         for, we must move it into the current app domain, if it's
7069         different than the one where it originated from.
7070
7071         * appdomain.c: Bump corlib version.
7072
7073         * domain.c, domain-internals.h: New function for setting the
7074         domain and migrate the thread abort exception or not.
7075
7076 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7077
7078         * metadata-verify.c: Add initial verification of the
7079         field table.
7080
7081 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7082
7083         * metadata-verify.c: Add a macro to conditionally enable
7084         dumping of verification information. Add  make_coded_token
7085         and search_sorted_table to enable search sorted tables
7086         by a given coded token.
7087
7088 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7089
7090         * metadata-verify.c: Add array mapping from table index
7091         to description offset. Add get_col_offset and get_col_size
7092         functions.
7093
7094 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7095
7096         * metadata-verify.c: Add remaining table descriptions offsets.
7097         Add remaining coded index descriptions.
7098
7099 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7100
7101         * metadata-verify.c: Fixed constant table description.
7102         Fixed calculation of HasCustomAttribute coded index size.
7103         Fixed calculation of size for many table indexes. 
7104
7105 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7106
7107         * pedump.c (dump_metadata): Dump table offset instead
7108         of useless pointer in memory.
7109
7110 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
7111
7112         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
7113
7114 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
7115
7116         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
7117         a missing of for interface types.
7118
7119 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
7120
7121         * metadata-verify.c (verify_pe_optional_header): Add comment of why
7122         the code is commented.
7123
7124         * metadata-verify.c (verify_resources_table): Remove spurious printf
7125         and don't fail if there are unmanaged resources. Gmcs generates a useless
7126         one     for all assemblies - I bet it's some MS compatibility junk.
7127
7128 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
7129
7130         * metadata-verify.c (verify_typedef_table): Verify the extends field.
7131
7132         * metadata-verify.c (mono_image_verify): Add a is_corlib.
7133
7134         * verify-internals.h: Same.
7135
7136         * pedump.c: Fix for mono_image_verify new signature.
7137
7138 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
7139
7140         * metadata-verify.c (verify_typedef_table): Verify for some invalid
7141         flags combinations.
7142
7143 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
7144
7145         * metadata-verify.c (verify_module_table): Ignore the generation field.
7146
7147 2009-04-15  Martin Baulig  <martin@ximian.com>
7148
7149         * debug-mono-symfile.c
7150         (mono_debug_symfile_lookup_location): Don't print a warning for
7151         unknown extended opcodes if they're within 0x40 and 0x7f.
7152
7153 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
7154
7155         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
7156         invoke signatures returning an enum. Fixes #494847.
7157
7158 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
7159
7160         * metadata-verify.c: Initial code to verify the typedef table.
7161
7162 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
7163
7164         * verify.c (mono_method_verify): Don't fail if an unconditional branch
7165         with non empty stack happens before the beginning of a try block.
7166
7167         Fixes #494812.
7168
7169 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
7170
7171         * metadata-verify.c: Verify typename and typenamespace fields of
7172         the typeref table.
7173
7174 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
7175
7176         * metadata-verify.c: Initial code to verify the typeref table.
7177
7178 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
7179
7180         * verify.c (verify_delegate_compatibility): Fix error message.
7181
7182 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7183
7184         * security-core-clr.c: Fix typo
7185
7186 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
7187
7188         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
7189         a MonoGHashTable to keep its values alive.
7190         (emit_marshal_boolean): Fix a warning.
7191
7192 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7193
7194         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
7195         not have any interface configured for IPv4/IPv6.
7196
7197 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7198
7199         * assembly.c: fix typo in error message.
7200
7201 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
7202
7203         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
7204         allocating the location holding the this argument to prevent
7205         'too many root sets' errors.
7206
7207         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
7208         to mark fields as special static.
7209         (mono_field_static_get_value): Handle special static fields.
7210         (mono_field_static_set_value): Ditto.
7211
7212         * class-internals.h (struct _MonoClassField): Document this.
7213
7214 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7215
7216         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
7217           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
7218           case.  This will handle when managed code returns null to native code.
7219
7220         Code is contributed under MIT/X11 license.
7221
7222 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7223
7224         * object.c (build_imt_slots): Changing a free to a g_free to match
7225           the g_malloc0 in add_imt_builder_entry that allocated this memory.
7226
7227         Code is contributed under MIT/X11 license.
7228
7229 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
7230
7231         * marshal.c (emit_marshal_boolean): Adding code to ensure that
7232           the correct TRUE value is passed through the marshaling layer.
7233
7234         Code is contributed under MIT/X11 license.
7235
7236 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
7237
7238         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
7239         correctly. Fixes #492330.
7240         
7241         * marshal.c: Fix the embedding of object pointers into JITted code in
7242         the native-to-managed wrappers by allocating some GC tracked memory, and
7243         embedding the address of that.
7244
7245 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
7246
7247         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
7248         pointers into the vtable.
7249
7250 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
7251
7252         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
7253
7254         * verify.c (verify_ldftn_delegate): Improve error message.
7255
7256 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7257
7258         * reflection.c (my_mono_class_from_mono_type): Remove.
7259
7260 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
7261
7262         Prepare to reduce memory usage of owner-less generic parameters (1/n)
7263         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
7264         and constraints fields into ...
7265         (MonoGenericParamInfo): ... this.
7266         (mono_generic_param_info, mono_generic_container_get_param_info):
7267         New accessors.
7268         * class.c, debug-helpers.c, icall.c: Update to changes.
7269         * metadata.c, reflection.c, verify.c: Likewise.
7270
7271 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
7272
7273         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
7274
7275         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
7276         
7277         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
7278         booleans with sbytes.
7279
7280 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7281
7282         * class.c (can_access_instantiation): Verify accesibility of element types
7283         for arrays and pointers.
7284
7285         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
7286
7287         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
7288
7289         Fixes #493068.
7290
7291 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
7292
7293         * verify.c (do_invoke_method): Improve error messages.
7294
7295 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
7296
7297         * verify.c:  Fixing the MSVC build.
7298
7299         Code is contributed under MIT/X11 license.
7300
7301 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
7302
7303         * security-core-clr.c: Simplify get_reflection_caller not to call
7304         mono_method_get_last_managed (another stack walk) and adjust the
7305         callers to handle a (should not happen) NULL return value.
7306
7307 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7308
7309         Add accessors to some MonoGenericParam fields
7310         * class-internals.h (mono_generic_param_owner): New accessor.
7311         (mono_generic_param_num): Likewise.
7312         (mono_type_get_generic_param_owner): New helper.
7313         (mono_type_get_generic_param_num): New helper.
7314         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
7315
7316 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7317
7318         * class-internals.h (mono_generic_container_get_param): New wrapper.
7319         * class.c, icall.c, metadata.c, verify.c: Use it.
7320
7321 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
7322
7323         Fix gtest-252.cs
7324         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
7325         the standard case/loop.  In particular, don't complain about
7326         references to generic type definitions.
7327
7328 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
7329
7330         * debug-helpers.c (dis_one): Decode string arguments.
7331
7332 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7333
7334         * pedump.c (dump_verify_info): Dump type name correctly.
7335
7336 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
7337
7338         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
7339         are larger than code size.
7340
7341         This can happen in valid code if the try/catch block is not followed by any instruction
7342         and do a backward branch on the leave instruction.
7343
7344         Fixes #492494.
7345
7346 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
7347
7348         * security-core-clr.c: Fix typo while comparing second method names
7349         in can_avoid_corlib_reflection_delegate_optimization
7350
7351 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7352
7353         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
7354
7355         Fixes #487738.
7356
7357 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
7358
7359         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
7360         a MVAR using a class context.
7361
7362         Fixes #490335.
7363
7364 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
7365
7366         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
7367
7368         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
7369
7370         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
7371         functions supplied by the JIT for the SGEN GC.
7372
7373         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
7374         
7375 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7376
7377         monitor.c (mono_monitor_try_enter_internal):
7378         Added calls to profile monitor contentions.
7379         Also duplicated a small piece of code (the "get the monitor" logic)
7380         from the fast path to the slow path, and changed the relevant goto
7381         statements, so that monitor acquisition events can be emitted from the
7382         slow path (this is by Paolo Molaro).
7383
7384 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
7385
7386         * profiler.c, profiler.h, profiler-private.h:
7387         Added support for profiling monitor contentions.
7388
7389 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
7390
7391         * metadata-verify.c: Verify the modules table.
7392
7393 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
7394
7395         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
7396         using the context of the method been verifier and not of the method been called.
7397
7398         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
7399         safely inflate generic types. 
7400
7401 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
7402
7403         * security-core-clr.c: Change the strategy for checking the 
7404         "reflection using delegates optimization" to avoid unneeded 
7405         attributes in multiple class libraries.
7406
7407 2009-04-02  Mark Probst  <mark.probst@gmail.com>
7408
7409         * sgen-gc.c: Remove object element in the disappearing link struct
7410         by storing the object pointer in the link.
7411
7412 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7413
7414         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
7415
7416 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7417
7418         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
7419
7420         * verify.c (mono_method_verify): Do proper bounds checking of exception
7421         clause ranges.
7422
7423 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
7424
7425         * loader.c (mono_field_from_token): Don't crash if the field parent could
7426         not be decoded.
7427
7428 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7429
7430         * sgen-gc.c: Execute critical finalizers after ordinary
7431         finalizers.
7432
7433         * class-internals.h, domain.c: Add CriticalFinalizerObject to
7434         mono_defaults.
7435
7436 2009-03-31 Jb Evain <jbevain@novell.com>
7437
7438         * verify.c (do_ldstr): don't check if a string is in the user strings
7439         heap if the current image is dynamic.
7440
7441 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7442
7443         * sgen-gc.c: Wait until the last finalizer has executed when
7444         returning from WaitForPendingFinalizers.
7445
7446 2009-03-31  Martin Baulig  <martin@ximian.com>
7447
7448         * mono-debug-debugger.h (MonoDebuggerEvent): Add
7449         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
7450         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
7451         (mono_debugger_event_create_appdomain): New function.
7452         (mono_debugger_event_unload_appdomain): New function.
7453
7454         * appdomain.c (mono_domain_create_appdomain_internal): Call
7455         mono_debugger_event_create_appdomain().
7456
7457 2009-03-31  Martin Baulig  <martin@ximian.com>
7458
7459         * mono-debug-debugger.c
7460         (mono_debugger_register_class_init_callback): Also register the
7461         class init callback if the class is already initialized to make
7462         things work with shadow copied assemblies.
7463
7464 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
7465
7466         * security-core-clr.c
7467         (mono_security_core_clr_ensure_reflection_access_field): Let 
7468         critical code access the field (just like we do for methods). Use
7469         check_field_access helper.
7470         (mono_security_core_clr_ensure_reflection_access_method): Use 
7471         check_field_access helper.
7472
7473 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7474
7475         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
7476         call the run-finalize function directly.
7477
7478         * gc.c, gc-internal.h: Make run_finalize() non-static.
7479
7480 2009-03-31  Mark Probst  <mark.probst@gmail.com>
7481
7482         * sgen-gc.c: Use a separate struct for disappearing links.
7483
7484 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7485
7486         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
7487         * MaxIOVectorLength enabled, just ignore them.
7488         Fixes bug #349688.
7489
7490 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
7491
7492         * metadata-verify.c: Fix eglib build.
7493
7494 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
7495
7496         * threads-types.h: Fix the win32 build.
7497
7498 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
7499
7500         * class.c: move coreclr inheritance/override checks to 
7501         security-core.clr.c
7502         * security-core.clr.c|h: add code from class.c with additional
7503         documentation. Fix override check when the method is not critical.
7504
7505 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
7506
7507         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
7508         (match_class): Ditto.
7509
7510 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7511
7512         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
7513
7514         * metadata-verify.c: Implement table layout row size calculation. Verify
7515         the total size of the tables.
7516
7517 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
7518
7519         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
7520
7521 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7522
7523         * appdomain.c:
7524         * console-io.[ch]: added new mono_console_init() to make sure that
7525         file descriptors 0, 1 and 2 are opened.
7526         Bug #489019 fixed.
7527
7528 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
7529
7530         * appdomain.h: Export a new callback type and a new function to
7531         set this callback. This allow a mono host to provide it's own
7532         definition for "platform code".
7533         * metadata-internals.h: Add a core_clr_platform_code flag on 
7534         _MonoImage to (cache and) know if it is representing platform 
7535         code.
7536         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
7537         on platform code images.
7538         * security-core-clr.c|h 
7539         (mono_security_set_core_clr_platform_callback): Allow the host
7540         to provide it's own platform check definition.
7541         (mono_security_core_clr_determine_platform_image): Detect if an 
7542         image is platform code (using the specified callback).
7543         (mono_security_core_clr_is_platform_image): Return cached value 
7544         for platform code.
7545
7546 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
7547
7548         * threads.c (mono_create_thread): New helper function to wrap CreateThread
7549         which has different parameter types for the 'tid' argument in windows and
7550         the io-layer.
7551
7552         * appdomain.c attach.c threads.c: Use the new helper.
7553
7554 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7555
7556         * metadata-verify.c: Verify valid table bits.
7557
7558 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7559
7560         * metadata-verify.c (verify_metadata_header): Store size in the size field.
7561
7562         * metadata-verify.c: Add initial table schema verification.
7563
7564 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7565
7566         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
7567         obtain the refclass argument needed by mono_param_get_objects (). Fixes
7568         #488383.
7569
7570         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
7571
7572         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
7573
7574 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
7575
7576         * security-core-clr.c: Add/update documentation
7577
7578 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7579
7580         * marshal.c (emit_marshal_object): Generate code to throw an exception
7581         instead of throwing it. Fixes #488670.
7582
7583 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
7584
7585         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
7586         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
7587         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
7588         and add a call to mono_security_core_clr_ensure_delegate_creation
7589         to do the extra checks required by CoreCLR.
7590         * security-core-clr.c|h: Add function to check delegate creation,
7591         both in the binding and accessibility, under CoreCLR.
7592
7593 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7594
7595         * reflection.c (mono_reflection_create_dynamic_method): when 
7596         coreclr is enabled make sure that every resolved object are
7597         checked (e.g. field and method access).
7598         * security-core-clr.c|h: Add function to check objects resolved
7599         when a dynamic method is created.
7600
7601 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7602
7603         * metadata-verify.c: Cache directory rva translations.
7604
7605         * metadata-verify.c: Add cli-header and streams verification.
7606
7607 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7608
7609         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7610         the wrong offset (8 instead of 6).
7611
7612 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7613
7614         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7615         methods, return the native function address itself. Fixes
7616         #487758.
7617
7618 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7619
7620         * console-io.c: some of the values for control characters might not be
7621         present.
7622
7623 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7624
7625         * exception.c|h: Add helpers to create [Field|Method]AccessException
7626         * icall.c: Add required coreclr check calls for field reflection.
7627         Move the existing (method) check logic into security-core-clr.c
7628         * security-core-clr.c: Add functions to check if the access of a
7629         field or method is allowed when reflecting under coreclr. This is
7630         mostly done using a stack walk to find the "real" caller: i.e. the
7631         code that is calling the reflection
7632
7633 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7634
7635         * gc-internal.h: Change location of gc_wrapper.h
7636
7637 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7638
7639         * class.c: Simplification to coreclr checks for overrides that
7640         makes it easier to set breakpoints.
7641
7642 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7643
7644         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7645         mono_security_core_clr_method_level): Avoid potential 
7646         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7647         user/application code) and make it easier to set breakpoints
7648
7649 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7650
7651         * metadata-verify.c: Reject cli header tables that mono don't handle.
7652
7653 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7654
7655         * pedump.c: Fix CLI header dumping.
7656
7657 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7658
7659         * metadata-verify.c: More CLI header verification.
7660
7661 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7662
7663         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7664
7665 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7666
7667         * metadata-verify.c: Initial verification of the CLI header.
7668
7669 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7670
7671         * metadata-verify.c (verify_resources_table): Fix verification of zero
7672         sized resource section and id entries count.
7673
7674 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7675
7676         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7677
7678 2009-03-17  Jb Evain  <jbevain@novell.com>
7679
7680         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7681
7682 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7683
7684         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7685         (mono_gc_make_descr_for_array): Ditto.
7686
7687 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7688
7689         * verify.c (mono_verifier_is_class_full_trust): Add support for
7690         CoreCLR security mode where trusted assemblies are defined as
7691         "platform code".
7692
7693 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7694
7695         * metadata-verify.c: Add minimal PECOFF resource verification.
7696
7697 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7698
7699         * metadata-verify.c: Be less restrictive with some coff fields.
7700
7701 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7702
7703         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7704         params as boxed values on stack. Fixes #485706.
7705
7706 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7707
7708         * console-io.c: the termios values may vary in different flavors of unix.
7709
7710 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7711
7712         * console-io.[ch]: return the entire set of control characters when
7713         initializing the terminal.
7714         * appdomain.c: bump corlib version.
7715
7716 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7717
7718         * mono-perfcounters.c: added support for in-process custom
7719         performance counters.
7720
7721 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7722
7723         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7724
7725 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7726
7727         * metadata-verify.c: Verify the data pointed by the import table. 
7728
7729 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7730
7731         * metadata-verify.c (load_data_directories): Store data
7732         directory contents.
7733
7734         * metadata-verify.c: Verify the import table. 
7735
7736 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7737
7738         * metadata-verify.c: Verify data directories.
7739
7740 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7741
7742         * metadata-verify.c: Check section header flags.
7743
7744 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7745
7746         * appdomain.c: if the assembly name is a shadow-copied file, return
7747         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7748         in mono_make_shadow_copy.
7749         * icall.c: if the assembly name is a shadow-copied file, replace it
7750         with the original assembly path.
7751
7752         Bug #484244 fixed. NUnit tests for corlib can be run without
7753         --noshadow now.
7754
7755 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7756
7757         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7758         entries when the table is reallocated.
7759
7760         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7761         mono_gc_alloc_fixed () since it contains GC refs.
7762
7763 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7764
7765         * reflection.c (ensure_complete_type): New helper function to call
7766         type resolve handlers for unfinished dynamic types.
7767         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7768
7769 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7770
7771         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7772         #483247.
7773
7774 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7775
7776         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7777
7778 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7779
7780         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7781         between GCHandles of type WeakTrackResurrection and the objects they
7782         point to.
7783
7784         * gc.c: Partly implement the sematics of GCHandles of type 
7785         WeakTrackResurrection: these handles should only be cleared after the
7786         finalizer of the object they are pointing to has ran.
7787
7788 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7789
7790         * icall.c: Partially revert r126631 because using the jump
7791         trampolines for generic shared methods makes it superfluous.
7792
7793 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7794
7795         * threads.c (handle_store): Create the 'threads' hash table with the proper
7796         MONO_HASH_VALUE_GC type.
7797
7798 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7799
7800         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7801         FIRST_GC_TRACKED.
7802
7803         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7804         and LAST_GC_TRACKED as a GC root.
7805
7806         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7807
7808         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7809         the static data even if it consists of 1 reference.
7810
7811         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7812         if there is a GC descriptor.
7813
7814         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7815         instead of through the GC since they contain no object references.
7816
7817 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7818
7819         * generic-sharing.c (instantiate_other_info): Always return a jump
7820         trampoline for method code.
7821
7822 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7823
7824         * culture-info-tables.h: generated to include the en-tt culture.
7825
7826 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7827
7828         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7829         capture the thread context.
7830
7831         * object.c (mono_async_result_new): Cache the invoke wrappers to
7832         ExecutionContext::Capture.
7833
7834 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7835
7836         * marshal.h: Add a prototype for what mono_compile_method returns
7837         for invoke wrappers.
7838
7839         * gc.c: Use the new prototype declaration.
7840
7841 2009-03-04  Geoff Norton  <gnorton@novell.com>
7842
7843         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7844         * gc-internal.h:
7845         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7846
7847 2009-03-04  Martin Baulig  <martin@ximian.com>
7848
7849         * mono-debug.h
7850         (mono_debugger_runtime_invoke): Removed.
7851
7852         * mono-debug-debugger.c
7853         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7854
7855 2009-03-02  Martin Baulig  <martin@ximian.com>
7856
7857         * mono-debug.h
7858         (mono_debugger_unhandled_exception): Removed.
7859         (mono_debugger_handle_exception): Removed.
7860         (mono_debugger_throw_exception): Removed.
7861
7862         * mono-debug.c
7863         (mono_debug_debugger_version): Bump to 5.
7864
7865         * mono-debug-debugger.c: Moved the exception handling code to
7866         ../mini/debug-mini.c
7867
7868 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7869
7870         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7871         finalize_objects_hash.
7872
7873         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7874         
7875         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7876         field.
7877
7878         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7879         cache.
7880
7881         * image.c (mono_image_close): Free it.
7882         
7883         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7884         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7885         on the this argument.
7886
7887         * gc.c (run_finalize): Optimize the calling of the finalizers.
7888
7889 2009-03-03  Martin Baulig  <martin@ximian.com>
7890
7891         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7892         of the `MonoGenericInst' changes.
7893
7894 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7895
7896         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7897         mono_array_class_get_cached to reduce locking contention. Extract
7898         a domain var.
7899
7900         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7901         intermediary managed arrays. Use caching version of mono_array_new
7902         to allocate the result array.
7903
7904         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7905
7906         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7907
7908         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7909         to reduce locking contention.
7910
7911 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7912                 
7913         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7914         thunk builder code for the non-interface case.
7915
7916 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7917
7918         * object.c (get_generic_virtual_entries): New helper function to collect
7919         the virtual generic method instances which need to be added to an IMT
7920         thunk.
7921         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7922         Instead of creating a new IMT thunk, reset the vtable slot to the
7923         trampoline, the thunk will be created the next time the trampoline is called.
7924         (build_imt_slots): Add support for virtual generic methods in interfaces by
7925         adding to the IMT thunk all the methods registered using 
7926         mono_method_add_generic_virtual_invocation ().
7927
7928         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7929         (struct _MonoIMTCheckItem): Ditto.
7930
7931         * object.c (mono_method_add_generic_virtual_invocation): Take a
7932         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7933         the IMT thunk to include all items.
7934         
7935         * object.c (mono_class_create_runtime_vtable): Add a missing
7936         mono_loader_unlock ().
7937
7938 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7939
7940         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7941
7942         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7943
7944 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7945
7946         * object-internals.h: Rename _MonoReflectionEvent to
7947         MonoReflectionMonoEvent so it reflects the right managed type.
7948         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7949
7950         * icall.c:
7951         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7952         type.
7953
7954 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7955
7956         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7957         intermediary managed arrays. Use caching version of mono_array_new
7958         to allocate the result array.
7959
7960 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7961
7962         * reflection.c: Use cached version of mono_array_new alongside
7963         the mono_reflection_get_custom_attrs_by_type call path.
7964
7965 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7966
7967         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7968         intermediary managed arrays. Use caching version of mono_array_new
7969         to allocate the result array.
7970
7971         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7972
7973 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7974
7975         * icall.c: Add small implementation of a growable stack bound array.
7976
7977         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7978
7979         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7980         intermediary managed arrays. Use caching version of mono_array_new
7981         to allocate the result array.
7982
7983 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7984
7985         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7986         helps Enum::CompareTo to be implemented without reboxing all enums
7987         to their underlying type.
7988 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7989
7990         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7991         since it acquires a global lock leading to scalability problems.
7992
7993         * profiler.c: Make the stat profiler work with multiple appdomains, this
7994         currently only works when no appdomains are unloaded.
7995
7996 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7997
7998         * appdomain.c: make the check to avoid copying when the assembly is
7999         already shadow copied actually work.
8000
8001 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
8002
8003         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8004
8005         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
8006         changes to the managed side.
8007
8008 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
8009
8010         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
8011         classes + a separate lock for it, as it is used frequently at runtime, not
8012         just during metadata loading/JIT compilation.
8013
8014         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
8015         for szarrays.
8016         
8017         * object-internals.h (mono_class_from_name_cached): New macro to cache
8018         the results of the lookup locally without having to declare a static
8019         variable to hold it.
8020         (mono_class_get_field_from_name_cached): Ditto.
8021         (mono_array_class_get_cached): Ditto.
8022
8023         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
8024         the new macros.
8025         
8026         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
8027         slower search in metadata.
8028
8029         * pedump.c: Fix a warning.
8030
8031 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
8032
8033         * reflection.c (encode_locals): Add checks for user types.
8034         (method_encode_clauses): Ditto.
8035         (method_encode_code): Ditto.
8036         (mono_image_create_token): Ditto.
8037
8038         * object-internals.h: Change the type of more fields from MonoReflectionType*
8039         to MonoObject*.
8040
8041 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
8042
8043         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
8044         the a thread does not suspend within 100ms.
8045
8046         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
8047         in addition to StopRequested as well.
8048
8049         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
8050
8051         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
8052         search the method_hash before inserting a new entry, to avoid crashes when
8053         the same method is inserted multiple times, causing the old 
8054         MonoDebugMethodInfo structure to be freed by the value dtor function.
8055
8056 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8057
8058         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
8059         SO_EXLUSIVEADDRUSE where available.
8060
8061 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
8062
8063         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
8064         runtime invoke wrappers, this time it is string ctor wrappers, which
8065         pass a dummy string as 'this' instead of their obj argument. Fixes
8066         #478473.
8067
8068 2009-02-21  Jb Evain  <jbevain@novell.com>
8069
8070         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8071         only get create_culture once.
8072
8073 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
8074
8075         * reflection.c (mono_reflection_setup_internal_class): Move the user type
8076         check before the locking.
8077         
8078         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
8079         (mono_reflection_create_runtime_class): Ditto.
8080         (mono_reflection_sighelper_get_signature_local): Ditto.
8081         (mono_reflection_sighelper_get_signature_field): Ditto.
8082
8083         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
8084         is a System.MonoType object or similar.
8085         (monotype_cast): New helper function to cast a MonoObject to a 
8086         MonoReflectionType object.
8087
8088         * object-internals.h: Change MonoReflectionType* members in structures to
8089         MonoObject* members to force the usage of the monotype_cast () function.
8090
8091         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
8092         structures/arrays. This causes us to assert instead of crashing when 
8093         instances of user defined subclasses of System.Type are encountered.
8094
8095 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8096
8097         * cil-coff.h:
8098         * icall-def.h:
8099         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
8100         win32 resource loaded from a PE file.
8101
8102         * image.c: fix mono_image_lookup_resource.
8103
8104 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8105
8106         * icall-def.h:
8107         * threads-types.h:
8108         * threads.c: added internal call for WaitHandle.SignalAndWait.
8109
8110 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
8111
8112         * cominterop.c : Adding cominterop_type_from_handle and 
8113           registering it as an icall.  Replacing all references
8114           to type_from_handle.
8115
8116         Code is contributed under MIT/X11 license.
8117
8118 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
8119
8120         * Makefile.am: Add lock-tracer.h and lock-trace.c.
8121
8122         * appdomain.c: Call the tracer init function.
8123
8124         * domain-internals.h: Enable the tracer for the domain locks.
8125
8126         * image.c: Enable the tracer for image locks.
8127
8128         * loader.c: Enable the trace for the loader lock.
8129
8130         * lock-tracer.h:
8131         * lock-tracer.c: Initial implementation of the lock trace utility.
8132         The tracer requires a compile time define to be enabled and a env var
8133         to be enabled at runtime.
8134
8135 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
8136
8137         * domain.c (mono_domain_code_foreach): Improve documentation.
8138
8139 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
8140
8141         * appdomain.c:
8142         * generic-sharing.c:
8143         * object.c:
8144         * reflection.c:  Adjust locking order to the new semantics where the loader lock
8145         comes first.
8146
8147 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
8148
8149         * domain.c: Add mono_domain_code_* functions that perform locking
8150         around the domain codeman.
8151
8152         * domain-internals.h: Export those functions.
8153
8154         * object.c: Use new functions instead of acquiring the domain lock.
8155
8156 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
8157
8158         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
8159         delegate. Fixes #477396.
8160
8161 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
8162
8163         * reflection.c (create_custom_attr): Get rid of alloca.
8164
8165 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
8166
8167         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
8168           Adding exception handling for all CCW calls.
8169
8170         Code is contributed under MIT/X11 license.
8171
8172 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
8173
8174         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
8175
8176         * marshal.c (emit_marshal_boolean): Add null checks to the new 
8177         native->managed marshalling code. Fixes #476247.
8178
8179 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
8180
8181         * class.c (mono_class_get_vtable_entry): Move the addition of
8182         static rgctx invoke wrappers for vtable methods here, this simplifies
8183         a lot of code and causes fewer rgctx wrappers to be created.
8184
8185         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
8186         name of the statistics to begin with an uppercase.
8187
8188 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8189
8190         * reflection.c: Revert previous change as it breaks the build.
8191         
8192 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8193
8194         * verify.c: Properly handle SZARRAY element type.
8195
8196         Fixes #474271.
8197
8198 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
8199
8200         * reflection.c (mono_image_create_method_token): Correctly encode
8201         MethodDef MemberRefParent token.
8202
8203         Fixes #472845.
8204
8205 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
8206
8207         * image.c (mono_image_close): Delete the critical section before
8208         freeing the memory holding it.
8209
8210 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8211
8212         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
8213         Fixes #476257.
8214
8215 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8216
8217         * pedump.c (main): Call mono_marshal_init so pedump
8218         doesn't crash.
8219
8220 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8221
8222         * loader.c (method_from_memberref): Properly fix #474271 and
8223         don't break the runtime bad.
8224
8225 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8226
8227         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
8228         (mono_domain_alloc0): Ditto.
8229
8230 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8231
8232         * loader.c (method_from_memberref): Don't abort if the array
8233         method is not found. A regular loader failure is more informative
8234         and correct.
8235
8236         Fixes #474271.
8237
8238 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
8239
8240         *loader.c: Guard MonoImage::method_cache/methodref_cache
8241         using the image lock instead of the loader lock.
8242
8243         * metadata.h: Add comments about which fields are protected by
8244         the image lock.
8245
8246 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
8247
8248         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
8249
8250         * generic-sharing.c (mono_method_construct_object_context): Remove the
8251         wrapper_type == NONE assert, it is not needed.
8252
8253 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
8254
8255         * reflection.c (clear_cached_object): New helper function.
8256         (mono_method_clear_object): New function to clear the cached reflection
8257         objects for a dynamic method.
8258
8259         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
8260         Partly fixes # 463323.
8261         
8262 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8263
8264         * class.c:
8265         * loader.c:
8266         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
8267
8268 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
8269
8270         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
8271         take the image lock instead of the loader lock.
8272
8273         * metadata-internals.h: Export new functions.
8274
8275 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8276
8277         * domain.c (app_config_parse): Remove another use of stat that is
8278         not necessary as g_file_get_contents already does the presence
8279         check. 
8280
8281 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8282
8283         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
8284
8285         * marshal.c: Move the bstr handling code to cominterop.c.
8286
8287         * marshal.c: Remove some COM interop code missed previously.
8288
8289 2009-02-12  Miguel de Icaza  <miguel@novell.com>
8290
8291         More Paolo patches from the Wii port:
8292         
8293         * security.c: Remove ves_icall_System_Environment_get_UserName
8294         from here.
8295
8296         * icall.c: And put ves_icall_System_Environment_get_UserName
8297         here. 
8298
8299         * appdomain.c (mono_set_private_bin_path_from_config): Remove
8300         redundant call to stat that was only used to test for the file
8301         existence.   Patch from Paolo.
8302
8303         * gc.c (run_finalize): If COM is disabled, do not link in
8304         mono_marshal_free_ccw.
8305
8306         * generic-sharing.c: Use alloca.h here as well.
8307
8308 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
8309
8310         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
8311
8312 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
8313
8314         * cominterop.c cominterop.h: New files.
8315
8316         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
8317         function/typedefs which are needed by cominterop.c global.
8318
8319 2009-02-12  Mark Probst  <mark.probst@gmail.com>
8320
8321         * generic-sharing.c: Don't take the loader lock to guard image
8322         mempool allocs.
8323
8324 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8325
8326         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
8327         called without the loader lock which is required to guard MonoImage:tokens.
8328
8329 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8330
8331         * class.c:
8332         * metadata.c:
8333         * method-builder.c:
8334         * marshal.c:
8335         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
8336
8337 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8338
8339         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8340         Rework the code to use regular mono_image_alloc/0.
8341
8342         * loader.c: Rework the code to use regular mono_image_alloc/0.
8343
8344         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
8345
8346 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
8347
8348         * object-internals.h : Fixing a typo in the 
8349           MonoReflectionComVisibleAttribute struct.
8350
8351         * marshal.c (cominterop_com_visible): Check the implemented 
8352           interfaces for ComImport.
8353
8354         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
8355           assume that bools should be treated as VARIANTBOOLs.
8356
8357         * marshal.c (emit_marshal_boolean): Adding cases for 
8358           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
8359
8360         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
8361           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
8362
8363         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
8364           should be treated as VARIANTBOOLs.    
8365
8366         Code is contributed under MIT/X11 license.
8367
8368 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8369
8370         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
8371         allocation with the image lock.
8372
8373 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8374
8375         This patch is the last of a series to remove explicit reference of MonoImage::mempool
8376         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
8377
8378         * object.c: Add mono_string_to_utf8_image.
8379
8380         * object-internals.h: Export mono_string_to_utf8_image.
8381
8382         * reflection.c: Rework all explicit references to the the image mempool to go thought
8383         the mono_image_alloc set of functions.
8384
8385 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8386
8387         This patch is the third of a series to remove explicit reference of MonoImage::mempool
8388         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
8389         and generics-sharing.c.
8390
8391         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
8392         as first argument. Note that this function remains broken as it doesn't perform locking around the
8393         mempool allocation.
8394
8395         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
8396
8397         * image.c: Add g_slist_append_image.
8398
8399         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
8400         the supplied image for allocation. Move code into mono_metadata_field_info_full.
8401
8402         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
8403         Fix all related code to do the same.
8404
8405         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
8406
8407         * metadata-internals.h: Fix the signatures.
8408
8409 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
8410
8411         This patch is the second of a series to remove explicit reference of MonoImage::mempool
8412         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
8413         and similar to work using MonoImage.
8414
8415         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
8416         MonoMemPool.
8417
8418         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
8419
8420         * class.c (mono_metadata_signature_deep_dup): Same.
8421
8422         * class.c (inflate_generic_type): Same.
8423
8424         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
8425
8426         * metadata.c (mono_metadata_signature_dup_full): Same.
8427
8428         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
8429         mono_metadata_signature_dup_full.
8430
8431         * metadata.c (mono_metadata_type_dup): Same.
8432
8433         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
8434
8435         * reflection.c: Same.
8436
8437         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
8438
8439         * metadata-internals.h: Fix the signatures.
8440
8441         * class-internals.h: Same.
8442
8443 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8444
8445         This patch is the first of a series to remove explicit reference of MonoImage::mempool
8446         and use mono_image_alloc set of functions instead. 
8447
8448         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
8449         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
8450         of a MonoMemPool.
8451
8452         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
8453
8454         * class.c (g_list_prepend_mempool): Removed.
8455
8456         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
8457
8458         * image.c: Add g_list_prepend_image.
8459
8460         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
8461
8462         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
8463
8464
8465 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8466
8467         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
8468         mono_image_unlock.
8469
8470         * image.c (mono_image_init): Init the lock field.
8471  
8472         * image.c (mono_image_init): Cleanup the lock field.
8473
8474         * image.c: Add mono_image_(un)lock functions.
8475
8476 2009-02-11  Mark Probst  <mark.probst@gmail.com>
8477
8478         * class.c, class-internals.h: mono_method_get_context_general()
8479         combines the functionality of mono_method_get_context() and
8480         mini_method_get_context().
8481
8482         * generic-sharing.c, domain-internals.h:
8483         mono_method_construct_object_context() and
8484         mono_domain_lookup_shared_generic() moved from mini.
8485
8486         * icall.c (ves_icall_InternalInvoke): Handle the case where the
8487         method doesn't have the correct instantiation because it's shared
8488         generic code.  Fixes #473999.
8489
8490 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
8491
8492         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
8493
8494         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
8495         
8496 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
8497
8498         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
8499
8500         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
8501
8502         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
8503         and recheck the cache for dups after it.
8504
8505         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
8506
8507         Fixes one of the deadlocks found in #473150.
8508
8509 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
8510
8511         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
8512           For Win32, add additional break conditions for accept.
8513
8514         Code is contributed under MIT/X11 license.
8515
8516 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
8517
8518         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
8519         lazily initialize the native wrapper cache.
8520         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
8521         cache, since they are different from the normal wrappers.
8522
8523         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
8524
8525         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
8526         AOT compiled native wrappers.
8527
8528 2009-02-09  Geoff Norton  <gnorton@novell.com>
8529
8530         * appdomain.h:
8531         * security-core-clr.c: Allow enabling core-clr from the embedding
8532         API.
8533
8534 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8535
8536         * socket-io.c: when requesting all the local ips, if there are no
8537         interfaces up and running, MS returns 127.0.0.1.
8538
8539 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8540
8541         * mono-perfcounters-def.h: processor time is an inverse time.
8542         Fixes bug #468625.
8543
8544 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8545
8546         * socket-io.c: an empty host name returns the list of local IPs.
8547         Fixes bug #386637 part 1/2.
8548
8549 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
8550
8551         * verify.c (mono_class_interface_implements_interface): Call
8552         mono_class_setup_interfaces ().
8553         (merge_stacks): Ditto.
8554
8555 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8556
8557         * class.c (mono_class_setup_interfaces): New function to lazily initalize
8558         klass->interfaces.
8559         (mono_generic_class_get_class): Don't initalize klass->interfaces.
8560         (mono_generic_class_get_class): Ditto.
8561
8562 2009-02-06  U-QUACK\miguel  <miguel@quack>
8563
8564         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
8565         they live in security.c
8566
8567         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
8568         another bit from Paolo's code.
8569
8570 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8571
8572         * object.c (build_imt_slots): Add a small optimization to avoid inflating
8573         methods which will be discarded by add_imt_builder_entry ().
8574
8575         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
8576         need to be boxed.
8577
8578         * loader.c: Add a statistics for the size of the memberref signature cache.
8579         
8580         * loader.c (find_cached_memberref_sig): New helper function.
8581         (cache_memberref_sig): Ditto.
8582
8583         * loader.c: Cache the result of parsing memberref signatures, since otherwise
8584         they will be parsed again for every generic instantiation, leading to unbounded
8585         memory growth.
8586
8587 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8588
8589         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8590         parameters of generic methods.
8591
8592         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8593         after the original method is copied to the inflated method.
8594         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8595
8596         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8597         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8598
8599         * class.c metadata.c: Update after the changes above.
8600
8601 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8602
8603         * metadata-verify.c: Simplified error handling and added
8604         section table validation.
8605
8606 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8607
8608         * class-internals.h (MonoClassExt): New structure containing rarely used
8609         fields of MonoClass.
8610         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8611         through a new 'ext' field.
8612
8613         * class.c (mono_class_alloc_ext): New helper function to allocate 
8614         class->ext.
8615
8616         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8617
8618 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8619
8620         * object.c (mono_object_get_virtual_method): Properly inflate
8621         generic methods.  Fixes #472692.
8622
8623 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8624
8625         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8626         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8627         for the parent type, the created type must be ready to be used on a generic
8628         instantiation.
8629         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8630         we won't have duplicated entries in generic_inst_cache.
8631
8632         Fixes #469553.
8633
8634 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8635
8636         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8637         replace with plain BSD per the comments on the bug MONO77637.
8638
8639 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8640
8641         * class.c (mono_class_get_generic_class): New accessor function.
8642         (mono_class_get_generic_container): Ditto.
8643
8644         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8645         fields, similar to the ones in MonoMethod.
8646
8647         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8648         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8649
8650         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8651         
8652         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8653         the same information as element_class->byval_arg.
8654
8655         * class.c reflection.c: Remove references to class->byval_arg.
8656
8657         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8658         klass->enum_basetype directly.
8659
8660         * verify.c metadata.c object.c icall.c reflection.c: Use 
8661         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8662         directly.
8663
8664 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8665
8666         * icall-def.h: Remove internal calls for sockets when
8667         DISABLE_SOCKET is defined, file system writing features when the
8668         OS only support reading and not writing data and Policy support if
8669         the Policy is disabled.
8670         
8671         * image.c (do_mono_image_open): Apply Paolo's patches for using
8672         mono_file_map_ APIs here.
8673
8674         * assembly.c: Add support for platforms to avoid prefix
8675         auto-detection. 
8676
8677 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8678
8679         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8680         warning.
8681
8682         * class.c (mono_class_inflate_generic_class): New helper function.
8683
8684         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8685         statistics for inflated methods/classes.
8686
8687         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8688
8689         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8690         the call is made from Delegate.CreateDelegate () for the invoke method of
8691         a delegate.
8692
8693         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8694
8695         * metadata.c (mono_metadata_signature_size): New helper function.
8696
8697         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8698         generic instances.
8699
8700         * metadata.c (inflated_method_in_image): Avoid calling 
8701         mono_method_signature () if the method does not already have a signature.
8702
8703 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8704
8705         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8706         valuetype is compatible with target type, check by inheritance as a
8707         VT is not really compatible with System.ValueType, for example.
8708
8709         * verify.c (do_invoke_method): Improve error message.
8710
8711         * verify.c (do_box_value): If boxing a nullable, use the type argument
8712         on stack instead.
8713
8714         * verify.c (do_newobj): Improve error message.  
8715
8716         Fixes #469549.
8717
8718 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8719
8720         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8721
8722 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8723
8724         * generic-sharing.c: Don't hold domain lock when calling
8725         instantiate_other_info().  Fixes #471958.
8726
8727         * domain-internals.h, loader.c: Describe locking policy of domain
8728         lock vs loader lock.
8729
8730 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8731
8732         * verify.c (mono_delegate_signature_equal): Make it possible to check
8733         first-arg-bound delegates to static method.
8734
8735         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8736         static methods with the first arg bound.
8737
8738         Fixes #469529.
8739
8740 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8741
8742         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8743         errors.
8744
8745         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8746         under strict mode. Any type, when boxed can be seen as a reference type.
8747
8748         Fixes #469528.
8749
8750 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8751
8752         * object.h: The lower bound of an array is a signed integer value.
8753         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8754         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8755
8756         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8757         calculate the upper bound.
8758         
8759         Fixes #471252.
8760
8761 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8762
8763         From Paolo's work, refactored, cleared up:
8764         
8765         * threadpool.c, icall.c: ifdef code that requires a working socket
8766         stack.
8767
8768         * metadata.c (mono_metadata_field_info): Do not attempt to return
8769         a value from a function declared as void.
8770
8771         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8772         from the console stack.
8773
8774         * assembly.c: use strrchr instead of rindex.
8775
8776         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8777         alloca.h on systems that have it.
8778
8779         * environment.c: Avoid code that uses stuff from
8780         HAVE_SYS_UTSNAME_H
8781         
8782         * appdomain.c: Include sys/time.h.
8783
8784         * console-io.c: include sys/ioctl.h if it is available.
8785
8786 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8787
8788         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8789
8790         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8791         the method builder.
8792
8793         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8794         after it was created and cached, as the later is not thread safe.
8795         
8796 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8797
8798         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8799         called while the debugging module is not initialized. Fixes #471669.
8800
8801 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8802
8803         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8804
8805         Fixes #471255.
8806
8807 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8808
8809         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8810         loader lock is not taken while the templates lock is held.  Fixes
8811         #471089.
8812
8813 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8814
8815         * metadata.c (type_in_image): Added a check to fix a monodis
8816         crash.
8817
8818 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8819
8820         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8821         nullable arguments.
8822
8823         * object.c (mono_runtime_invoke_array): Ditto.
8824         
8825         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8826         freeing wrappers of dynamic methods.
8827
8828         * loader.c (mono_free_method): Call it. Fixes #463323.
8829         
8830         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8831         methods taking vtype/byref arguments, to fix yet another bug caused by
8832         the sharing of runtime invoke wrappers. Partly fixes #471259.
8833
8834 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8835
8836         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8837         <first file in file table>:1 when the IL offset does not have an associated
8838         line number.
8839
8840 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8841
8842         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8843         variable info for a method.
8844
8845         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8846         
8847 2009-01-30  Jb Evain  <jbevain@novell.com>
8848
8849         * pedump.c: reuse code from monodis to make sure pedump honors
8850         MONO_PATH, which is needed to verify net_2_1 assemblies.
8851
8852 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8853
8854         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8855         there is no line number info.
8856
8857 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8858
8859         Avoid some MonoType allocations
8860         * reflection.c (mono_reflection_initialize_generic_parameter):
8861         Reuse MonoType from param->pklass rather than allocating one.
8862         (mono_dynamic_image_free): Update to changes.
8863
8864 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8865
8866         Rearrange some code to improve consistency
8867         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8868         (mono_reflection_initialize_generic_parameter): ... here.
8869
8870 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8871
8872         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8873         with type constraints as an experiment.
8874
8875         * boehm-gc.c (on_gc_notification): Update mono_stats.
8876
8877 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8878
8879         Avoid some allocations
8880         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8881         pointer to tail array to avoid extra allocation.
8882         * metadata.c (free_generic_inst): Update to changes.
8883         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8884         on-stack struct.
8885
8886 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8887
8888         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8889         return TRUE if the two type objects are the same.
8890
8891 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8892
8893         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8894         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8895         klass->min_align, since klass->min_align contains the managed alignment,
8896         while the native alignment can be different, like for longs on x86.
8897         Fixes #469135.
8898
8899         * class-internals.h (MonoMarshalType): Add a min_align field.
8900
8901 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8902
8903         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8904         the 1.0 format.
8905
8906 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8907
8908         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8909         some comments about the usage of the used_regs field.
8910
8911         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8912         Fixes #469217.
8913
8914 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8915
8916         * appdomain.c: return NULL instead of throwing FileNotFoundException
8917         when LoadAssembly() fails.
8918
8919 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8920
8921         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8922         image if the owner is NULL.  Fixes the AOT failures.
8923
8924 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8925
8926         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8927         MonoGenericParam structure using memset so the image field is initialized
8928         as well.
8929
8930 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8931
8932         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8933         a plain store.
8934
8935 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8936
8937         * class.c (mono_class_setup_vtable_general): In the generic instance
8938         optimization, set method->slot for abstract virtual methods. Fixes part of
8939         #467834.
8940
8941 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8942
8943         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8944         which signals that the unloading has started but all appdomain services must
8945         remain operational.
8946
8947         * appdomain.c (mono_domain_unload): The initial state for unloading now
8948         is unloading_start and we switch to unloading after the managed call to
8949         AppDomain::DomainUnload has finished.
8950
8951         The new unloading state has to be created because managed code in the
8952         DomainUnload event can depend on things like the threadpool still working.
8953         The domain must remain fully functional while the event executes.
8954
8955         This shown as an issue due to Process::WaitForExit, which waits for
8956         async reads of stdout and stderr to complete. Since those are processed
8957         in the threadpool the code deadlocks because the DomainUnload callback 
8958         waits for the async read finished event, which should have been set by a
8959         threadpool job but has been discarded due to the domain been in unload
8960         state.
8961
8962 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8963
8964         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8965         image must match.
8966
8967 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8968
8969         * reflection.c (resolve_object): For fields, inflate the class and
8970         then get the field in the inflated class.
8971
8972 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8973
8974         * object-internals.h (struct _MonoException): Added a comment
8975         explaining the new use of trace_ips.
8976
8977 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8978
8979         * generic-sharing.c (inflate_other_data): Inflate array methods
8980         correctly.
8981
8982         * loader.c, class-internals.h: Rename search_in_array_class() to
8983         mono_method_search_in_array_class() and make it non-static.
8984
8985 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8986
8987         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8988         Hopefully fixes #458168.
8989
8990 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8991
8992         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8993         as it is performed elsewhere.
8994
8995         Code is contributed under MIT/X11 license
8996
8997 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8998
8999         * mono-perfcounters-def.h: Add counters for asp.net requests total and
9000         requests queued.
9001         * object.c (mono_raise_exception): Increment the exceptions total
9002         counter when an exception is thrown.
9003         * class-internals.h: Add a location for storing the total number of
9004         asp.net requests served.
9005         * mono-perfcounters.c: Implement update support for asp.net counters
9006         from the class libraries. Implement read support for asp.net counters
9007         and exceptions total counter.
9008
9009 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
9010
9011         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
9012         accessing klass->methods. Fixes #467385.
9013
9014 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
9015
9016         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
9017         for byval arguments without an [Out] attribute. Fixes #467212.
9018
9019         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
9020         Fix compilation under android.
9021         
9022         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
9023         processed, scan them directly after they are copied, to achieve better locality
9024         and cache usage.
9025
9026         * socket-io.c: Applied patch from Koushik Dutta
9027         (koush@koushikdutta.com). Disable IPV6 when running under android.
9028
9029 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
9030
9031         * icall.c (ves_icall_InternalExecute): Add write barriers.
9032
9033         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
9034         the GC code.
9035
9036         * sgen-gc.c: Implement write barriers in IL code.
9037
9038 2009-01-17  Geoff Norton  <gnorton@novell.com>
9039
9040         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
9041
9042 2009-01-17  Geoff Norton  <gnorton@novell.com>
9043
9044         * image.c: When unloading the image->references table, there can be gaps
9045         in it.  Ensure that we iterate every entry to avoid leaking assembly references
9046         when unloading an appdomain.
9047
9048 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
9049
9050         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
9051         speed up ptr-in-nursery checks.
9052
9053         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
9054         threads_lock () to prevent deadlocks.
9055
9056         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
9057         does not need to be scanned during minor collections, since writes to it
9058         must use write barriers.
9059
9060 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
9061
9062         * metadata-verify.c: Add pe nt header verification.
9063         
9064 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
9065
9066         * gc.c: Fix a few warnings when using SGEN.
9067
9068 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
9069
9070         * metadata-verify.c: Add pe optional header verification.
9071
9072 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
9073
9074         * sgen-gc.c: Add support for user defined marker functions, used by
9075         MonoGHashTable to avoid registering a GC root for every hash node.
9076
9077 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
9078
9079         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
9080         non-pinned roots into separate hashes to avoid having to traverse them
9081         in functions which are only interested in one kind.
9082
9083 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
9084
9085         * metadata-verify.c: Add pe header machine field verification.
9086         
9087 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
9088
9089         * metadata-verify.c: Add pe header size verification.
9090
9091 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
9092
9093         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
9094         using the GC, they don't contain references.
9095
9096         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
9097
9098 2009-01-13  Geoff Norton  <gnorton@novell.com>
9099
9100         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
9101         AppDomains created on the native side can be cleaned up on the native side.
9102
9103 2009-01-13  Geoff Norton  <gnorton@novell.com>
9104
9105         * appdomain.c: Ensure that we call mono_context_init for the embedding api
9106         as well as the managed api.
9107
9108 2009-01-13  Geoff Norton  <gnorton@novell.com>
9109
9110         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
9111         with a MonoAppDomain initialized against it.
9112
9113 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
9114
9115         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
9116         
9117         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
9118
9119         * marshal.c: Avoid setting the exception clauses after a method has been entered 
9120         into the wrapper caches. Fixes #465700.
9121
9122         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
9123         method builder.
9124         (mono_mb_create_method): Set the clauses from the method builder.
9125
9126 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
9127
9128         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
9129         Patch from Makoto Kishimoto.
9130
9131 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
9132
9133         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
9134         encoding them as ROOT_DESC_COMPLEX.
9135         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
9136
9137 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
9138
9139         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
9140         no longer point to the nursery.
9141
9142         * sgen-gc.c: Add a few comments/FIXMEs.
9143         
9144         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
9145
9146         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
9147         initialization of the various _method variables thread safe. Fixes
9148         #465377.
9149
9150 2009-01-12  Mark Probst  <mark.probst@gmail.com>
9151
9152         * domain.c, domain-internals.h: Remove the shared_generics_hash
9153         and its lookup functions.
9154
9155 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
9156
9157         * socket-io.c:  Fixing the MSVC build. 
9158
9159         Code is contributed under MIT/X11 license.
9160
9161 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
9162
9163         * metadata-verify.c: Add pe header watermark verification.
9164
9165 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9166
9167         * metadata-verify.c: Add lfanew verification.
9168
9169 2009-01-12  Jb Evain  <jbevain@novell.com>
9170
9171         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
9172         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
9173
9174 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
9175
9176         * socket-io.c: Fix the build.
9177
9178         * environment.c: Fix an #ifdef.
9179
9180 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9181
9182         * threadpool.c (async_invoke_thread): Handle the wait function returning
9183         WAIT_IO_COMPLETION as well.
9184         (async_invoke_io_thread): Ditto.
9185
9186 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
9187
9188         * threads.c: Fixing the Windows build.
9189
9190         Code is contributed under MIT/X11 license.
9191
9192 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9193  
9194         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
9195         interrupt a wait.
9196         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
9197         the thread to wait again.
9198
9199 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9200
9201         * metadata-verify.c: Initial skeleton of the metadata verifier.
9202
9203         * pedump.c: Add support for the metadata verifier.
9204
9205         * verify-internal.h: Export the whole assembly metadata verifier function.
9206
9207 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
9208
9209         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
9210
9211 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
9212
9213         * Makefile.am: Upgrade dtrace-prelink.sh location.
9214
9215 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9216
9217         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
9218         well. Otherwise the shutdown deadlock that happens on unix will can happen
9219         as well.
9220         If the main thread code finishes too fast it's possible that the finalizer
9221         thread won't have executed yet, won't record itself as the finalizer thread
9222         and the shutdown sequence will wait on it forever.
9223
9224 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
9225
9226         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
9227         with MSVC.
9228
9229 2009-01-08  Miguel de Icaza  <miguel@novell.com>
9230
9231         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
9232         Robert Jordan for pointing this out.
9233
9234 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
9235
9236         * icall.c
9237         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
9238         ves_icall_System_IO_DriveInfo_GetDriveType.
9239
9240 2009-01-07  Miguel de Icaza  <miguel@novell.com>
9241
9242         * icall.c: Wrap calls to mono_strtod in CriticalSection
9243         invocations when using eglib, to work around #464316.
9244
9245 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9246
9247         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
9248         return value of GetCurrentDirectory to never access unitialized memory.
9249
9250 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
9251
9252         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
9253         return value of GetCurrentDirectory and expand the buffer if needed.
9254
9255         Fixes #459094.
9256
9257 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
9258
9259         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
9260           Adding a call to mono_init_com_types.
9261
9262         Code is contributed under MIT/X11 license.
9263
9264 2009-01-07  Geoff Norton  <gnorton@novell.com>
9265
9266         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
9267         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
9268         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
9269         be the value of the ip buffer.
9270
9271 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9272
9273         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
9274         interfaces_packed here.
9275
9276         Fixes part of #463294.
9277
9278 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9279
9280         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
9281
9282         Fixes part of #463294.
9283
9284 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9285
9286         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
9287         is a boxed complex as well.
9288
9289         Fixes part of #463294.
9290
9291 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
9292
9293         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
9294         control if a methodspec should be created for the generic method definition from external assemblies.
9295         Caching of methodspec is done using the handleref hash table.
9296
9297         Fixes #462592.
9298
9299 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
9300
9301         * loader.c (find_method): When searching the interfaces of a class
9302         check the transitive closure of implemented interfaces.
9303
9304         Fixes #463303.
9305
9306 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9307
9308         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
9309         
9310 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
9311
9312         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
9313         interfaces calculation to fill_valuetype_array_derived_types.
9314
9315         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
9316         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
9317         for example.
9318
9319         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
9320         interfaces for valuetypes if needed.    
9321
9322         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
9323         for their basetype as well. Types are array expanded if rank is > 0.
9324
9325         Fixes #400716.
9326
9327 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
9328
9329         * socket-io.h : Changing the signature of
9330           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
9331           the blocking state.
9332
9333         * icall-def.h :  Changing the signature of
9334           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
9335
9336         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
9337           For Windows only.  Avoid blocking when calling accept by
9338           querying for a connection via select.  The loop also queries
9339           the thread state every 1000 micro seconds for the thread
9340           stop state.  This will avoid the process hanging on shutdown
9341           when using a TcpChannel that is never connected to.
9342
9343         Code is contributed under MIT/X11 license.
9344
9345 2008-12-30  Marek Safar  <marek.safar@gmail.com>
9346
9347         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
9348
9349 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9350
9351         * class.c (get_implicit_generic_array_interfaces): Extract common
9352         code to a helper function making it a lot easier on the eyes.
9353
9354 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
9355
9356         * class.c (get_implicit_generic_array_interfaces): If the internal
9357         enumerator is an interface inflate System.Object instead of itself.
9358
9359         Fixes #461261.
9360
9361 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
9362
9363         * object.c (mono_runtime_invoke_array): Don't assert with
9364         byref nullable types.
9365
9366         * marshal.c (mono_marshal_get_runtime_invoke): To handle
9367         byref nullables we unbox the object and store it on the
9368         stack. 
9369         We can't use the boxed object since it is the T of Nullable<T>
9370         and the boxed representation of a nullable it's underlying type
9371         or null.
9372         We could cheat and create a boxed nullable and use the same
9373         machinery of other byref VTs but this feels like a hack and
9374         using the stack has the bonus of reducing heap pressure.
9375
9376         Fixes #461941.
9377
9378 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
9379
9380         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
9381         return value.
9382
9383         Fixes #461867.
9384
9385 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
9386
9387         * icall-def.h : Adding an internal call definition for 
9388           System.Environment.internalBroadcastSettingChange.
9389
9390         * icall.c : Adding a Windows only implementation to broadcast a 
9391           WM_SETTINGCHANGE when an environment variable has changed.
9392
9393         Code is contributed under MIT/X11 license.
9394
9395 2008-12-19  Mark Probst  <mark.probst@gmail.com>
9396
9397         * class.c, class-internals.h: Made
9398         mono_class_has_parent_and_ignore_generics() non-static.
9399
9400 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
9401
9402         * image.c: deal with the mmap failing when loading an image.
9403
9404 2008-12-17  Geoff Norton  <gnorton@novell.com>
9405
9406         * threadpool.c: Ensure that the io_queue_lock is initialized
9407         in all circumstances, as we always attempt to cleanup against it.
9408
9409 2008-12-17  Miguel de Icaza  <miguel@novell.com>
9410
9411         * icall.c (ves_icall_System_Environment_get_Platform): For
9412         compatibility reasons for existing client code we will keep
9413         returning 4 for a while.   
9414
9415         For how long will depend on the documentation being updated, and
9416         for us to give client code a chance to be updated.
9417
9418         This reverts the original decison on #433108 since we did not
9419         catch roughly 33 instances of the broken code in our own source
9420         code base, we did not catch failures on the buildbots, and QA did
9421         not bring this as a problem.
9422
9423         Only today I found some customer's code breaking due to our own
9424         class libraries not being fully updated and tracked it down to
9425         this change.  I am reverting it because if we could not even get
9426         our story straight in our own code base, how can we hope that our
9427         end user code be fixed?
9428
9429         As of this morning, our Wiki page that documents how to detect
9430         Unix had not been fixed.    
9431
9432 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
9433
9434         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
9435
9436         * class.c (mono_class_get_fields): Handle loading errors.
9437
9438 2008-12-12 Mark Mason <mmason@upwardaccess.com>
9439
9440         * 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.
9441         
9442 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
9443
9444         * mono-perfcounters.c: avoid warning.
9445
9446 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9447
9448         * reflection.c (ensure_runtime_vtable): Work on generic instances and
9449         make sure all interfaces have MonoClass::interface_id set.
9450
9451         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
9452         method table is property set.
9453
9454 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9455
9456         * class.c: New function mono_class_setup_interface_id that setup
9457         MonoClass::interface_id if needed.
9458
9459         * class-internals.h: Export new function.
9460
9461 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
9462
9463         * class.c: Add code to sanity check the vtable after setup_vtable_general
9464         has done it's work.
9465
9466 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
9467
9468         * icall.c: make Assembly.GetExecutingAssembly work properly when
9469         reflection is used to invoke the method.
9470         Bug #321781 fixed.
9471
9472 2008-12-11  Mark Probst  <mark.probst@gmail.com>
9473
9474         * metadata/generic-sharing.c: Look for constraints in all type
9475         arguments, not just the first one.
9476
9477 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9478
9479         * appdomain.c: return the correct CodeBase for an Assembly instance
9480         that was loaded from the shadow-copy directories.
9481         Bug #458190 fixed.
9482
9483 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
9484
9485         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
9486
9487         * sgen-gc.c (check_object): New debugging helper function.
9488
9489         * object.c: Fix calls to mono_value_copy_array ().
9490
9491 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9492
9493         * class.c (mono_class_setup_fields): If working on an inflated class
9494         first check if the generic definition did init with success.
9495
9496         Fixes #445361.
9497
9498 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9499
9500         pedump.c (main): Fix a warning.
9501
9502 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
9503
9504         * object-internals.h : Adding a definition for 
9505           MonoReflectionComVisibleAttribute.
9506
9507         * marshal.c (cominterop_com_visible) :  Method added to check the 
9508           ComVisible attribute of a class.
9509
9510         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
9511           cominterop_raise_hr_exception added to consolidate common code 
9512           to raise hr exceptions.
9513
9514         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
9515           if a managed class should support IDispatch.
9516
9517         * marshal.c 
9518           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
9519           Added additional checks for managed object when getting 
9520           an IDispatch interface.
9521
9522         Code is contributed under MIT/X11 license.
9523
9524 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9525
9526         pedump.c (main): Handle mono_get_method () returning NULL. 
9527
9528 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9529
9530         * marshal.h: Fix a warning.
9531
9532 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
9533
9534         * marshal.c : Adding cominterop_release_all_rcws to release all
9535           runtime callable wrappers held by the runtime.
9536
9537         * marshal.h : Adding declaration for cominterop_release_all_rcws.
9538           
9539         Code is contributed under MIT/X11 license.
9540
9541 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9542
9543         * metadata.c (mono_image_alloc_lock): New helper function.
9544         (mono_image_alloc0_lock): Ditto.
9545
9546         * metadata.c: Use the alloc_lock () helper functions for allocating
9547         memory from the image mempool.
9548
9549 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
9550
9551         * class.c (mono_class_from_generic_parameter): Document it's
9552         locking behavior. Fix double checked locking here, we stored in
9553         param->pklass a partially initialized MonoClass and no membar was used.
9554
9555 2008-12-05  Marek Habersack  <mhabersack@novell.com>
9556
9557         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
9558         (3) functions are present in the C library use them to do the
9559         job. If they are absent, make sure that the sum of int_part and
9560         dec_part is rounded before returning. This is necessary due to the
9561         division of dec_part by the power of 10 before the final addition
9562         is performed - if the result is not rounded in some cases it will
9563         yield invalid results.
9564
9565 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
9566
9567         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
9568         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
9569         instruction instead of a pointer constant.
9570
9571 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
9572
9573         * loader.c (mono_method_get_header): Do most of the work outside the
9574         loader lock, to avoid assembly load hook deadlocks.
9575
9576         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
9577         (mono_metadata_parse_type_full): Ditto.
9578
9579 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
9580
9581         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
9582         Make the stack depth fixed. Ensure proper argument passing to the backtrace
9583         funtions. Finally, use a lock to produce well ordered output.
9584
9585         The lock looks silly, as all calls to the corlib mempool should be guarded
9586         with the loader lock, but for some reason this fact doesn't help. 
9587
9588         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9589
9590 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9591
9592         * socket-io.c: 64 bit big-endian fixes.
9593
9594 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9595
9596         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9597         targets that require strict compatibility between the types.
9598
9599         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9600         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9601         Kill the strict argument and create a new one valuetype_must_be_boxed.
9602
9603         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9604         state that all valuetypes must be boxed.
9605
9606         Fixes #448560.
9607
9608 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9609
9610         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9611         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9612
9613         Contributed under MIT/X11 license.
9614
9615 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9616
9617         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9618         the inflate_generic_type machinery should handle it.
9619
9620         This avoids a crash when the field's flags is zero and it's type is
9621         a primitive.
9622         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9623         is zero and will return one of the cached built-in primitive types. Since
9624         those types live in read-only memory, the code that copies it crashes.  
9625
9626 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9627
9628         * object.c: Don't put function descriptors into generalized IMT
9629         thunks.
9630
9631 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9632
9633         * class.c: Enable generic code sharing on PPC64.
9634
9635 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9636
9637         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9638         from mini/mini.c.
9639
9640         * generic-sharing.c: Allocate the method template slists from the
9641         image mempool so it doesn't leak.
9642
9643 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9644
9645         * class.c (generic_array_methods): Release the linked list.
9646
9647 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9648
9649         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9650         invocation to g_utf16_to_utf8().
9651
9652 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9653
9654         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9655         arguments on big endian archs.
9656
9657 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9658
9659         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9660         the type name (test added in corlib).
9661
9662 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9663
9664         * pedump.c: initialize perf. counters. Fixes a segv.
9665
9666 2008-11-25  Martin Baulig  <martin@ximian.com>
9667
9668         * mono-debug-debugger.c
9669         (mono_debugger_runtime_invoke): Return the exception object if an
9670         exception was thrown.  Visual Studio displays the exception object
9671         in the locals window.
9672
9673 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9674
9675         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9676         ftnptr.
9677
9678 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9679
9680         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9681         MONO_TYPE_U are sizeof (gpointer), too.
9682
9683 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9684
9685         * marshal.c (mono_type_native_stack_size): Fixed size and
9686         alignment for reference types.
9687
9688 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9689
9690         * class.c (mono_class_generic_sharing_enabled): Disable generic
9691         code sharing for PPC64.
9692
9693 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9694
9695         * icall.c (mono_method_get_equivalent_method): Make sure
9696         method->klass->methods is inited before looping over it.
9697
9698 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9699
9700         * object.c: when calling ExecuteAssembly in a newly created domain,
9701         the configuration file and application base are already set up.
9702         Bug #446353 take 2 fixed.
9703
9704 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9705
9706         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9707         Fixes #444715. Fix a warning.
9708
9709 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9710
9711         * appdomain.c: write the full path of the assembly to the .ini file
9712         created when "shadow-copying"
9713         Bug #446353 fixed.
9714
9715 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9716
9717         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9718         if signature==FALSE.
9719
9720 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9721
9722         * marshal.h : Fix the cygwin build.
9723            marshal.c:12442: undefined reference to `_IID_IMarshal'
9724           
9725         Code is contributed under MIT/X11 license.
9726
9727 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9728
9729         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9730           free threaded marshaler when QueryInterface is called on a COM callable
9731           wrapper requesting the IMarshal interface.
9732           
9733         Code is contributed under MIT/X11 license.
9734
9735 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9736
9737         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9738
9739         * reflection.c (mono_type_get_object): Special case the very common
9740         void type.
9741
9742         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9743         hold typeof(void).
9744
9745 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9746
9747         * process.h : Adding method declaration for
9748           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9749           
9750         * process.c : Adding implementation for
9751           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9752           
9753         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9754           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9755
9756         Code is contributed under MIT/X11 license.
9757
9758 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9759
9760         * appdomain.c (unload_thread_main): Clean up threadpool by
9761         calling mono_thread_pool_remove_domain_jobs.
9762
9763         * domain-internals.h (struct _MonoDomain): Add new fields to
9764         help coordinate the cleanup of the threadpool.
9765
9766         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9767         that cleans up the threadpool of all jobs associated with an appdomain.
9768         It does that by cleaning up the queues and making sure all active
9769         threads are accounted.
9770
9771         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9772         unloaded or in the process of. Take this is such way that there is
9773         no race condition between another thread starting the unload and the
9774         current thread acknowledging it.
9775
9776         * threadpool.c (async_invoke_thread): Same.
9777
9778         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9779         firing the new thread.
9780
9781         * threadpool.c (start_tpthread): Same.
9782
9783         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9784
9785         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9786
9787 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9788
9789         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9790         Add support for DuplicateHandle.
9791         
9792         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9793         Add support for DuplicateHandle.
9794         
9795         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9796         Add support for DuplicateHandle.
9797
9798         Code is contributed under MIT/X11 license.
9799
9800 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9801
9802         * class-internals.h: Make min_align into a whole byte.
9803
9804         * class.c: Set min_align for SIMD types to 16.
9805
9806 2008-11-05  Geoff Norton  <gnorton@novell.com>
9807
9808         * attach.c: Default the attacher to enabled for all cases including
9809         embedded.
9810
9811 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9812
9813         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9814         change r117650.
9815
9816 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9817
9818         * monitor.c, monitor.h: New function for querying offsets of
9819         members of MonoThreadsSync.
9820
9821 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9822
9823         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9824         to speed up this function and to avoid the boundless memory growth caused by
9825         the signature_dup () calls.
9826
9827 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9828
9829         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9830         wrapper.
9831
9832         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9833         by 1 bit.
9834
9835         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9836
9837 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9838
9839         * appdomain.c:
9840         * domain-internals.h: made mono_set_private_bin_path_from_config()
9841         "internal".
9842         * object.c: call the above function after setting the configuration
9843         file path for the root domain.
9844         Fixes bug #314478.
9845
9846 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9847
9848         * assembly.c: when the assembly is loaded from an absolute path, end
9849         basedir with a directory separator.
9850         Bug #440781 fixed.
9851
9852 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9853
9854         * monitor.c (mono_monitor_get_fast_enter_method): If
9855         CompareExchange is not available, don't create the fastpath
9856         instead of asserting.  (The method is missing in the 1.1 profile.)
9857
9858 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9859
9860         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9861
9862         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9863         Monitor.Exit IL fastpaths.
9864
9865 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9866
9867         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9868
9869 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9870
9871         * class.c (mono_class_create_from_typedef): Added Vector2l.
9872
9873 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9874
9875         * class.c (mono_class_create_from_typedef): Added Vector2d.
9876
9877 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9878
9879         * appdomain.c: translate \ into / for cache_path.
9880         * domain-internals.h: new mono_is_shadow_copy_enabled().
9881         * icall.c: (fill_reflection_assembly_name) do the same path
9882         manipulations that get_code_base does.
9883         (get_code_base) use mono_is_shadow_copy_enabled.
9884
9885 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9886
9887         * appdomain.c: shadow-copied assemblies go to CachePath +
9888         ApplicationName when both are set. DynamicBase has nothing to do with
9889         shadow copies.
9890         Bug #406877 fixed.
9891
9892 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9893
9894         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9895         STANDALONESIG table.
9896
9897         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9898         standalone signatures.
9899
9900         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9901         comparison code: instead of comparing the signatures using a custom
9902         equals function, transform them to a common signature and compare that. This
9903         works better with AOT.
9904
9905 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9906
9907         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9908
9909         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9910         call for generic instances.
9911         (mono_class_setup_properties): Call setup_properties () before accessing
9912         gklass->properties.
9913
9914         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9915         over the virtual methods of a class using metadata if possible, avoiding the
9916         creation of MonoMethod's for non-virtual methods.
9917         
9918         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9919         get_virtual_methods () to iterate over the virtual methods of classes.
9920
9921 2008-10-25  Martin Baulig  <martin@ximian.com>
9922
9923         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9924
9925 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9926
9927         * class.c (mono_class_create_from_typedef): Added Vector4i.
9928
9929 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9930
9931         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9932         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9933         special-casing applies to eliminate the call completely.
9934
9935 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9936
9937         * class.c (mono_class_create_from_typedef): Added Vector8s.
9938
9939 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9940
9941         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9942
9943 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9944
9945         * icall.c: get rid of annoying warning.
9946
9947 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9948
9949         * threadpool.c: in 1.x, if you change the background status of the
9950         threadpool thread, it's not reset.
9951         Remove unnecessary calls to SetState.
9952
9953 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9954
9955         * threadpool.c: asynchronously create a set of idle threads upon first
9956         use of the threadpool. SetMinThreads will now start the appropriate
9957         number of idle threads if they are not already running. The default is
9958         1 threadpool thread per CPU. Increased the maximum number of threads
9959         per CPU to 10.
9960
9961 2008-10-22  Martin Baulig  <martin@ximian.com>
9962
9963         Revert r116521 from Zoltan, it breaks the debugger:
9964
9965         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9966         over the virtual methods of a class using metadata if possible, avoiding the
9967         creation of MonoMethod's for non-virtual methods.
9968         
9969         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9970         get_virtual_methods () to iterate over the virtual methods of classes.
9971
9972 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9973
9974         * threads.c: when creating a threadpool thread, set its state to
9975         'background'.
9976         * threadpool.c: reset the background state of a threadpool thread
9977         after finishing each work item
9978         Bug #437888 fixed.
9979
9980 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9981
9982         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9983         
9984         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9985         generic instances which works by inflating the methods in the container
9986         class's vtable.
9987
9988         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9989         variant which doesn't make a copy if no inflation was done.
9990         (mono_class_setup_fields): Use it.
9991
9992         * metadata.c (mono_metadata_get_shared_type): New helper function to
9993         return a shared instance of a given MonoType.
9994
9995         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9996         a copy of most non-generic types.
9997
9998 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9999
10000         * threadpool.c: remove one more GetSystemInfo () call.
10001
10002 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10003
10004         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
10005         use the code in mono-proclib.h to get processor information.
10006
10007 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
10008
10009         * appdomain.c: fixed the logic that determines whether assemblies in a
10010         directory are "shadow-copied" or not. Bug #433483 fixed.
10011
10012 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
10013
10014         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
10015         warning.
10016
10017 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
10018
10019         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
10020         returning a vtype.
10021
10022         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
10023         reflection.c: Use mono_field_get_name () for accessing a field's name.
10024
10025         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
10026         class.c
10027
10028         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
10029         field.
10030
10031         * loader.c (find_method_in_class): Reenable the metadata optimization by
10032         not using it for generic instances.
10033
10034         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
10035         data/def_type fields from MonoClassField into a separate structure.
10036         (struct MonoClassField): Remove data/def_type fields.
10037         (struct _MonoClass): Add a 'field_def_values' array to store the default
10038         values/RVA for fields.
10039
10040         * class.c reflection.c: Update after the changes.
10041         
10042         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
10043         for accessing field->data.
10044
10045         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
10046
10047         * loader.c (find_method_in_class): Revert the last change for now as
10048         it breaks Mono.C5 unit tests.
10049
10050         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
10051         'field_generic_types' and 'field_objects' which contain the information
10052         previously stored in MonoInflatedField.
10053         (MonoInflatedField): Delete.
10054         (struct _MonoClassField): Delete 'generic_info' field.
10055
10056         * reflection.c: Store the information which was previously in 
10057         field->generic_info in MonoDynamicGenericClass instead.
10058
10059         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
10060         MonoClassField changes.
10061
10062 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
10063
10064         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
10065         store the value inside the data array of the MonoMethodWrapper.
10066         This saves memory, is faster and fixes the lifetime issues (methods
10067         were never removed from the hash previously). May also fix bug#436996.
10068
10069 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
10070
10071         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
10072         generic instances, compute the type from the generic definition instead of
10073         looking in field->generic_info.
10074
10075         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
10076         for inflated fields, the only user was get_fieldref_token () which no
10077         longer needs it.
10078
10079         * class.c (mono_class_init): Revert the last change as it seems to cause
10080         crashes.
10081
10082         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
10083         bytes on 64 bit platforms.
10084
10085         * object.c (mono_class_create_runtime_vtable): Fix a warning.
10086         
10087         * object.c (mono_class_create_runtime_vtable): Don't initalize
10088         field->data/field->def_type here, it is done lazily by 
10089         mono_class_get_field_default_value ().
10090
10091         * icall.c (ves_icall_get_enum_info): Call 
10092         mono_class_get_field_default_value () instead of directly accessing
10093         field->data and field->def_type.
10094
10095         * object.c (get_default_field_value): Ditto.
10096
10097         * class.c (mono_field_get_data): Ditto.
10098         
10099         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
10100         call for generic instances.
10101
10102         * loader.c (find_method_in_class): If klass != from_class, then inflate
10103         the method with the context of from_class, since the caller assumes this.
10104
10105 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
10106
10107         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
10108         for accessing method->slot.
10109
10110 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
10111
10112         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
10113
10114 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
10115
10116         * class.c (mono_method_get_vtable_index): Use
10117         mono_method_get_vtable_slot () for accessing method->slot.
10118
10119         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
10120         accessing klass->methods.
10121
10122         * class.c (mono_method_get_vtable_slot): New helper function.
10123         (mono_class_get_vtable_entry): Ditto.
10124         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
10125         accessing method->slot.
10126
10127         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
10128         method to get_inflated_method ().
10129
10130         * class.c (mono_class_get_inflated_method): New helper method to obtain
10131         a method of an inflated class without calling setup_methods ().
10132         (mono_class_get_cctor): Use get_inflated_method.
10133
10134         * generic-sharing.c (mono_class_get_method_generic): Ditto.
10135         
10136         * marshal.c image.c: Lazily create all the marshal caches.
10137
10138         * image.c (mono_image_init): Move initialization of runtime_invoke
10139         caches to marshal.c.
10140
10141         * marshal.c (get_cache): New helper function to lazily initialize a 
10142         wrapper cache.
10143         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
10144
10145         * debug-helpers.c (mono_method_full_name): Include generic arguments.
10146
10147 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
10148
10149         * loader.c: fixed check for interface type.
10150
10151 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
10152
10153         * appdomain.c: check for NULL setup before it's referenced.
10154
10155 p
10156 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
10157
10158         * class.c: remove the unused old vtable setup code.
10159
10160 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
10161
10162         * class.c: don't depend on interface order in
10163         setup_interface_offsets (bug #435777).
10164         * reflection.c: sort the InterfaceImpl table (patch from
10165         Jb Evain  <jbevain@novell.com>).
10166
10167 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
10168
10169         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
10170         the low level assemblies lock.
10171
10172 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
10173
10174         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
10175         object.c, reflection.c, socket-io.c, threads.c: introduced
10176         mono_framework_version () to return the major framewrok version,
10177         changed the code that was using more complex patterns to use it.
10178         Return the correct value for PlatformID for OSX.
10179
10180 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
10181
10182         * icall-def.h, process.h, process.c: added an icall to get info about
10183         processes using mono-proclib.
10184
10185 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
10186
10187         * mono-perfcounters.c: use the mono-proclib functions to
10188         access process information.
10189
10190 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
10191
10192         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
10193         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
10194         reflection.c: remove rawbuffer usage: mmap support is more sanely
10195         provided by utils/mono-mmap.
10196
10197 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
10198
10199         * gc.c: use posix semaphores when possible so that
10200         mono_gc_finalize_notify() is signal safe.
10201
10202 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
10203
10204         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
10205         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
10206         be #ifdef-ed out, the linker will remove the rest.
10207
10208         * marshal.c: Implement DISABLE_COM.
10209
10210         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
10211
10212 2008-10-11  Miguel de Icaza  <miguel@novell.com>
10213
10214         * locales.c (string_invariant_compare_char): Optimization: do not
10215         call g_unichar_type unless we actually need the information.
10216
10217 2008-10-10  Mark Probst  <mark.probst@gmail.com>
10218
10219         * object.c, class-internals.h: Also create remoting trampolines
10220         for generic methods.  Pass the domain to the remoting trampoline
10221         creation function, too.
10222
10223 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
10224
10225         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
10226
10227 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10228
10229         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
10230         Vector4ui.
10231
10232 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
10233
10234         * assembly.c:
10235         * locales.c: remove the use of g_strdown. Fixes bug #322313.
10236
10237 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10238
10239         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
10240         for the least possible amount of time (extending the fix in r113458).
10241
10242 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10243
10244         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
10245
10246 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10247
10248         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
10249         as possible simd intrinsic types.
10250         Optimized the test to check for the common prefix first.
10251
10252 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
10253
10254         * class.c: back out part of a broken optimization committed on
10255         May 23th (bug #433908).
10256
10257 2008-10-09  Mark Probst  <mark.probst@gmail.com>
10258
10259         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
10260         Win32.  Should fix #432388 for most cases until we have the new
10261         profiler on Win32.
10262
10263 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
10264
10265         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
10266         instead of using inst->id so the hash is stable for AOT.
10267
10268 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
10269
10270         * appdomain.c:
10271         * icall.c: create a .ini file for shadow-copied assemblies that
10272         contains the location of the original assembly. Use this to return the
10273         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
10274         Also fix the number of '/' for windows when returning the CodeBase.
10275         Fixes bug #430920.
10276
10277 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10278
10279         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
10280
10281         Code is contributed under MIT/X11 license.
10282
10283 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10284
10285         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
10286           if if the class vtable needs initialized.
10287
10288         Code is contributed under MIT/X11 license.
10289
10290 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
10291
10292         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
10293           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
10294           STRING->BSTR, and CLASS->INTERFACE.
10295
10296         Code is contributed under MIT/X11 license.
10297
10298 2008-10-07  Marek Habersack  <mhabersack@novell.com>
10299
10300         * sysmath.h: changed the declaration of the
10301         ves_icall_System_Math_Round2 icall by adding an extra
10302         away_from_zero parameter.
10303
10304         * sysmath.c (ves_icall_System_Math_Round2): added support for
10305         away from zero rounding. The icall now takes an extra boolean
10306         parameter to signal that away from zero operation is requested.
10307
10308 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
10309
10310         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
10311         the delegate klass so it can work with full-aot.
10312         (mono_marshal_get_delegate_end_invoke): Ditto.
10313         (mono_marshal_get_delegate_invoke): Ditto.
10314
10315 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
10316
10317         * gc.c, attach.h, attach.c: remove a bad pattern:
10318         add_finalizer_callback () is not implemented correctly, it can't
10319         without adding more overhead to the finalizer loop and it's not
10320         even needed, since we know exactly what we need to call, so there is
10321         no need to do so through an expensive function pointer.
10322
10323 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
10324
10325         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
10326         for the no-gc case.
10327         * attach.c (mono_attach_init): Remove the #ifdef.
10328
10329 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
10330
10331         * attach.c (mono_attach_init): Don't use
10332         mono_gc_add_finalizer_thread_callback when compiling without GC.
10333         Fixes #432306.
10334         
10335         Code is contributed under MIT/X11 license.
10336
10337 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
10338
10339         * class.c (mono_class_create_from_typedef): Remove the 
10340         #ifndef DISABLE_SIMD stuff.
10341
10342 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
10343
10344         * class-internals.h (MonoClass): Added simd_type bit field.
10345
10346         * class.c (mono_class_create_from_typedef): Check if type is a simd
10347         intrinsic.
10348
10349 2008-10-03  Mark Probst  <mark.probst@gmail.com>
10350
10351         * object.c (mono_method_add_generic_virtual_invocation): Only add
10352         instantiations to the thunk whose count is at least as large as
10353         the threshold.
10354
10355 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
10356
10357         * icall.c: changed the Type of the exception thrown when trying to
10358         invoke a constructor on an abstract class. Part of the fix for bug
10359         #324185.
10360
10361 2008-10-02  Mark Probst  <mark.probst@gmail.com>
10362
10363         * class.c, class-internals.h (mono_method_get_vtable_index): New
10364         function which returns the index into the vtable and properly
10365         handles inflated virtual generic methods.
10366
10367 2008-10-01  Mark Probst  <mark.probst@gmail.com>
10368
10369         * object.c, domain.c, object-internals.h, domain-internals.h:
10370         Generalize IMT thunk machinery to also handle thunks for virtual
10371         generic method invokes.  When a virtual generic method is invoked
10372         more than a number of times we insert it into the thunk so that it
10373         can be called without lookup in unmanaged code.
10374
10375         * generic-sharing.c, class-internals.h: Fetching a
10376         MonoGenericInst* for a method from an (M)RGCTX.
10377
10378 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
10379
10380         * marshal.c (emit_marshal_string): Applied a variant of a patch by
10381         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
10382         marshalling. Fixes #431304.
10383
10384 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
10385
10386         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10387           handle when ref is specified without In or Out.
10388
10389         Code is contributed under MIT/X11 license.
10390
10391 2008-09-30  Mark Probst  <mark.probst@gmail.com>
10392
10393         * loader.c (mono_get_method_constrained): Don't expand method with
10394         the class's context, because it's already a method of that class.
10395
10396 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
10397
10398         * attach.c : should be correct build fix.
10399
10400 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
10401
10402         * attach.c: Fix the previous change.
10403
10404 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
10405
10406         * attach.c : quick w32 build fix.
10407
10408 2008-09-27  Miguel de Icaza  <miguel@novell.com>
10409
10410         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
10411         crashes MonoDevelop: #430455.
10412
10413 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
10414
10415         * domain-internals.h (struct _MonoDomain): Move most fields used only by
10416         the JIT do MonoJitDomainInfo in ../mini/mini.h.
10417
10418         * domain.c: Remove initialization/cleanup of the removed fields.
10419
10420 2008-09-27  Mark Probst  <mark.probst@gmail.com>
10421
10422         * class.c (mono_class_generic_sharing_enabled): Enable generic
10423         code sharing for PPC.
10424
10425 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
10426
10427         * attach.c : Fixing the Windows builds.
10428
10429         Code is contributed under MIT/X11 license.
10430
10431 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10432
10433         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
10434         the default generic sharing mode to 'all'.
10435
10436 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10437
10438         * generic-sharing.c, class-internals.h: New function for checking
10439         whether a method needs a static RGCTX invoke wrapper.  A few
10440         funtions moved from mini/generic-sharing.c.
10441
10442         * icall.c: New function used.
10443
10444 2008-09-25  Mark Probst  <mark.probst@gmail.com>
10445
10446         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10447         Static RGCTX invoke wrapping applies to value type methods, too.
10448
10449         * class.c (mono_class_setup_vtable_general): In generic-shared
10450         value types, wrap methods with a static RGCTX invoke wrapper.
10451
10452 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
10453
10454         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
10455         osx build.
10456
10457 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
10458
10459         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
10460         register a callback which is called when the finalizer thread is woken
10461         up.
10462         (finalizer_thread): Call the callback if it exists.
10463
10464         * attach.h attach.c: New files, implementing the attach mechanism.
10465
10466         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
10467         
10468         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
10469         by the previous change.
10470
10471 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
10472
10473         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
10474         loader.c, marshal.c, metadata-internals.h, metadata.c,
10475         method-builder.c, object.c, reflection.c: introduced specific functions
10476         to allocate from the domain and image mempools and cleaned up most of
10477         the code to use them (still missing a few in reflection.c).
10478         Keep the loader bytes counter updated.
10479
10480 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
10481
10482         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
10483         loader-related counters.
10484
10485 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
10486
10487         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
10488         added more MS-compatible counters.
10489
10490 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
10491
10492         * class.c (mono_class_setup_fields): Call setup_fields before accessing
10493         class->blittable. Fixes #428217.
10494
10495 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
10496
10497         * reflection.c (mono_image_get_field_on_inst_token): Call 
10498         field_encode_signature () since that handles custom modifiers too.
10499         Fixes #424663.
10500
10501 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
10502
10503         * reflection.c (add_custom_modifiers): New helper function to merge custom
10504         modifiers stored in objects to a MonoType.
10505         (fieldref_encode_signature): Encode custom modifiers.
10506         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
10507         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
10508
10509 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
10510
10511         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
10512         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
10513         64-bit IL only images because imports are not resolved for IL only images.
10514         Special thanks to Bill Holmes for finding this bug and testing the patch.
10515         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
10516
10517         Contributed under MIT/X11 license.
10518
10519 2008-09-19  Miguel de Icaza  <miguel@novell.com>
10520
10521         * mono-config.c (dllmap_start): Add support for the bits keyword
10522         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
10523
10524 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10525
10526         * reflection.c (inflate_mono_method): When the class the method is
10527         to be inflated for is itself not inflated, just return the method.
10528
10529 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
10530
10531         * mono-perfcounters.c: use more user friendly process instance names.
10532
10533 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
10534
10535         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10536           handle "[in] ref" and "[in][out] ref" cases.
10537
10538         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
10539           to mono_mb_create_method.  This was causing problems calling native to
10540           managed passing Variants by value.
10541
10542         Code is contributed under MIT/X11 license.
10543
10544 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
10545
10546         * class.c (can_access_internals): Call mono_assembly_load_friends ()
10547         before accessing the friend_assembly_names field.
10548
10549         * assembly.c (mono_assembly_load_friends): Make this callable multiple
10550         times.
10551         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
10552         called lazily when it is needed.
10553
10554         * metadata-internals.h (struct _MonoAssembly): Add 
10555         'friend_assembly_names_inited' flag.
10556
10557 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
10558
10559         * mono-perfcounters-def.h: fix the types of a few counters.
10560         * mono-perfcounters.c: implemented the instance names getter
10561         and a few bugfixes.
10562
10563 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
10564
10565         * culture-info-table.h : regenerated.
10566
10567 2008-09-17  Robert Jordan  <robertj@gmx.net>
10568
10569         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
10570         context bound objects. Fixes #415577.
10571
10572         Code is contributed under MIT/X11 license.
10573
10574 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
10575
10576         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
10577         implementation (bug #423582).
10578
10579 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
10580
10581         * object.c (mono_object_get_virtual_method): Handle the case method->slot
10582         is not set. Fixes #426309.
10583
10584 2008-09-16  Jb Evain  <jbevain@novell.com>
10585
10586         * class.c (mono_class_from_name): fix the exported type look up
10587         when the type is defined in a referenced assembly.
10588
10589 2008-09-16  Jb Evain  <jbevain@novell.com>
10590
10591         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10592         increment the next index counter on each iteration to make that work
10593         for more than one type forwarder. Unmanaged part to fix #422929.
10594
10595 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10596
10597         * object-internals.h: enum ComInterfaceType in
10598         MonoInterfaceTypeAttribute is guint32, not guint16.
10599
10600 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10601
10602         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10603         writing code.
10604
10605 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10606
10607         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10608         not gboolean.
10609
10610 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10611
10612         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10613         Endianness fixes for MonoSymbolFileOffsetTable.
10614
10615 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10616
10617         * process.c (complete_path) : Removing quotes from the 
10618           input path.  The glib file routines do not handle file paths
10619           that have quotes around them.
10620
10621         Code is contributed under MIT/X11 license.
10622
10623 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10624
10625         * socket-io.h : Adding a comment to provide locations where 
10626           changes to MonoSocketAsyncResult need to be synced.
10627
10628         Code is contributed under MIT/X11 license.
10629
10630 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10631
10632         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10633         parameters as well. Fixes #425001.
10634
10635 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10636
10637         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10638         windows build.
10639
10640 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10641
10642         * console-io.c: Add support for tracking the window size if it
10643         changes.
10644
10645         The setup is very simple: the TtySetup function will now return a
10646         pointer to a location in memory that tracks the current console
10647         size.  The managed code checks its current value every time its
10648         queried against the last value set, and updates accordingly.
10649
10650         With this setup we can work with multiple consoles, and we do not
10651         require to poke into managed code from a signal handler.
10652
10653         Additionally, the environment for COLUMNS and LINES is now handled
10654         in unmanaged code.
10655
10656         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10657
10658 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10659
10660         * marshal.c (mono_type_native_stack_size): Treat
10661         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10662
10663 2008-09-04  Jb Evain  <jbevain@novell.com>
10664
10665         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10666         to nullables.
10667
10668 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10669
10670         * verify.c (verify_type_compatibility_full): Revert change
10671         to allow converting a native int to unmanaged pointer be verifiable
10672         under non-strict mode.
10673         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10674
10675         * verify.c: Added some TODOs.
10676
10677 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10678
10679         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10680           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10681           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10682
10683         Code is contributed under MIT/X11 license.
10684
10685 2008-09-02  Jb Evain  <jbevain@novell.com>
10686
10687         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10688
10689 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10690
10691         reflection.c (typebuilder_setup_fields): Handle classes with
10692         explicit size.
10693
10694 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10695
10696         class.c (mono_class_setup_events): Add memory barrier due to
10697         double checked locking.
10698         
10699         class.c (mono_class_setup_properties): Same.
10700
10701 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10702
10703         * class.c (mono_class_is_assignable_from): Fix the build.
10704         
10705         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10706         before accessing klass->interface_bitmap. Fixes #421744.
10707
10708 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10709
10710         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10711         the runtime into no-exec mode, useful when running the AOT compiler.
10712
10713         * appdomain.c gc.c object.c: Avoid executing managed code when running
10714         in no-exec mode.
10715         
10716         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10717
10718         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10719         special case when the mono_assembly_loaded () returns NULL because the 
10720         search hook is not installed.
10721
10722 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10723
10724         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10725         crashes in bstr marshalling on linux.
10726
10727 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10728
10729         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10730         with more than one parameter.
10731
10732 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10733
10734         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10735         start/stop flow control as well when turning off ICANON (allows
10736         C-s and C-q to be read by Console.ReadKey).
10737
10738 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10739
10740         * class.c (mono_class_init): Move the initialization of nested classes
10741         into mono_class_get_nested_types (). Fixes #418433.
10742
10743         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10744         flag.
10745
10746         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10747         iterating tough the nested classes of a class.
10748
10749 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10750
10751         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10752         on arm.
10753
10754 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10755
10756         * console-io.c (sigcont_handler): Support signal chaining for
10757         SIGCONT.
10758
10759         (console_set_signal_handlers): Use best practices with sigaction,
10760         clear the structure before using it. 
10761
10762 2008-08-22  Robert Jordan  <robertj@gmx.net>
10763
10764         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10765         Fix the Windows build.
10766
10767 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10768
10769         * class.c (mono_class_generic_sharing_enabled): Make the default
10770         sharing mode 'corlib'.
10771
10772 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10773
10774         * console-io.c (console_set_signal_handlers): Fix a warning.
10775
10776         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10777         method normally, the JIT will take care of avoiding recursion.
10778
10779 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10780
10781         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10782
10783         Code is contributed under MIT/X11 license.
10784
10785 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10786
10787         * console-io.c (sigcont_handler): We need to restore the entire
10788         termios state, not only the original settings, as things like echo
10789         can be controlled after this (Booish exposes this issue with its
10790         own ReadLine implementation).
10791
10792         Additionally, we need to set the terminal back into keypad_xmit
10793         mode.
10794         
10795         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10796         string as a paramter as well.   Otherwise we get different
10797         keyboard sequences.
10798
10799 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10800
10801         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10802         delegates with byref out parameter passing. Fixes #351520.
10803
10804         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10805         a generic context.
10806         (mono_type_get_desc): Add the type arguments for GENERICINST.
10807         (mono_method_full_name): Stringify the class name using mono_type_full_name
10808         so it picks up generic arguments.
10809
10810 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10811
10812         * console-io.c: Removed debug output.
10813
10814 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10815
10816         reflection.c (mono_reflection_create_runtime_class): Alloc
10817         the nested classes linked list using the dynamic image mempool.
10818         Fixes leak in corlib compilation.
10819
10820 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10821
10822         * console-io.c: Fix incredibly annoying behavior on the console
10823         after resuming execution after control-z.   This affected every
10824         console application.
10825
10826 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10827
10828         * mempool-internals.h: Header for mono private mempool functions. The first
10829         two function are for allocating glib linked lists using pools.
10830
10831         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10832
10833         * Makefile.am: Added mempool-internals.h.
10834
10835 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10836
10837         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10838         (mono_domain_free): Ditto.
10839
10840         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10841         be used by the JIT to store its domain-specific information, instead of putting
10842         it directly into MonoDomain.
10843
10844         * domain.c (mono_install_create_domain_hook): New helper function to install
10845         a hook which initializes domain->runtime_info.
10846
10847         * domain.c (mono_install_free_domain_hook): Ditto.
10848         
10849 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10850
10851         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10852         asserting if the ares parameter is null.
10853
10854         * mono-perfcounters.c: Fix warnings.
10855
10856         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10857         is not needed, don't check for interruptions either.
10858         (mono_marshal_get_delegate_end_invoke): Ditto.
10859
10860 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10861
10862         * mono-perfcounters.c (predef_readonly_counter): added support for
10863         reading the ASP.NET Requests Queued counter from another process.
10864
10865 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10866
10867         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10868         MonoImage to simplify the AOT code.
10869
10870 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10871
10872         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10873         marshalling. Fixes #416078.
10874
10875 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10876         
10877         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10878         it is set, looking up the icall address is deferred to the JIT, since 
10879         in embedded scenarios, the icall might not be registered in the runtime
10880         doing the AOT compilation. Backported from the 2.0 branch.
10881
10882 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10883
10884         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10885         Fixes #415621.
10886
10887 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10888
10889         * Makefile.am: added support for cross-compilation.
10890
10891 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10892
10893         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10894
10895 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10896
10897         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10898
10899 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10900
10901         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10902         mono-perfcounters.c: performance counters implementation.
10903
10904 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10905
10906         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10907         to gpointer, letting the AOT code decide what to store in it.
10908
10909 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10910
10911         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10912           mono_class_setup_methods if the methods are not initialized.
10913
10914         Code is contributed under MIT/X11 license.
10915
10916 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10917
10918         * verify.c: Remove some debug code I commited by accident.
10919
10920         * verify.c (mono_method_is_valid_in_context): Change the return value
10921         to make possible to distinguish between invalid and unverifiable.
10922
10923         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10924         methods.
10925
10926 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10927
10928         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10929         constraints. Fixes regression in gtest-253.
10930
10931 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10932
10933         * verify.c (mono_verifier_verify_class): Don't allow generic types
10934         with explicit layout.
10935
10936         * verify.c (mono_method_verify): Check locals and argument types.
10937
10938 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10939
10940         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10941         wait if the thread is in StopRequested state.
10942
10943         * class.c (mono_class_from_name): Refactor the module searching code into
10944         a separate function so it can be reused in the AOT case too.
10945
10946 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10947
10948         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10949         Check both the type and it's generic type definition for loader errors.
10950         
10951         * verify.c (mono_method_is_valid_in_context): Don't generate another
10952         error when a type errors occur, this leads to the wrong exception been
10953         thrown.
10954
10955 2008-07-28  Dick Porter  <dick@ximian.com>
10956
10957         * icall-def.h
10958         * process.c
10959         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10960         New internal calls to duplicate and close a process handle.
10961
10962 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10963
10964         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10965
10966 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10967
10968         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10969
10970 2008-07-27  Robert Jordan  <robertj@gmx.net>
10971
10972         * class.c (mono_class_init): Don't compute class.has_finalize for
10973         valuetypes. Fixes #412477.
10974
10975 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10976
10977         * verify.c: Implement constraint equivalence checking.
10978         This is required when a generic parameter is used as
10979         argument to a constrained one.
10980
10981         Fixes #410637.
10982
10983 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10984
10985         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10986
10987         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10988
10989         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10990         synch with managed object layout.
10991
10992 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10993
10994         * verify.c (do_branch_op): Handle valuetypes and generic
10995         arguments properly.
10996
10997         * verify.c (do_cmp_op): Same.
10998
10999         Fixes #410383.
11000
11001 2008-07-24  Mark Probst  <mark.probst@gmail.com>
11002
11003         * generic-sharing.c: Fix memory leaks.
11004
11005         * class.c, class-internals.h: Make
11006         mono_class_inflate_generic_type_with_mempool() non-static.
11007
11008 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
11009
11010         * pedump.c (dump_verify_info): Dump full class name.
11011
11012 2008-07-24  Mark Probst  <mark.probst@gmail.com>
11013
11014         * generic-sharing.c: Removed some old code that didn't do anything.
11015
11016 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
11017         * profiler.c: Added runtime_initialized_event,
11018         mono_profiler_install_runtime_initialized and
11019         mono_profiler_runtime_initialized. This new hook tells the profiler
11020         when the runtime is sufficiently initialized to be able to call
11021         mono_thread_attach on the root appdomain.
11022         * profiler.h, profiler-private.h: Likewise.
11023
11024 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
11025
11026         * verify.c (do_cast): Do boxing for generic arguments as well.
11027
11028         * class.c (is_nesting_type): Drop generic instantiations before
11029         checking for nesting.
11030
11031         * class.c (can_access_instantiation): Allow access to generic
11032         arguments.
11033
11034 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
11035
11036         * verify.c (verify_class_for_overlapping_reference_fields):
11037         On some cases, the field size might be zero, guard against that.
11038         Fix the explicit layout check to work as expected.
11039
11040 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
11041
11042         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
11043         mono_thread_resume () during shutdown, since the thread we want to abort
11044         might be suspended.
11045
11046 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
11047
11048         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
11049         warning.
11050
11051         * debug-mono-symfile.c: Fix a warning.
11052
11053         * mono-perfcounters.c (get_cpu_times): Fix a warning.
11054
11055         * object.c (mono_class_vtable): Check if exception_type is set, and return
11056         NULL as defined by the function comments.
11057
11058 2008-07-22  Mark Probst  <mark.probst@gmail.com>
11059
11060         * mempool.c: Use malloc for every single mempool allocation if the
11061         configure option is set.  This makes it easier to track mempool
11062         allocations with tools like Valgrind.
11063
11064 2008-07-22  Jb Evain  <jbevain@novell.com>
11065
11066         * reflection.c (create_dynamic_mono_image): emit the same
11067         metadata version that SL2 does when creating a SL2 image.
11068
11069 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
11070
11071         * icall-def.h:
11072         * icall.c: New icall System.Enum:get_hashcode. This function
11073         avoids the overhead of boxing the enum to the underlying type.
11074
11075 2008-07-21  Mark Probst  <mark.probst@gmail.com>
11076
11077         * reflection.c (mono_method_get_object): Don't let static RGCTX
11078         invoke wrappers get into MonoReflectionMethods.
11079
11080 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
11081
11082         * object-internals.h:
11083         * object.c: New mono_runtime_class_init_full function
11084         that makes throwing the exception optinal.
11085
11086         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
11087         for the case where the exception object is supplied.
11088
11089 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
11090
11091         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
11092         old ld versions.
11093
11094         Contributed under MIT/X11 license.
11095
11096 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
11097
11098         * string-icalls.c (ves_icall_System_String_InternalSplit):
11099         Optimize array allocation by caching the MonoClass of the
11100         array type.
11101
11102         * icall.c (ves_icall_Type_GetMethodsByName): Same.
11103
11104         * reflection.c (mono_param_get_objects): Same.
11105
11106 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
11107
11108         * icall-def.h:
11109         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
11110         It inflates the given type using the class context.
11111
11112 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
11113
11114         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
11115         the vtable if it already exists.
11116
11117         * object-internals.h: Add mono_class_try_get_vtable as part of the
11118         internal API.
11119
11120         * reflection.c (mono_type_get_object): Use the MonoObject from the
11121         vtable when possible. Reduces locking contention on reflection heavy
11122         code.
11123
11124 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
11125
11126         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
11127         g_bit_nth_msf () since that macro is not implemented in eglib.
11128
11129 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
11130
11131         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
11132         on platforms which do not support it.
11133
11134 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
11135
11136         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
11137
11138 2008-07-11  Martin Baulig  <martin@ximian.com>
11139
11140         * mono-debug-debugger.h
11141         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
11142
11143         * mono-debug-debugger.c
11144         (_mono_debugger_interruption_request): New global volatile variable.
11145         (mono_debugger_check_interruption): New public function.
11146
11147         * threads.c
11148         (mono_thread_current_check_pending_interrupt): Call
11149         mono_debugger_check_interruption().
11150         (mono_thread_interruption_checkpoint_request): Likewise.
11151
11152 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
11153
11154         * verify.c: Add more type checks for loaded types. Verify the result
11155         handle from ldtoken.
11156
11157 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
11158
11159         * loader.c (field_from_memberref): Don't crash if the field
11160         wasn't found.
11161
11162 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
11163
11164         * verify.c: Verify if type and method instantiations
11165         don't have invalid VAR or MVAR arguments.
11166
11167 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
11168
11169         * verify.c: Fix double free of function pointer list.
11170
11171 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
11172
11173         * object.c (mono_string_to_utf8): Comment the new code as it
11174         breaks under eglib.
11175
11176 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
11177
11178         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
11179
11180 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
11181
11182         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
11183           is not throw too many times.
11184
11185         Code is contributed under MIT/X11 license.
11186
11187 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
11188
11189         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
11190         debugging is turned off.
11191
11192 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
11193
11194         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
11195
11196 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11197
11198         * class-internals.h, class.c: Added new generic sharing option:
11199         Share only stuff in System.Collections.Generic, which is now the
11200         default.
11201
11202 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11203
11204         * generic-sharing.c, class-internals.h: New function for getting a
11205         generic method in a generic class given the corresponding method
11206         for a different instantiation of the class.  Partly refactored
11207         from mini-trampolines.c.
11208
11209         * class.c: Make sure generic methods have a class_inst if they are
11210         part of a generic class.
11211
11212         * metadata.c (mono_type_stack_size_internal): Handle type
11213         variables.
11214
11215 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11216
11217         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
11218         Signifies whether information on the this/vtable/mrgctx variable
11219         is available.
11220
11221 2008-07-04  Mark Probst  <mark.probst@gmail.com>
11222
11223         * object.c, object-internals.h, icall.c: New function
11224         mono_delegate_ctor_with_method(), which does the same as
11225         mono_delegate_ctor(), but takes an explicit method argument
11226         instead of taking the method from the jit info.
11227
11228         * marshal.c: When creating a delegate with an inflated method take
11229         the "this" argument as the target class for the castclass.
11230
11231 2008-07-03  Mark Probst  <mark.probst@gmail.com>
11232
11233         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
11234         mono_jit_info_table_find() to perform very badly in some cases.
11235
11236 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
11237
11238         * icall.c (type_from_typename): Handle 'string'.
11239
11240         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
11241         wrappers into the wrapper_hash, since the key is not a MonoMethod.
11242
11243 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11244
11245         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
11246
11247         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
11248         number of available managed allocator types.
11249
11250         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
11251         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
11252
11253 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11254
11255         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
11256         which is a low level lock protecting just the 'jit_code_hash' hash table.
11257
11258         * domain.c: Initialize+cleanup jit_code_hash_lock.
11259         
11260 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11261
11262         * coree.c (mono_load_coree): Set coree_module_handle global variable only
11263         after initialization.
11264
11265         * coree.h: Make MonoFixupExe internal.
11266
11267         Contributed under MIT/X11 license.
11268
11269 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
11270
11271         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
11272         because that is platform independent. Check NumberOfRvaAndSizes in PE32
11273         as well.
11274         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
11275         image being loaded is a CLI image and _CorValidateImage gets called.
11276
11277         * coree.h: Add MonoLoadImage.
11278
11279         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
11280         instead of LoadLibrary.
11281
11282         Contributed under MIT/X11 license.
11283
11284 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
11285
11286         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
11287         for any primitive type.
11288
11289 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11290
11291         * object.c (mono_array_new_specific): Optimize this and the other allocation
11292         functions a bit.
11293         
11294         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
11295         domains too if mono_dont_free_domains is set.
11296
11297         * domain-internals.h (mono_dont_free_domains): New internal option controlling
11298         whenever to free appdomain data after it has been unloaded.
11299
11300         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
11301         
11302 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
11303
11304         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
11305         (mono_method_get_equivalent_method): Fix a warning.
11306
11307         * object.c (mono_message_init): Avoid looking up array types for each call.
11308
11309 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11310
11311         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
11312         call.
11313
11314         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
11315         even more.
11316
11317         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
11318         each iteration.
11319
11320         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
11321         fields of an enum.
11322
11323 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
11324
11325         * object.c (mono_value_box): Fix boxing of nullables.
11326
11327 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
11328
11329         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
11330         mono_module_handle that is defined by the linker; no initialization required.
11331         * coree.h: Remove mono_module_handle, add __ImageBase, update
11332         mono_image_open_from_module_handle.
11333         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
11334         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
11335         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
11336         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
11337         to 4 GB away from image base address. IA64 version is not tested but was very
11338         easy to implement and should work if we ever need it.
11339         * domain.c (mono_init_internal): Avoid system error message boxes.
11340         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
11341         with has_entry_point. Handle do_mono_image_load fauilre correctly.
11342         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
11343         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
11344         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
11345
11346         Contributed under MIT/X11 license.
11347
11348 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11349
11350         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
11351         as part of the private mono API.
11352         
11353         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
11354         Do proper argument checking for methods that belong to generic classes.
11355         Do proper type resolution for GMFH/2.
11356         Fixes #377324.
11357         
11358 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11359
11360         * verify.c (do_switch): Fix a memory corruption bug with
11361         the jump index is out of bound.
11362
11363 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11364
11365         * verify.c: Disable debug code.
11366
11367 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
11368
11369         * reflection.c (mono_image_get_methodbuilder_token): Use
11370         mono_image_get_methodspec_token_for_generic_method_definition
11371         instead of mono_image_get_memberref_token. We cache more memberef
11372         entries now.
11373
11374 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11375
11376         * verify.c: Inflate exception clause types.
11377         Fixes #402606.
11378         
11379 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11380
11381         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
11382         name.
11383
11384         * reflection.c (mono_image_get_ctorbuilder_token): Same.
11385
11386         * reflection.c (mono_image_create_method_token): Same.
11387
11388 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
11389
11390         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
11391         It does the same as mono_image_get_methodref_token but works on
11392         MethodBuilder.
11393
11394         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
11395         and always generate a methodspec. This follows the old behavior and fixes
11396         the regressions in System.Core. 
11397
11398 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11399
11400         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
11401         don't event mono_class_get () succeeds. Fixes #402182.
11402
11403 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11404
11405         * metadata-internals.h: Added MonoDynamicImage::methodspec
11406         hashtable to store methodspec tokens created for MethodBuilders.
11407
11408         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
11409         MethodBuilders as open instantiations if a methodspec was requested.
11410
11411         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
11412
11413         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
11414
11415         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
11416
11417         Fixes bug #349190.
11418
11419 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
11420
11421         * loader.c (method_from_methodspec): Avoid crashing if the
11422         method lookup fails.
11423
11424 2008-06-20  Dick Porter  <dick@ximian.com>
11425
11426         * socket-io.c (get_socket_assembly): Cope with Moonlight network
11427         classes being in a different assembly.  Fixes bug 399184.
11428
11429 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
11430
11431         * loader.c (mono_loader_init): Make this callable multiple times.
11432         (mono_dllmap_insert): Call mono_loader_init () so this works even before
11433         the runtime is initialized. Fixes #401755.
11434
11435 2008-06-19  Dick Porter  <dick@ximian.com>
11436
11437         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
11438         Fixes bug 349688.
11439
11440 2008-06-19  Dick Porter  <dick@ximian.com>
11441
11442         * socket-io.c:
11443         * icall-def.h: Implement Socket generic Send() and Receive()
11444         methods.  Fixes bug 395168.
11445
11446 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
11447
11448         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
11449
11450         Contributed under MIT/X11 license.
11451
11452 2008-06-18  Martin Baulig  <martin@ximian.com>
11453
11454         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
11455         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
11456         set to 80.0.  The debugger <-> runtime interface is now frozen as
11457         well.   
11458
11459         * mono-debug.c
11460         (mono_debug_debugger_version): Bump to 4.
11461
11462 2008-06-18  Martin Baulig  <martin@ximian.com>
11463
11464         * debug-mono-symfile.c
11465         (load_symfile): Don't check the minor version.
11466
11467         * debug-mono-symfile.h: Bump the version number to 50.0.
11468
11469 2008-06-18  Martin Baulig  <martin@ximian.com>
11470
11471         * debug-mono-symfile.c
11472         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
11473         minimum required version.
11474
11475 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11476
11477         * reflection.c (mono_custom_attrs_from_property): Fix support for
11478         retriveving cattrs of dynamic inflated generic types.
11479
11480         * reflection.c (mono_custom_attrs_from_event): Same.
11481
11482         * reflection.c (mono_custom_attrs_from_field): Same;
11483
11484         * reflection.c (typebuilder_setup_events): Same cattrs of events.
11485
11486         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
11487         Moved to metadata.c.
11488
11489         * metadata.c: New functions to retrive the equivalent field, event
11490         of property from the generic type definition.
11491
11492         * metadata-internals.h: Added new functions from metadata.c.
11493
11494 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
11495
11496         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
11497         to cached in a mempool is used.
11498
11499         * metadata.c (free_generic_class): In some situations field generic_info type
11500         is not properly dup'ed and leads to double free'ing.
11501
11502         Fixes #400643.
11503
11504 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11505
11506         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
11507         this arguments (will be needed later for generic methods).
11508         Collect stats.
11509
11510 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11511
11512         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
11513         Create a static RGCTX invoke wrapper for methods which require it.
11514
11515 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11516
11517         * object.c, class-internals.h: New function for checking whether
11518         an individual field is special static.
11519
11520 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11521
11522         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
11523         linear search since the table is sorted.
11524
11525         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
11526         Fixes #324180.
11527
11528 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11529
11530         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
11531         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
11532
11533         * gc.c (mono_domain_finalize): Allow an infinite timeout.
11534
11535         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
11536         
11537         * threads.c (mono_thread_request_interruption): Get rid of locking, use
11538         InterlockedCompareExchange to query and modify 
11539         thread->interruption_requested.
11540
11541         * object-internals.h (struct _MonoThread): Change interruption_requested
11542         to a gint32 so it can be modified by atomic operations. Add 
11543         'critical_region_level' from the managed side, change small_id to a guint32,
11544         add new set of 'unused' fields.
11545
11546         * appdomain.c: Bump corlib version.
11547
11548 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11549
11550         * class.c (mono_class_from_name): Search modules as well. Fixes
11551         #322332.
11552
11553 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11554
11555         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
11556         templates.  Templates are generalized with an additional type_argc
11557         argument.  RGCTX templates have type_argc==0, MRGCTX templates
11558         have type_argc>0.
11559
11560         * domain-internals.h, domain.c: New hash table for looking up
11561         MRGCTXs.
11562
11563         * metadata.c, metadata-internals.h: Rename hash and equal
11564         functions for MonoGenericInst's and make them public.
11565
11566         * class-internals.h: New data structures for the MRGCTX.  Macros
11567         for distinguishing slots in the RGCTX and the MRGCTX.
11568
11569 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11570
11571         * object.c (mono_method_get_imt_slot): Put the same methods of
11572         different instantiations of the same generic interface in the same
11573         IMT slots, to make generic sharing simpler.
11574
11575 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11576
11577         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
11578
11579         * metadata.c (mono_metadata_field_info_with_mempool): Added.
11580         This function works just like mono_metadata_field_info, but
11581         accept a mempool as argument to be used allocating memory.
11582
11583         * marshal.c (mono_marshal_load_type_info): Use new function
11584         to load marshal data into image mempool.
11585
11586 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11587
11588         * class.c (mono_class_inflate_generic_type_with_mempool):
11589         This function allows to inflate a generic type using
11590         a mempool.
11591
11592         * class.c (inflate_generic_type): Take a mempool as argument
11593         and use it to do type dup'ing.
11594
11595         * class.c (mono_class_setup_fields): Field type for generic
11596         generic classes are allocated from the image mempool.
11597
11598         * metadata.c (free_generic_class): Inflated field type is
11599         now allocated in the image mempool.
11600
11601 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11602
11603         * threads.c (thread_cleanup): Free MonoThread::name.
11604
11605 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11606
11607         * appdomain.c (ensure_directory_exists): avoid unnecessary
11608         mkdir(2) calls when the shadow directory already exists.
11609         (mono_make_shadow_copy): copy also satellite assemblies from the
11610         private bin directories.
11611
11612 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11613
11614         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11615         
11616         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11617         a page boundary. Fixes #396219.
11618
11619 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11620
11621         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11622         due to double-checked locking.
11623
11624 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11625
11626         * assembly.c (build_assembly_name): Release memory on failure.
11627
11628         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11629
11630 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11631
11632         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11633         memory on failure.
11634
11635 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11636
11637         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11638         memory on failure.
11639
11640 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11641
11642         * loader.c (field_from_memberref): Check if field signature type is equal
11643         to the non-inflated type of the field. Fixes #398980.
11644
11645 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11646
11647         * assembly.c (mono_assembly_load_from_full): Call 
11648         mono_assembly_load_friends () outside the assemblies lock, since it can
11649         acquire the loader lock. Fixes #323696.
11650
11651         * reflection.c (resolve_object): Inflate the inst with the context for
11652         FieldOnTypeBuilderInst. Fixes #399010.
11653
11654 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11655
11656         * reflection.c (mono_image_get_field_on_inst_token): Don't
11657         inflate the field to encode it's signature. If it's a
11658         VAR or MVAR it should stay that way in the signature.
11659         Fixes #399047.
11660
11661 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11662
11663         * reflection.c (resolve_object): Release memory of inflated types.
11664
11665 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11666
11667         * loader.c (mono_method_get_signature_full): Remove assert about
11668         loading a methodspec to a generic method. We have such methods, such as
11669         System.Threading.Interlocked::CompareExchange<T>.
11670         This assert was removed since it crashes the verifier when it checks
11671         methods calling CompareExchange<T>.
11672
11673 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11674
11675         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11676         of Type array and not MonoType.
11677
11678 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11679
11680         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11681         <lupus@ximian.com>
11682
11683 2008-06-10  Martin Baulig  <martin@ximian.com>
11684
11685         * debug-mono-symfile.h
11686         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11687         changes to the file format, but we were generating incorrect
11688         source file indices in the line number table due to a bug, which
11689         made backtraces report an incorrect source file.
11690
11691 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11692
11693         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11694         mini/debug-mini.c to here.
11695
11696         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11697
11698         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11699         use it to release structs returned by mono_debug_find_method.
11700
11701 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11702
11703         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11704         since it needs to set method->slot for all interface methods.
11705
11706 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11707
11708         * class-internals.h: Forgot to add.
11709
11710 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11711
11712         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11713
11714         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11715         Lookup the custom attributes from property_hash.
11716
11717         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11718         in property_hash. Allocate all data using the image mempool.
11719
11720         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11721         for dynamic_custom_attrs to checks if the image is dynamic.
11722
11723 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11724
11725         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11726         assemblies array.
11727         
11728         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11729         runtime functions while holding the domain assemblies lock.
11730
11731 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11732
11733         * verify.c: Reapplied the last bit of the reverted changes.
11734
11735 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11736
11737         * verify.c: Reapplied more of the reverted changes.
11738
11739 2008-06-09  Martin Baulig  <martin@ximian.com>
11740
11741         * debug-mono-symfile.c (load_symfile): Check the major version
11742         first; if it's wrong, don't print the minor version in the error message.
11743
11744 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11745
11746         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11747         lock instead of the domain lock to avoid deadlocks, since the thread might
11748         already hold the loader lock.
11749
11750         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11751         (mono_thread_attach): Ditto.
11752
11753         * monitor.c: Use a TLS variable for holding the current thread id instead
11754         of calling pthread_self ().
11755         (mono_monitor_init_tls): New internal function to initialize the TLS
11756         variable.
11757         (mono_monitor_try_enter_internal): Put the owner == id check after the
11758         owner == 0 check.
11759
11760         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11761         missed optimizations when using gcc-4.3.
11762
11763 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11764
11765         * reflection.c (mono_dynamic_image_free): Free the memory
11766         used by MonoGenericParam in MonoDynamicImage::gen_param.
11767
11768         * reflection.c (mono_reflection_setup_generic_class): Allocate
11769         container from mempool.
11770
11771         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11772         container from mempool.
11773
11774 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11775
11776         * threads.c (mono_set_pending_exception): New internal function to set the
11777         pending exception of the current thread.
11778         (mono_thread_get_and_clear_pending_exception): Check for 
11779         thread->pending_exception as well.
11780
11781         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11782
11783         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11784         it can trigger a collection.
11785
11786 2008-06-06  Martin Baulig  <martin@ximian.com>
11787
11788         Merged the `debugger-kahalo' branch.
11789
11790         * mono-debug.h
11791         (MONO_DEBUGGER_VERSION): Bumped to 72.
11792
11793         * debug-mono-symfile.h
11794         (MonoSymbolFileMethodIndexEntry): Removed.
11795         (MonoSymbolFileMethodEntry): New public typedef.
11796         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11797         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11798         `data_offset'.
11799         (MonoSymbolFileMethodEntry): Removed.
11800         (MonoSymbolFileLexicalBlockEntry): Removed.
11801         (MonoSymbolFileLineNumberEntry): Removed.
11802         (MonoDebugLexicalBlockEntry): Removed.
11803         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11804         removed `num_il_offsets' and `il_offsets'.
11805         (MonoSymbolFile): Replace `version' with `major_version' and
11806         `minor_version'.
11807         (MONO_SYMBOL_FILE_VERSION): Replace with
11808         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11809         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11810
11811         * debug-mono-symfile.c
11812         (mono_debug_symfile_lookup_location): Add support for the new line
11813         number table format.
11814
11815 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11816
11817         * metadata.c (free_generic_class): Release the inflated
11818         MonoClass of dynamic generic classes if it's not a generic
11819         type definition.
11820
11821 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11822
11823         * verify.c: Reapplied more of the reverted changes.
11824
11825 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11826
11827         * reflection.c (lookup_custom_attr): Clean the cached flag or
11828         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11829         for SRE types.
11830
11831 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11832
11833         * verify.c: Reapplied a small part of the reverted changes.
11834
11835 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11836
11837         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11838
11839         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11840         previously in managed code.
11841         (mono_monitor_exit): Ditto.
11842         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11843
11844         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11845         the managed definition.
11846
11847 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11848
11849         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11850
11851 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11852
11853         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11854         
11855         * monitor.c: Add some micro optimizations.
11856
11857         * icall.c (type_from_typename): Handle 'bool'.
11858
11859 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11860
11861         * verify.c: Implement constructor verification per P III 1.8.1.4.
11862         Fixes #396716.
11863
11864 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11865
11866         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11867         holding the assemblies lock here too.
11868
11869 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11870
11871         * verify.c: Kill stack_top function.
11872
11873 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11874
11875         * verify.c: Kill stack_get function.
11876
11877 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11878
11879         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11880
11881 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11882
11883         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11884         more reliable.
11885
11886         * verify.c (mono_method_verify): Inflate params and locals to avoid
11887         mismatch when checking for compatibility.
11888
11889 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11890
11891         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11892         Length prefix should be size in bytes. Fix bug #339530.
11893         
11894         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11895         Length prefix should be size in bytes. Fix bug #339530.
11896
11897         Code is contributed under MIT/X11 license.
11898
11899 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11900
11901         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11902
11903         Contributed under MIT/X11 license.
11904
11905 2008-06-05  Martin Baulig  <martin@ximian.com>
11906
11907         * mono-debug-debugger.c
11908         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11909
11910 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11911
11912         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11913         while holding the assemblies lock to prevent deadlocks. Handle the case
11914         where the search hook returns NULL but the assembly was still loaded.
11915         Fixes #323696.
11916
11917         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11918         modify domain state.
11919
11920 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11921
11922         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11923         * Makefile.am (pedump_LDADD): Post-process object files and
11924         add dtrace-generated object file, if necessary.
11925
11926         Code is contributed under MIT/X11 license.
11927
11928 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11929
11930         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11931
11932 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11933
11934         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11935
11936 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11937
11938         * threads.c: Try to free everything from the delayed free table
11939         when shutting down threads, and set the variable to NULL after the
11940         table is freed so that calling
11941         mono_thread_hazardous_try_free_all() when shutting down the root
11942         domain doesn't crash.
11943
11944 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11945
11946         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11947         the caller if resulting type was inflated.
11948
11949         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11950         was inflated.
11951
11952         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11953
11954
11955 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11956
11957         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11958         class library tests.
11959
11960         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11961         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11962         #396989.
11963
11964 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11965
11966         * domain.c, domain-internals.h: The JIT infos are now freed by the
11967         JIT info table code.  They are freed immediately if there only a
11968         single JIT info table in circulation.  If there is more, the free
11969         is delayed via a queue.
11970
11971         * threads.c, threads-types.h: New hazard pointer function for
11972         freeing all freeable delayed items in one sitting.
11973
11974 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11975
11976         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11977
11978         * reflection.c (typebuilder_setup_properties): Same.
11979
11980         * reflection.c (typebuilder_setup_events): Same.
11981
11982 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11983
11984         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11985         and use it for allocating memory.
11986
11987         * reflection.c (mono_marshal_spec_from_builder): Same.
11988
11989         * reflection.c: Change code to use new signatures.
11990
11991         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11992
11993 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11994
11995         * decimal.c (rescale128): Put back one line which was accidently commented
11996         out.
11997         
11998         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11999         to cause crashes.
12000
12001 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
12002
12003         * reflection.c (mono_reflection_generic_class_initialize): Name must
12004         be always malloc'ed so we can free it later on. Do this for field, property
12005         and event.
12006
12007         * metadata.c (free_generic_class): Free field, property and event names.
12008
12009 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
12010
12011         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
12012         instead of g_memdup.
12013
12014         * reflection.c (typebuilder_setup_fields): Same.
12015
12016 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
12017
12018         * decimal.c (rescale128): Optimize this function a bit more.
12019
12020 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
12021
12022         * metadata.c (free_generic_class): Release some memory from
12023         SRE generic classes.
12024
12025 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
12026
12027         * reflection.c (mono_image_get_generic_field_token): No reference
12028         to name is kept, free it.
12029
12030         * reflection.c (mono_reflection_generic_class_initialize): Free
12031         more memory of the inflated field.
12032
12033 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
12034
12035         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
12036         code.
12037
12038 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
12039
12040         * reflection.c (mono_dynamic_image_free): Release memory used by
12041         MonoDynamicImage::array_methods elements.
12042
12043         * reflection.c (assembly_add_win32_resources): Release memory after
12044         encoding.
12045
12046 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
12047
12048         * decimal.c (log2_32): Use an optimized version for this function too.
12049         
12050         * decimal.c (log2_64): Fix this on 32 bit machines.
12051
12052 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
12053
12054         * class.c (mono_dup_array_type): Implement allocation using a mempool.
12055
12056         * class.c (mono_metadata_signature_deep_dup): Same.
12057
12058         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
12059         a mempool.
12060
12061         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
12062
12063         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
12064
12065         * metadata-internals.h: Added mono_metadata_signature_dup_full.
12066
12067         * class-internals.h: Update signatures to take a MonoMemPool.
12068
12069 2008-06-02  Dick Porter  <dick@ximian.com>
12070
12071         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
12072         * icall-def.h: Add
12073         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
12074         FormatMessage API to get the error text.  Fixes bug 321827.
12075
12076 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
12077
12078         * decimal.c: Add some micro optimizations to make decimal operations faster.
12079
12080 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
12081
12082         * reflection.c (method_encode_clauses): Take a mempool
12083         as parameter and use it to allocate the clause array.
12084
12085         * reflection.c (mono_image_get_field_on_inst_token): Free
12086         the inflated type after encoding it.
12087
12088         * reflection.c (mono_dynamic_image_free): Free each element
12089         of MonoDynamicImage::gen_params.
12090
12091         * reflection.c (reflection_methodbuilder_to_mono_method):
12092         Allocate the generic param array from the mempool.
12093         Allocate signature params from the mempool.
12094
12095         * reflection.c (mono_reflection_generic_class_initialize):
12096         Free inflated fields after been used.
12097
12098 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
12099
12100         * icall.c: Reapply the memory leak fixes as they no
12101         longer make mono crash.
12102
12103 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
12104
12105         * reflection.c (mono_type_get_object): Don't store the suplied
12106         MonoType with type_hash. A caller which pass a type that
12107         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
12108         might end with a pointer to freed memory.
12109         The solution is to use byval_arg or this_arg from the associated
12110         MonoClass of the supplied type.
12111
12112 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
12113
12114         * icall.c: Revert the rest of the last change as it breaks the build too.
12115
12116 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
12117
12118         * icall.c: Revert a leak fix as it's breaking the build.
12119
12120 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
12121
12122         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
12123
12124 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
12125
12126         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
12127
12128 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
12129
12130         * icall.c: Fix some memory leaks.
12131
12132 2008-05-29  Dick Porter  <dick@ximian.com>
12133
12134         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
12135         async socket operations from the pending list when a socket
12136         closes.  Leaving it until the threadpool services the event
12137         exposes a race condition when a socket descriptor is reused.
12138         Fixes bug 377589.
12139
12140 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12141
12142         * object.c: Fix negative index check for array alocation.
12143
12144 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12145
12146         * icall.c, marshal.c: Delegate wrappers should skip visibility.
12147         This check is performed by the verifier for IL created delegates
12148         and by Delegate::CreateDelegate for programatically created ones.
12149         Fixes #372406.
12150
12151 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12152
12153         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
12154         Fix code to use mono_array_size_t instead of int.
12155
12156         Based on patch by Luis F. Ortiz.
12157         Contributed under X11 license.
12158         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12159
12160 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12161
12162         * icall.c: Added ves_icall_System_Array_GetLongLength and
12163         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
12164         arrays.
12165
12166         * icall.h: Export both new functions.
12167
12168         Based on patch by Luis F. Ortiz.
12169         Contributed under X11 license.
12170         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12171
12172 2008-05-28  Martin Baulig  <martin@ximian.com>
12173
12174         The debugger now requires exactly r103463.
12175
12176         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
12177         This version is not supported by the debugger, wait for 72.
12178
12179 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12180
12181         * object.h: Changed array related functions to use
12182         mono_array_size_t instead of guint32. Forgot to commit this file.
12183
12184         Patch by Luis F. Ortiz.
12185         Contributed under X11 license.
12186         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12187
12188
12189 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
12190
12191         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
12192         don't define it. Use the number literal instead.
12193
12194 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12195
12196         * icall.c: Changed array related functions to use
12197         mono_array_size_t instead of guint32.
12198
12199         * icall.c (ves_icall_System_Array_GetLength): Check for length
12200         overflow under MONO_BIG_ARRAYS.
12201
12202         Based on patch by Luis F. Ortiz.
12203         Contributed under X11 license.
12204         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12205
12206 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12207
12208         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
12209
12210         Based on patch by Luis F. Ortiz.
12211         Contributed under X11 license.
12212         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12213
12214 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12215
12216         * object.c, object.h: Changed array related functions to use
12217         mono_array_size_t instead of guint32.
12218
12219         Patch by Luis F. Ortiz.
12220         Contributed under X11 license.
12221         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12222
12223 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
12224
12225         * object.h: Introduced mono_array_size_t typedef. This must be used
12226         in all places an array length is expected. This is 64bits wide if
12227         MONO_BIG_ARRAYS is enabled.
12228
12229         Patch by Luis F. Ortiz.
12230         Contributed under X11 license.
12231         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
12232
12233 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
12234
12235         * security-manager.c class.c: Set the class exception info by calling
12236         mono_class_set_failure ().
12237
12238         * class.c (mono_class_get_exception_data): New accessor function.
12239         (mono_class_set_failure): Store exception_data in the property hash.
12240
12241         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
12242         the struct as a property.
12243
12244         * loader.c (mono_get_method_full): Store the lookup result for method
12245         tokens in method_cache, the others in methodref_cache to decrease the memory
12246         usage of hash tables.
12247
12248         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
12249         (mono_image_init): method_cache is lazy inited now.
12250
12251         * metadata-internals.h (struct _MonoImage): Change method_cache to
12252         a MonoValueHashTable, add a separate methodref_cache.
12253
12254 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
12255
12256         * number-formatter.h: Fix tables to avoid arithemtic overflow in
12257           Double.ToString as exposed by Bug #383531.
12258
12259 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
12260
12261         * number-formatter.h: Make some tables static.
12262
12263         * class.c (mono_method_set_generic_container): New accessor function.
12264         (mono_method_get_generic_container): Ditto.
12265
12266         * class-internals.h (struct _MonoMethod): Remove rarely used 
12267         'generic_container' field, store it in the property hash instead. Add 
12268         'is_generic' boolean field instead.
12269
12270         * image.c (mono_image_init): Initialize property_hash.
12271         (mono_image_close): Destroy property_hash.
12272
12273         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
12274         hold rarely used fields of runtime structures belonging to this image.
12275
12276         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
12277         to get/set method->generic_container.
12278
12279         * loader.c (mono_get_method_from_token): Avoid loading the method header for
12280         generic methods.
12281
12282 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
12283
12284         * class.c (mono_class_inflate_generic_method_full): Don't increase
12285         mono_stats.inflated_method_count for methods found in the cache.
12286
12287         * threads.c (mono_thread_request_interruption): Add a comment about 
12288         QueueUserAPC ().
12289
12290 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
12291
12292         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
12293         interface_offsets_packed table.
12294         
12295         * class.c (mono_class_init): Remove some dead code.
12296
12297         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
12298         mono_class_setup_vtable () when CAS is active to detect security problems.
12299
12300 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
12301
12302         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
12303
12304         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
12305         parameters as it's irrelevant for delegate checking.
12306
12307 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
12308
12309         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
12310
12311         * class.c (mono_class_init): Control the creation of a generic vtable using
12312         a global which is true by default, but set to false by the runtime startup code.
12313         
12314         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
12315         Disabled for now since it breaks the embedding API.
12316         Move the setup of class->methods for arrays to mono_class_setup_methods ().
12317         (mono_class_setup_methods): Add a memory barrier.
12318
12319         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
12320         when mono_class_init () doesn't compute the generic vtable.
12321         
12322 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
12323         * profiler.c: Added mono_profiler_install_statistical_call_chain,
12324         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
12325         to support call chains (backtrace) in the stat profiler.
12326         * profiler.c, profiler-private.h: Likewise.
12327
12328 2008-05-22  Mark Probst  <mark.probst@gmail.com>
12329
12330         * generic-sharing.c: Init generic class when a method of it is
12331         requested via a runtime generic context.
12332
12333 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
12334
12335         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
12336
12337         * reflection.c (mono_type_get_object): Add a FIXME.
12338
12339         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
12340
12341         * class.c (mono_class_get_method_by_index): New helper function, returning an
12342         entry in the class->methods array.
12343
12344 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12345
12346         * class.c (mono_class_init): Only do the array optimization for szarrays. 
12347         Avoid creating a generic vtable for generic instances as well.
12348         (mono_class_get_method_from_name_flags): Don't search in the metadata for
12349         generic instances.
12350
12351 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
12352
12353         * loader.c (mono_get_method_constrained): Inflate the signature
12354         with class context. Fix #325283.
12355
12356 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
12357
12358         * object.c (mono_class_create_runtime_vtable): Add a comment.
12359
12360         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
12361         where needed.
12362         (setup_interface_offsets): Handle the case when this is called twice for arrays.
12363         (mono_class_setup_vtable_general): Add an assert.
12364         (mono_class_init): Avoid creating a generic vtable for arrays.
12365
12366         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
12367         here, let mono_class_init () do that.
12368
12369         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
12370         interfaces in mscorlib.
12371
12372         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
12373         interfaces. Add some comments.
12374         (mono_class_init): Call mono_class_setup_methods () here since it is no
12375         longer called by mono_class_setup_vtable ().
12376
12377         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
12378         not set in class->vtable.
12379         (mono_class_create_runtime_vtable): Reenable the disabled code.
12380
12381         * object.c (mono_class_create_runtime_vtable): Disable the last change for
12382         now as it causes some test failures.
12383
12384         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
12385         if using the vtable trampoline. Also remove some strange code which put the
12386         generic methods themselves into the vtable slots. Remove the AOT init_vtable
12387         stuff as it is no longer needed.
12388
12389 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
12390
12391         * pedump.c: Give make --verify all option check code as well.
12392         Using --verify code won't check for metadata now.
12393
12394 2008-05-19  Martin Baulig  <martin@ximian.com>
12395
12396         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
12397
12398         * mono-debug.c
12399         (_mono_debug_using_mono_debugger): New global variable; it's set
12400         directly by the debugger, so mono_debug_using_mono_debugger() also
12401         works after attaching.
12402
12403 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
12404
12405         * object.c (mono_class_create_runtime_vtable): Use memory barriers
12406         as we do double checked locking on MonoClass::runtime_info and
12407         MonoClassRuntimeInfo::domain_vtables.
12408
12409 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
12410
12411         * debug-helpers.c (print_field_value): Fix a warning.
12412
12413 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
12414
12415         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
12416         set in the AOT case.
12417
12418 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12419
12420         * class.c (mono_class_setup_vtable_general): Use memory barriers
12421         as we do double checked locking on MonoClass::vtable.
12422
12423 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
12424
12425         * reflection.c (resolve_object): Inflate only if the generic context
12426         is not null. Fixes #389886.
12427
12428 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
12429
12430         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
12431         instead of g_free.
12432
12433         Code is contributed under MIT/X11 license.
12434
12435 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12436
12437         * class.c: Revert unrelated change.
12438
12439 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12440
12441         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
12442         a generic instantiation, use mono_class_from_mono_type instead of playing
12443         with MonoType directly.
12444
12445 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
12446
12447         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
12448         checks must ignore generic instantiations, so mono_class_has_parent is not
12449         suitable. Fixes #390128.
12450
12451 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
12452
12453         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
12454         it to avoid registering tokens during metadata generation. Fixes #390023.
12455
12456 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12457
12458         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
12459         consistent.
12460
12461         Contributed under MIT/X11 license.
12462
12463 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
12464
12465         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
12466         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
12467         to fixup the EXE image.
12468         (mono_cleanup): Use mono_close_exe_image.
12469         (mono_close_exe_image): New function.
12470         * image.c: Include "marshal.h".
12471         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
12472         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
12473         counting when the image is loaded outside of mono_image_open_full. Set status
12474         based on GetLastError.
12475         * coree.c: Include required headers. Add init_from_coree.
12476         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
12477         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
12478         (_CorExeMain): Set init_from_coree.
12479         (CorExitProcess): Only call ExitProcess for now.
12480         (CorBindToRuntimeEx): New stub implementation.
12481         (CorBindToRuntime): New function.
12482         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
12483         (MonoFixupExe): ILONLY executables require no fixups.
12484         (mono_set_act_ctx): New function to set activation context.
12485         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
12486         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
12487         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
12488         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
12489         as MONO_INTERNAL.
12490         * domain-internals.h: Add mono_close_exe_image.
12491
12492         Contributed under MIT/X11 license.
12493
12494 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
12495
12496         * metadata.c (mono_metadata_compute_size): Correctly calculate field
12497         size for generic param and event tables. Fixes #388977.
12498
12499 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
12500
12501         * loader.c (mono_method_signature): Use memory barriers because of the double
12502         checked locking pattern.
12503
12504         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
12505         aborting or aborted as well. Fixes #376391.
12506         
12507         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
12508         existing runtime state in the Suspend handler during shutdown.
12509
12510 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
12511
12512         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
12513
12514         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
12515         which are starting up or shutting down.
12516
12517         * threads.c (mono_threads_set_shutting_down): Don't return a value since
12518         this function never returns if the runtime is already shutting down.
12519
12520         * icall.c (ves_icall_System_Environment_Exit): Update after 
12521         mono_threads_set_shutting_down () signature change.
12522         
12523 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
12524
12525         * class.c: Added can_access_instantiation to verify if the instantiation
12526         is visible. Fix access check for nested types as they returned TRUE
12527         before doing type and generic instantiation visibility checks.
12528
12529 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12530
12531         * reflection.c (mono_reflection_create_generic_class): The created type
12532         must have a different container from its TypeBuilder. Otherwise they
12533         will end sharing generic arguments, which is wrong.
12534
12535         Due to the sharing, making a generic instance of the created type using
12536         the TypeBuider generic arguments resulted in the generic type definition
12537         been returned, which is wrong as well.
12538
12539         As a bonus the code was leaking the type_params array. This memory should
12540         be allocated from the image mempool.
12541
12542         This fixes bug #354047.
12543
12544 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12545
12546         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
12547         to here         as they are now used in assembly.c new code.
12548         Added a skipverification flag to MonoAssembly.
12549         New internal function mono_assembly_has_skip_verification.
12550
12551         * assembly.c: New function mono_assembly_has_skip_verification. It checks
12552         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
12553         part of #387274.
12554
12555 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12556
12557         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
12558         needed. Fixes #387034.
12559
12560         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
12561
12562 2008-05-06  Miguel de Icaza  <miguel@novell.com>
12563
12564         * assembly.c (mono_assembly_load_reference): Prevent crash while
12565         disassembling Silverlight 2.0 executables while we still do not
12566         have GACed libraries.
12567
12568 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12569
12570         * reflection.c: Special case generic type definitions as well. Fixes #383444.
12571
12572 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
12573
12574         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
12575         of the dynamic case. Fixes #387404.
12576
12577 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12578
12579         *verify.c (mono_verifier_is_class_full_trust): If under
12580         verify_all and the verifier mode was not set, only
12581         gac and corlib types are fulltrust. This makes --verify-all
12582         usable to detect unverifiable code, which is the expected
12583         use case.
12584
12585 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12586
12587         * verify.h: Ops, commited the header with debug
12588         enabled.
12589
12590 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12591
12592         * verify.c (merge_stack): Use the new value on unverifiable
12593         stack merges.
12594
12595         * verify.c (verify_type_compatibility_full): Comparison
12596         of nullable types can't use mono_class_is_assignable_from.
12597
12598         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12599         that makes all verification errors be reported.
12600
12601         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12602         mono_method_verify.
12603
12604 2008-05-05  Robert Jordan  <robertj@gmx.net>
12605
12606         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12607         support for value types. See #386415.
12608
12609         * object.c: comments.
12610
12611         Code is contributed under MIT/X11 license.
12612
12613 2008-05-05  Martin Baulig  <martin@ximian.com>
12614
12615         * debug-mono-symfile.h
12616         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12617         for old pre-terrania symbol files.
12618
12619 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12620
12621         * mono-config.c: Add ppc64 architecture.
12622
12623         Code is contributed under MIT/X11 license.
12624
12625 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12626
12627         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12628           PPC64 uses function descriptors as well.
12629
12630         Code is contributed under MIT/X11 license.
12631
12632 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12633
12634         * object.c (compute_class_bitmap): Ignore literal static fields.
12635
12636         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12637         var has an invalid format.
12638         (describe_ptr): Add some sanity checks for the vtable.
12639         (add_nursery_frag): Clear unused nursery fragments.
12640         (major_collection): Clear all remaining nursery fragments.
12641
12642 2008-05-03  Robert Jordan  <robertj@gmx.net>
12643
12644         * image.c, metadata-internals.h: add thunk_invoke_cache.
12645
12646         * marshal.c, marshal.h: implement
12647         mono_marshal_get_thunk_invoke_wrapper ().
12648
12649         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12650
12651         Code is contributed under MIT/X11 license.
12652
12653 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12654
12655         * verify.c (do_leave): Empty the stack.
12656
12657 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12658
12659         * class.c (mono_class_is_assignable_from): Variance
12660         doesn't work between reference and value types. For example,
12661         given type C<T+>, C<int32> is not assignable to C<object>.
12662         Break the argument checking loop on first error. 
12663
12664 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12665
12666         * icall.c : base64_to_byte_array() needs some more strict
12667           check for sequence of '=' characters. Patch by Santa
12668           Marta (http://deee.g.hatena.ne.jp/santamarta).
12669
12670           Contributed under MIT/X11 license.
12671           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12672
12673 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12674
12675         * domain.c: Disable LoadLibrary support to fix Win32 build.
12676
12677         Code is contributed under MIT/X11 license.
12678
12679 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12680
12681         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12682         to help with cache behaviour.
12683
12684 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12685
12686         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12687         method. 
12688
12689 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12690
12691         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12692
12693 2008-05-01  Dick Porter  <dick@ximian.com>
12694
12695         * process.c (process_get_fileversion): Only pass 16 bits of
12696         language ID to VerLanguageName.  Fixes bug 381204.
12697
12698 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12699
12700         * verify.c (mono_method_verify): Fix the comparison
12701         operator for code bounds check.
12702
12703 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12704
12705         * verify.c (mono_method_verify): Check the bounds of
12706         all access of the code array.
12707
12708 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12709
12710         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12711
12712 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12713
12714         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12715         not valid.
12716
12717 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12718
12719         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12720         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12721         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12722         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12723         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12724         mono_runtime_load.
12725         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12726         runtime initialization from metadata.
12727         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12728         (mono_set_rootdir): Use mono_get_module_file_name.
12729         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12730         handles.
12731         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12732         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12733         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12734         MonoCLIImageInfo. Add support for module handles.
12735         (load_cli_header): Update mono_cli_rva_image_map signature.
12736         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12737         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12738         (mono_image_rva_map): Add support for module handles.
12739         (mono_image_ensure_section_idx): Add support for module handles.
12740         (mono_image_close): Add support for module handles.
12741         (do_load_header): Add support for module handles.
12742         (mono_image_open_from_module_handle): New function for internal use.
12743         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12744         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12745         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12746         handles.
12747         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12748         * image.h: Add mono_image_fixup_vtable.
12749         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12750         support.
12751         * coree.h: New file.
12752         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12753         unsupported native code.
12754         (mono_marshal_set_callconv_from_modopt): New function splitted from
12755         mono_marshal_get_managed_wrapper.
12756         (mono_marshal_get_managed_wrapper): Use
12757         mono_marshal_set_callconv_from_modopt.
12758         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12759         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12760         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12761         that results in a deadlock when the runtime is loaded in _CorDllMain.
12762         * Makefile.am: Add coree.c and coree.h.
12763
12764         Contributed under MIT/X11 license.
12765
12766 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12767
12768         * generic-sharing.c: Search for type arguments in array element
12769         types as well.
12770
12771 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12772
12773         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12774
12775         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12776
12777         * object.c: Don't setup the RGCTX when the vtable is created,
12778         because we're setting it up lazily now.
12779
12780 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12781
12782         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12783         64 bit support.
12784
12785 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12786
12787         * verify.c (verify_class_for_overlapping_reference_fields): 
12788         If class is under fulltrust allow reference types to overllap
12789         if they have the same RVA.
12790
12791 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12792
12793         * pedump.c: Added new flag valid-only, that makes the verifier
12794         behaves just like --security=validil. It won't fail type load
12795         due to unverifiable restrictions.
12796
12797 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12798
12799         * class-internals.h (struct MonoMethod): Added a verification_success
12800         field to cache verifier executions. Reduced MonoMethod:slot size by
12801         one bit.
12802
12803 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12804
12805         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12806         instead of a 'vt' argument to save an indirection and to allow these to be used
12807         for valuetypes.
12808         (scan_vtype): New helper function to scan an area using a gc descriptor.
12809         (mono_gc_wbarrier_value_copy): Implement this.
12810         (handle_remset): Add support for REMSET_VTYPE.
12811         (find_in_remset_loc): Ditto.
12812         (mono_gc_base_init): Allow some debugging options to be controlled through the
12813         use of the MONO_GC_DEBUG env variable.
12814         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12815         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12816
12817 2008-04-23  Martin Baulig  <martin@ximian.com>
12818
12819         * domain.c (mono_domain_create): Move the call to
12820         mono_debug_domain_create() down, after allocating the domain id.
12821
12822 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12823
12824         verify.c (verify_class_for_overlapping_reference_fields): Skip
12825         static fields while verifying for overlapping fields as they
12826         don't matter at all.
12827
12828 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12829
12830         * domain-internals.h: added a declaration of
12831         mono_make_shadow_copy.
12832
12833         * assembly.c (mono_assembly_open_full): shadow copying of
12834         assemblies moved to here, so that all the assemblies within the
12835         application domain's private binary directories can be
12836         processed. Fixes bug #380546
12837
12838         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12839         mono_make_shadow_copy and made non-static. The decision whether
12840         to shadow-copy an assembly is made based on its location - it's
12841         copied if it's in one of the private application domain binary
12842         directories and its different to the target file in the shadow
12843         directory. Fixes bug #380546
12844
12845 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12846
12847         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12848
12849         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12850         types.
12851
12852         * reflection.c (mono_image_create_token): Handle 
12853         Method/ConstructorOnTypeBuilderInst.
12854         (resolve_object): Ditto.
12855         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12856         so it can be called from resolve_object. Also handle the case when the inflated
12857         class already has its methods setup.
12858
12859 2008-04-21  Martin Baulig  <martin@ximian.com>
12860
12861         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12862
12863 2008-04-20  Geoff Norton  <gnorton@novell.com>
12864
12865         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12866         pointer dereference.
12867
12868 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12869
12870         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12871         portability API to look up the assembly file. Fixes behavior in
12872         situations when the application has a bin/ directory, but the
12873         assembly search patch refers to Bin/ (and thus the requested file
12874         name is Bin/SomeLibrary.dll). Fixes bug #379888
12875
12876 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12877
12878         verify.c (mono_type_is_generic_argument): Extracted this check
12879         from a dozen places to here.
12880
12881         verify.c: Fixed all issues related to boxing generic arguments
12882         and their constraints.
12883
12884 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12885
12886         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12887
12888 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12889
12890         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12891         isn't finished yet. Fixes #363447.
12892
12893 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12894
12895         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12896         Fixes #346419.
12897
12898 2008-04-13  Jb Evain  <jbevain@novell.com>
12899
12900         * domain.c: update the 2.1 profile versions.
12901         Merged from the Moonlight 2 branch.
12902
12903 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12904
12905         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12906         mscorlibs for the non-refonly case as well.
12907
12908         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12909         in mono_assembly_load_from_full (). Fixes #378924.
12910
12911 2008-04-11  Geoff Norton  <gnorton@novell.com>
12912
12913         * icall.c: The global extern environ doesn't exist on Mac.  We
12914         need to call NSGetEnviron instead.
12915
12916 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12917
12918         verify.c: Add generic method constraint verification.
12919
12920 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12921
12922         class.c (mono_class_inflate_generic_method_full): Add a long
12923         explanation to the is_mb_open hack. Remove the FIXME.
12924
12925 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12926
12927         * verify.c (mono_method_verify): Mark all unknown opcodes
12928         as invalid. Mark jmp as unverifiable.
12929
12930 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12931
12932         * verify.c: Add code to do type constraint verification on class instances.
12933
12934         * verify.c (mono_verifier_verify_class): Use the type constraint 
12935         verification code.
12936
12937 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12938
12939         * class.c (mono_class_get_field_default_value): Don't pass cindex
12940         as hint to mono_metadata_get_constant_index. The local is not initialized
12941         and should contain garbage most of the time. This could only work
12942         with a lot of luck.
12943
12944 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12945
12946         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12947
12948 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12949
12950         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12951
12952         * class.c (mono_class_from_generic_parameter): Save the token of the
12953         generic param in MonoClass::sizes.generic_param_token.
12954
12955         * reflection.c (mono_custom_attrs_from_class): If the class type is
12956         VAR or MVAR retrieve the attributes of the generic param.
12957
12958 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12959
12960         * class.c (mono_class_init): Do class verification if the verifier
12961         is enabled.
12962
12963 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12964
12965         * verify-internal.h: Added mono_verifier_verify_class.
12966
12967         * verify.c: Added mono_verifier_verify_class. It checks for
12968         classes with explicit layout that have overlapping reference fields.
12969
12970         * pedump.c: Init the verifier state prior to verification. Fixed
12971         command line arguments.
12972
12973 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12974
12975         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12976
12977 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12978
12979         * verify-internals.h: Fix a warning.
12980
12981 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12982
12983         * verify-internals.h: New header with the verifier configuration
12984         extracted from mini.c.
12985
12986         * verify.c: Implemented the new functions exported by verify-internals.h.
12987
12988 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12989
12990         * verify.c: Add proper verification of ckfinite.
12991
12992 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12993
12994         * verify.c (do_conversion): Improved error message to something
12995         more meanfull.
12996
12997         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12998         with primitive types.
12999
13000 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
13001
13002         * verify.c: Added tail prefix checking. Marked icall
13003         as unverifible.
13004
13005 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
13006
13007         * verify.c: Fix the detection of branches to the middle
13008         of an instruction.
13009
13010 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
13011
13012         * verify.c: Implemented verification of volatile. and
13013         unaligned. prefix. Check if a type is valid after retrieving it.
13014
13015 2008-04-01  Dick Porter  <dick@ximian.com>
13016
13017         * process.c (process_get_fileversion): If there's no string block,
13018         set the file language to en_US.  Fixes the other new part of bug
13019         374600.
13020
13021 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
13022
13023         * class.c: New functions mono_method_can_access_field_full and
13024         mono_method_can_access_method_full. They perform type visibility
13025         and type site check.
13026
13027         * class-internal.h: Added exported functions.
13028
13029         * verify.c: Use new functions to implement proper visibility checks.
13030
13031 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
13032
13033         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
13034
13035 2008-03-28  Dick Porter  <dick@ximian.com>
13036
13037         * process.c (process_get_fileversion): Use the first language ID
13038         we see, rather than insisting on an invariant language.  Fixes bug
13039         374600.
13040
13041 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
13042
13043         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
13044         the streams to fix reading of invalid memory later.
13045
13046         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
13047         to ease debugging.
13048
13049 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
13050
13051         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
13052         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
13053
13054 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
13055         * threads.h: Added MonoThreadManageCallback type and
13056         mono_thread_set_manage_callback prototype
13057         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
13058         (used to store the mono_thread_manage callback).
13059         * threads.c: Added mono_thread_set_manage_callback, and handle
13060         "MonoThread->manage_callback" in build_wait_tids.
13061
13062 2008-03-26  Dick Porter  <dick@ximian.com>
13063
13064         * process.c (process_get_fileversion): Set FileVersionInfo strings
13065         to Empty when the resource doesn't have the particular info.
13066         Fixes bug 355717.
13067
13068 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
13069
13070         * verify.c (mono_method_verify): Proper prefix validation.
13071
13072 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
13073
13074         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
13075         itself in a separate argument instead of throwing them. Fixes #373448.
13076
13077         * appdomain.c: Bump corlib version.
13078
13079 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
13080
13081         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
13082
13083 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
13084
13085         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
13086         version macros.
13087
13088 2008-03-20  Mark Probst  <mark.probst@gmail.com>
13089
13090         * generic-sharing.c, class-internals.h: Code for putting
13091         reflection types into the runtime generic context.
13092
13093 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
13094
13095         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
13096         Fixes #340662. 
13097
13098
13099 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
13100
13101         * verify.c (VerifyContext): Added instruction prefix data to the struct.
13102
13103         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
13104
13105         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
13106
13107         * verify.c (do_cast): Let the result value keep the boxed status.
13108
13109         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
13110
13111 2008-03-17  Jb Evain  <jbevain@novell.com>
13112
13113         * reflection.c: when running on a 2.0 runtime, emit
13114         unconditionally the #~ header version as 2.0, and the
13115         CLI header version as 2.5, for symmetry's sake with csc.
13116
13117 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
13118
13119         * class.c: Remove the unused cache_interface_offsets stuff.
13120
13121         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
13122         profiler.c: Fix warnings.
13123
13124 2008-03-16  Mark Probst  <mark.probst@gmail.com>
13125
13126         * generic-sharing.c, class-internals.h: Support for putting
13127         methods into the runtime generic context.
13128
13129 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
13130
13131         * class.c (mono_class_setup_fields): Ignore calls made to this function for
13132         classes which are generic instances of not-yet finished typebuilders. Fixes
13133         #351172.
13134
13135         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
13136
13137 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
13138
13139         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
13140
13141         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
13142         field, replace it with a hash table in MonoDynamicImage.
13143
13144         * reflection.c (inflate_mono_method): Access the generic definition object from
13145         image->generic_def_objects instead of imethod->reflection_info.
13146
13147         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
13148
13149         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
13150         
13151         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
13152         function in reflection.c so it is easier to keep in sync with the dynamic image
13153         creation code.
13154
13155         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
13156         mono_image_close ().
13157
13158 2008-03-15  Mark Probst  <mark.probst@gmail.com>
13159
13160         * class.c (mono_class_generic_sharing_enabled): Disable generic
13161         sharing for all architectures except AMD64 and x86 to fix build.
13162
13163 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
13164
13165         * verify.c: Use the generic definition MonoGenericContext when available.
13166         Remove code for checking generics instance compatibility in favor of
13167         mono_class_is_assignable_from.
13168
13169 2008-03-14  Mark Probst  <mark.probst@gmail.com>
13170
13171         * marshal.c, marshal.h, metadata-internals.h, image.c,
13172         wrapper-types.h: New wrapper for invoking a shared static method
13173         without having to pass the runtime generic context argument.
13174
13175 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
13176
13177         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
13178
13179 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
13180
13181         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
13182         
13183         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
13184         create a token from a FieldOnTypeBuilderInst.
13185         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
13186         (resolve_object): Ditto.
13187
13188         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
13189         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
13190
13191 2008-03-14  Martin Baulig  <martin@ximian.com>
13192
13193         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
13194
13195         * debug-mono-symfile.h
13196         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
13197         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
13198
13199 2008-03-10  Martin Baulig  <martin@ximian.com>
13200
13201         * debug-mono-symfile.h
13202         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
13203         `lexical_block_table_offset'.
13204         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
13205         `lexical_blocks'.
13206         (MonoSymbolFile): Added `version'.
13207
13208         * mono-debug.h
13209         (MonoDebugLexicalBlockEntry): Removed.
13210         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
13211         `lexical_blocks'.
13212
13213         * mono-debug.c (mono_debug_add_method): Don't compute lexical
13214         blocks here; the debugger now does this internally.
13215
13216 2008-02-27  Martin Baulig  <martin@ximian.com>
13217
13218         * object.c (mono_runtime_exec_main): Call
13219         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
13220         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
13221
13222 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13223
13224         * verify.c (verify_type_compatibility_full): Allow native int to be converted
13225         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
13226
13227 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
13228
13229         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
13230         ldftn with a virtual method.
13231
13232 2008-03-13  Geoff Norton  <gnorton@novell.com>
13233
13234         * decimal.c:  Only include memory.h if the platform has it.
13235
13236 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
13237
13238         * assembly.c, class.c, metadata-internals.h: make sure public key
13239         tokesns are compared in a case-insensitive way. Also, all
13240         the lookups in the GAC use a lowercase public key token
13241         (gaacutil already does the lowercasing on install). Fixes
13242         bug #369541.
13243
13244 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
13245
13246         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
13247         and return value.
13248
13249 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
13250
13251         * image.c: when someone loads a mscorlib from a file, return the
13252         currently loaded mscorlib (fixes bug #369253).
13253
13254 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13255
13256         * class.c: handle types with no parents by forcing them to have
13257         System.Object as a parent and marking them as broken (this currently
13258         allows the first part of bug #369173 to work as well, likely because
13259         we don't check for typeload exceptions everywhere yet).
13260
13261 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
13262
13263         * class.c: more complete check that types belong to corlib
13264         (fixes second part of bug #369173).
13265
13266 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
13267
13268         * generic-sharing.c:  Including glib.h for the MSVC builds to define
13269           "inline" to "__inline" before including mono-membar.h.
13270           
13271         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
13272           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
13273           MSVC builds.
13274
13275         Contributed under MIT/X11 license.
13276
13277 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13278
13279         * verify.c (do_invoke_method): Remove return type validation.
13280
13281         * verify.c (do_ret): Do return type validation at return site instead of
13282         call site.
13283
13284 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
13285
13286         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
13287
13288         * verify.c: Some todos cleaned and improved a few error messages.
13289
13290 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
13291
13292         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
13293
13294 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
13295
13296         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
13297         system types correctly.
13298
13299         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
13300         function.
13301
13302 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13303
13304         * assembly.c (build_assembly_name): Fix a warning.
13305
13306 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
13307
13308         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
13309         the called function takes an object type argument. Fixes storing or
13310         valuetypes across remoting as well as reducing memory usage.
13311         * image.c, metadata-internals.h: remove now unused ldfld_remote and
13312         stfld_remote wrapper caches.
13313
13314 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
13315
13316         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
13317         is not found.
13318
13319         * reflection.c (mono_image_register_token): New helper function to save
13320         a token->object mapping.        
13321
13322         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
13323         managed code.
13324
13325         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
13326         one dimension arrays. Fixes #367670.
13327         (mono_reflection_get_type_internal): Ditto.
13328
13329 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
13330
13331         * marshal.c: mono_load_remote_field_new() always returns object.
13332         so use the proper signature (fixes bug #366445).
13333
13334 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13335         
13336         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
13337         add an 'inline_failure' flag instead.
13338
13339 2008-03-04  Mark Probst  <mark.probst@gmail.com>
13340
13341         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
13342         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
13343         contains the location of "this", used for exception handling.
13344
13345 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
13346
13347         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
13348         their size on all platforms for perf reasons.
13349
13350 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13351
13352         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
13353         object-internal.h
13354
13355         * object-internal.h: Same.
13356
13357 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13358
13359         * reflection.h: Fix the build I just broke.
13360
13361 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13362
13363         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
13364         Test if a token is valid, this remove explicit usage of 
13365         MonoDynamicImage::tokens from the verifier code.
13366
13367         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
13368
13369         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
13370         instead of direct access to MonoDynamicImage::tokens.
13371
13372 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13373
13374         * verify.c (token_bounds_check): Fix the build I just broke.
13375
13376 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
13377
13378         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
13379
13380         * verify.c (verifier_load_method): Fixed the errors message.
13381
13382         * verify.c (mono_method_verify): Fixed a debug message.
13383
13384 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
13385
13386         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
13387         mono-perfcounters.h, class-internals.h: support for predefined
13388         writable counters, query of categories and counters, bugfixes.
13389
13390 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13391
13392         * verify.c (do_refanytype): Verify the refanytype opcode.
13393
13394         * verify.c (mono_method_verify): Use do_refanytype.
13395
13396 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
13397
13398         * verify.c (do_mkrefany): Verify the mkrefany opcode.
13399
13400         * verify.c (mono_method_verify): Use do_mkrefany.
13401
13402 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
13403
13404         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
13405         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
13406         implementation.
13407
13408 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13409
13410         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
13411         the type load exception.
13412
13413 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
13414
13415         * verify.c: Added a few FIXME for method signatures
13416
13417         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
13418         of mono_method_get_signature and get vararg call working. Removed unused
13419         checks for return value.
13420
13421         * verify.c (do_refanyval): Verify the refanyval opcode.
13422
13423         * verify.c (mono_method_verify): Implemented verification of arglist and
13424         use do_refanyval.
13425
13426 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
13427
13428         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
13429         vtypes to marshal.c.
13430
13431         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
13432         it works for AOT as well.
13433
13434 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
13435
13436         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
13437         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
13438         the system time is adjusted.
13439
13440 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
13441
13442         * icall.c, icall-def.h: use the new time functions (fixes the
13443         non-monotonic behaviour of TickCount).
13444
13445 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
13446
13447         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
13448         it breaks the build.
13449         
13450         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
13451         cattr is not finished yet.
13452
13453 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13454
13455         * verify.c: Proper token validation for field, method and type.
13456
13457 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
13458
13459         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
13460
13461         * loader.c (method_from_memberref): Generate type load error instead of method missing
13462         if the type is not found.
13463
13464 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
13465
13466         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
13467         some of the conversions caused the generation of a marshal directive exception.
13468
13469 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13470
13471         verify.c: Report which exception should be thrown by the JIT.
13472         Added a lot of FIXME notes.
13473
13474 2008-02-22  Mark Probst  <mark.probst@gmail.com>
13475
13476         * generic-sharing.c: Runtime generic context slots are not
13477         instantiated on init anymore.  Instead, provide function to do the
13478         instantiating on demand.
13479
13480         * class-internals.h: Added vtable to runtime generic context.
13481         Macros for encoding direct and indirect slot offsets in one
13482         guint32.
13483
13484 2008-02-21  Mark Probst  <mark.probst@gmail.com>
13485
13486         * object.c, generic-sharing.c: Moved some generic sharing code
13487         from object.c to generic-sharing.c.
13488
13489         * generic-sharing.c: Added support for extensible runtime generic
13490         context.
13491
13492         * metadata-internals.h: Two new hash tables in MonoImage for
13493         extensible runtime generic context support.
13494
13495         * domain.c: Unregister generic vtables upon domain unloading.
13496
13497         * image.c: Destroy new hash tables upon image unloading.
13498
13499         * metadata.c: Unregister generic subclasses upon image unloading.
13500
13501         * class-internals.h: New data structure for runtime generic
13502         context template.  New fields in the runtime generic context for
13503         extensible part.
13504
13505         * Makefile.am: Added generic-sharing.c.
13506
13507 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
13508
13509         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
13510         there is a pending loader exception, raise it.
13511
13512         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13513         same.
13514
13515         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
13516         same.
13517
13518         Fixes #363450.
13519
13520 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13521
13522         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
13523
13524         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
13525         
13526         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
13527         ref-only requests for compatibility with MS.
13528
13529 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13530
13531         * reflection.c (mono_custom_attrs_from_method): Don't silently
13532         return an empty list for generic method instances.
13533         (mono_custom_attrs_from_param): Likewise.
13534
13535 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
13536             Raja R Harinath  <harinath@hurrynot.org>
13537
13538         Fix #354757
13539         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
13540         * class.c (mono_class_inflate_generic_method_full): Initialize it
13541         when a fully-open method is instantiated.
13542         * metadata.c (inflated_method_equal, inflated_method_hash): Update
13543         to new field.
13544         * reflection.c (inflate_mono_method): Don't create a temporary context.
13545
13546 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13547
13548         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13549         Compute correct value, to prepare for imethod->reflection_info going away.
13550
13551 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13552
13553         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
13554
13555 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13556
13557         * verify.c: Implement skip visibility flag.
13558
13559 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13560
13561         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
13562         which contains an extra field to tell the kind of exception that should be thrown.
13563
13564         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
13565
13566 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
13567
13568         * loader.c (mono_method_get_param_names): Initialize 'klass' after
13569         'method' is updated.
13570
13571 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
13572
13573         * class.c (mono_class_layout_fields): Set class->min_align for classes using
13574         explicit layout as well. Fixes #360375.
13575
13576 2008-02-11  Geoff Norton  <gnorton@novell.com>
13577
13578         * loader.c: Guard and dereference against inflated generic methods
13579
13580 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
13581
13582         * class.c: Include Retargetable spec in assembly name.
13583         * assembly.c: Always include PublicKeyToken spec in assembly name
13584         (with value "null" if assembly is not signed), and include
13585         Retargetable spec.
13586         * icall-def.h: Added icall for Assembly.get_fullname.
13587         * icall.c: Added icall returning the fullname of an assembly.
13588
13589 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13590
13591         * class.c (mono_class_setup_vtable_general): Add a missing call to
13592         mono_class_setup_methods () which is needed in the AOT case.
13593
13594 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13595
13596         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13597         stack type of the given MonoType.
13598
13599         * verify.c (verify_type_compatibility_full): Handle the void type.
13600
13601         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13602         way stack merging works.
13603
13604         * verify.c (store_local): Improved verification message.
13605
13606         * verify.c (do_branch_op): If the merging is invalid, the method
13607         is unverifiable and not invalid. Improved error message.
13608
13609         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13610         a reference type diferent than System.Object. Improved error
13611         message.
13612
13613 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13614
13615         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13616
13617         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13618         type of an enum even if the argument is byref.
13619
13620         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13621         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13622
13623         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13624
13625         *verify.c (verify_type_compatibility_full): Make enum types
13626         compatible with their base types.
13627
13628         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13629         types are compatible for the special case of a boxed valuetype and
13630         System.Object.
13631
13632         * verify.c (verify_stack_type_compatibility): The function
13633         is_compatible_boxed_valuetype was extracted from here.
13634
13635         * verify.c (push_arg): Only set ctx->has_this_store if the method
13636         is not static.
13637
13638         * verify.c (do_ldelem): Fixed a typo in an error message and added
13639         strict check for mixing int32 and native int as the array type
13640         and ldelem type.
13641
13642         * verify.c (merge_stacks): Consider boxed valuetypes in the
13643         compatibility checks.
13644
13645 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13646         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13647
13648 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13649         *class.c: use_new_interface_vtable_code: renamed the env var to have
13650         a "MONO_" prefix, and fix the logic to enable it by default.
13651
13652 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13653         *class.c:
13654         mono_class_setup_vtable_general: rewrote the way in which interface
13655         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13656         makes the code more maintainable.
13657         For now the old code is still there, and can be activated setting
13658         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13659
13660 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13661
13662         * verify.c: guarded some debug functions around and #ifdef.
13663
13664         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13665
13666 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13667
13668         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13669         changes for now since they seem to break too many things.
13670
13671 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13672
13673         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13674         mono_marshal_find_nonzero_bit_offset): Added macro and function
13675         for finding the byte- and bit-offset of a bitfield within a
13676         struct.
13677
13678 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13679
13680         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13681         (mono_marshal_get_struct_to_ptr): Ditto.
13682
13683         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13684         cctor_signature.
13685
13686 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13687
13688         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13689         between methods for non-corlib types.
13690
13691 2008-02-02  Geoff Norton  <gnorton@novell.com>
13692
13693         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13694         generic parameters as well. (Fixes #342536)
13695
13696 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13697
13698         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13699
13700         * verify.c (do_invoke_method): Fix for calling with byref structs.
13701
13702         * verify.c (do_cast): push a boxed value type based on the type token and not
13703         the type of stack.
13704
13705 2008-01-31  William Holmes  <billholmes54@gmail.com>
13706
13707         * process.c (process_module_string_read): Check the size returned form 
13708           VerQueryValue to avoid out of memory exception. 
13709
13710 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13711
13712         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13713         Handle properly modules which are not in the moduleref table. Fixes
13714         #356938.
13715
13716 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13717
13718         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13719         the dynamic case which is now in managed code.
13720         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13721
13722         * marshal.c (mono_string_to_bstr): Fix a warning.
13723         (init_com_provider_ms): Ditto.
13724
13725         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13726
13727         * exception.c (mono_get_exception_out_of_memory): New helper function.
13728
13729 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13730
13731         * marshal.c: Add support for BSTR marshalling
13732         using other COM systems.
13733
13734         Code is contributed under MIT/X11 license.
13735
13736 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13737
13738         * object.c (mono_runtime_invoke_array): reverted previous
13739         commit as it breaks the build.
13740
13741 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13742
13743         * object.c (mono_runtime_invoke_array): Verify arguments for
13744         invalid types. Fixes #348522.
13745
13746 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13747
13748         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13749         non-final virtual calls using call. 
13750
13751         * verify.c (do_invoke): fixed some TODOs.
13752
13753         * verify.c (push_arg): set has_this_store for "ldarga 0".
13754
13755 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13756
13757         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13758         which belong to an inflated class. Fixes #356531.
13759
13760 2008-01-26  Robert Jordan  <robertj@gmx.net>
13761
13762         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13763         which resort to FindFirstFile when a certain error condition
13764         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13765         Code is contributed under MIT/X11 license.
13766
13767 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13768
13769         * marshal.c (emit_marshal_string): Fix out string marshalling
13770         to use specified encoding. Fixes #323900.
13771
13772         Code is contributed under MIT/X11 license.
13773
13774 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13775
13776         * class.c (mono_class_inflate_generic_method_full): Don't modify
13777         iresult->context after cache check.
13778
13779 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13780
13781         * class.c (mono_class_inflate_generic_method_full): Change the
13782         struct assignments to memcpy for better visibility and add some comments.
13783
13784 2008-01-23  Dick Porter  <dick@ximian.com>
13785
13786         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13787         procedure, and make it work on windows.
13788
13789 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13790
13791         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13792         a MonoReflectionTypeBuilder since it is always of that type.
13793
13794         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13795
13796         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13797
13798         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13799         
13800         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13801
13802         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13803
13804         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13805         instantiations from the type cache.
13806
13807 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13808
13809         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13810
13811         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13812
13813 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13814
13815         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13816
13817         * verify.c (mono_method_verify): removed old TODO
13818
13819 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13820
13821         * verify.c (do_newobj): add visibility check.
13822
13823 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13824
13825         * verify.c (do_load_function_ptr): add visibility check.
13826
13827 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13828         *class.c:
13829         mono_generic_class_get_class: hook profiler events.
13830         mono_field_get_offset: added to support heap-shot in the new profiler.
13831         *class.h: exported mono_field_get_offset.
13832         * reflection.c:
13833         mono_reflection_setup_internal_class: hook profiler events.
13834
13835 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13836
13837         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13838         argument here too and use it to avoid checking for pending exceptions if 
13839         possible.
13840
13841 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13842
13843         * assembly.c (build_assembly_name): add arg for passing the assembly
13844         flags. Do not consider a PublicKey with value "null" valid.
13845         (mono_assembly_name_parse_full): added boolean argument that will be
13846         set if the assembly name contains a PublicKeyToken spec. Added support
13847         for the Retargetable spec for which only Yes or No are allowed as valid
13848         value. Consider assembly name invalid if Retargetable spec is set, but
13849         either version, culture or public key (token) are not specified.
13850         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13851         with implementation in assembly.c.
13852         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13853         from MonoAssemblyName.
13854         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13855         introduced argument for mono_assembly_name_parse_full to know if the
13856         assembly name has a PublicKeyToken spec, and if it has instruct
13857         fill_reflection_assembly_name to use default value for keyToken (if
13858         PublicKeyToken is null).
13859
13860 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13861
13862         * verify.c (mono_method_verify): fixed ovf ops with
13863         float values. They are unverifiable now.
13864
13865 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13866
13867         * class.c (set_failure_from_loader_error): add BadImageException to the
13868         list of exceptions that can cause a type to fail to load.
13869
13870         * class.c (mono_class_get_exception_for_failure): same.
13871
13872 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13873
13874         * verify.c (in_any_exception_block): added, check if offset
13875         is part of any exception handling clause.
13876
13877         * verify.c (get_stack_type): added VAR and MVAR types.
13878
13879         * verify.c (do_stobj): better error messages.
13880
13881         * verify.c (do_cpobj): added, check cpobj.
13882
13883         * verify.c (do_initobj): added, check initobj.
13884
13885         * verify.c (do_sizeof): added, check sizeof.
13886
13887         * verify.c (do_localloc): added, check localloc.
13888
13889         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13890
13891 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13892
13893         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13894         save_lmf/restore_lmf opcodes.
13895
13896         * threads.c (mono_threads_install_notify_pending_exc): New function to
13897         install a callback notifying the JIT there is a pending exception on a thread.
13898         (mono_thread_request_interruption): Call the new callback.
13899         (mono_thread_get_and_clear_pending_exception): New function to return the
13900         exception pending on a thread.
13901
13902         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13903         to turn off checking for pending exceptions.
13904         (mono_marshal_get_native_wrapper): Ditto.
13905
13906 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13907
13908         * threads-types.h: Get rid of the unnecessary extern declarations.
13909
13910 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13911
13912         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13913         return field from parent class if not private.
13914         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13915         returns fields from parent class if they are not private.
13916         (method_nonpublic): added function to determine if a given method
13917         should be considered non-public. Returns false for private methods
13918         on parent class, and internal methods from parent on the 1.0 profile.
13919         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13920         use method_nonpublic function to determine whether method should be
13921         returned.
13922         (property_accessor_public): use newly introduced method_nonpublic
13923         function to determine whether accessor is non-public. 
13924         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13925         event from parent class if not private. Only return static event if
13926         Static flag is set, and only return static event from parent class if
13927         FlattenHierarchy flag is set.
13928         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13929         include non-private events from parent class.
13930
13931 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13932
13933         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13934         warning.
13935
13936 2008-01-16  Wade Berrier <wberrier@novell.com>
13937
13938         * security.c: Add assembly.h header to appease some warnings
13939
13940 2008-01-16  Dick Porter  <dick@ximian.com>
13941
13942         * process.c (process_module_string_read): Remove trailing null
13943         when saving string.
13944
13945 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13946
13947         * class-internals.h: A new data structure describing the layout of
13948         a runtime generic context (MonoRuntimeGenericContextTemplate).
13949
13950         * metadata-internals.h: Added a hash table to MonoDomain that maps
13951         from open generic classes to their runtime generic context
13952         templates.
13953
13954         * object.c: Building of the runtime generic context, including
13955         proper handling of generic type arguments of superclasses.
13956         Building of the runtime generic context according to the template.
13957
13958 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13959
13960         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13961         Fixes #350856.
13962
13963         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13964         mono_portability_find_file (). Fixes #325466.
13965         (mono_image_get_public_key): Fix a warning.
13966
13967 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13968
13969         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13970         Fixes #353550.
13971         (mono_class_from_name_case): Ditto.
13972
13973 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13974
13975         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13976           common storage for the tables used in the System/NumberFormatter class.
13977
13978 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13979
13980         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13981
13982 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13983
13984         * verify.c (get_boxable_mono_type): check if the token is valid.
13985
13986         * verify.c (set_stack_value): changed to add an error if an
13987         invalid type is set on stack. Changed all callers due to signature change.
13988
13989         * verify.c (do_stobj): implement stobj validation.
13990
13991 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13992
13993         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13994         set container->is_method, it was set earlier.
13995
13996         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13997         generic methods.
13998
13999         * reflection.c (mono_reflection_initialize_generic_parameter): Set
14000         is_method of the generic container to TRUE for methods.
14001
14002 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
14003
14004         * metadata.c (type_in_image): Handle type parameters properly.
14005
14006         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
14007         memory ownership of this structure.
14008
14009 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
14010
14011         * verify.c (get_boxable_mono_type): make typedref types been just
14012         unverifiable. check for void type.
14013
14014         * verify.c (do_unbox_any): added, verify opcode unbox.any.
14015
14016         * verify.c (do_load_function_ptr): accept method spec tokens.
14017
14018 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
14019
14020         * marshal.c (mono_class_native_size): Always set *align even if this is called
14021         recursively.
14022
14023 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
14024
14025         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
14026         out-of-date.
14027
14028 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
14029
14030         * verify.c: removed some old unused tables. A huge bunch of small fixes
14031         to things found while testing the verifier with mono basic.
14032
14033         * verify.c (dump_stack_value): dump null literal flag to.
14034
14035         * verify.c (verify_type_compatibility_full): fix comparison
14036         for types that have a generic super type.
14037
14038         * verify.c (verify_stack_type_compatibility): fix compatibility
14039         between null literals and reference types. fix compatibility between
14040         boxed valuetypes and object. fix corner case test for enums.
14041
14042         * verify.c (do_cmp_op): proper verification of cgt.un in case
14043         of reference types.
14044
14045         * verify.c (do_invoke_method): fix error message.
14046
14047         * verify.c (do_store_indirect
14048
14049         * verify.c (check_is_valid_type_for_field_ops): proper verification
14050         of managed pointers to valuetypes and boxed valuetypes. proper verification
14051         of null literals.
14052
14053         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
14054         allow token to be a reference type.
14055
14056         * verify.c (do_cast): proper handling of boxes valuetypes.
14057
14058         * verify.c (do_stelem): proper handling of storing a boxed valuetype
14059         in object[].
14060
14061         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
14062         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
14063         fixed the decoding of unbox_any
14064
14065 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
14066
14067         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
14068
14069 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
14070
14071         * verify.c (do_newobj): do delegate verification.
14072
14073         * verify.c (verify_delegate_compatibility): perform delegate
14074         verification.
14075
14076         * verify.c (verify_ldftn_delegate): perform tests related to
14077         ldftn delegates.
14078
14079         * verify.c (mono_delegate_signature_equal): perform the
14080         slightly diferent signature comparison required by delegates.
14081
14082         * metadata.c (mono_metadata_type_equal_full): added and exported
14083         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
14084         allows signature only comparison.
14085
14086         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
14087         as MONO_INTERNAL.
14088
14089 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
14090
14091         * verify.c: added a bunch of stack_slot_* functions to
14092         make access to stack slot type easier. This is required to
14093         allow optional flags, like null literal, boxed value and
14094         this pointer.
14095         All access paths to IlStackDesc::stype have been changed 
14096         to use these new funcions.
14097         Removed a bunch of unused functions and cleared all warnings.
14098         This patch introduces the usage of the this pointer and 
14099         boxed value flags.
14100
14101 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
14102
14103         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
14104
14105 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
14106
14107         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
14108         match managed version.
14109
14110         * appdomain.c: Bump corlib version.
14111         
14112         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
14113         argument.
14114
14115 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
14116
14117         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
14118         Set public key token to zero-length byte array if assembly is not
14119         strongnamed.
14120
14121 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
14122
14123         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
14124         writing a vtype array elem.
14125
14126 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
14127
14128         * assembly.c (build_assembly_name): return FALSE if length of token is
14129         not 16 (if not "null").
14130         (mono_assembly_name_parse_full): return FALSE if value of version,
14131         culture, token or key is 0.
14132         * icall.c (fill_reflection_assembly_name): add boolean arguments to
14133         specify whether public key and public key token must be set to default
14134         value (zero-length byte array) if not available. Set versioncompat to
14135         SameMachine. If public key is available or the default is set, then
14136         set PublicKey flag.
14137         (ves_icall_System_Reflection_Assembly_FillName): if no public key
14138         is available, use empty byte array as default value. On the 2.0
14139         profile, use default value for public key token if not set.
14140         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
14141         profile, use default value for public key if not set. On the 2.0
14142         profile, use default value for public key token if not set.
14143         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
14144         default values for public key and public key token.
14145
14146 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
14147
14148         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
14149         field to keep it in synch with the managed object.
14150
14151         * marshal.c (emit_marshal_object): Add support for byref marshalling of
14152         delegates. Fixes #351520.
14153
14154         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
14155         contains defined memory.
14156         
14157         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
14158
14159         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
14160         
14161         * sgen-gc.c (check_consistency): New helper function to do a consistency check
14162         of the GC data structures.
14163
14164         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
14165
14166         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
14167         
14168         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
14169         barrier.
14170         (mono_array_clone_in_domain): Ditto.
14171         (mono_array_clone_in_domain): Ditto.
14172
14173         * threads.c (start_wrapper): Register the thread start argument as a GC root.
14174         (cache_culture): Use a write barrier.
14175
14176         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
14177         (ves_icall_get_property_info): Ditto.
14178
14179         * object.h (MONO_STRUCT_SETREF): New macro.
14180
14181         * class-internals.h (MonoStats): Add some GC statistics.
14182
14183         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
14184
14185 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
14186
14187         * exception.c (mono_exception_from_name_two_strings):
14188         Break from loop after method is found.
14189
14190 2008-01-04  Dick Porter  <dick@ximian.com>
14191
14192         * process.c (process_module_string_read): Rename variable to
14193         reflect correct usage, after fixing bug 345972.
14194
14195 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
14196
14197         * verify.c (mono_type_create_fnptr_from_mono_method): 
14198         created a MonoType function pointer instance to be used during
14199         verification. The verifier releases this memory at end.
14200
14201         * verify.c (mono_method_is_constructor): extracted repeated
14202         checks for constructor into a single class.
14203
14204         * verify.c (do_push_field): use new extracted method
14205         for constructor check.
14206
14207         * verify.c (do_newobj): same.
14208
14209         * verify.c (do_ldftn): renamed to do_load_function_ptr
14210         and make it verify ldvirtftn too.
14211
14212         * verify.c (mono_method_verify: proper verification
14213         of ldvirtftn. release created MonoMethod instances.
14214
14215 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14216
14217         * verify.c (token_bounds_check): added.
14218
14219         * verify.c (do_ldftn): added.
14220
14221         * verify.c (mono_method_verify): proper verificartion of ldftn.
14222
14223 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
14224
14225         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
14226         than the table row count. It's the resposibility of the caller to
14227         make the bounds check and raise the correct error.
14228
14229         * metadata.c (mono_metadata_decode_row_col): Same.
14230
14231         * loader.c (mono_get_method_from_token): perform bounds check
14232         on token for methoddef table.
14233
14234 2007-12-29  Miguel de Icaza  <miguel@novell.com>
14235
14236         * icall.c
14237         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
14238         assert into a negative result, the managed code already coped with
14239         that.
14240
14241         Some folks on Windows reported this error. 
14242
14243 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
14244
14245         * appdomain.c: Bump corlib version.
14246         * icall.c:
14247         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
14248         CultureInfo.CreateCulture to create CultureInfo for name.
14249         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
14250         create CultureInfo for name. Fixes bug #347174.
14251
14252 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14253
14254         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
14255         flags.
14256
14257         * verify.c (is_valid_branch_instruction): allow branching to the
14258         first instruction of the protected block.
14259
14260         * verify.c (is_valid_cmp_branch_instruction): same.
14261
14262         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
14263         avoid double initialization.
14264
14265         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
14266         detect which cases the eval stack should just be copied.
14267
14268         * verify.c (mono_method_verify): check if the eval stack
14269         is empty when entering a protected block.
14270
14271 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
14272
14273         * verify.c: added is_clause_in_range, is_clause_inside_range,
14274         is_clause_nested and verify_clause_relationship. They perform
14275         the verifications stated in P1 12.4.2.7.
14276
14277         * verify.c (mono_method_verify): remove some unused variables,
14278         add the new exception clause checks, add instruction border
14279         checks for protected block start/end, improved some error 
14280         messages and fixed a bug in the way invalid instruction access
14281         is detected.
14282
14283 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
14284
14285         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
14286         from GC 7.0 if available.
14287
14288         * object.c: Remove an unused define.
14289         
14290         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
14291
14292         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
14293
14294         * null-gc.c (mono_gc_make_descr_for_array): Implement.
14295
14296         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
14297
14298         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
14299         to take the same arguments as the other make_descr functions.
14300
14301         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
14302
14303         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
14304         directly.
14305
14306         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
14307         mini.c.
14308
14309         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
14310         call to boehm-gc.c.
14311
14312         * boehm-gc.c (mono_gc_register_root): Fix a warning.
14313
14314         * null-gc.c (mono_gc_register_root): Fix a warning.
14315
14316         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
14317
14318         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
14319         (mono_gc_base_init): Call GC_init ().
14320
14321         * null-gc.c: Define mono_gc_register_root () as a no-op.
14322
14323         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
14324
14325 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
14326
14327         * verify.c: add prototype for merge_stacks at top
14328
14329         * verify.c (do_switch): added.
14330
14331         * verify.c (merge_stacks): on some cases the stack merging
14332         was not happening properly. Unequal stack sizes at merge
14333         points should be invalid.
14334
14335         * verify.c (mono_method_verify): added more debug info on stack state.
14336         verify switch properly.
14337
14338 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
14339
14340         * method-builder.h: New file, moved the mono_mb_ declarations here from 
14341         marshal.h.
14342
14343         * boehm-gc.c marshal.c: Include method-builder.h.
14344
14345         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
14346
14347         * marshal.c: Remove some code which is now in method-builder.c.
14348
14349 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
14350
14351         * method-builder.c: New file, extraction of the method builder functionality 
14352         from marshal.c.
14353
14354         * marshal.c: Move the mb functions into method-builder.c.
14355
14356         * marshal.h marshal.c: Export some mono_mb_... functions.
14357
14358         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
14359
14360         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
14361         the caller.
14362
14363         * class.c (mono_class_get_full): Check the token type in the dynamic case.
14364
14365         * loader.c (mono_field_from_token): Ditto.      
14366
14367         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
14368         type as well.
14369         
14370         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
14371         Fixes #342565.
14372
14373         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
14374         a helper function for setting it.
14375
14376         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
14377
14378         
14379         * assembly.c: Significally simplify code now that referenced assemblies are 
14380         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
14381
14382         * threads.h: Don't include  the internal threads-types.h header file. Fixes
14383         #349952.
14384
14385 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
14386
14387         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
14388         instructions that were target of branches or are at protected block boundaries.
14389
14390         * verify.c (in_same_block): handle filter clauses.
14391
14392         * verify.c (is_valid_branch_instruction): added. checks the target of
14393         instructions br or brtrue/false.
14394
14395         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
14396         binary branch instructions such as beq and bge.
14397
14398         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
14399         and made it pin the instruction as been part of the exception block.
14400
14401         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
14402         of in_same_block.
14403
14404         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
14405         of in_same_block.
14406
14407         * verify.c (do_ret): ret from a protected block is unverifiable and
14408         not invalid.
14409
14410         * verify.c (do_static_branch): verify br and br.s instructions.
14411
14412         * verify.c (merge_stacks): add extra param to support detection
14413         of branches in the middle of instructions.
14414         
14415         * verify.c (mono_method_verify): verify branches and exception blocks
14416         that target the middle of instructions. Proper verification of br and br.s.
14417
14418 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
14419
14420         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
14421         skip_visibility field.
14422         (reflection_methodbuilder_from_dynamic_method): Ditto.
14423
14424         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
14425         registrations. Fixes #348193.
14426
14427         * threads.h: Move the internal mono_thread_get_pending_exception () to
14428         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
14429
14430 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
14431
14432         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
14433         icall registration. Fixes #348193.
14434
14435         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
14436         for corlib classes into object. Fixes #349621.
14437
14438 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
14439
14440         * icall.c (property_accessor_nonpublic): new function to determine
14441         whether an accessor allows a property to be considered non-public.
14442         Returns false for private accessor(s) from parent class, and internal
14443         accessor(s) from parent on 2.0 profile (and higher).
14444         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
14445         to determine whether property should be included if NonPublic flag
14446         is set. Fixes bug #349078.
14447
14448 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
14449
14450         * verify.c (init_stack_with_value): added.
14451
14452         * verify.c (mono_method_verify): extracted common
14453         code for exception initialization into init_stack_with_value.
14454
14455         * verify.c (mono_method_verify): initialize the exception
14456         for handler clauses as well.
14457
14458         * verify.c (mono_method_verify): fix the exception clause
14459         ordering rules, it should use handler end offset and not
14460         start offset.
14461
14462 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
14463
14464         * rawbuffer.c: remove useless warning.
14465
14466 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
14467
14468         * threads.h, threads-types.h: move functions to the correct header
14469         (fixes bug#349952).
14470
14471 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14472
14473         * verify.c (mono_method_verify): proper verification
14474         of exception handling clauses ranges and fallthru in
14475         and out of protected blocks.
14476
14477 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14478
14479         * verify.c (mono_method_verify): fixed compilation issue.
14480
14481 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
14482
14483         * verify.c (mono_method_verify): a printf slipped in, changed
14484         to use verifier debug macro.
14485
14486 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
14487
14488         * verify.c (is_correct_leave): check for filter clauses.
14489
14490         * verify.c (do_filter): added.
14491
14492         * verify.c (mono_method_verify): property verification of leave.
14493
14494
14495 2007-12-18  Mark Probst  <mark.probst@gmail.com>
14496
14497         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
14498         Win32 build, until we figure out how to do the proper thing on
14499         Win32.
14500
14501 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
14502
14503         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
14504         by the previous patch.
14505         
14506         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
14507         the assembly resolve handler for refonly assemblies.
14508
14509 2007-12-17  Mark Probst  <mark.probst@gmail.com>
14510
14511         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
14512         Make sure only one thread is allowed to commence shutdown, and
14513         don't allow new threads to be started once shutdown is in
14514         progress.
14515
14516 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
14517
14518         * verify.c (is_correct_endfilter): added.
14519
14520         * verify.c (is_unverifiable_endfilter): added.
14521
14522         * verify.c (do_endfilter): added.
14523
14524         * verify.c (mono_method_verify): property verification of endfilter
14525         and fixed a corner case or endfinally.
14526
14527 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
14528
14529         * verify.h: new flags to support fail fast of unverifiable code and
14530         do non-strict verification. Non-strict verification is required to
14531         have MS runtime compatibility. There are a huge amount of unverifiable
14532         code that it accepts as verifiable. The strict mode verifies the code
14533         as the specs says.
14534         Non-strict mode will be required in cases where code needs to be
14535         accepted as verifiable but fails under strict mode.
14536
14537         * pedump.c: added support to fail fast and non-strict verification.
14538
14539         * verify.c: added support for both fail fast and non-strict verification.
14540
14541 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
14542
14543         * verify.c (is_correct_endfinally): added.
14544
14545         * verify.c (mono_method_verify): property verification of endfinally.
14546
14547 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14548
14549         * verify.c (in_any_block): check for filter clauses.
14550
14551         * verify.c (is_correct_rethrow): added.
14552
14553         * verify.c (mono_method_verify): property verification of rethrow.
14554
14555         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
14556
14557 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14558
14559         * verify.c (do_throw): added.
14560
14561         * verify.c (mono_method_verify): property verification of throw
14562
14563 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
14564
14565         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
14566         assemblies. Fixes #346425.
14567
14568 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
14569
14570         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
14571         FieldBuilders.
14572
14573         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
14574
14575         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
14576         prevent asserts when this is called with a token which might not be valid.
14577
14578         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
14579         lookup_dynamic_token_class with valid_token == FALSE.
14580
14581         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
14582
14583         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
14584
14585         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14586         
14587 2007-12-10  Mark Probst  <mark.probst@gmail.com>
14588
14589         * gc.c: Don't delay threadpool thread finalization unless Mono is
14590         shutting down.
14591
14592 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14593
14594         * threads.c: turn an assert into a non-fatal warning.
14595
14596 2007-12-09  Robert Jordan  <robertj@gmx.net>
14597
14598         * icall.c (GetVirtualMethod): Add missing argument validation.
14599
14600 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14601
14602         * verify.c (do_cast): added.
14603
14604         * verify.c (mono_method_verify): property verification of castclass and isinst.
14605
14606
14607 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14608
14609         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14610
14611         * verify.c (do_stelem): added.
14612
14613         * verify.c (mono_method_verify): property verification of stelem.X.
14614
14615 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14616
14617         * class.c, class-internals.h: Introduce an environment variable
14618         (MONO_GENERIC_SHARING) through which the extent of generic code
14619         sharing can be controlled (share all classes, share only corlib
14620         classes, or share nothing).
14621
14622         * object.c: Only create runtime generic context for classes for
14623         which sharing is enabled.
14624
14625 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14626
14627         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14628
14629         * verify.c (mono_method_verify): property verification of ldelem.any.
14630
14631 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14632
14633         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14634         added ldelem.X opcodes.
14635
14636         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14637
14638         * verify.c: proper verification of ldelem.X 
14639
14640 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14641
14642         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14643
14644 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14645
14646         * verify.c (mono_method_verify): null literal requires special handling,
14647         the value pushed on stack need to be flagged as so.
14648
14649         * verify.c (do_ldelema): Verify ldelema properly.
14650
14651 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14652
14653         * verify.c: Verify ldlen properly.
14654
14655 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14656
14657         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14658         to the target object's type. Fixes #346160.
14659
14660 2007-12-05  Dick Porter  <dick@ximian.com>
14661
14662         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14663         Solaris needs the same workaround as BSD-derived systems.  Fixes
14664         bug 323524, patch by Burkhard Linke
14665         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14666
14667 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14668
14669         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14670         handle to use when error dialog is shown; otherwise, update mask
14671         to show no error dialog when an error occurs.
14672
14673 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14674
14675         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14676
14677         * class.c (mono_class_get_field_default_value): New helper function to initialize
14678         field->def_type and field->data.
14679
14680 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14681
14682         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14683         the general one.
14684
14685         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14686
14687         * marshal.c: Avoid depending on delegate->method_info being set.
14688
14689         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14690         
14691         * object.c (mono_delegate_ctor): Set delegate->method.
14692
14693         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14694
14695         * appdomain.c: Bump corlib version.
14696
14697 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14698
14699         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14700         equality check if we're comparing canonicalized MonoGenericInsts.
14701
14702 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14703
14704         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14705         accessing class->methods.
14706
14707 2007-11-22  Dick Porter  <dick@ximian.com>
14708
14709         * threads.c: Ensure that the synch_cs is set before trying to use
14710         it.
14711
14712 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14713
14714         * profiler.c: r89126 broke the statistial profiler, unbreak.
14715
14716 2007-11-22  Martin Baulig  <martin@ximian.com>
14717
14718         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14719
14720         * mono-debug.c
14721         (mono_debug_debugger_version): Bump to 3.
14722         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14723         -> mono_debugger_class_initialized().
14724
14725         * mono-debug-debugger.c
14726         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14727
14728         * class.c
14729         (mono_debugger_start_class_init_func): Removed.
14730         (mono_debugger_class_loaded_methods_func): Added.
14731         (mono_class_setup_methods): Call it here.
14732
14733 2007-11-22  Martin Baulig  <martin@ximian.com>
14734
14735         * mono-debug.c
14736         (mono_debug_add_delegate_trampoline): New public method.
14737         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14738
14739         * mono-debug.h
14740         (MonoSymbolTable): Added `global_data_table'.
14741         (MonoDebuggerTypeKind): Removed.
14742
14743 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14744
14745         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14746         these methods.
14747
14748         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14749         
14750 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14751
14752         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14753
14754 2007-11-20  Martin Baulig  <martin@ximian.com>
14755
14756         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14757
14758         * mono-debug-debugger.c
14759         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14760         (mono_debugger_remove_breakpoint): Likewise.
14761         (mono_debugger_check_breakpoints): Likewise.
14762         (mono_debugger_register_class_init_callback): New public method.
14763         (mono_debugger_remove_class_init_callback): Likewise.
14764         (mono_debugger_add_type): Likewise.
14765
14766         * mono-debug-debugger.h
14767         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14768
14769 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14770
14771         * class.c: more interface implementations needed for the
14772         array enumerator (fixes bug #341112).
14773
14774 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14775
14776         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14777         fix ParamName of ArgumentNullExceptions.
14778
14779 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14780
14781         * reflection.c (mono_reflection_encode_sighelper): Generate the
14782         modopts and modreqs.   I have a useless test that crashes monodis,
14783         but that shows the code working.
14784
14785 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14786
14787         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14788         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14789
14790 2007-11-15  Dick Porter  <dick@ximian.com>
14791
14792         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14793         When joining a thread, it's the thread that's calling Join that
14794         gets WaitSleepJoin state not the target.  Fixes the standalone
14795         test case in bug 334740, and hopefully the whole bug too.
14796
14797 2007-11-15  Dick Porter  <dick@ximian.com>
14798
14799         * process.c: Read file version info from the files pointed at by
14800         process modules, not the current process.  Fixes bug 315969.
14801
14802         Use windows typedef names in some places to fix warnings on the
14803         windows build.
14804
14805 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14806
14807         * image.c, metadata-internals.h: Added a generic_class_cache hash
14808         to MonoImage for looking up generic classes when sharing generics.
14809
14810 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14811
14812         * sgen-gc.c: warning cleanups.
14813
14814 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14815
14816         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14817         inherited properties.
14818
14819 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14820
14821         * object.c, class-internals.h: Added more information to the
14822         runtime generic context.
14823
14824 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14825
14826         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14827         instead of just the target method. Generalize the abstract method handling to
14828         handle any non-static method.
14829
14830         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14831         mono_marshal_get_delegate_invoke () signature change.
14832
14833 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14834
14835         * class.c, class-internals.h: Made
14836         mono_type_get_basic_type_from_generic () public.  Fixed member
14837         access check for shared generics.
14838
14839         * loader.c: Don't insert field into field cache if it's part of a
14840         non-inflated generic class.
14841
14842         * domain.c, domain-internals.h: The generic sharing context is now
14843         part of the jit info data structure.  Added two accessor
14844         functions.
14845
14846 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14847
14848         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14849         the array Get/Set/Address methods, since the JIT inlines them.
14850
14851         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14852
14853         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14854         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14855
14856         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14857         mono_marshal_get_delegate_invoke signature change.
14858
14859         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14860         an additional argument. Add support for invoking abstract methods.
14861
14862         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14863
14864         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14865
14866 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14867
14868         * class.c: Do field layout for open generic classes as well.
14869
14870 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14871
14872         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14873         other objects, because the threadpool is still around.  Put them
14874         in a list instead and after finalizing all other objects in the
14875         root domain shut down the thread pool and then finalize the
14876         threads.  Fixes bug #337383.
14877
14878         * threads.c, thread-types.h: New mono_thread_create_internal()
14879         function for marking a thread with the threadpool flag before it
14880         started.  Set synch_cs to NULL after freeing it.
14881
14882         * threadpool.c: Mark threadpool threads before they start.
14883
14884 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14885
14886         * reflection.h, reflection.c: don't export random functions
14887         and lazy load dbnull and missing objects.
14888
14889 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14890
14891         * class.c: Initialize COM types if COM interfaces
14892         are present (not just COM classes).
14893         
14894         Code is contributed under MIT/X11 license.
14895
14896 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14897         * reflection.c:
14898         create_dynamic_mono_image: hook module profiler events (dynamic case).
14899         mono_image_basic_init: hook assembly profiler events (dynamic case).
14900
14901 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14902         * profiler.c:
14903         simple_appdomain_unload: completely terminate the profiler
14904         instead of only processing the statistical samples.
14905         simple_shutdown: make sure this is really called exactly once,
14906         even in multithreaded applications, and always listen to
14907         appdomain events.
14908         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14909         here, the "[un]load" functions will do it.
14910         Fixes bugs #333791 and #325261.
14911
14912 2007-11-07  Geoff Norton  <gnorton@novell.com>
14913
14914         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14915         rather than depend on __APPLE__.
14916
14917 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14918
14919         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14920
14921 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14922
14923         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14924         UTF16 MonoString. Fix the crash from bug #335488
14925
14926 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14927
14928         * marshal.c: Correct (for non-Win32 OS) length != size in 
14929         mono_string_from_bstr. Fix #339530.
14930
14931 2007-11-06  Geoff Norton  <gnorton@novell.com>
14932
14933         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14934         to succeed
14935
14936 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14937
14938         * process.c: Added run-time GetProcessId API detection for Windows.
14939
14940 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14941
14942         * reflection.c  (mono_param_get_objects): If a parameter has the
14943         attribute [System.Runtime.InteropServices.Optional] we should
14944         set the DefaultValue of the ParameterInfo to be
14945         System.Reflection.Missing instead of DBNull.
14946
14947         See bug #339013.
14948
14949         (mono_get_reflection_missing_object): New method,
14950         returns the System.Reflection.Missing.Value singleton instance.
14951
14952 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14953
14954         * culture-info-table.h : regenerated.
14955
14956 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14957
14958         * icall.c: Use GetEnvironmentStrings on windows
14959         so we are using the same environment block as 
14960         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14961         #333740.
14962         
14963         Code is contributed under MIT/X11 license.
14964
14965 2007-10-31  Martin Baulig  <martin@ximian.com>
14966
14967         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14968
14969         * mono-debug-debugger.h
14970         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14971
14972 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14973
14974         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14975         classes.
14976
14977 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14978
14979         * culture-info-table.h : regenerated.
14980
14981 2007-10-30  Robert Jordan  <robertj@gmx.net>
14982
14983         * icall-def.h, icall.c:
14984         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14985
14986         Code is contributed under MIT/X11 license.
14987
14988 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14989
14990         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14991         inflated class instead of inflating them again.
14992         
14993         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14994         dynamic case.
14995
14996         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14997         Call setup_supertypes () after klass->parent is set.
14998         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14999
15000         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
15001         for inflated instances of not yet created dynamic generic classes.
15002         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
15003         times from inflated_method.
15004         (methodbuilder_to_mono_method): Ditto.
15005
15006 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15007
15008         * gc.c: code cleanup and removed old untested option of not creating the
15009         finalizer thread.
15010
15011 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
15012
15013         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
15014         creating a jump trampoline for dynamic methods.
15015
15016 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
15017
15018         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
15019         generic TypeBuilders when called from another method of the same type (bug #335131).
15020
15021
15022 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
15023
15024         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
15025         doesn't seem to work perfectly.
15026         
15027         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
15028         called multiple times.
15029         (methodbuilder_to_mono_method): Ditto.
15030         (resolve_object): Inflate FieldBuilder's.
15031
15032 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15033
15034         * string-icalls.c, string-icalls.h, appdomain.c: patch from
15035         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
15036         RemoveEmptyEntries in the string.Split implementation (bug #322375).
15037
15038 2007-10-26  Dick Porter  <dick@ximian.com>
15039
15040         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
15041         Thread initialisation changes
15042
15043 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
15044
15045         * verify.c: fix compatibility check between arrays and System.Array
15046
15047 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
15048
15049         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
15050         too. Fixes #336999.
15051
15052 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
15053
15054         * object.c (mono_value_box): Use typed allocation here.
15055
15056 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
15057
15058         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
15059         trampoline instead of compiling the method right away.
15060
15061         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
15062
15063 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
15064
15065         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
15066         related fields for dynamic classes. Fixes #334493.
15067
15068 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
15069
15070         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
15071         
15072         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
15073
15074         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
15075         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
15076
15077         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
15078
15079         * reflection.c (create_generic_typespec): Initialize klass->generic_container
15080         if needed.
15081         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
15082
15083 2007-10-18  Jonathan Chambers <joncham@gmail.com>
15084
15085         * marshal.c: Use correct key when removing item
15086         from ccw_hash.
15087         
15088         Code is contributed under MIT/X11 license.
15089
15090 2007-10-17  William Holmes  <billholmes54@gmail.com>
15091
15092         *marshal.c: Adding a case to marshal booleans to U1
15093
15094         Code is contributed under MIT/X11 license.
15095
15096 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
15097
15098         * class.c (mono_class_from_name): Search the modules compromising dynamic
15099         assemblies. Fixes #331601.
15100
15101 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
15102
15103         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
15104         exception if the type name contains an assembly component. Fixes #334203.
15105
15106         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
15107         modules inside dynamic assemblies. Fixes #334200.
15108         
15109         * reflection.c: Set image->public_key and image->public_key_length;
15110
15111         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
15112         fields.
15113
15114         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
15115         
15116 2007-10-16  Mark Probst  <mark.probst@gmail.com>
15117
15118         * metadata.c: Implemented correct comparing of generic classes.
15119         An inflated generic class can be equal to a non-inflated one if it
15120         is inflated with generic type variables as type arguments.  Fixes
15121         bug #333798.
15122
15123 2007-10-15  Dick Porter  <dick@ximian.com>
15124
15125         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
15126         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
15127         81646.
15128
15129         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
15130         instead of a monitor lock.  This means that monitor_try_enter and
15131         co can set the thread state safely.
15132         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
15133         thread_interrupt_requested, so interrupt actually works.
15134
15135         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
15136         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
15137         state accessor function
15138
15139 2007-10-15  Martin Baulig  <martin@ximian.com>
15140
15141         * mono-debug.h
15142         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
15143         the debugger with the current runtime.
15144
15145 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
15146
15147         * object.c, object-internals.h: added the ability to set a single
15148         trampoline for all the slots in a vtable.
15149
15150 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15151
15152         * marshal.c: deal with a possible race condition during multicast
15153         delegate invocation.
15154
15155 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15156
15157         * class.c: ensure value type methods don't have the synchronized
15158         flag set.
15159
15160 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
15161
15162         * string-icalls.c, string-icalls.h: reverted unapproved patch that
15163         breaks the build.
15164
15165 2007-10-11  Joel Reed  <joelwreed@comcast.com>
15166
15167         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
15168         to take an options parameter so that empty entries can be removed during
15169         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
15170
15171 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15172
15173         * marshal.c: make sure we don't store the signature from a dynamic
15174         method into the runtime invoke cache (bug #327189).
15175
15176 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15177
15178         * marshal.c: make sure the wrapper methods are properly initialized.
15179
15180 2007-10-11  Mark Probst  <mark.probst@gmail.com>
15181
15182         * metadata.c, metadata-internals.h: Generalized
15183         mono_type_stack_size() to mono_type_stack_size_internal() which
15184         takes an additional argument specifying whether it allows open
15185         types.
15186
15187 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
15188
15189         * verify.c (do_invoke_method): handle typedbyref params
15190         correctly and check for unverifiable return values.
15191
15192         * verify.c (do_newobj): fix a warning.
15193
15194 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
15195
15196         * verify.c: don't tread typedbyref as allways unverifable,
15197         so uses, like (ld/st)loc.0 are valid. verify for the cases
15198         that it matters, like boxing related operations.
15199
15200 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
15201
15202         * verify.c: add verification of the newobj opcode. verification
15203         of delegate instantation still missing due ldftn and virldftn not
15204         pushing the function type on stack
15205
15206 2007-10-08  Mark Probst  <mark.probst@gmail.com>
15207
15208         * class-internals.h: Runtime generic context data structure
15209         definition.
15210
15211         * object.c: Initialization of runtime generic context at runtime
15212         vtable creation time.
15213
15214 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
15215         * class.c (mono_class_create_from_typedef,
15216         mono_class_from_generic_parameter, mono_ptr_class_get,
15217         mono_fnptr_class_get, mono_bounded_array_class_get)
15218         * domain.c (mono_domain_create, mono_domain_free)
15219         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
15220         * image.c (do_mono_image_load, mono_image_close):
15221         Hooked up load-unload profiler events.
15222
15223 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
15224
15225         * domain.c: track statistics about the actual amount of native code
15226         allocated.
15227
15228 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15229
15230         * class.c: the valuetype enumerators don't have the additional
15231         supertypes interfaces.
15232
15233 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15234
15235         * class.c: need more interfaces setup for the IEnumerator<T>
15236         object created for arrays (tests/ienumerator-interfaces.2.cs).
15237
15238 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
15239
15240         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
15241
15242 2007-10-05  Alp Toker  <alp@atoker.com>
15243
15244         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15245         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15246         #315863.
15247
15248 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15249
15250         * verify.c (verify_type_compatibility_full): verification of
15251         compatibility improved, validates correctly non-strict checks between
15252         native int and I4 types different than (unsigned)int32.
15253
15254         * verify.c (do_store_indirect): added, do all verification of
15255         ldind.X opcodes. 
15256
15257         * verify.c (get_load_indirect_mono_type): renamed to
15258         get_indirect_op_mono_type, as it now returns the MonoType for 
15259         ldind.X and stind.X opcodes.
15260
15261 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
15262
15263         * reflection.c: Fix the encoding of generic type definition for
15264         TypeBuilders.
15265
15266         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
15267         mono_image_typedef_or_ref but allows to specify if typespec lookups should
15268         be made. Typespec check is done prior to typeref cache lookup.
15269
15270         * reflection.c (mono_image_typedef_or_ref): now just delegate to
15271         mono_image_typedef_or_ref_full.
15272
15273         * reflection.c (encode_generic_class): encode the generic class
15274         directly instead of calling encode_type.
15275
15276         * reflection.c (encode_type): encode the generic type definition
15277         MonoClass as a generic instantiation.
15278
15279         * reflection.c (create_typespec): cache typespec tokens in
15280         the assembly->typespec cache. Don't create typespec for a generic
15281         instance MonoClass. Create typespec for the generic type defintion.
15282
15283         * reflection.c (create_generic_typespec): encode the generic
15284         class directly instead of calling encode_type.
15285
15286         * reflection.c (mono_image_create_token): encode the generic
15287         type definition not using a typespec for MonoType instances.
15288
15289
15290 2007-10-04  Raja R Harinath  <rharinath@novell.com>
15291
15292         Fix #328812
15293         * class.c (mono_image_init_name_cache): Don't return nested
15294         'protected internal' classes.
15295         (mono_class_from_name_case): Likewise.
15296
15297 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15298
15299         * icall-def.h, icall.c : get_bundled_machine_config() is now the
15300           common function used by both DefaultConfig in System.dll and
15301           InternalConfigurationHost in System.Configuration.dll.
15302
15303 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15304
15305         * class.c: automatically add to vectors only a few essential explicit
15306         generic interfaces. The rest of the interfaces that arrays should
15307         provide are currently implicitly added (but still not lazily, see the
15308         design in the discussion of bug#325495 for the details of what is
15309         needed for that). Additionally, implicit interfaces are assigned the
15310         same vtable slot as the explicit interfaces (as they are compatible):
15311         this enables huge memory savings since we don't need to instantiate
15312         as many memthods and as large vtables anymore. Also, Since
15313         GetEnumerator<T> returns an instance of a type that is required to
15314         support a similarly large set of interfaces as arrays, we add
15315         implicit interfaces and interface offset sharing support to those
15316         types, too. This change adds all the required interfaces so that
15317         the anonarray.cs test case in the bug report works (we don't add
15318         all the interfaces to arrays of arrays 3-level deep and more because
15319         of the memory requirements explained in the bug and since they are much
15320         less common: the lazy-loading support will enabled them to work, too).
15321
15322 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15323
15324         * verify.c (merge_stacks): major clean up, all type compatibility
15325         checks are done by verify_type_compatibility. This fix my earlier lack
15326         of understanding of the CLR type system and merge_stacks no longer looks
15327         scary.
15328
15329         * verify.c: fixed some bad spelling.
15330
15331 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
15332
15333         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
15334         a given stack slock.
15335         
15336         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
15337         verify_type_compatibility_full. This removed a near indentical function and fixed
15338         handling of Int32 and IntPtr across all opcodes.
15339
15340 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15341
15342         * class.c: only vectors have the additional generic interfaces.
15343
15344 2007-10-01  Jonathan Chambers <joncham@gmail.com>
15345
15346         * mono-config.c: Use g_strcasecmp instead of
15347         strcasecmp like everywhere else to fix
15348         compilation with MSVC.
15349         
15350         Code is contributed under MIT/X11 license.
15351
15352 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15353
15354         * object.c, object-internals.h: refactored the IMT code to enable
15355         building a single slot at a time and lazily creating the IMT trampolines
15356         and thunks.
15357
15358 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
15359
15360         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
15361
15362         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
15363         Fixes #328501.
15364         
15365 2007-09-29  Raja R Harinath  <harinath@gmail.com>
15366
15367         * loader.c (method_from_methodspec): Rearrange to avoid
15368         un-necessary exposition.  Don't assert out if the method's
15369         declaring type is a generic type definition.
15370
15371 2007-09-28  Martin Baulig  <martin@ximian.com>
15372
15373         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
15374
15375 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
15376
15377         * class-internals.h: optimize field layout of MonoClass to
15378         requires less cachelines at runtime and save a few bytes on 64 bit
15379         systems.
15380
15381 2007-09-28  Jb Evain  <jbevain@novell.com>
15382
15383         * reflection.c: when encoding type names in custom attributes,
15384         if the type is a closed generic type, its generic arguments
15385         have to be serialized as AssemblyQualifiedName, so that when
15386         they are deserialized, it's possible to re-create them properly.
15387         Fixes #329450.
15388
15389
15390 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15391
15392         * object.c, class-internals.h: added delegate-creation counter.
15393
15394 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
15395
15396         * class.c: cleanup of the code that synthetizes interfaces for
15397         arrays in 2.0: saves quit a bit of corlib mempool memory.
15398         Code to fix bug #325495 ifdeffed out for now until the issues
15399         with memory usage and O(n^2) behaviour are fixed.
15400
15401 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15402
15403         * marshal.c: when possible, do not duplicate the name of the methods
15404         in the method builder and in the generated MonoMethod.
15405
15406 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15407         * verify.c: added support for type checking ldind_* opcodes.
15408
15409 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15410
15411         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
15412         which is used to distinguish the fully open instantiation of a TypeBuilder
15413         with the rest. This temporary hack is required to restore the property that
15414         the fully open instantiation is the same type of the generic type definition.
15415
15416         * class-internals.h (mono_generic_class_is_generic_type_definition):
15417         new function as part of the internal API.
15418
15419         * class.c (inflate_generic_type): return NULL when the generic inst is
15420         fully open. The fully open generic type is now the same as the generic type
15421         definition for non TypeBuilder types.
15422
15423         * class.c (mono_generic_class_get_class): removed assert since it is
15424         no longer valid, gklass->cached_class can point to the generic type definition.
15425
15426         * class.c (mono_generic_class_is_generic_type_definition): new.
15427
15428         * metadata.c (mono_generic_class_hash): added is_tb_open field
15429         to the hash calculation.
15430
15431         * metadata.c (free_generic_class): if the generic class is associated
15432         with the generic type definition, its field will come from the mempool and
15433         must not be freed.
15434
15435         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
15436         new, this function identifies the corner case of a TypeBuilder fully open
15437         instantiation.
15438
15439         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
15440         for lookup. Set gclass->cached_class to be the container class in case of
15441         the fully open instantiation of non TypeBuilder types.
15442
15443         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
15444         to compare generic classes.
15445
15446         * reflection.c (method_encode_methodspec): remove assert that
15447         no longer is valid.
15448
15449         * reflection.c (mono_reflection_generic_class_initialize): add
15450         an aditional assert to ensure the proper type is used.
15451
15452 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
15453
15454         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
15455         to enjoy it.
15456
15457 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15458
15459         * verify.c (push_arg): Fixed support for ldarga
15460         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
15461         MonoType used as first arg in case of instance calls.
15462
15463 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
15464
15465         * verify.c: Support for verifying VAR and MVAR types, 
15466
15467 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
15468
15469         * icall.c (ves_icall_get_property_info): Set the reflected type of the
15470         accessors correctly.
15471
15472 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
15473
15474         * threads.c: support OSX and other systems in
15475         mono_thread_get_stack_bounds (bug #328026).
15476
15477 2007-09-25  Martin Baulig  <martin@ximian.com>
15478
15479         * mono-debug.h
15480         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
15481
15482 2007-09-24  Martin Baulig  <martin@ximian.com>
15483
15484         * mono-debug.h
15485         (MonoDebugClassEntry): Moved the definition of this struct into
15486         mono-debug.c to make it private.
15487
15488         * mono-debug.c
15489         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
15490         type table per symbol file, we don't need to store the symfile id
15491         any longer.
15492
15493 2007-09-24  Martin Baulig  <martin@ximian.com>
15494
15495         Create one type table per symbol file, since a `MonoClass *' gets
15496         invalid when its image is unloaded.
15497
15498         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
15499         (MonoDebugHandle): Added `type_table'.
15500
15501 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15502
15503         * mempool.c, mempool.h: added mono_mempool_new_size () API
15504         to be able to specify a smaller initial size for the pool.
15505         Adjusted the code to slowly increase pool size before using
15506         the previous default size.
15507         * image.c: use a small initial size for image mempools.
15508
15509 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
15510
15511         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
15512         Fixes ##320990.
15513
15514         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
15515         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
15516
15517 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
15518
15519         * metadata.c (mono_type_create_from_typespec): Remove an invalid
15520         free. Fixes #327438.
15521
15522 2007-09-21  Raja R Harinath  <harinath@gmail.com>
15523
15524         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
15525         generic instantiations, etc.
15526         <MONO_TYPE_ARRAY>: Likewise.
15527
15528 2007-09-21  Martin Baulig  <martin@ximian.com>
15529
15530         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
15531         these structs were never defined.
15532         (MonoDebugHandle): Removed the `_priv' field, it was never used.
15533
15534 2007-09-21  Martin Baulig  <martin@ximian.com>
15535
15536         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
15537
15538 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
15539
15540         * image.c: removed the guid hash tables: we can get the same info
15541         without the additional memory usage hit (partially fixes also bug #327052).
15542
15543 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15544
15545         * profiler.h, profiler-private.h, profiler.c: add a new profiler
15546         event to handle unloading methods. After the event is called, the
15547         corresponding MonoMethod* must be considered invalid.
15548         * loader.c (mono_free_method): call the new mono_profiler_method_free
15549         event.
15550
15551 2007-09-20  Mark Probst  <mark.probst@gmail.com>
15552
15553         * domain-internals.h: New flag in MonoJitInfo which marks shared
15554         generic methods.  New hash table (shared_generics_hash) in
15555         MonoDomain to keep track of shared generic methods.  Prototypes
15556         for functions to register and lookup shared generic methods.
15557
15558         * domain.c: Support for registering and looking up shared generic
15559         methods via a hash table (shared_generics_hash) in MonoDomain.
15560
15561         * class-internals.h: New exception to signal failure of shared
15562         compilation of a generic method.  New counters for generics
15563         sharing in MonoStats.
15564
15565 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15566
15567         * image.c, metadata-internals.h: don't keep a file descriptor open
15568         for loaded assemblies (bug#325988).
15569
15570 2007-09-19  Raja R Harinath  <rharinath@novell.com>
15571
15572         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
15573         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
15574         use the corresponding datatypes.
15575         (type_in_image): Update to changes.
15576         (CleanForImageUserData): Simplify.
15577         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
15578         Avoid quadratic behaviour in handling the "stolen" list by
15579         separating the filter predicate out, and by prepending the stolen
15580         items rather than appending them.
15581         (steal_ginst_in_image): Likewise.
15582         (mono_metadata_clean_for_image): Update to changes.
15583
15584 2007-09-19  Martin Baulig  <martin@ximian.com>
15585
15586         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
15587
15588 2007-09-19  Martin Baulig  <martin@ximian.com>
15589
15590         * mono-debug.c (mono_debug_cleanup): Don't call
15591         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15592
15593 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15594
15595         Fix crash on 'make run-test' in mcs/errors
15596         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15597         Avoid more potential allocations in mono_class_from_mono_type.
15598         (ginst_in_image): Update to changes.
15599         (gclass_in_image): Rearrange slightly.
15600
15601 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15602
15603         * class.c (mono_class_init): Move the code that sets up class->methods to 
15604         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15605
15606         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15607         canonical instance of an inflated generic signature.
15608         (mono_type_create_from_typespec): Remove an invalid free.
15609
15610         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15611
15612 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15613
15614         * domain-internals.h: added a declaration of the
15615         mono_assembly_load_full_nosearch internal function.
15616
15617         * assembly.c (mono_assembly_load_with_partial_name): use
15618         mono_try_assembly_resolve return value properly.
15619         (mono_assembly_load_full_nosearch): copied the function body from
15620         mono_assembly_load_full, without the code to invoke assembly
15621         search hooks.
15622         (mono_assembly_load_full): calls the above new function and if the
15623         assembly is not resolved, invokes the search hooks.
15624
15625         * appdomain.c (mono_runtime_init): restore the global postload
15626         assembly search handlers.
15627
15628 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15629
15630         * class.c (mono_class_init): Make sure class->methods and class->properties
15631         are never NULL in the generics case.
15632
15633         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15634
15635 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15636
15637         * metadata.c (free_generic_class): Disable some code to fix the build.
15638
15639         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15640
15641         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15642         from the image mempool.
15643
15644         * metadata.c (free_generic_class): Free more data from the inflated class.
15645
15646         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15647
15648         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15649         mempool.
15650         (mono_type_create_from_typespec): Ditto.
15651
15652         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15653         MonoImage to the caller.
15654         (mono_init_internal): Save the opened image in a global variable.
15655         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15656
15657         * reflection.c (resolve_object): Fix a leak.
15658
15659         * metadata.c: Fix the freeing of data in the generics caches.
15660         
15661         * metadata.c (free_generic_inst): Comment this out to fix the build.
15662         (free_generic_class): Ditto.
15663
15664         * metadata.c: Free cached generic methods, instantinations and classes when
15665         they are removed from the caches.
15666         (mono_metadata_free_type): Free the type itself.
15667
15668         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15669         places.
15670
15671 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15672
15673         * boehm-gc.c: restrict managed allocs to __thread supporting
15674         architectures.
15675
15676 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15677
15678         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15679         (mono_generic_class_get_class): Fix a leak.
15680
15681         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15682         mono_metadata_free_type ().
15683         (mono_metadata_inflate_generic_inst): Fix a leak.
15684
15685 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15686
15687         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15688
15689         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15690         mempool.
15691
15692         * mono-debug.c (mono_debug_close_image): Fix call to 
15693         g_hash_table_remove ().
15694
15695 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15696
15697         * icall-def.h: redirect all the string ctor to the managed
15698         CreateString () methods.
15699         * string-icalls.c, string-icalls.h: removed dead code for string
15700         ctors and icalls.
15701
15702 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15703
15704         * mono-debug.c: Fix memory leaks.
15705
15706 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15707
15708         * threads-types.h: Implement mono_hazard_pointer_set and 
15709         mono_hazard_pointer_clear macros using do/while(0) to fix
15710         compilation with MSVC.
15711         
15712         Code is contributed under MIT/X11 license.
15713
15714 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15715
15716         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15717         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15718
15719 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15720
15721         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15722         icalls.
15723
15724 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15725
15726         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15727         managed-code allocated as well.
15728
15729 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15730
15731         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15732
15733 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15734
15735         * boehm-gc.c: fixed the build after the AOT changes.
15736
15737 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15738
15739         * wrapper-types.h: Add an ALLOC wrapper type.
15740
15741         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15742         reference managed allocator methods.
15743
15744 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15745
15746         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15747         of Type array and not MonoType, a fix suggested by Hari.
15748         
15749 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15750
15751         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15752         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15753         
15754         Code is contributed under MIT/X11 license.
15755
15756 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15757
15758         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15759
15760 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15761
15762         * image.c (do_mono_image_open): if assembly file fails to open and
15763         MONO_IOMAP is in effect, try to find the path in a
15764         case-insensitive way.
15765
15766         * appdomain.c (mono_runtime_init): do not install postload hooks -
15767         tests show that MS.NET doesn't use anything of that sort to
15768         trigger the AppDomain.AssemblyResolve event.
15769         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15770         made non-static.
15771         (mono_runtime_init): init portability helpers here.
15772
15773         * assembly.c (mono_assembly_load_with_partial_name): if other   
15774         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15775         to resolve the assembly.
15776
15777         * domain-internals.h: added mono_try_assembly_resolve and marked
15778         it as internal.
15779
15780 2007-09-11  Jb Evain  <jbevain@novell.com>
15781
15782         * object-internals.h (MonoReflectionDynamicMethod): add
15783         a `MonoReflectionType *owner` field. The owner is used
15784         * reflection.c:
15785         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15786         method as the class declaring the dynamic method.
15787         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15788         dynamic method to the declaring type of the methodbuilder.
15789
15790 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15791
15792         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15793         rules for calling methods via reflection.
15794
15795 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15796
15797         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15798         Inflate MonoType's.
15799
15800 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15801
15802         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15803         provide a managed method that does fast allocations without needing
15804         a managed->unmanaged transition. Boehm GC implementation currently
15805         enabled for ptrfree objects on sane architectures.
15806
15807 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15808
15809         * marshal.c, marshal.h: exported a couple of useful functions and
15810         added mono_mb_get_label () to easily handle backward branches.
15811
15812 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15813
15814         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15815
15816 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15817
15818         * loader.c (find_method): Fixed the regression introduced while
15819         fixing bug #81466.
15820
15821 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15822
15823         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15824         well.
15825         
15826         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15827         icall.c reflection.c: Pass a MonoGenericContext argument to 
15828         mono_lookup_dynamic_token ().
15829
15830         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15831         #82744.
15832         
15833 2007-09-09  Robert Jordan  <robertj@gmx.net>
15834
15835         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15836         for generic methods.
15837
15838         * object.c (mono_object_get_virtual_method): Handle generic methods.
15839         Fixes bug #78882.
15840
15841         Code is contributed under MIT/X11 license.
15842
15843 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15844
15845         * image.c: fix locking in mono_image_load_file_for_image ().
15846
15847 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15848
15849         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15850         used only as a cache: added an icall to fill it.
15851
15852 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15853
15854         * reflection.h: exposed mono_reflection_free_type_info
15855         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15856         since mono_reflection_bind_generic_parameters makes a copy of it.
15857         * reflection.c (free_type_info): subinfos should be freed.
15858         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15859         made non static.
15860         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15861         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15862         this fixes #82695 and #81726.
15863    
15864
15865 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15866
15867         * process.h, process.c:  added support for user profile/info in
15868           ProcessStartInfo. For now only Windows works.
15869
15870 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15871
15872         * metadata.c: consider the generic arguments when comparing
15873         signatures (bug #82614).
15874
15875 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15876
15877         * cil-coff.h, image.c: updated assembly loader to cope with the
15878         PE32+ 64 bit file format.
15879
15880 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15881
15882         * assembly.c, class.c, domain.c, loader.c: remove useless
15883         inclusion of cil-coff.h.
15884
15885 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15886
15887         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15888         if interface is marked with CoClassAttribute. 
15889    
15890         Code is contributed under MIT/X11 license.
15891
15892 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15893
15894         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15895         if it's seen twice in major collections.
15896
15897 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15898
15899         * sgen-gc.c: big objects are not copied to the gray area, but they
15900         need to be considered for scanning, too, if they are brought alive
15901         by an object ready for finalizations or a survived one.
15902
15903 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15904
15905         * sgen-gc.c: properly account the number of disappearing links when
15906         they are nullified.
15907
15908 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15909
15910         * sgen-gc.c: share the code to scan the registered roots between the
15911         different types of collections.
15912
15913 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15914
15915         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15916
15917 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15918
15919         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15920         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15921
15922 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15923
15924         * security-manager.c (mono_security_manager_get_methods):
15925         LinkDemandSecurityException now has 2 arguments instead of 3.
15926
15927 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15928
15929         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15930         platforms which need it.
15931
15932 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15933
15934         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15935         dtor.
15936
15937 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15938
15939         * threads.c: free the thread static data on thread exit.
15940
15941 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15942
15943         * class.c: walk the hierarchy to find the generic definition for
15944         a class (fixes runtime part of bug #82498).
15945
15946 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15947
15948         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15949         ...
15950
15951         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15952
15953 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15954
15955         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15956
15957 2007-08-24  Robert Jordan  <robertj@gmx.net>
15958
15959         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15960
15961 2007-08-24  Jb Evain  <jbevain@novell.com>
15962
15963         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15964         for byref types.
15965
15966 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15967
15968         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15969         #82286.
15970
15971 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15972
15973         * assembly.c: Fix a warning.
15974         
15975 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15976
15977         * appdomain.c: parse the <runtime> section looking for the probing
15978         element with the 'privatePath' attribute, which sets additional
15979         directories in which the runtime should look for assemblies.
15980
15981 2007-08-23  Robert Jordan  <robertj@gmx.net>
15982
15983         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15984         Fixes #82499.
15985
15986 2007-08-23  Martin Baulig  <martin@ximian.com>
15987
15988         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15989         _mono_debug_init_corlib() and remove it from the header file.
15990
15991 2007-08-23  Martin Baulig  <martin@ximian.com>
15992
15993         * mono-debug-debugger.c
15994         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15995         don't notify the debugger about it.
15996
15997         * mono-debug-debugger.h
15998         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15999
16000 2007-08-23  Robert Jordan  <robertj@gmx.net>
16001
16002         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
16003         Code is contributed under MIT/X11 license.
16004
16005 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
16006
16007         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
16008
16009 2007-08-22  Martin Baulig  <martin@ximian.com>
16010
16011         * mono-debug.c: Store debugging info on a per-domain basis and
16012         free it on domain unload.  Add support for unloading symbol files.
16013
16014         * mono-debug.h
16015         (MonoDebugList): New typedef.
16016         (MonoSymbolTable):
16017         - add `data_tables and `type_table'.
16018         - replace 'symbol_files' and `num_symbol_files' with a
16019           `MonoDebugList *'.
16020         (mono_debug_data_table): Removed.
16021         (mono_debug_list_add): New public function.
16022         (mono_debug_list_remove): New public function.
16023         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
16024         (mono_debug_init_2_memory): Renamed into
16025         mono_debug_open_image_from_memory().
16026         (mono_debug_close_image): New public function.
16027         (mono_debug_domain_create): Likewise.
16028         (mono_debug_domain_unload): Likewise.
16029         (MONO_DEBUGGER_VERSION): Bump to 60.
16030
16031         * mono-debug-debugger.h
16032         (MonoDebuggerEvent):
16033         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
16034         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
16035         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
16036         - rename `THREAD_CREATED' and `THREAD_EXITED' into
16037           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
16038         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
16039           meaning.
16040         (mono_debugger_add_symbol_file): Removed.
16041         (mono_debugger_add_type): Removed.
16042         (mono_debugger_lookup_type): Removed.
16043         (mono_debugger_lookup_assembly): Removed.
16044
16045         * domain.c
16046         (mono_domain_create): Call mono_debug_domain_create().
16047         (mono_init_internal): Call mono_debug_init_corlib().
16048
16049         * assembly.c
16050         (mono_assembly_close): Call mono_debug_close_image().
16051
16052 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
16053
16054         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
16055         mmap call.
16056
16057 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16058
16059         * sgen-gc.c: ensure section->pin_queue_end is initialized
16060         correctly when non pinning objects in the section have been found.
16061
16062 2007-08-22  Marek Habersack  <mhabersack@novell.com>
16063
16064         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
16065         containing a list of directories separated by ':'. MSDN docs say
16066         the directories should be separated with ';'. Part of a bugfix for
16067         bug #81446
16068
16069 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
16070
16071         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
16072         it should MonoType and not MonoClass.
16073
16074 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
16075
16076         * culture-info-table.h : regenerated.
16077
16078 2007-08-20  William Holmes  <billholmes54@gmail.com>
16079
16080         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
16081          to call ReplaceFile Kernel32 on windows or in io-layer.
16082         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
16083         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
16084          as an internal call.
16085
16086         Code is contributed under MIT/X11 license.
16087
16088 2007-08-20  Jb Evain  <jbevain@novell.com>
16089
16090         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
16091         and MONO_EXCEPTION_FIELD_ACCESS.
16092
16093         * debug-helpers.[c|h]: new mono_field_full_name function.
16094
16095 2007-08-20  Mark Probst  <mark.probst@gmail.com>
16096
16097         * class.c: Removed class_security_level() and moved it to
16098         security-core-clr.c.
16099
16100         * security-core-clr.c, security-core-clr.h: class_security_level()
16101         is now public and renamed to mono_security_core_clr_class_level().
16102         It also looks for security attributes in the classes a class is
16103         nested in.
16104
16105 2007-08-20  Mark Probst  <mark.probst@gmail.com>
16106
16107         * security-core-clr.c, security-core-clr.h: CoreCLR security
16108         utility functions.
16109
16110         * Makefile.am: Added security-core-clr.[ch].
16111
16112         * security-manager.c, security-manager.h: Functions and enum for
16113         setting and getting the security mode.
16114
16115         * class.c: CoreCLR security checks.
16116
16117 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
16118
16119         * icall-def.h, process.c, process.h: implemented icall to get
16120         user/system processor times.
16121
16122 2007-08-17  Mark Probst  <mark.probst@gmail.com>
16123
16124         * domain.c, threads.c, class-internals.h, domain-internals.h: New
16125         reader-lock-free jit_info_table.
16126
16127 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
16128
16129         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
16130
16131         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
16132
16133         * object-internals.h (MonoException): Add missing _data member.
16134
16135 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
16136
16137         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
16138         checking that only methods with matching qname or fqname are picked
16139         from implemented interfaces.
16140
16141 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
16142
16143         * verify.c (do_newarr):added, do type verification of
16144         newarr ops, push the right value on the eval stack.
16145         * verify.c (mono_method_verify): use do_newarr
16146
16147
16148 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
16149
16150         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
16151         factored the common code into get_boxable_mono_type, which
16152         is now using mono_type_get_full, this fixed byref related tests.
16153
16154 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
16155
16156         * class.c: added mono_type_get_full, this function has the same
16157         behavior of mono_class_get_full but the returned MonoType has
16158         all metadata of the associated token in case of a typespec token.
16159         * class.c: added mono_type_retrieve_from_typespec, used by 
16160         mono_type_get_full to retrieve the token type.
16161         * class.c (mono_class_create_from_typespec): changed to use
16162         mono_type_retrieve_from_typespec.
16163         * class.c (mono_ldtoken): changed to use mono_type_get_full
16164         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
16165         * class-internals.h: exported mono_type_get_full for internal use.
16166
16167 2007-08-16  Jb Evain  <jbevain@novell.com>
16168
16169         * domain.c (supported_runtimes): add entry for
16170         the 'moonlight' runtime version.
16171
16172 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16173
16174         * verify.c (mono_method_verify): small typo sliped in.  
16175
16176 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16177
16178         * verify.c (do_unbox_value): added, do type verification of
16179         unboxing ops
16180         * verify.c (mono_method_verify): use do_unbox_value
16181
16182
16183 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16184
16185         * verify.c (dump_stack_value): fixed typo, was printing string
16186         instead of object on stack.
16187         * verify.c (do_box_value): moved the byref check up as it leads
16188         to invalid code and should be done earlier.
16189         * verify.c: improved error messages for and ldobj
16190
16191 2007-08-15  William Holmes  <billholmes54@gmail.com>
16192
16193         * marshal.c (emit_marshal_custom): Omit the call to 
16194           marshal_native_to_managed when calling native to managed 
16195           and the argument is specified as an out argument.
16196
16197         Code is contributed under MIT/X11 license.
16198
16199 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
16200
16201         * verify.c: fixed the type checks for generics, function pointers and vectors.
16202         Added type verification for ldobj and ldtoken. The verifier
16203         would segfault if header or signature of a method contained references
16204         to non-existant types.
16205
16206 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16207
16208         * marshal.c (cominterop_get_ccw): Patch from
16209         Bill Holmes to no walk up interface hierarchy. 
16210         All parent methods should be present in the interface for COM.
16211    
16212         Code is contributed under MIT/X11 license.
16213
16214 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
16215
16216         * marshal.c (emit_marshal_com_interface): Patch from
16217         Bill Holmes to handle COM Interfaces as return values
16218         for native->managed calls.
16219    
16220         Code is contributed under MIT/X11 license.
16221
16222 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
16223
16224         * marshal.c (cominterop_get_idispatch_for_object): Implement
16225         for runtime callable wrappers.
16226    
16227         Code is contributed under MIT/X11 license.
16228
16229 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
16230
16231         * pedump.c (main): changed from mono_init to mono_init_from_assembly
16232         so 2.0 types are accessible
16233
16234
16235 2007-08-13  Miguel de Icaza  <miguel@novell.com>
16236
16237         * domain.c (mono_init_internal): Call mono_assembly_load_friends
16238         once we load mscorlib.   Due to the order in which we initialize,
16239         the mono_assembly_load_full routine that loads mscorlib did not
16240         load friends.   We now load it once we load the
16241         mono_defaults.internals_visible_class class. 
16242
16243         * assembly.c: Expose the mono_load_friend_assemblies method.
16244
16245 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
16246
16247         * verify.c: improved the handling of boxing, better
16248         type checking for unary ops and conversion. Fix bug
16249         regarding managed pointer compatibility checking
16250
16251 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
16252
16253         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
16254
16255         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
16256
16257 2007-08-09  Raja R Harinath  <rharinath@novell.com>
16258
16259         * reflection.c (dup_type): Remove.
16260         * class.c (dup_type): Remove.
16261         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
16262         instead of the dodgy 'dup_type'.
16263         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
16264         handle the case where 'dup_type' needed the second argument.
16265
16266 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
16267
16268         * domain.c: Fix a warning.
16269
16270 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
16271
16272         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
16273         checking that methods with the same fqname are not overridden
16274         with a method from an ancestor.
16275
16276 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
16277
16278         * threads.c (free_thread_static_data_helper): Avoid a crash if
16279         thread->static_data is not yet set.
16280
16281 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
16282
16283         * marshal.c: Use correct image when emitting
16284         native wrapper for COM calls.
16285    
16286         Code is contributed under MIT/X11 license.
16287
16288 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
16289
16290         * icall-def.h, security.c, security.h :
16291           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
16292
16293 2007-08-07  Martin Baulig  <martin@ximian.com>
16294
16295         * mono-debug-debugger.h
16296         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
16297
16298         * domain.c (mono_domain_free): Call
16299         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
16300
16301 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
16302
16303         * verify.c (check_underflow, check_overflow): error message now returns IL offset
16304         * verify.c (in_same_block): code should test if either offset is inside the clauses
16305         * verify.c (mono_method_verify): push the exception into the eval stack of exception
16306         and filter blocks
16307
16308 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16309
16310         * image.c (mono_image_close): Fix a leak.
16311
16312         * object.c (mono_runtime_invoke_array): Avoid using alloca.
16313
16314         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
16315
16316 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
16317
16318         * domain.c, threads.c, threads-types.h: fix memory retention issue
16319         with thread static variables not being cleared on domain unload.
16320         Reuse thread static slots after domain unload.
16321
16322 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
16323
16324         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
16325         nullable type.
16326
16327         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
16328         now done in mono_runtime_invoke_array.
16329
16330         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
16331         receiver is a nullable type.
16332
16333         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
16334         generic parameter.
16335
16336 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
16337
16338         * marshal.c: Implement COM Objects as return type for 
16339         managed->unmanaged calls. Added Release calls for COM Object
16340         out/return values in managed->unmanaged calls.
16341
16342         Code is contributed under MIT/X11 license.
16343
16344 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
16345
16346         * threads.h, threads-type.h: move the hazard pointer declarations
16347         to the private header.
16348
16349 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
16350
16351         * file-io.c, appdomain.c: memory leak fixes.
16352
16353 2007-08-02  Dick Porter  <dick@ximian.com>
16354
16355         * socket-io.c
16356         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
16357         SO_REUSEADDR setting into io-layer/sockets.c.
16358
16359 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
16360
16361         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
16362         from Object when called on a generic parameter. Fixes #82211.
16363
16364 2007-08-01  Dick Porter  <dick@ximian.com>
16365
16366         * file-io.c (convert_share): Test FileShare values bit-by-bit.
16367         Fixes bug 79250 yet again.
16368
16369 2007-07-30  Martin Baulig  <martin@ximian.com>
16370
16371         Merged the `debugger-dublin' branch.
16372
16373         * mono-debug.h
16374         (MonoDebugDataTable): New typedef.
16375         (MonoDebugMethodAddressList): New typedef.
16376         (MonoDebugWrapperData): Removed.
16377         (MonoDebugSymbolTable): Removed `current_data_table',
16378         `current_data_table_size', `current_data_table_offset'.
16379         (MonoDebugDataItemType): Moved into mono-debug.c.
16380         (MonoDebugMethodJitInfo): Remove `address'.
16381         (mono_debug_data_table): New global variable.
16382         (mono_debug_lookup_method_addresses): New public function.
16383         (mono_debug_find_method): Take a `MonoMethod *', not a
16384         `MonoDebugMethodInfo *'.
16385
16386         * mono-debug.c: Drop support for the old symbol tables.
16387
16388 2007-06-28  Martin Baulig  <martin@ximian.com>
16389
16390         * mono-debug.c (mono_debug_debugger_version): New public variable.
16391
16392 2007-07-31  William Holmes  <billholmes54@gmail.com>
16393
16394         * metadata.c Changed mono_type_create_from_typespec to not insert
16395           the type into the hash map until after
16396           do_mono_metadata_parse_type has completed.
16397         Fixes Bug #82194
16398         Code is contributed under MIT/X11 license.
16399
16400 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
16401
16402         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
16403         generic parameter. Fixes #82211.
16404
16405 2007-07-27  Jb Evain  <jbevain@novell.com>
16406
16407         * pedump.c (dump_metadata, dump_metadata_header): dump
16408         versions contained in the metadata header.
16409
16410 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
16411
16412         * threads.c: register small_id_table with the GC.
16413
16414 2007-07-27  Mark Probst  <mark.probst@gmail.com>
16415
16416         * threads.c, threads.h, class-internals.h, object-internals.h:
16417         Hazard pointers, to be used by lock-free parallel algorithms.
16418
16419 2007-07-26  Dick Porter  <dick@ximian.com>
16420
16421         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
16422         routine on non-windows platforms, as I've not managed to think of
16423         a non-kludgy way of doing this.  Finishes off bug 78739.
16424
16425 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
16426
16427         * object.c: properly setup interface_bitmap in proxy vtables.
16428
16429 2007-07-25  Marek Habersack  <mhabersack@novell.com>
16430
16431         * appdomain.c (get_shadow_assembly_location): do not use TickCount
16432         to create unique shadow copy target directories, use the domain's
16433         serial number instead. Each domain gets a unique target directory
16434         that way.
16435
16436         * domain.c (mono_domain_create): added code to increment domain
16437         shadow copy serial number and cache the value in the current
16438         domain structure.
16439
16440         * domain-internals.h (struct _MonoDomain): added a new field -
16441         shadow_serial to hold the serial number used in generation of
16442         shadow-copy directories. This is to make sure that the directory
16443         name is unique for each and every domain created. We avoid a race
16444         condition with overriding assemblies already in use by other app
16445         domains.
16446
16447 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
16448
16449         * class.c (mono_bounded_array_class_get): fixed memory leak when 
16450         binding generic parameters.
16451
16452 2007-07-24  Raja R Harinath  <rharinath@novell.com>
16453
16454         * metadata.c (do_mono_metadata_parse_generic_class): Use
16455         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
16456         error.
16457
16458 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
16459
16460         * loader.c, class-internals.h, reflection.c: removed the per-method
16461         generics hashtable: we use the global one through the call of
16462         mono_class_inflate_generic_method ().
16463
16464 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16465
16466         * class.c, metadata.c, class-internals.h: introduce yet another
16467         generics global cache for inflated methods (fixes 98% of the perf
16468         issue in bug #81806).
16469
16470 2007-07-23  Raja R Harinath  <rharinath@novell.com>
16471
16472         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
16473         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
16474         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
16475         return a MonoGenericInst containing (a copy) of those types.
16476         (mono_metadata_inflate_generic_inst): Update to changes.
16477         (mono_metadata_parse_generic_inst): Likewise.
16478         (mono_get_shared_generic_inst): Likewise.
16479         * reflection.c (mono_class_bind_generic_parameters): Likewise.
16480         (mono_reflection_bind_generic_method_parameters): Likewise.
16481         * metadata-internals.h: Likewise.
16482         * icall.c (free_generic_context): Kill.
16483         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
16484
16485         * reflection.c (reflection_methodbuilder_to_mono_method): Use
16486         mono_metadata_type_dup.
16487         * marshal.c (mono_mb_create_method): Likewise.
16488
16489         * metadata.c (mono_metadata_type_dup): Rename from
16490         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
16491         MonoImage.  Handle a few more cases, esp. when no mempool is given.
16492         * marshal.c, metadata-internals.h: Update to changes.
16493
16494 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
16495
16496         * class.c: fixed a small leak for array classes and removed warning.
16497
16498 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
16499
16500         * loader.c (mono_method_get_param_token): Make this work on generic methods.
16501         Return 0x8000000 for return parameters. Fixes #82161.
16502
16503 2007-07-21  Marek Habersack  <grendello@gmail.com>
16504
16505         * appdomain.c (get_shadow_assembly_location): append the current
16506         ticks value to the path. Avoids overwriting the same assemblies by
16507         several threads at the same time.
16508
16509 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16510         and Raja R Harinath  <rharinath@novell.com>
16511
16512         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16513         Simplify slightly.
16514         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
16515         property for testing if a method is a generic method definition.
16516
16517 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
16518
16519         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
16520
16521 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16522
16523         * verify.c: used function from private branch, reverted to the one in class.h 
16524
16525 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16526
16527         * verify.c: a typo slipped in and the code wont compile
16528
16529 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16530
16531         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
16532         disabled box instruction as it is doing the wrong thing
16533         improved stack dump messages, now it is easier to debug type related issues
16534
16535
16536 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
16537
16538         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
16539
16540 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16541
16542         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
16543         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
16544         grouped with class and valuetype. This change will simply 
16545         the code as it should be handled just like unmanaged pointers.
16546
16547 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16548
16549         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
16550
16551 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16552
16553         * verify.c: several stack merge issues fixed, reference comparisons now
16554         check the type size. strict type check now works correctly.
16555         added more uses of IS_MANAGED_POINTER macro.
16556         fixed issues pointed by running the test suite against .net.
16557         
16558
16559 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16560
16561         * class.c, loader.c, class-internals.h: Removed the
16562         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
16563         defines.
16564
16565         * icall.c: Better error checking in some internal reflection
16566         methods.
16567
16568 2007-07-18  William Holmes  <billholmes54@gmail.com>
16569
16570         * filewatcher.c : removed unused variable 'filename' in 
16571           ves_icall_System_IO_FSW_SupportsFSW
16572
16573 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
16574
16575         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
16576         obsolete, removed.
16577
16578 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
16579
16580         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
16581         
16582         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
16583
16584 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
16585
16586         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
16587         Implement generics support.
16588         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16589
16590         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16591         type_args and method_args arguments.
16592         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16593         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16594         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16595
16596 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16597
16598         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16599           It adds a rootimage parameter to mono_reflection_get_type_internal,
16600           adds new function mono_reflection_get_type_with_rootimage and use
16601           the rootimage to resolve the types instead of the current image
16602
16603 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16604
16605         * culture-info-table.h: Forgot to update after r78304.
16606
16607 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16608
16609         * class.c (mono_class_is_open_constructed_type)
16610         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16611
16612 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16613
16614         * class.c (mono_bounded_array_class_get):  method fails if used with
16615         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16616         avoiding calculating the size for such array as it cannot be instantiated.
16617         Fix bug #82015
16618
16619 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16620
16621         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16622         field.
16623         * metadata.c, reflection.c: Update to changes.
16624
16625 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16626
16627         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16628         mono_class_is_valid_enum, they are used to valide a enum when loading.
16629         * reflection.c: used new functions to throw TypeLoadException when and
16630         invalid enum is build with TypeBuilder. Fixes #82018
16631   
16632 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16633
16634         * object.c: forgot commit of mono_class_setup_methods () to access
16635         iface->methods.
16636         * object-internals.h: added a few more handy fields to
16637         MonoIMTCheckItem.
16638
16639 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16640
16641         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16642         iface->methods.
16643
16644 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16645
16646         * class-internals.h, object-internals.h, object.c: IMT-based
16647         interface invocation core from Massimiliano Mantione
16648         (massi@ximian.com) with a reworked arch-specific interface,
16649         bsearch implementation and a few bugfixes and memory savings by me.
16650
16651 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16652
16653         * class.c (mono_class_create_from_typedef): mono would segfault if 
16654         an enum did not have a __value field. It now throws a TypeLoadException
16655         for such cases. Fix bug #82022
16656
16657 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16658
16659         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16660
16661 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16662
16663         * class.c (mono_class_init): If a class is already inited but has
16664         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16665
16666 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16667
16668         * class.c: Properly handle the case of an unimplemented interface
16669         method.  Fixes: 81673.
16670
16671 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16672
16673         * class-internals.h, object.c: cleanup patch from massi: use
16674         MonoVTable->interface_bitmap since the vtable interfaces offset array
16675         is going away.
16676
16677 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16678
16679         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16680         GetMDStreamVersion icall instead.
16681
16682 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16683
16684         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16685         not use mono_dl_build_path() with a full library name: makes
16686         fallbacks to libgaim and libfam work.
16687
16688 2007-07-06  William Holmes  <billholmes54@gmail.com>
16689
16690         * assembly.c: Added a continue statement in probe_for_partial_name when
16691          parse_assembly_directory_name fails.  Fixes : 82002
16692
16693 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16694
16695         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16696         and added a verification  for TYPEDBYREF.
16697         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16698         make native int interchangeable with int32 and some small cleanup and formating.
16699         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16700         handle byref of byref.
16701         * verify.c (push_local): handle byref of byref.
16702         * verify.c (do_binop): invalid mix of values is unverifiable
16703         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16704         added visibility checks
16705         * verify.c (field related method): added visibility checks
16706         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16707
16708 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16709
16710         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16711         string.
16712
16713 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16714
16715         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16716
16717         * marshal.c (emit_marshal_string): When returning a string from managed code,
16718         allways make a copy even for unicode strings. Fixes #81990.
16719
16720 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16721
16722         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16723         of byref generic inst types (bug #81997).
16724
16725 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16726
16727         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16728         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16729
16730 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16731
16732         * marshal.c (emit_marshal_string): Add support for unicode strings in
16733         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16734
16735 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16736
16737         * verify.c: field load/store are now verified, missing only access checks now
16738
16739 2007-06-28  Martin Baulig  <martin@ximian.com>
16740
16741         * mono-debug.c (mono_debug_debugger_version): New public variable.
16742
16743 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16744
16745         * locales.c: When constructing DateTimeFormat or NumberFormat for
16746         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16747         MonoCultureInfo contructed from the current locale is always
16748         read-only and has UseUserOverride set to true. All MonoCultureInfo
16749         instances returned for GetCultures have both IsReadOnly and
16750         UseUserOverride set to true. Fixes part of bug #81930.
16751
16752 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16753
16754        * icall-def.h: Update System.__ComObject icalls
16755        * marshal.c: Avoid managed transition (and object creation)
16756        when looking up COM interface in RCW.
16757        * marshal.h: Ditto.
16758        
16759        Code is contributed under MIT/X11 license.
16760
16761 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16762
16763         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16764         to avoid crashes during assembly unloading.
16765
16766 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16767
16768         Fix MethodInfo.IsGenericMethodDefinition
16769         * reflection.c (mono_reflection_bind_generic_method_parameters):
16770         Rearrange code to ensure we always uses a generic method definition.
16771         * class.c (mono_class_inflate_generic_method_full): Set
16772         'generic_container' field only for generic method definitions.
16773         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16774         Use presense of 'generic_container' field as indication of being a
16775         generic method definition.
16776
16777 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16778
16779         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16780
16781         * object-internals.h: Reflect changes in the layout of the managed Delegate
16782         class.
16783         
16784         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16785         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16786         runtime memory used by the dynamic method. Fixes #77146.
16787
16788 2007-06-21  Dick Porter  <dick@ximian.com>
16789
16790         * file-io.h: 
16791         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16792         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16793         81767.
16794
16795 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16796
16797         * reflection.c (method_encode_methodspec): Add a tripwire.
16798         * class.c (inflate_generic_type): The fully open generic type is
16799         not the same as the generic type definition.
16800
16801 2007-06-21  Martin Baulig  <martin@ximian.com>
16802
16803         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16804
16805         * mono-debug-debugger.h
16806         (MonoDebuggerBreakpointInfo): Removed.
16807         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16808         (mono_debugger_remove_breakpoint): Likewise.
16809         (mono_debugger_breakpoint_callback): Likewise.
16810         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16811
16812 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16813
16814         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16815         generic type is not the same as the generic type definition.
16816         * class.c (mono_generic_class_get_class): Likewise.
16817
16818 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16819
16820         * icall.c: The second argument to 
16821         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16822         is a MonoType not a MonoClass.
16823
16824 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16825
16826         * verify.c: support for function pointers in the verifier
16827
16828 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16829
16830         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16831
16832 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16833
16834         * assembly.c: removed Mono.Data.SqliteClient from the list of
16835         forward-compatible assemblies as it breaks the ABI (bug #81899).
16836
16837 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16838
16839         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16840         lookup/update with the loader lock.
16841         * reflection.c (mono_class_bind_generic_parameters): No need to
16842         protect mono_metadata_lookup_* with the loader lock.
16843         * class.c (inflate_generic_type): Likewise.
16844         
16845         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16846         on a generic instantiated type.
16847
16848 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16849
16850         *verify.c: produce meanfull error messages on verification error
16851         *verify.c: fixed some cases of verification errors reported as validation errors
16852         *pedump.c: fixed the error name array, now it shows validation errors properly
16853         *verify.h: fixed the contant that should be used for verification errors
16854
16855 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16856
16857         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16858         for bug #77596, 81858 and 80743 (generics data structures on domain
16859         unload).
16860
16861 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16862
16863         Avoid allocating 'MonoGenericContext' on the heap.
16864         * class-internals (_MonoMethodInflated::context): Make field
16865         inline, not a pointer.
16866         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16867         stack.  Use the context embedded within the inflated method as the
16868         hash key, rather than 'new_context'.
16869         * class.c (inflate_generic_context): Simplify.  Return a struct
16870         rather than allocating on the heap.
16871         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16872         doesn't salt away a copy of the context -- simplifying the
16873         lifetime rules of a 'MonoGenericContext *'.
16874         (mono_method_get_context): Return pointer to embedded context.
16875         (setup_generic_array_ifaces): Allocate temporary context on stack.
16876         * reflection.c (inflate_mono_method): Likewise.
16877         (mono_reflection_bind_generic_method_parameters): Likewise.
16878         Use the context embedded within the inflated method as the hash key.
16879
16880         Avoid a source of allocation of 'MonoGenericContext'.
16881         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16882         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16883         * class.c: Update to changes.
16884         (mono_generic_class_get_context): Simplify drastically.  Now just
16885         returns a pointer to the field.
16886         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16887         argument as a const pointer.
16888         (mono_metadata_generic_context_equal): Likewise.
16889         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16890         Update to changes.
16891
16892 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16893
16894         * verify.c improved the handling of brtrue/brfalse, factored out common code
16895
16896 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16897
16898         Kill MonoGenericMethod.
16899         * class-internals.h (MonoGenericContext::method_inst): Rename from
16900         'gmethod' and convert to a MonoGenericInst.
16901         (MonoGenericMethod): Remove.
16902         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16903         * loader.c (method_from_methodspec): Update to changes.  Use a
16904         MonoGenericContext as the key to the hashtable.
16905         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16906         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16907         (mono_metadata_generic_context_hash): Likewise from
16908         'mono_metadata_generic_method_hash'.  Change hash function.
16909         (mono_metadata_load_generic_params): Update to changes.
16910         (mono_get_shared_generic_method): Remove.
16911         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16912         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16913         (inflate_generic_context): Likewise.
16914         (mono_class_inflate_generic_method_full): Likewise.
16915         (setup_generic_array_ifaces): Likewise.
16916         (mono_class_create_from_typespec): Likewise.
16917         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16918         (method_encode_methodspec): Update callsite.
16919         (reflection_methodbuilder_to_mono_method): Update to changes.
16920         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16921         MonoGenericContext as the key to the hashtable.
16922         (inflate_mono_method): Update to changes.
16923
16924         * class-internals.h (MonoGenericMethod::container): Remove.
16925         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16926
16927 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16928
16929         * profiler-private.h, profiler.c, profiler.h: added API to profile
16930         exception events.
16931
16932 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16933
16934         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16935
16936 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16937
16938         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16939         Fixed overflow and underflow not aborting the verification process.
16940
16941 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16942
16943         * class-internals.h (MonoStats): Added stats entries for dynamic
16944         code allocations.
16945
16946 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16947
16948         * loader.c (mono_free_method): Free header->locals and header->clauses.
16949
16950         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16951         dynamic case.
16952
16953         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16954
16955         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16956
16957 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16958
16959         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16960         the tables.
16961
16962 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16963
16964         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16965
16966 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16967
16968         MonoGenericMethod on a diet
16969         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16970         here ...
16971         (_MonoGenericMethod::reflection_info): ... from here.
16972         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16973         Update to changes.
16974         * reflection.c (inflate_mono_method): Likewise.
16975         (mono_reflection_bind_generic_method_parameters): Likewise.
16976
16977 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16978
16979         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16980         *verify.c: factored long ldarg forms to share code with short forms
16981
16982 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16983
16984         *verify.c: fixed code formating factored some duplicate code
16985         into a new function
16986
16987         *verify.h: fixed binary incompatibility introduced earlier
16988
16989         *pedump.c: fixed formating
16990
16991 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16992
16993         Fix assertion when disassembling Mono.C5.dll
16994         * loader.c (method_from_methodspec): Avoid inflating a method
16995         twice with the same context.  If the methodref is inflated, use
16996         the declaring method instead.
16997
16998         * class.c (mono_class_from_generic_parameter): Fix case similar to
16999         bug #81830 handled below, but for method containers.
17000
17001 2007-06-10  Raja R Harinath  <harinath@gmail.com>
17002
17003         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
17004         get_shared_generic_class.  Directly inflate the instance.
17005         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
17006         (inflate_generic_class): Delete.
17007         (get_shared_generic_class): Delete.  Move setting of
17008         'cached_class' and 'cached_context' ...
17009         * metadata.c (mono_metadata_lookup_generic_class): ... here.
17010
17011         * metadata.c (mono_metadata_lookup_generic_class): Change
17012         signature to take the components of a MonoGenericClass rather than
17013         an allocated MonoGenericClass.  Change semantics to be intern-like.
17014         * reflection.c (mono_class_bind_generic_parameters): Update to
17015         changes.  Make locking region tighter.
17016         * class.c (inflate_generic_class): Update to changes.
17017         (get_shared_generic_class): Likewise.
17018         * metadata-internals.h: Likewise.
17019
17020         * reflection.c (mono_class_bind_generic_parameters): Take and
17021         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
17022         (mono_reflection_bind_generic_parameters): Use
17023         'mono_class_bind_generic_parameters' rather than duplicate the code.
17024         * class.c (mono_bounded_array_class_get): Update to changes.
17025         * object-internals.h: Likewise.
17026
17027         * reflection.c (mono_class_bind_generic_parameters): Only support
17028         parameterizing generic type definitions.  Remove support for other
17029         open types.
17030
17031 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
17032
17033         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
17034
17035         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
17036         in the dynamic case.
17037
17038 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
17039
17040         * threads.c: When cleaning up thread, reset the Background bit.
17041         Fixes bug #81720.
17042
17043 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
17044
17045        * metadata.c: Move variable declarations to top of scope.
17046        * verify.c: Move variable declarations to top of scope.
17047
17048        Code is contributed under MIT/X11 license.
17049
17050 2007-06-08  Raja R Harinath  <rharinath@novell.com>
17051
17052         * reflection.c (mono_class_bind_generic_parameters): Replace
17053         open-coded loop with mono_metadata_inflate_generic_inst.
17054
17055         * class.c (get_shared_generic_class): Don't call
17056         mono_get_shared_generic_inst.  Use the container's own
17057         'class_inst'.
17058
17059         * metadata.c (mono_metadata_load_generic_params): Move
17060         initialization of 'context' field here from ...
17061         * class.c (mono_class_create_from_typedef): ... here, and ...
17062         * loader.c (mono_get_method_from_token): ... here.
17063
17064         * class.c (get_shared_generic_class): Rename from
17065         mono_get_shared_generic_class and make static.
17066         (mono_get_shared_generic_inst): Move to metadata.c.
17067         * loader.c (mono_get_shared_generic_method): Likewise.
17068         * class-internals.h, metadata-internals.h: Update to changes.
17069
17070         Fix #81830
17071         * class.c (mono_class_from_generic_parameter): Don't assume a
17072         generic container owner exists.  Generic containers from monodis
17073         don't have any.
17074
17075 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
17076
17077         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
17078         * verify.h: new typedefs to returns the non-verifiable status
17079         * verify.c: initial implementation of generics, stack merging and object compatibility check
17080
17081 2007-06-06  Mark Probst  <mark.probst@gmail.com>
17082
17083         * class.c, image.c, class-internals.h (MonoImage): class_cache is
17084         a MonoInternalHashTable again (fixed bug in internal hash table
17085         code).
17086
17087 2007-06-06  Mark Probst  <mark.probst@gmail.com>
17088
17089         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
17090         MonoInternalHashTable again (fixed bug in internal hash table
17091         code).
17092
17093 2007-06-06  Mark Probst  <mark.probst@gmail.com>
17094
17095         * class.c, image.c, class-internals.h, domain.c,
17096         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
17097         changes.  Have to figure out what makes them break the SWF
17098         regression.
17099
17100 2007-06-04  Mark Probst  <mark.probst@gmail.com>
17101
17102         * class.c, image.c, class-internals.h (MonoImage): class_cache is
17103         a MonoInternalHashTable now.
17104
17105 2007-06-04  Mark Probst  <mark.probst@gmail.com>
17106
17107         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
17108         MonoInternalHashTable now.
17109
17110 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
17111
17112         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
17113         invoke_impl code.
17114
17115         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
17116
17117         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
17118         dependent trampoline.
17119
17120         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17121
17122         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
17123
17124 2007-05-29  Robert Jordan  <robertj@gmx.net>
17125
17126         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
17127
17128 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
17129
17130         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
17131
17132 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
17133
17134        * marshal.c: Fix interface lookup loops for
17135        cominterop_get_com_slot_for_method and 
17136        cominterop_get_method_interface. Only need to lookup
17137        if type is a class, else use interface type method is on.
17138
17139        Code is contributed under MIT/X11 license.
17140
17141 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
17142
17143         * reflection.c: HasSecurity can be present even if no specially 
17144         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
17145         SecurityAttribute). Fix CAS regression tests on buildbot.
17146
17147 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
17148
17149        * appdomain.c: Add configure checks for header files.
17150        * image.c: Add configure checks for header files.
17151        * file-io.c: Add configure checks for header files.
17152        * debug-mono-symfile.c: Add configure checks for header files.
17153        * threadpool.c: Add configure checks for header files.
17154        * console-io.c: Add configure checks for header files.
17155        * profiler.c: Add configure checks for header files.
17156        * rawbuffer.c: Add configure checks for header files.
17157        * icall.c: Add configure checks for header files.
17158        * rand.c: Add configure checks for header files.
17159        * socket-io.c: Add configure checks for header files.
17160
17161        Code is contributed under MIT/X11 license.
17162
17163 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
17164
17165         * reflection.c (mono_custom_attrs_from_builders): Remove the 
17166         assertion as it breaks the build.
17167         
17168         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
17169
17170         * reflection.c (lookup_custom_attr): Make a copy here too.
17171
17172         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
17173         dynamic images.
17174
17175         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
17176         images.
17177
17178         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
17179         info.
17180
17181 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
17182
17183         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
17184         (load_cattr_value): Ditto.
17185
17186 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
17187
17188         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
17189
17190 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
17191
17192         * threads.c: In "start_wrapper", set apartment_state to MTA if
17193         apartment_state is Unknown and we're running on 2.0 profile or
17194         higher.
17195         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
17196         to main method, then set apartment_state to Unknown on 1.0 profile,
17197         and MTA on 2.0 profile.
17198
17199 2007-05-16  Jb Evain  <jb@nurv.fr>
17200
17201         * class-internals.h (MonoDefaults): Add an attribute_class and
17202           customattribute_data_class.
17203         * domain.c (mono_init_internal): Populate them.
17204         * reflection.c: Use them to remove duplicates. Make a vew
17205         MonoClass variables `static'.
17206
17207 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
17208
17209         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
17210         step in implementing IMT, so that all isinst checks now can go
17211         through the bitmap.
17212         This was needed because vtables for TransparentProxy need to look
17213         like the vtable of the "target" class, so they need to point to
17214         its interface bitmap directly.
17215
17216         * object.c: inside "mono_class_create_runtime_vtable" and
17217         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
17218
17219 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17220
17221         * object-internals.h
17222           culture-info.h : added territory field in MonoCulture and
17223           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
17224         * locales.c : fill territory field above too.
17225         * culture-info-table.h : regenerated.
17226
17227 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
17228
17229         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
17230         Fixes #81599.
17231
17232 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
17233
17234         * object.c: Always initialize apartment, even if 
17235         there is no custom attributes on entry point.
17236         
17237         Code is contributed under MIT/X11 license.
17238
17239 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
17240
17241         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
17242         * metadata.c: If no encoding is set, check for unicode
17243         on class.
17244         
17245         Code is contributed under MIT/X11 license.
17246
17247 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17248
17249         * threads.c: Handle if mono_thread_current returns NULL 
17250         
17251         Code is contributed under MIT/X11 license.
17252
17253 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
17254
17255         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
17256         in start_wrapper. Added mono_thread_init_apartment_state and
17257         mono_thread_cleanup_apartment_state.
17258         * object.c: Initialize thread apartment state on main thread
17259         by checking for STAThreadAttribute on entry point.
17260         * object-internals.h: Add apartment_state field to MonoThread.
17261         * threads-types.h: Add unmanaged definition of 
17262         System.Threading.ApartmentState, MonoThreadApartmentState.
17263         
17264         Code is contributed under MIT/X11 license.
17265         
17266 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
17267
17268         * class.c: Fix windows build.
17269         * class-internals.h: Fix windows build.
17270         
17271         Code is contributed under MIT/X11 license.
17272
17273 2007-05-08  Robert Jordan  <robertj@gmx.net>
17274
17275         * process.c (CreateProcess_internal):
17276         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
17277         .CreateNoWindow was specified. Fixes #81496.
17278
17279 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17280
17281         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
17282         step in implementing IMT, replaced it with two compact arrays
17283         (interfaces_packed and interface_offsets_packed) and a bitmap that
17284         is used for isinst checks (interface_bitmap).
17285
17286         * class.c: (compare_interface_ids): compare function to pass to
17287         bsearch when looking for an interface with a given id.
17288         (mono_class_interface_offset): reimplemented using bsearch on
17289         interfaces_packed, getting the offset from interface_offsets_packed.
17290         (print_implemented_interfaces): utility debugging function.
17291         (setup_interface_offsets): reworked to initialize interfaces_packed,
17292         interface_offsets_packed and interface_bitmap.
17293
17294         * object.c: replaced all accesses to "MonoClass.interface_offsets"
17295         with uses of interfaces_packed and interface_offsets_packed.
17296
17297 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
17298
17299         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
17300         mono_class_interface_offset prototype to wrap all accesses to
17301         "MonoClass.interface_offsets".
17302
17303         * class.c: Implemented mono_class_interface_offset, and wrapped all
17304         accesses to "MonoClass.interface_offsets".
17305
17306         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
17307         "MonoClass.interface_offsets".
17308
17309 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
17310
17311         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
17312         GetMethodFromHandle overloads (bug #78637).
17313
17314 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
17315
17316         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
17317         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
17318
17319 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
17320
17321         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
17322         #81498.
17323
17324         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
17325         gracefully.
17326         (mono_custom_attrs_from_index): Ditto.
17327
17328         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
17329         Fixes #81501.
17330
17331 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
17332
17333         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
17334         is now allocated from a mempool.
17335
17336 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
17337
17338         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
17339         caller holds threads_lock, leading to deadlocks. Fixes #81476.
17340
17341 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
17342
17343         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
17344         mono_loader_clear_error () too late. Fixes #81463.
17345
17346 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
17347
17348         * culture-info-table.h : regenerated.
17349
17350 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
17351
17352         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
17353         is missing.
17354
17355 2007-04-25  Dick Porter  <dick@ximian.com>
17356
17357         * Makefile.am: Put the mingw enforced-optimisation back into the
17358         PLATFORM_WIN32 section.
17359
17360 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
17361
17362         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
17363         patch.
17364
17365         * image.c (mono_image_load_module): New API function to load a module reference.
17366
17367         * image.c (load_modules): Load modules lazily. Fixes #80812.
17368
17369         * class.c (mono_class_from_typeref): Use mono_image_load_module.
17370         
17371         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
17372
17373         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
17374         to mono_image_load_module_dynamic.
17375
17376 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
17377
17378         * marshal.c: Fix calling convention for CCW on non-windows
17379         platforms. STDCALL on windows, CDECL everywhere else to work 
17380         with XPCOM and MainWin COM.
17381         
17382         Code is contributed under MIT/X11 license.
17383
17384 2007-04-23  Martin Baulig  <martin@ximian.com>
17385
17386         Fix #80969.
17387
17388         * loader.c
17389         (method_from_memberref): Added `gboolean *used_context' argument.
17390         (mono_get_method_from_token): Likewise.
17391         (mono_get_method_full): Don't insert the method in the cache when
17392         `used_context' is true.
17393
17394 2007-04-23  Raja R Harinath  <rharinath@novell.com>
17395
17396         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
17397
17398         * reflection.c (mono_reflection_bind_generic_parameters): Don't
17399         create new MonoTypes for returned types.
17400         * class.c (mono_generic_class_get_class): Export mono-internal.
17401         * class-internals.h: Update to changes.
17402
17403 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
17404
17405         * threadpool.c, threadpool.h, icall-def.h: patch from
17406         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
17407
17408 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
17409
17410         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
17411         
17412         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
17413
17414         * threads.c (mono_thread_get_stack_bounds): New helper function.
17415
17416         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
17417         Correctly compute stack bounds when attaching. Fixes #81394.
17418
17419 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
17420
17421         * reflection.c: fix handling of doubles in custom attributes
17422         for the arm-fpa format (bug #81368).
17423
17424 2007-04-18  Raja R Harinath  <rharinath@novell.com>
17425
17426         * reflection.c (assembly_add_win32_resources): Mildly relax an
17427         bounds check to let the end pointer point just past the end of the
17428         allocated buffer.  (may fix #81384)
17429
17430 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
17431
17432         * culture-info-table.h : regenerated.
17433
17434 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
17435
17436         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
17437         the thread is aborted early.
17438
17439 2007-04-05  Dick Porter  <dick@ximian.com>
17440
17441         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
17442         FindFirstFile()/FindNextFile() to find entries.  This lets the
17443         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
17444         81038.
17445
17446         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
17447         the parameters of
17448         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
17449
17450 2007-04-04  Martin Baulig  <martin@ximian.com>
17451
17452         * debug-helpers.c
17453         (mono_method_desc_full_match): Add support for nested classes.
17454
17455 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
17456
17457         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
17458
17459 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
17460
17461         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
17462         waiting for too many threads.
17463
17464 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
17465
17466         * environment.c: Fix return value check on uname so we can get the 
17467         executing version on Solaris operating systems.
17468
17469 2007-03-28  Jb Evain  <jbevain@gmail.com>
17470
17471         * class.c (mono_type_get_name_recurse): Complete the
17472         fix for the creation of assembly qualified names for
17473         pointer types. Fixes #81208.
17474
17475 2007-03-27  Dick Porter  <dick@ximian.com>
17476
17477         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
17478         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
17479         changed.
17480
17481         * threads.c
17482         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
17483         the value of ReleaseMutex().
17484
17485 2007-03-27  Dick Porter  <dick@ximian.com>
17486
17487         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
17488         in little-endian order, not network endian, so must be converted
17489         to host endian here.  Fixes bug 80593.
17490
17491 2007-03-22  Jb Evain  <jbevain@gmail.com>
17492
17493         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
17494         qualified names for pointer types. Fixes #81208.
17495
17496 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
17497
17498         * marshal.c: Add support for PreserveSigAttribute. 
17499         
17500         Code is contributed under MIT/X11 license.
17501
17502 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
17503
17504         * process.c: Fix endianness issues. Fixes #81126.
17505
17506         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
17507         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
17508
17509         * image.c (mono_image_lookup_resource): Make this work on big-endian
17510         machines.Change API contract so the caller needs to free the return value.
17511         
17512         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
17513         API change.
17514         
17515 2007-03-14  Martin Baulig  <martin@ximian.com>
17516
17517         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
17518         mono_type_get_desc() as well.
17519
17520 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
17521
17522         * icall.c:  Fix environ access in VS.  
17523         
17524 2007-03-13  Alp Toker  <alp@atoker.com>
17525
17526         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
17527         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
17528         #63841.
17529
17530 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
17531
17532         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
17533         circular references among dynamic methods. Fixes #81091.
17534
17535         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
17536
17537 2007-03-09  Martin Baulig  <martin@ximian.com>
17538
17539         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
17540
17541 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
17542
17543         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
17544         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
17545         
17546         Code is contributed under MIT/X11 license.
17547         
17548 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
17549
17550         * loader.c: Reapply patch for bug #79424.
17551
17552 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17553
17554         * metadata.c (mono_type_to_unmanaged): Only convert object to
17555         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
17556
17557 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
17558
17559         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
17560         (and incorrectly set) is_reference field from MonoGenericInst.
17561
17562 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17563
17564         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
17565         a little earlier.
17566
17567         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
17568
17569         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
17570
17571 2007-03-05  Miguel de Icaza  <miguel@novell.com>
17572
17573         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
17574         FileOptions.1 value to mean "temporary", map that to
17575         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
17576
17577         Fixes 80688
17578
17579 2007-03-03  Marek Habersack  <mhabersack@novell.com>
17580
17581         * appdomain.c: implement MS .Net style shadow copying. Copies of
17582         the assemblies are made in a subdirectory of the dynamic base
17583         directory, the assembly names are preserved.
17584         Copy .mdb and .config files along with the assemblies being shadowed.
17585
17586 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17587
17588         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
17589         (emit_marshal_handleref): Ditto.
17590
17591         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17592         on Visual C++. Fixes #80671.
17593
17594 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17595
17596         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17597         for clone operations.
17598
17599 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17600
17601         * marshal.c: Fix warnings.
17602
17603 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17604
17605         * loader.c: allow case-insensitive matching of the dll name
17606         in dllmap handling when prefixed with "i:".
17607
17608 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17609
17610         * threads.c: Fix #ifdef for dummy_apc function for VS.
17611
17612 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17613
17614         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17615
17616 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17617         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17618         giving precedence to the methods with a fully qualified name
17619         (InterfaceName.MethodName) when building the interface sections
17620         of the vtable.
17621
17622 2007-02-16  Dick Porter  <dick@ximian.com>
17623
17624         * threadpool.c (append_job): Fix fast-path array handling, so it's
17625         less likely the array will grow exponentially when the load is
17626         heavy.
17627
17628 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17629
17630         * metadata-internals.h, loader.c: fix dllmap lookup order
17631         for non-function maps, too, and prepare for fallback code.
17632
17633 2007-02-12  Robert Jordan  <robertj@gmx.net>
17634
17635         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17636         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17637         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17638         GlobalFree. Fixes a part of bug #77075.
17639
17640 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17641
17642         * loader.c: implemented typedef parent in field memberref.
17643
17644 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17645
17646         * marshal.c: Fix warnings and remember to call Release on
17647         IUnknown of RCW.
17648         
17649         Code is contributed under MIT/X11 license.
17650
17651 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17652
17653         * class-internals.h: Add MonoHandleRef definition, and
17654         handleref_class to mono_defaults. 
17655
17656         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17657         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17658
17659         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17660         (do nothing on this stage)
17661         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17662         (emit_marshal_handleref): New method, used for argument handling
17663         of HandleRefs. 
17664
17665 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17666
17667         * class.c (mono_class_setup_parent): Lazily init com types.
17668         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17669         init com types.
17670         * object.c (mono_remote_class_vtable): Lazily init com types.
17671         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17672         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17673         * domain-internals.h: Expose mono_init_com_types.
17674         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17675         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17676         Add support for COM Callable Wrapper marshalling.
17677         * marshal.h: Add icall definitions.
17678         * gc.c: Handle freeing of CCWs in finalizer code.
17679         
17680         Code is contributed under MIT/X11 license.
17681
17682 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17683
17684         * reflection.c: changed all the signature encoding code to use
17685         a variable-sized buffer.
17686
17687 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17688
17689         * marshal.c: locking fixes: never take the loader lock
17690         or other runtime locks when holding the marshal lock
17691         (fixes bug#80664).
17692
17693 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17694
17695         * marshal.c: make the delegate function pointer mapping
17696         work for the moving GC.
17697
17698 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17699
17700         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17701         for bug #80618.
17702
17703 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17704
17705         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17706         gmodule.
17707
17708 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17709
17710         * threadpool.c: made the code moving-GC safe.
17711
17712 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17713
17714         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17715         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17716         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17717         warning cleanup.
17718         * reflection.c: warning cleanup, some threading and moving GC fixes.
17719
17720 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17721
17722         * class.c, loader.c: create the needed Set/Get/Address array methods
17723         as well as the .ctors in mono_class_init (), fixes bug #80567.
17724
17725 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17726
17727         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17728         we doesn't decrease its alignment. Should fix the sparc build.
17729
17730 2007-01-24  Dick Porter  <dick@ximian.com>
17731
17732         * socket-io.c
17733         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17734         Create the returned object if we need to ignore an unsupported
17735         socket option.  Fixes a segfault reported by Atsushi.
17736
17737 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17738
17739         * class.c, object.c: restrict GC-tracked fields to
17740         UIntPtr fields used inside corlib, so we provide better
17741         type info to the GC and also allow broken packing as in
17742         bug #80580.
17743
17744 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17745
17746         * sgen-gc.c: removed duplicated function.
17747
17748 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17749
17750         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17751         value that means that the value is not supported, but that we
17752         should not return a failure, but instead report this as a
17753         successful operation.
17754
17755 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17756
17757         Fix tests/bug79956.2.il
17758         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17759         (mono_generic_class_get_class): If the generic definition in an
17760         enum, copy over other fields related to it.
17761
17762 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17763
17764         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17765         genericinst enums (bug #79215).
17766
17767 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17768         * class.c: Fix bug 80307.
17769
17770 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17771
17772         * image.c: if the file table is not present, try to load
17773         all the modules, since we don't have info about them
17774         having or not metadata (bug #80517).
17775         * assembly.c: allow mono_assembly_load_references () to
17776         work for netmodules.
17777
17778 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17779
17780         * image.c, metadata-internals.h, object.c: execute module
17781         cctors when running on the 2 runtime if present (bug #80487).
17782
17783 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17784
17785         * icall.c: optimized InitializeArray() on bigendian.
17786
17787 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17788
17789         * icall.c: fix for the broken ARM FPA double format.
17790
17791 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17792
17793         * icall.c: handle endian issues for r4 and r8 types, too, in
17794         the InitializeArray() icall.
17795
17796 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17797
17798         * loader.c (mono_loader_error_prepare_exception): Clear the error
17799         once we have extracted the information from it, do this before we
17800         call into the JIT's class loading mechanisms.
17801
17802         * object.c (mono_class_create_runtime_vtable): Do not clear the
17803         loader error before calling mono_class_get_exception_for_failure
17804         as the loader error is needed inside
17805         mono_class_get_exception_for_failure to throw the error (thinko).
17806
17807         Fixes #80521
17808         
17809 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17810
17811         * reflection.c: align fields rva data so it's faster to load at
17812         runtime.
17813
17814 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17815
17816         Prepare to simplify GenericMethod handling.
17817         * class-internals.h (mono_method_get_context): New accessor function.
17818         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17819         rather than directly accessing '->context' field.
17820
17821         * class-internals.h (_MonoGenericParam.method): Move ...
17822         (_MonoGenericContainer): ... here.  Add into union with klass field.
17823         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17824         Update to changes.
17825
17826 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17827
17828         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17829         the wrapper type enum and reduce relocations.
17830
17831 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17832
17833         * reflection.c (inflate_mono_method): Reuse method instantiation
17834         from the generic method, if available.
17835
17836 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17837
17838         * marshal.c (emit_marshal_variant): Fix conv_arg
17839         type in last commit, based on whether parameter is byref.
17840         
17841 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17842
17843         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17844         marshalling.
17845         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17846         MONO_TYPE_OBJECT back for VARIANT support.
17847
17848 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17849
17850         * marshal.c, marshal.h, icall-def.h: Implement 
17851         Marshal.ReAllocCoTaskMem.
17852
17853 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17854
17855         * marshal.c: memory retention fixes: use the proper
17856         image cache for runtime_invoke method lookups.
17857
17858 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17859
17860         * mempool.c: added code to help debug mempool allocations.
17861
17862 2007-01-11  Dick Porter  <dick@ximian.com>
17863
17864         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17865         support (experimenting with faking it with IP_MTU_DISCOVER for
17866         systems that don't have IP_DONTFRAGMENT.)
17867         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17868         icall.
17869
17870         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17871
17872         * socket-io.h: Add new fields to MonoSocketAsyncResult
17873         corresponding to the new ones in Socket.cs.
17874
17875 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17876
17877         Fix IronPython regression mentioned in #80249
17878         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17879         'cached_context' field, since it may have been initialized as a
17880         side-effect of metadata parsing.
17881
17882         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17883         (_MonoGenericClass.cached_class): Move here and rename from lone
17884         remaining field of ...
17885         (_MonoInflatedGenericClass): ... this.  Remove.
17886         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17887         to changes.
17888
17889         Fix mcs/tests/test-128.cs regression.
17890         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17891         2007-01-10 change below.
17892         [MONO_TYPE_OBJECT]: Recurse into array case.
17893
17894 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17895
17896         * class-internals.h (mono_get_inflated_generic_class): Remove.
17897         * class.c (mono_get_inflated_generic_class): Remove.
17898         (mono_generic_class_get_class): Rename from
17899         mono_class_create_generic.
17900         (mono_class_from_mono_type) [GENERICINST]: Use it.
17901         * reflection.c, metadata.c: Update to changes.  Use
17902         'mono_class_from_mono_type'.
17903
17904 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17905
17906         * reflection.c: use passed type when encoding an array element
17907         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17908
17909 2007-01-09  Robert Jordan  <robertj@gmx.net>
17910
17911         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17912         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17913         Fixes bug #80392.
17914
17915 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17916
17917         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17918
17919         * object.c (set_value): Avoid aliasing between type->data.klass
17920         and type->data.generic_class.
17921
17922         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17923
17924 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17925
17926         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17927         between type->data.klass and type->data.generic_class.
17928
17929 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17930
17931         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17932         value in out parameters.
17933
17934 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17935
17936         Simplify invariant for MonoGenericClass::klass field.
17937         * class.c (mono_class_create_generic): Verify 'klass' is null.
17938         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17939         initialize 'klass' field.
17940
17941 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17942
17943         Ongoing work to avoid redundant data and simplify invariants.
17944         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17945         'generic_class', and change type to a GenericInst.
17946         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17947         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17948
17949 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17950
17951         * class.c : skip io-layer under PLATFORM_WIN32.
17952
17953 2007-01-03  Tor Lillqvist  <tml@novell.com>
17954
17955         Fix #80305: In a bundled executable, look in the bundled exe
17956         assembly to determine the runtime version. Add the possibility to
17957         bundle also the machine.config file.
17958         
17959         * assembly.c (mono_assembly_open_from_bundle): Make
17960         non-static. Allow being called even if we have no bundled
17961         assemblies, and return NULL right away in that case.
17962
17963         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17964         here.
17965
17966         * domain.c (app_config_parse): Take an assembly exe file name as
17967         parameter instead of a config file name. Check for a bundled
17968         config file for that assembly by calling
17969         mono_config_string_for_assembly_file() (see below) before looking
17970         for one in the file system.
17971         (get_runtimes_from_exe): Corrsponding change to call of
17972         app_config_parse().
17973         (get_runtimes_from_exe): Check for bundled assembly exe file first
17974         by calling mono_assembly_open_from_bundle(). If no bundled
17975         assembly exe file is found, call mono_image_open() as before to
17976         look it up in the file system.
17977
17978         * mono-config.c: Add variable bundled_machinec_onfig.
17979         (mono_config_string_for_assembly_file): New function.
17980         (mono_config_for_assembly): Move code snippet that looks for a
17981         bundled assembly .config file into the above new function. Call
17982         it.
17983         (mono_register_machine_config, mono_get_machine_config): New
17984         functions to set and retrieve
17985
17986         * assembly.h: Declare mono_register_machine_config().
17987
17988         * mono-config.h: Declare mono_get_machine_config() and
17989         mono_config_string_for_assembly_file().
17990
17991         * icall.c: No declaration of environ necessary on Win32. It is
17992         declared (as a macro expanding to a function call) in stdlib.h.
17993         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17994         New internal mono function. Returns the value of
17995         mono_get_machine_config() as a Mono string.
17996
17997         * icall-def.h: Add get_bundled_machine_config().
17998
17999 2007-01-04  Raja R Harinath  <rharinath@novell.com>
18000
18001         Remove redundant field
18002         * class-internals.h (_MonoGenericContext.container): Remove field.
18003         * loader.c (mono_method_get_signature_full): Don't parse a
18004         "container" for a signature parse when the signature is inflated
18005         immediately.
18006         (method_from_methodspec): Likewise, for a generic_inst.
18007         * class.c, metadata.c, reflection.c: Update to changes.
18008
18009 2006-01-04  Raja R Harinath  <rharinath@novell.com>
18010
18011         * class-internals.h (_MonoGenericClass): Rename 'context' field to
18012         'cached_context', and change semantics -- it starts off NULL, and
18013         is initialized on demand.
18014         * class.c (mono_generic_class_get_context): New accessor to
18015         replace 'context' field accesses.
18016         (mono_class_get_context): New helper.
18017         (*): Update to changes.
18018         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
18019
18020 2007-01-03  Miguel de Icaza  <miguel@novell.com>
18021
18022         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
18023         before the memcpy.   Fixes Marshal2 regression.
18024
18025 2007-01-02  Jb Evain  <jbevain@gmail.com>
18026
18027         * blob.h: add a MONO_TYPE_ENUM definition
18028         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
18029         fix the encoding of arrays of enums in custom attributes.
18030
18031         Fixes #79666.
18032
18033 2007-01-01  Miguel de Icaza  <miguel@novell.com>
18034
18035         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
18036         string is null terminated, but only cut the string short if it
18037         overflows the buffer.   
18038         
18039         (mono_string_to_byvalstr): Also fix this routine.   The code here
18040         was not properly terminating a string (it was only terminated
18041         because of the previous catch-all memset). 
18042
18043         I left the memset, because I do not know if applications expect
18044         the runtime to clear this region. 
18045
18046         Fixes #79944.
18047
18048         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
18049         Clear the error before returning to unmanaged code to prevent the
18050         runtime from being confused later on (fixes  80420).
18051         (ves_icall_type_from_name): Always call mono_loader_clear_error
18052         after parsing a type that could have failed.
18053         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
18054
18055         * loader.c (mono_loader_clear_error): Fix indentation.
18056
18057 2006-12-28  Martin Baulig  <martin@ximian.com>
18058
18059         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
18060
18061 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
18062
18063         * reflection.c: patch from Rolf Bjarne Kvinge to fix
18064         getting a token for an EnumBuilder.
18065
18066 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
18067
18068         * reflection.c: be more careful in case resource generation
18069         fails to create the data array.
18070
18071 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
18072
18073         * sgen-gc.c: write barrier for clone and fix unregister handles.
18074
18075 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
18076
18077         * reflection.c: some fixes needed in the generics code for the moving GC.
18078
18079 2006-12-22  Robert Jordan  <robertj@gmx.net>
18080
18081         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
18082         account. Fixes bug #80299.
18083
18084 2006-12-21  Raja R Harinath  <rharinath@novell.com>
18085
18086         Fix WaitHandle usage in delegates.
18087         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
18088         * object.c (mono_wait_handle_new): Use the property set method to
18089         initialize the handle.
18090         (mono_wait_handle_get_handle): New.
18091         * threadpool.c (mono_async_invoke): Use it.
18092         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
18093         Likewise.
18094         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
18095
18096 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
18097
18098         * marshal.c (emit_marshal): Call emit_marshal_variant and
18099         emit_marshal_com_interface when applicable.
18100         (emit_marshal_variant, emit_marshal_com_interface): Add
18101         methods for this case and remove if's from emit_marshal_object.
18102         
18103 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
18104
18105         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
18106
18107 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
18108
18109         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
18110         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
18111         and GlobalFree on Windows. Remove FIXME.
18112
18113 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18114
18115         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
18116         implementation for managed objects.
18117
18118 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
18119
18120         * object.c: implemented code to be used for checking
18121         that no reference field overlaps with non-references.
18122
18123 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18124
18125         * threadpool.c: fix queue code to be compatible with the
18126         moving GC.
18127
18128 2006-12-18  Miguel de Icaza  <miguel@novell.com>
18129
18130         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
18131         in structures by throwing ArgumentNullException.
18132
18133         (emit_marshal_safehandle): Also when they are null parameters.
18134
18135         (emit_marshal_safehandle): Add support for ref
18136         SafeHandles parameters
18137
18138 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18139
18140         * profiler.c: updated to use the mono-dl API instead of
18141         gmodule.
18142
18143 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18144
18145         * profiler.c: updated to use the mono-dl dynamic loading
18146         API instead of gmodule.
18147
18148 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
18149
18150         * profiler.c: use readlink, older versions of glib don't have
18151         g_file_read_link ().
18152
18153 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18154
18155         * profiler.c: try to detect the path to mono if libc fails to provide
18156         a useful name (bug #80286).
18157
18158 2006-12-16  Raja R Harinath  <rharinath@novell.com>
18159
18160         Fix #80242
18161         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
18162         instance, use the generic type definition instead.
18163         (ves_icall_Type_GetNestedTypes): Likewise.
18164         * class.c (mono_class_create_generic): Always set the
18165         nested_classes of a generic instance to NULL, even if the generic
18166         type definition has nested types.
18167
18168 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
18169
18170         * marshal.c (mono_string_from_bstr): Revert previous Windows change
18171         and fix on Linux.
18172         
18173 2006-12-15  Miguel de Icaza  <miguel@novell.com>
18174
18175         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
18176         my arguments were in the wrong order.   I also fixed the Windows
18177         version which seems to have had the same issue.
18178
18179         (mono_free_bstr): On Unix, this is g_free.
18180         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
18181         conversions (for the tests in corlib to pass).
18182
18183 2006-12-14  Miguel de Icaza  <miguel@novell.com>
18184
18185         * marshal.c (emit_ptr_to_object_conv): For now, ignore
18186         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
18187         exception if a ref SafeHandle in a struct has changed).
18188         
18189         (emit_struct_conv): Do not perform layout checks for classes
18190         derived from SafeHandle, as those are specially handled. 
18191
18192         (emit_object_to_ptr_conv): Add support for
18193         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
18194
18195         (emit_marshal_safehandle): Implement conversion of return values
18196         of safehandles (MARSHAL_ACTION_CONV_RESULT).
18197         
18198         * threads.c: WaitHandle now is compiled with two different handles
18199         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
18200         for 2.0.
18201         
18202         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
18203         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
18204         these routines to cope with both kinds of fields.
18205
18206 2006-12-12  Miguel de Icaza  <miguel@novell.com>
18207
18208         * metadata.c (mono_type_to_unmanaged): Handle the case where
18209         type->data.klass is a SafeHandle, and in that case, return the
18210         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
18211         MONO_MARSHAL_CONV_SAFEHANDLE. 
18212
18213 2006-12-11  Miguel de Icaza  <miguel@novell.com>
18214
18215         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
18216         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
18217         calling emit_marshal_object.
18218
18219         (emit_marshal_safehandle): Implement marshalling of
18220         SafeHandle parameters (no ref support yet).
18221
18222         (MarshalAction): Document the defines as I implement
18223         them for SafeHandle.
18224
18225         (emit_marshal_object): indentation police.
18226
18227         * class-internals.h: Define MonoSafeHandle.
18228         Add safehandle_class to MonoDefaults type.
18229
18230         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
18231         list of classes to check for fields. 
18232
18233         * domain.c (mono_init_internal): Add SafeHandle to the list of
18234         mono_defaults loaded.
18235
18236 2006-12-15  Raja R Harinath  <rharinath@novell.com>
18237
18238         Fix #80253
18239         * reflection.c (mono_reflection_bind_generic_parameters): If the
18240         generic type definition is a type builder, ensure that it is fully
18241         initialized before instantiating it.  Kill some dead code.
18242
18243 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
18244
18245         * object.c: clear the loader_error () before loading
18246         more metadata stuff (bug #80258).
18247
18248 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
18249
18250         * icall.c, icall-defs.h: type modifiers icalls for
18251         parameters and properties.
18252
18253 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
18254
18255         * object.c, icall.c: fixed warnings.
18256
18257 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18258
18259         * marshal.c: fixed a couple of leaks and coding style in a few places.
18260
18261 2006-12-08  Dick Porter  <dick@ximian.com>
18262
18263         * process.c: Cope with NULL ProcessStartInfo arguments on windows
18264         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
18265         80173.
18266
18267 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18268
18269         * process.c: ProcessStartInfo may have only filename set and
18270         arguments can be NULL.
18271
18272 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18273
18274         * icall.c: fix leak found by Robert Jordan.
18275
18276 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
18277
18278         * marshal.c, marshal.h: generate managed method to access an element
18279         of a multi-dimensional array.
18280
18281 2006-11-30  Paolo Molaro (lupus@ximian.com)
18282
18283         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
18284
18285 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18286
18287         * icall.c: back out GetFields () fix until the serialization code is
18288         fixed to not depend on the incorrect behaviour.
18289
18290 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
18291
18292         * profiler.c: provide defaults if none are set.
18293
18294 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
18295
18296         * Makefile.am, attrdefs.h: new public header file with
18297         constants for attributes for use by embedders.
18298
18299 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
18300
18301         * icall.c: GetFields () fix for bug #80064.
18302
18303 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
18304
18305         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
18306         removed long unused icalls.
18307
18308 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
18309   
18310         * marshal.c: 
18311                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
18312                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
18313                 can be generated without a delegate class.
18314                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
18315         
18316         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18317
18318 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18319
18320         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
18321         #80069.
18322
18323 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18324
18325         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
18326         icall-def.h: added icalls needed by System.GC.
18327
18328 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
18329
18330         * loader.c: ensure the class in catch clauses is handled
18331         correctly for generics methods (fixes bug#79980).
18332
18333 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
18334
18335         * monitor.h, monitor.c: added mono_locks_dump () function
18336         to help debug deadlocks involving managed locks.
18337
18338 2006-11-13  Dick Porter  <dick@ximian.com>
18339
18340         * file-io.c (get_file_attributes): If the file is a symlink try
18341         and get the stat data for the target, but also add the
18342         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
18343         the specs for the windows symlink support, but will probably have
18344         to be reworked when I have test data from a vista machine.  Fixes
18345         bug 79887.
18346
18347 2006-11-13  Dick Porter  <dick@ximian.com>
18348
18349         * gc.c (mono_domain_finalize): 
18350         * marshal.c (mono_delegate_begin_invoke): 
18351         * threadpool.c (socket_io_init, mono_thread_pool_init)
18352         (mono_thread_pool_finish): 
18353         * monitor.c (mono_monitor_try_enter_internal): 
18354         * threads.c (mono_thread_resume, mono_thread_init)
18355         (mono_thread_suspend_all_other_threads)
18356         (mono_thread_execute_interruption): 
18357         * appdomain.c (mono_domain_unload): Check for NULL error returns
18358         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
18359         75733.
18360
18361 2006-11-11  Miguel de Icaza  <miguel@novell.com>
18362
18363         * process.c
18364         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
18365         Only close the handle if the value of the handle is not
18366         INVALID_HANDLE_VALUE.  This just makes the process a bit more
18367         robust.
18368
18369         Improvement for #75733, so that we do not run into this problem. 
18370
18371         
18372         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
18373         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
18374         internal variables.  Fixes #79462 
18375         
18376
18377 2006-11-09  Dick Porter  <dick@ximian.com>
18378
18379         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18380         Use poll() not select().  Fixes bug 79397.
18381
18382 2006-11-09  Raja R Harinath  <rharinath@novell.com>
18383
18384         Fix #79872
18385         * assembly.c (mono_assembly_load_from_full): Check that the given
18386         image has an assembly manifest.
18387
18388 2006-11-09  Ankit Jain  <jankit@novell.com>
18389
18390         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
18391         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
18392         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
18393
18394 2006-11-07  Dick Porter  <dick@ximian.com>
18395
18396         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18397         Put the old resolver behaviour back for pre-2.0 profiles.
18398
18399 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18400
18401         * threadpool.c: precise GC and locking fixes.
18402
18403 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
18404
18405         * class.c: don't load types that have an explicit unaligned
18406         managed reference. Provide better info in the TypeLoad exception.
18407         Part of the fix for bug #79744.
18408         * object.c: use the correct check for class type load issues.
18409
18410 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18411
18412         * class.c: enforce alignment of fields with managed references
18413         even when Pack=1 is forced by the user (bug #77788).
18414
18415 2006-11-03  Dick Porter  <dick@ximian.com>
18416
18417         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
18418         If the address reverse lookup fails, return it as the hostname
18419         anyway.  Fixes bug 79721.
18420
18421 2006-11-03  Dick Porter  <dick@ximian.com>
18422
18423         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
18424         Fix build on Windows.
18425
18426 2006-11-02  Dick Porter  <dick@ximian.com>
18427
18428         * icall-def.h: 
18429         * object-internals.h: 
18430         * exception.c (mono_get_exception_thread_interrupted): 
18431         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
18432         Fixes bug 74525.
18433
18434         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
18435         Check for pending Thread.Interrupt.
18436
18437 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
18438         * loader.c: Fixed bug 79684.
18439
18440 2006-10-27  Dick Porter  <dick@ximian.com>
18441
18442         * file-io.c (get_file_attributes): Force symlinks to directories
18443         to be returned as a regular file.  Fixes bug 79733.
18444 2006-10-26  Dick Porter  <dick@ximian.com>
18445
18446         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
18447         CreateFile to open a directory then we need to set the
18448         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
18449
18450 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
18451
18452         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
18453         friends.
18454
18455 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18456
18457         * sgengc.c: small cleanup of timer code.
18458
18459 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18460
18461         * sgen-gc.c: fix some warnings and start adding support for
18462         complete object removal on domain unload.
18463
18464 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
18465
18466         * assembly.c: build_assembly_name should not consider a version
18467         number without build or revision number invalid. Fixes bug #79715.
18468
18469 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
18470
18471         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
18472         call kernel32 function OutputDebugString directly.
18473         
18474         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
18475         
18476 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
18477
18478         * reflection.c: small cleanup, using a function to insert a MonoString
18479         in the string heap.
18480
18481 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
18482
18483         * reflection.c: moving GC fixes.
18484
18485 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
18486
18487         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
18488         all the objects with finalizers belonging to an unloading appdomain.
18489
18490 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
18491
18492         * sgen-gc.c: added ability to allocate even when the nursery is fully
18493         pinned and fixed a couple of bugs.
18494
18495 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18496
18497         * threads.h: Revert the last change for now.
18498
18499         * threads.h (mono_thread_get_pending_exception): Rename this to
18500         mono_thread_get_undeniable_exception ().
18501
18502 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
18503
18504         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
18505         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
18506         when fname does not refer to valid assembly. This result in a more
18507         meaningful error message.
18508         * exception.c: added mono_get_exception_bad_image_format2 which 
18509         constructs a BadImageFormatException using the ctor taking a custom
18510         message and the file name. Passing in a NULL msg results in a default
18511         message.
18512         * exception.h: define mono_get_exception_bad_image_format2 function.
18513         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
18514         when file name pointed to an invalid IL image. Use 
18515         mono_get_exception_file_not_found2 to construct FileNotFoundException,
18516         as this results in a more meaningful error message.
18517
18518 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
18519
18520         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
18521         #79465.
18522
18523 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
18524
18525         * metadata.c (mono_type_size): Change the align parameter to guint32 for
18526         consistency with the other _size functions.
18527         (mono_type_stack_size): Ditto.
18528
18529         * class.c object.c icall.c: Fix warnings caused by the above change.
18530
18531         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
18532
18533         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
18534
18535         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
18536
18537 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18538
18539         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
18540         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
18541         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
18542         threadpool.h, threads-types.h: mark more internal functions.
18543
18544 2006-10-11  Dick Porter  <dick@ximian.com>
18545
18546         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18547         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
18548         reproduce the bug even before applying the fix.)
18549
18550 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
18551
18552         * reflection.c: allow retrieving attributes for arguments in generic
18553         methods (bug #79241).
18554
18555 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
18556
18557         * debug-mono-symfile.c: properly check fopen () result (found by
18558         coverity).
18559
18560 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
18561
18562         * reflection.c: make error message clearer and fixed two
18563         issuelets found by Coverity.
18564
18565 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
18566
18567         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
18568
18569 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18570
18571         * object-internals.h, gc-internal.h, profiler-private.h:
18572         mark internal functions.
18573
18574 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18575
18576         * reflection.c: put data in the text section.
18577         * icall.c: recognize more types in type_from_typename ().
18578         * process.c, marshal.c: added some GC FIXMEs.
18579
18580 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18581
18582         * loader.c: check for NULL before initializing.
18583
18584 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
18585
18586         * gc.c (finalizer_thread): Use a non-alertable wait here.
18587
18588         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
18589         until the correct solution is found.
18590
18591 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18592
18593         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18594         modules with no metadata. Fixes #79596.
18595
18596         * image.c (load_metadata_ptrs): Put back the error message when
18597         the #- heap is encountered since the support is not complete yet.
18598
18599 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18600
18601         * gc.c: do not allow the user to SuppressFinalize () a
18602         delegate because it would leak the trampoline if present.
18603
18604 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18605
18606         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18607         PropertyPtr table.
18608
18609 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18610
18611         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18612
18613         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18614
18615         * row-indexes.h: Add definitions for *Ptr tables.
18616
18617         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18618
18619         * metadata.c (mono_metadata_translate_token_index): New helper function to
18620         translate table indexes used in uncompressed metadata.
18621         (mono_metadata_decode_table_row): Ditto.
18622         (mono_metadata_decode_table_row_col): Ditto.
18623
18624         * metadata.c: Add table schema for *Ptr tables.
18625
18626         * class.c loader.c: Use the new helper function to access the affected metadata
18627         tables.
18628         
18629         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18630         #38532.
18631         
18632 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18633
18634         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18635         sequences which can be unbounded in size. Fixes #79583.
18636
18637 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18638
18639         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18640         static initialization.
18641
18642         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18643
18644         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18645
18646         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18647
18648         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18649         ctor fails, i.e. throw the same exception on subsequent accesses.
18650         
18651 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18652
18653         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18654         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18655         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18656         Handle marshalling of interfaces and VARIANTs contained in structs.
18657         
18658         Code is contributed under MIT/X11 license.
18659         
18660 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18661
18662         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18663         
18664         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18665         mempool.
18666
18667 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18668
18669         * console-io.c: ignore previous SIGINT handler.
18670
18671 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18672
18673         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18674         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18675         #79460, #79461, #79485.
18676
18677         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18678
18679         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18680         #79217.
18681
18682 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18683
18684         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18685         could be generated from it.
18686
18687 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18688
18689         * rand.c: fix read loop to correctly handle EINTR.
18690
18691 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18692
18693         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18694         internal calls are defined to keep methods closer to the declaring
18695         type and allow a significant reduction in runtime relocations and
18696         memory usage.
18697
18698 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18699
18700         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18701         exception message to have FileNotFoundException use the default
18702         assembly load error message. Fixes bug #79426.
18703         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18704
18705 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18706
18707         * threadpool.c: (start_thread_or_queue) use the root domain when
18708         creating the thread instead of the async object one.
18709
18710 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18711
18712         * class.c, object.c, class-internals.h, reflection.c:
18713         for arrays, store element_size inside MonoClass (speedup
18714         for array object creation).
18715
18716 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18717
18718         * icall.c: fixed CodeBase to use the file name and not the module
18719         name (bug #79365).
18720
18721 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18722
18723         * mono-debug.c, mono-debug.h: export find_method as
18724         mono_debug_find_method ().
18725
18726 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18727
18728         * debug-helpers.c, class-internals.h: added a few functions useful
18729         when debugging under gdb.
18730
18731 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18732
18733         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18734         characters that need special handling.
18735
18736 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18737
18738         * mono-config.c: make the os/cpu specification more flexible,
18739         allowing lists and negation.
18740
18741 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18742
18743         * marshal.c: COM Interop fixes. Handle case where method->klass.
18744         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18745         calling convention on non-windows platforms. This is for
18746         compatibility with XPCOM and MainWin COM.
18747         
18748         Code is contributed under MIT/X11 license.
18749         
18750
18751 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18752
18753         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18754         correctly. Fixes #79217.
18755
18756         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18757
18758 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18759
18760         * mono-config.c: allow both an os and cpu attribute for dllmap
18761         and dllentry elemnets to enable a single config file to be used
18762         for multiple architectures.
18763
18764 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18765
18766         * loader.c: MonoLoaderError was cleared too soon on load failure.
18767         Fixes bug #79424.
18768
18769 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18770
18771         * icall.c: use the defining class vtable when accessing a
18772         static field, not a pobblibly derived class.
18773
18774 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18775
18776         * icall.c string-icalls.c: Remove references to unicode.h.
18777
18778         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18779
18780         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18781
18782         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18783         indicating the image where custom marshaller types should be looked up.
18784         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18785         custom marshallers, instead of corlib. Fixes #79425.
18786
18787 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18788
18789         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18790
18791 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18792
18793         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18794         Implement Environment.ProcessorCount.
18795         
18796         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18797         Implement Environment.ProcessorCount.
18798         
18799         * icall.c: 
18800         Add Environment.ProcessorCount icall.
18801         
18802         Patch by Jason McFall.
18803
18804 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18805
18806         * assembly.c: don't append .exe/.dll when the filename already contains
18807         one of those extensions.
18808
18809 2006-09-12  Martin Baulig  <martin@ximian.com>
18810
18811         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18812         to array interfaces.
18813
18814 2006-09-11  Martin Baulig  <martin@ximian.com>
18815
18816         * reflection.c (mono_image_build_metadata): Create the
18817         MethodImpl's after emitting all types and methods, so we don't
18818         need another fixup pass for them.
18819
18820 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18821
18822         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18823         change.
18824
18825 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18826
18827         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18828         unload.
18829
18830 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18831
18832         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18833         args is not set. Fixes #78926.
18834
18835 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18836
18837         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18838
18839         * image.c (load_class_names): Move this to class.c, and rename it to 
18840         'mono_image_init_name_cache'.
18841         (load_modules): Fix a warning.
18842
18843         * class.c icall.c image.c: Initialize image->name_cache lazily.
18844
18845         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18846         on its name using information in the AOT file.
18847
18848         * class.c (mono_class_from_name): Use the new hook function.
18849
18850 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18851
18852         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18853         correctly.
18854
18855         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18856         Fixes #79289.
18857         
18858 2006-09-06  Martin Baulig  <martin@ximian.com>
18859
18860         * icall.c (mono_lookup_internal_call): Small fix.
18861
18862 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18863
18864         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18865         double g_free.
18866
18867 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18868
18869         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18870         when --debug is specified.
18871
18872 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18873
18874         * class.c (setup_generic_array_ifaces): Fix a warning.
18875
18876 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18877
18878         * Temporarily remove the patch to assemly.c that checks the
18879         assembly versions as it breaks our gacutil.
18880
18881 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18882
18883         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18884
18885         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18886         a net 1.0 runtime.
18887
18888         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18889         created using the default ctor. Fixes #79152.
18890         (mono_string_builder_to_utf16): Ditto.
18891
18892 2006-09-01  Martin Baulig  <martin@ximian.com>
18893
18894         Fix handling of the generic array interfaces.
18895
18896         * class-internals.h
18897         (MonoDefaults): Removed `generic_array_class' and added
18898         `generic_ilist' class.
18899
18900         * class.c
18901         (mono_bounded_array_class_get): Add the new generic array interfaces.
18902         (setup_generic_array_ifaces): New static method; create vtable
18903         entries for each method in the generic array interfaces.
18904
18905         * metadata.c
18906         (select_container): Allow "parent-less" generic methods.
18907
18908         * marshal.c
18909         (mono_marshal_get_generic_array_helper): New public method.
18910
18911         * icall.c
18912         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18913         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18914         moved the interncall into System.Array.
18915
18916 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18917
18918         A few more cases of avoiding work on types with ->byref set.
18919         Has the real fix for #79238
18920         * icall.c (is_generic_parameter): New helper.
18921         (ves_icall_Type_GetGenericParameterPosition): Use it.
18922         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18923         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18924         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18925         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18926         reference types.
18927         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18928         reference types.
18929         (ves_icall_Type_get_IsGenericInstance): Likewise.
18930         (ves_icall_Type_get_IsGenericType): Likewise.
18931
18932 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18933
18934         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18935         class if possible.
18936
18937         * mempool.h (mono_mempool_get_allocated): New helper function.
18938
18939         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18940         change.
18941
18942         * mempool.c: Fix warnings and the calculation of stats.
18943
18944         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18945
18946         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18947
18948         * loader.c (mono_get_method_from_token): Update method_count stat.
18949
18950         * class-internals.h (MonoStats): Add some stats.
18951
18952 2006-08-31 Robert Jordan  <robertj@gmx.net>
18953
18954         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18955         with managed variants.
18956         All code is contributed under the MIT/X11 license.
18957         
18958 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18959
18960         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18961         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18962
18963         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18964
18965         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18966         with cycles in classes.
18967
18968         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18969
18970         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18971         missing a [MarshalAs] directive. Fixes #79203.
18972
18973         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18974         klass->marshal_info. Fixes #79217.
18975
18976 2006-08-30  Martin Baulig  <martin@ximian.com>
18977
18978         Committing a patch from Joachim Ante <joe@otee.dk>:
18979         Add support for binary data symbol stores.
18980
18981         * debug-mono-symfile.c
18982         (mono_debug_open_mono_symbol_file): Renamed into
18983         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18984         arguments.
18985
18986         * mono-debug.c
18987         (mono_debug_open_image): Added `raw_contents' and `size' args.
18988         (mono_debug_init_2_memory): New public function.
18989
18990 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18991
18992         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18993
18994 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18995
18996         * appdomain.c: implement support for ShadowCopyFiles.
18997
18998 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18999
19000         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
19001         when value is NULL (and should remove CID #51).
19002
19003 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19004
19005         * image.c: moved 2 functions to ../utils.
19006
19007 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
19008
19009         * gc.c: cope with the target object of a GC handle being NULL
19010         (bug #78877).
19011
19012 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
19013
19014         * class.c: recursively check parent's explicit implementations
19015         of interface methods (fixes bug #79125).
19016
19017 2006-08-19  Miguel de Icaza  <miguel@novell.com>
19018
19019         * filewatcher.c: Avoid warnings when building, do not redefine
19020         constants that are defined.
19021
19022         Remove warnings.
19023
19024 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19025
19026         * image.c: don't fail when the link points to an absolute path.
19027
19028 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
19029
19030         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
19031         Fix CID #3.
19032
19033 2006-08-17  Miguel de Icaza  <miguel@novell.com>
19034
19035         * image.c (full_path): A new method used to obtain the actual path
19036         of an assembly even in the presence of symbolic links.  
19037
19038         This is necessary for the case where we are running a binary that
19039         has been GACed, but we are using the "published" path name
19040         ($prefix/mono/1.0/blah.exe) which happens to point to the real
19041         file in the GAC.
19042
19043         This was the source of the failure for the `xsp' command with the
19044         recent AppDomain changes, as far as the runtime was concerned,
19045         there were two different assemblies: $prefix/mono/1.0/blah.exe and
19046         $prefix/mono/gac/blah/version/blah.exe.
19047
19048         (do_mono_image_open): use full path
19049
19050 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
19051
19052         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
19053
19054 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
19055
19056         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
19057         domain_id is supplied. Fix CID #241 and corlib's unit tests.
19058
19059 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
19060
19061         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
19062         small structures. Fixes #78990.
19063
19064 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
19065
19066         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
19067
19068         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
19069
19070 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19071
19072         * appdomain.c:
19073         * marshal.c: don't load all the assemblies from a domain into newly
19074         created ones. The new domains might have different rules and load
19075         assemblies from different locations. Fixes bug #76757.
19076
19077         Patch by Lluis. Conflicts resolved by Brian Crowell.
19078
19079 2006-08-16  Alp Toker  <alp@atoker.com>
19080
19081         * socket-io.c: First half of the fix for #79084.
19082         Set sa_size to the length of the content, not that of the struct.
19083         Don't add NULL suffix to the content, this should be done in
19084         managed code if needed.
19085
19086 2006-08-14  Raja R Harinath  <rharinath@novell.com>
19087
19088         Fix part of #79012
19089         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
19090         mono_metadata_parse_type returns NULL.
19091
19092 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
19093
19094         * normalization-tables.h : new file for string normalization data.
19095         * locales.c, locales.h, icall.c :
19096           added load_normalization_resource() for string normalization,
19097           and icall as well.
19098         * Makefile.am : added normalization-tables.h to the sources.
19099
19100 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
19101
19102         * marshal.c: Add more helper functions to reduce code duplication and use them
19103         everywhere.
19104
19105 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
19106
19107         * marshal.c: Fix non-x86 stdcall warnings.
19108         
19109         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
19110         them everywhere.
19111
19112 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
19113
19114         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
19115         type check on multi-dimensional arrays. Fixes #79000.
19116
19117 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
19118
19119         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
19120         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
19121         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
19122         * class-internals.h: add is_com_object to class structure.
19123         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
19124         null checks to COM object marshalling. Fix .ctor call on RCW.
19125         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
19126         
19127         All code is contributed under the MIT/X11 license.
19128
19129 2006-08-09  Dick Porter  <dick@ximian.com>
19130
19131         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
19132         racing mono_monitor_allocator_lock() somewhere, so don't delete
19133         the critical section for now.  Found by running and exiting
19134         monodevelop.
19135
19136 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
19137
19138         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
19139         (ves_icall_System_ComObject_FindInterface): Ditto.
19140         (ves_icall_System_ComObject_CacheInterface): Ditto.
19141
19142         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
19143         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
19144
19145 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19146
19147         * threadpool.c: treat pipes from process asynchronous reads as sockets
19148         when reading from them, so we get select/poll or epoll to wait for
19149         data.
19150
19151 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
19152
19153         * loader.c: Fix a typo (CID #233) in the null check.
19154
19155 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
19156
19157         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
19158         Hopefully fixes #78949.
19159         
19160         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
19161         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
19162         bytes. Fixes #78972.
19163
19164 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19165
19166         * filewatcher.c: we need to set errno here.
19167
19168 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19169
19170         * filewatcher.c: let Win32Exception get the error value.
19171
19172 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19173
19174         * filewatcher.c: translate errno into win32 errors for Win32Exception
19175         to know what happened.
19176
19177 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
19178
19179         * threadpool.c: Fix more warnings.
19180
19181         * assembly.c (search_loaded): Fix warnings.
19182
19183         * threadpool.c (mono_thread_pool_finish): Fix warnings.
19184         (mono_async_invoke): Ditto.
19185
19186 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
19187
19188         * object.c (mono_remote_class_vtable): Need to create proxy vtable
19189         entries for __ComObject type in addition to ComImport types.
19190         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
19191         about hash table.
19192         
19193         All code is contributed under the MIT/X11 license.
19194
19195 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
19196
19197         * image.c: avoid tentative loading of modulerefs that contain
19198         no metadata (P/Invoke library names).
19199
19200 2006-07-28  Dick Porter  <dick@ximian.com>
19201
19202         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
19203         mono_loader_lock() somewhere, so don't delete the critical section
19204         for now.  Found by running and exiting monodevelop.
19205
19206 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19207
19208         * filewatcher.c: define the inotify syscalls when we're building on
19209         linux and have sys/syscall.h. The build system might not have support
19210         for inotify but the target system might have it.
19211
19212 2006-07-26  Miguel de Icaza  <miguel@novell.com>
19213
19214         * domain.c: Documentation updates.
19215
19216         * loader.c (mono_free_method): Do not release the method
19217         information if we are being profiled, as profilers will use this
19218         information at shut down to present some data to the user.
19219
19220         This is needed so that the profiler does not crash, as the
19221         profiler tends to keep MonoMethods around, and they might become
19222         invalid if we free these.
19223
19224         (mono_get_method_constrained): Return the original CIL stream
19225         method as well, so verification can be performed against it.
19226
19227 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19228
19229         * filewatcher.[ch]: support for inotify file system watcher.
19230         * icall.c: add new internal calls for the inotify file system watcher.
19231
19232 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19233
19234         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
19235         #78888.
19236
19237 2006-07-20  Dick Porter  <dick@ximian.com>
19238
19239         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
19240         warning.
19241
19242 2006-07-20  Dick Porter  <dick@ximian.com>
19243
19244         * threads.c (start_wrapper): Do the thread cleanup while we still
19245         hold a reference to its object.  Fixes bug 78123.
19246
19247 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
19248
19249         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
19250         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
19251           "managed-to-managed".
19252         * icall.c: Redirect string constructors that take sbyte* to
19253           ves_icall_System_String_ctor_RedirectToCreateString.
19254         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
19255           to CreateString () methods with matching signature.
19256         * reflection.c: Use original security informations for
19257           MONO_WRAPPER_MANAGED_TO_MANAGED.
19258         * security-manager.c: Use original security informations for
19259           MONO_WRAPPER_MANAGED_TO_MANAGED.
19260         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
19261           that is a placeholder and only its address should be used.
19262         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
19263           that is a placeholder and only its address should be used.
19264
19265 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
19266
19267         Begin implementing COM Interop.
19268         * appdomain.c: Increment corlib version.
19269         * class.c: Set ComImport classes' parent to __ComObject.
19270         * loader.c: Mark cominterop methods as such.
19271         * domain.c: Add __ComObject class to MonoDefaults structure.
19272         * image.c: Add 2 hashtables to the image for COM Interop related methods
19273         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
19274         using the mempool allocator
19275         
19276         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
19277         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
19278         declaration for mono_metadata_type_dup_mp.
19279         
19280         * debug-helpers.c: Added strings for two additional wrapper types
19281         * object.c: Create proxy objects for ComImport classes
19282         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
19283         and added __ComObject class to MonoDefaults structure.
19284         
19285         * object-internals.h: Finish MonoRealProxy definition, and add definition of
19286         MonoComInteropProxy and MonoComObject.
19287         
19288         * marshal.c: Added support for COM Interop
19289         (signature_cominterop): Converts managed signature to corresponding
19290         unmanaged COM signature.
19291         (cominterop_get_function_pointer): gets unmanaged function pointer via
19292         COM object vtable
19293         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
19294         (cominterop_get_method_interface): returns interface type that method is defined on
19295         (mono_mb_emit_cominterop_call): emits native call to function pointer
19296         gotten from vtable
19297         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
19298         that matches signature of unmanaged function.
19299         (cominterop_get_native_wrapper): wrapper around adjusted method call.
19300         (cominterop_get_invoke): forwards call from proxy to __ComObject
19301         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
19302         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
19303         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
19304         
19305         * marshal.h: Added Marshal icall declarations.
19306         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
19307         so we can access them in finalizer
19308         
19309 2006-07-14  Dick Porter  <dick@ximian.com>
19310
19311         * object.c (mono_type_initialization_cleanup): Fix a race
19312         condition by temporarily commenting out the critical section
19313         deletion.
19314
19315 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
19316
19317         * reflection.c (create_custom_attr): Fix some warnings.
19318         (create_custom_attr_data): Ditto.
19319         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
19320         types. Fixes #78855.
19321
19322 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
19323
19324         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
19325
19326         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
19327
19328 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
19329
19330         * reflection.c (resolve_object): Add support for DynamicMethod.
19331
19332         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
19333         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
19334
19335 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
19336
19337         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
19338         don't leak GPtrArray's pdata has we have no use (nor free) for it.
19339
19340 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
19341
19342         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
19343         Fixes #77888.
19344
19345 2006-06-30  Raja R Harinath  <rharinath@novell.com>
19346
19347         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
19348         slightly: remove a shadow local variable.
19349
19350 2006-06-29  Raja R Harinath  <rharinath@novell.com>
19351
19352         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
19353         definition that introduces the virtual function slot.
19354         Also fix Coverity #105.
19355
19356 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
19357
19358         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
19359         for dynamic assemblies. Fixes #78724.
19360
19361 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
19362
19363         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
19364         Fixes #78722.
19365
19366 2006-06-21  Martin Baulig  <martin@ximian.com>
19367
19368         * reflection.c
19369         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
19370         fixes #76484.
19371
19372 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
19373
19374         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
19375
19376 2006-06-20  Raja R Harinath  <rharinath@novell.com>
19377
19378         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
19379         nor TYPEREFs.
19380         * class.c (mono_class_create_from_typespec): Add 'context' argument.
19381         Inflate result if necessary.
19382         (mono_class_get_full): Remove old version.  Rename from
19383         'mono_class_get' and add 'context' argument.  Pass it to
19384         ..._create_from_typespec.
19385         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
19386         (mono_ldtoken): Revert change below.
19387
19388 2006-06-20  Martin Baulig  <martin@ximian.com>
19389
19390         * class.c (mono_ldtoken): Don't pass the generic context to
19391         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
19392
19393 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
19394
19395         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
19396         and later freeing it. Fixes #78638.
19397
19398 2006-06-15  Miguel de Icaza  <miguel@novell.com>
19399
19400         * icall.c (mono_class_get_throw): Revert over-zealous error
19401         throwing, the caller for mono_class_get_throw will cope with
19402         errors when classes are not properly initialized already.
19403
19404         The code still copes with loader exceptions though.
19405
19406         Fixes the regression in reftype1 and reftype3 from the CAS tests.
19407         
19408 2006-06-14  Miguel de Icaza  <miguel@novell.com>
19409
19410         Fixes the `make run1' version of RuntimeAbort (to be commited,
19411         source is in Bugzilla).
19412         
19413         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
19414         FALSE on class loading failure instead of returning true.
19415
19416         * class.c (mono_class_create_from_typedef): It is possible for
19417         mono_metadata_interfaces_from_typedef_full to fail if a class is
19418         not found, cope with this.
19419         
19420
19421 2006-06-14  Dick Porter  <dick@ximian.com>
19422
19423         * socket-io.c: 
19424         * process.c: Fix a bunch of signed/unsigned warnings from gcc
19425         4.1.1
19426
19427 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
19428
19429         * culture-info-table.h : oops, forgot to make it nsync with r61548.
19430
19431 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19432
19433         * icall.c: Another fix for building mono in Visual Studio.
19434
19435 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19436
19437         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
19438         
19439 2006-06-09  Martin Baulig  <martin@ximian.com>
19440
19441         * debug-mono-symfile.c: Put this back and really fix it this
19442         time. Sorry for all the trouble.
19443
19444 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
19445
19446         * icall.c (mono_class_get_throw): Fix a warning.
19447         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
19448         ReflectionTypeLoadException if needed. Fixes #78606.
19449
19450         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
19451         (mono_class_init): Ditto.
19452
19453         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
19454         ref_only exceptions.
19455         (mono_loader_clear_error): Make this work even if there is no error.
19456
19457 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
19458
19459         * object-internals.h marshal.c marshal.h icall.c: Implement method 
19460         Marshal.GetComSlotForMethodInfo using internal call.
19461
19462 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
19463
19464         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
19465         a function for signalling it.
19466
19467         * class.c (mono_class_from_typeref): Use the new kind of loader error when
19468         a referenced assembly is not found.
19469
19470         * loader.c (mono_loader_error_prepare_exception): Add support for 
19471         LOADER_ERROR_ASSEMBLY. Fix formatting.
19472
19473 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19474
19475         * domain.c appdomain.c class-internals.h marshal.c: Add support 
19476         for VARIANT marshalling on windows and increment corlib version
19477         since Variant struct was added.
19478
19479 2006-06-03  Miguel de Icaza  <miguel@novell.com>
19480
19481         * debug-mono-symfile.c: Revert Martin's previous patch which broke
19482         stack trace line information:
19483
19484         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
19485         (Martin) when looking up B which is between A and C, return A not C.
19486
19487         Bug is #78573.
19488
19489         Thanks to Alexander Olk for tracking this down.
19490
19491 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
19492
19493         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
19494         
19495         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
19496         avoid clobbering its value.
19497         (mono_string_to_lpstr): Fix a warning on windows.
19498
19499 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19500
19501         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
19502
19503         * reflection.c loader.c: Removed references to 'dummy' flag.
19504
19505         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
19506
19507         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
19508         it gets GC tracking.
19509
19510         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
19511         GC tracking.
19512         
19513         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
19514
19515         * marshal.c threadpool.c: Update callers of mono_async_result_new.
19516
19517         * appdomain.c: Bump corlib version.
19518
19519 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19520
19521         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19522         CEE_STIND_REF when working with object references.
19523
19524 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19525
19526         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
19527         Fixes #78539.
19528
19529 2006-05-30  Miguel de Icaza  <miguel@novell.com>
19530
19531         * loader.c (method_from_memberref): Fix argument value for
19532         mono_loader_set_error_method_load (I was passing the MonoClass
19533         instead of the class name char *).
19534
19535 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19536
19537         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19538         CEE_STIND_REF when working with object references.
19539
19540 2006-05-30  Martin Baulig  <martin@ximian.com>
19541
19542         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
19543         mono_method_full_name() change and replace the ':' with a '.'
19544         here.
19545
19546 2006-05-30  Martin Baulig  <martin@ximian.com>
19547
19548         * debug-mono-symfile.c
19549         (mono_debug_symfile_lookup_location): Fix the algorithm:
19550         when looking up B which is between A and C, return A not C.
19551
19552 2006-05-29  Martin Baulig  <martin@ximian.com>
19553
19554         * mono-debug.h
19555         (MonoDebugMethodInfo): Make the typedef public.
19556         (MonoDebugSourceLocation): New public struct.
19557
19558         * mono-debug.c
19559         (mono_debug_source_location_from_address): Removed.
19560         (mono_debug_source_location_from_il_offset): Removed.
19561         (mono_debug_il_offset_from_address): Removed.
19562         (mono_debug_address_from_il_offset): Removed.
19563         (mono_debug_lookup_method): New public function.
19564         (mono_debug_lookup_source_location): New public function; replaces
19565         the old mono_debug_source_location_from_*() functions; see the
19566         inline documentation.
19567         (mono_debug_free_source_location): New public function.
19568         (mono_debug_print_stack_frame): New public function; see the
19569         inline documentation.
19570
19571         * debug-mono-symfile.c
19572         (mono_debug_find_source_location): Renamed into
19573         mono_debug_symfile_lookup_location(); only take a
19574         `MonoDebugMethodInfo *' and an `offset' argument; added inline
19575         documentation.
19576         (mono_debug_find_method): Renamed into
19577         mono_debug_symfile_lookup_method().
19578
19579 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
19580
19581         * assembly.c (mono_assembly_open_full): Dont overwrite the status
19582         returned by mono_image_open_full ().
19583
19584         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
19585         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
19586         #78517.
19587
19588         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
19589         #78518.
19590
19591 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19592
19593         * class.c (mono_class_from_typeref): handle missing images
19594         earlier, deals with bug #78418.   Refactor code; 
19595
19596         Fix a warning introduced in my previous commit (some stale code
19597         from before I revisited my patch).
19598
19599         * class.c (mono_class_create_from_typedef): On failure, remove the
19600         class from the MonoImage->class_cache as the class is not
19601         initialized;   Fixes the leak pointed out by Paolo.
19602
19603 2006-05-25  Dick Porter  <dick@ximian.com>
19604
19605         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19606         DeleteCriticalSections until I figure out which one may still be
19607         sometimes locked when mono_thread_cleanup is called.
19608
19609 2006-05-24  Dick Porter  <dick@ximian.com>
19610
19611         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19612         of mono_thread_manage and back into its own function, so it can be
19613         called after the finalizer thread has finished.
19614
19615         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19616
19617 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19618
19619         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19620         Fixes #78495.
19621
19622         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19623         with non-blittable elements.
19624         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19625
19626 2006-05-24  Martin Baulig  <martin@ximian.com>
19627
19628         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19629         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19630
19631         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19632         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19633         `mono_debugger_event_handler' to NULL.
19634
19635 2006-05-24  Martin Baulig  <martin@ximian.com>
19636
19637         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19638
19639 2006-05-24  Martin Baulig  <martin@ximian.com>
19640
19641         * mono-debug-debugger.h
19642         (mono_debugger_create_notification_function): Added
19643         `MonoCodeManager *' argument.
19644
19645 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19646
19647         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19648
19649 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19650
19651         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19652         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19653         implementation.
19654
19655 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19656
19657         * icall.c: precise GC support: objects can't be stored in unmanaged
19658         memory anymore, even if they are kept alive by other references: since
19659         they can move the GC needs to be able to always find them.
19660
19661 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19662
19663         * object.c: precise GC support for static fields. Support
19664         for moving GCs: write barriers and pinned allocation for interned
19665         strings.
19666
19667 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19668
19669         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19670         structure.
19671
19672 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19673
19674         * class.c, gc.c: sgen and precise GC updates.
19675
19676 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19677
19678         * marshal.h, marshal.c: added write barrier wrapper and precise type
19679         fixes.
19680
19681 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19682
19683         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19684         support.
19685
19686 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19687
19688         * reflection.c: precise and sgen GC updates.
19689
19690 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19691
19692         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19693
19694 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19695
19696         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19697
19698 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19699
19700         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19701         MONO_TYPE_OBJECT. Fixes #78462.
19702
19703 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19704
19705         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19706         and blittable types.
19707
19708 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19709
19710         * class.c (mono_class_get_exception_for_failure): Implement parts
19711         of a TODO: if the loader error is set (instead of the class
19712         error), we return a Loader exception that can be properly thrown
19713         elsewhere.
19714
19715         This was exposed by some Winforms 2.0 code that I tried to run
19716         (Atsushi pointed me to it).
19717
19718 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19719
19720         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19721         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19722         
19723         * marshal.c (emit_marshal_vtype): Add limited support for 
19724         UnmanagedType.LPStruct. Fixes #78427.
19725
19726         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19727         Applied a patch from kangaroo to fix #77523.
19728
19729 2006-05-17  Martin Baulig  <martin@ximian.com>
19730
19731         * threads.c
19732         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19733         (debugger_thread_created): Removed.
19734         (debugger_thread_exited): Removed.
19735
19736 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19737
19738         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19739
19740         * object-internals.h (MonoReflectionResource): Sync with managed version.
19741
19742 2006-05-12  Wade Berrier <wberrier@novell.com>
19743
19744         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19745
19746 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19747
19748         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19749         functions try to allocate from the image mempool.
19750
19751 2006-05-12  Dick Porter  <dick@ximian.com>
19752
19753         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19754
19755 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19756
19757         * object.c: The FieldGetter and FieldSetter methods require the full
19758         name of the class, not only the name. Fixes bug #78277.
19759
19760 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19761
19762         * loader.c (method_from_memberref): Do not pass the NULL klass to
19763         mono_loader_set_error_() methods.  Pass the non-NULL value
19764         (class). 
19765
19766 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19767
19768         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19769         (mono_assembly_close): Null out assembly->image->references after freeing it.
19770
19771         * image.c (mono_image_close): Free image->references.
19772         
19773         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19774
19775 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19776
19777         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19778         before checking if it's NULL (g_assert).
19779
19780 2006-05-10  Martin Baulig  <martin@ximian.com>
19781
19782         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19783         I thought I already killed that two months ago, but now it somehow reappeared.
19784
19785 2006-05-10  Martin Baulig  <martin@ximian.com>
19786
19787         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19788
19789 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19790
19791         * reflection.c: Allocate memory for dynamically created methods in the image
19792         mempools.
19793
19794 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19795
19796         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19797         don't use the ad pointer before checking if it's NULL (g_assert).
19798
19799 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19800
19801         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19802         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19803
19804         * marshal.c: Allocate all signatures from mempools.
19805
19806         * marshal.c: Allocate some more signatures from mempools.
19807
19808 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19809
19810         * object.c (mono_load_remote_field): The code used to provide a
19811         temporary variable for returning results if the user did not
19812         provide a result pointer.  But our temporary variable was allocted
19813         on the satck.
19814
19815         Fix calling code to always pass a result area.   Coverity ID 103.
19816
19817 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19818
19819         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19820         value, not the old. Fixes #78312.
19821         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19822
19823         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19824         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19825         per-image cache.
19826
19827         * assembly.c (mono_assembly_close): Free image->references.
19828
19829         * assembly.c (mono_assembly_names_equal): Fix a warning.
19830         (mono_assemblies_cleanup): Cleanup more global data.
19831
19832         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19833
19834         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19835         ptr_cache and image->modules.
19836
19837         * image.c (mono_image_init): Allocate array_cache lazily.
19838         
19839 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19840
19841         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19842         behavior was changed recently and has bad side effects.
19843
19844 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19845
19846         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19847         
19848         * assembly.c (mono_assembly_close): Remove a debug printf.
19849
19850         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19851
19852         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19853         to also allow for temporary references between mono_image_open ()/close ().
19854
19855         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19856
19857 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19858
19859         * marshal.c: Fix support for dynamic methods.
19860
19861         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19862
19863         * marshal.c (mono_marshal_cleanup): New cleanup function.
19864
19865         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19866         image mempools.
19867
19868         * class.c (mono_class_init): Fix leaking class->nested_classes.
19869
19870         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19871
19872         * image.c (mono_image_init): Initialize the new cashes.
19873
19874         * image.c (mono_image_close): Destroy the new cashes.
19875
19876         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19877
19878         * mempool.c (mono_mempool_strdup): New helper function.
19879
19880         * class-internals.h: Add prototype for mono_loader_unlock ().
19881
19882         * domain.c (mono_jit_info_table_find): Fix a warning.
19883         (mono_debugger_check_runtime_version): Ditto.
19884
19885         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19886         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19887         functions to these modules.
19888
19889         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19890         metadata modules.
19891         
19892         * marshal.c (mono_free_bstr): Fix a warning.
19893
19894         * assembly.c (mono_assembly_open_full): Fix another small leak.
19895
19896         * object.c: Fix some unload leaks in the remoting code.
19897
19898         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19899         function.
19900
19901         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19902
19903         * reflection.c: Fix some unload leaks in dynamic assemblies.
19904
19905 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19906
19907         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19908         * marshal.h: Add BSTR support on Win32
19909         * icall.c: Add BSTR icalls
19910         * metadata.h: Add BSTR enums
19911
19912 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19913
19914         Work to catch the crash from #76795 and turn it into an
19915         exception.   As I stubbed out pieces of the VisualBasic support,
19916         I found a number of places where the code was failing and I added
19917         checks to those places. 
19918         
19919         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19920         function return a status code.  If we fail to parse the signature
19921         from mono_metadata_parse_generic_inst, return FALSE.
19922
19923         * loader.c (mono_get_method_from_token): If we fail to load the
19924         method (mono_class_get) return NULL.   
19925
19926         * (method_from_memberref): Return NULL if we are unable to parse
19927         the method signature
19928
19929         (mono_loader_error_prepare_exception): Since we now use the
19930         loader_error flag internally to stop processing, and obtaining
19931         exceptions that might be thrown will walk this code path the
19932         proper way of going from a MonoLoaderError into a
19933         MonoException was convoluted.   This new routine encapsulates the
19934         process of turning the error into an exception and *clearing* the
19935         error afterwards.
19936         
19937 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19938
19939         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19940         with missing assemblies), and to cope with:
19941
19942                 * Missing fieldref from a non-existing assembly.
19943                 * Missing methodref from a non-existing assembly.
19944
19945         The first batch of work to address *some* of the issues from 76661.
19946         
19947         * object.c (mono_class_create_runtime_vtable): If we fail to
19948         initialize the class raise the exception here. 
19949
19950         * metadata.c (mono_class_get_overrides_full): If any methods fail
19951         to load return the failure to the caller.
19952
19953         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19954         flagging assemblies that failed to load.   
19955
19956         Do not crash if we are unable to load the assembly.
19957
19958         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19959         assemblies. 
19960
19961         * loader.c (mono_loader_set_error_type_load): Change the
19962         convention to always pass unallocated strings, so we make our own
19963         copies (I know our own code had duplicated strings before, but
19964         this keeps the normal conventions).
19965         (method_from_memberref): Call mono_loader_set_error_method_load
19966         for all possible failures of loading the class. 
19967         Remove assert, turn into a loader error.
19968
19969         (mono_loader_error_to_exception): Move this routine from mini
19970         (mini_loader_error_to_exception) there was no need to have that in
19971         mini. 
19972
19973         * class.c (mono_class_from_typeref): If we were not able to load
19974         the assembly with mono_assembly_load_reference, call the
19975         mono_loader_set_error_type_load to register the problem.
19976
19977         (mono_class_setup_fields): If we fail to load the type from
19978         mono_metadata_parse_type_full, call mono_class_set_failure and
19979         break from the loop.
19980
19981         If class->exception_type is set, we do not layout the fields as
19982         that might crash the runtime, and instead return (from breaking
19983         from the previous loop).
19984
19985         (mono_class_setup_vtable): This now returns a boolean indicating
19986         whether the table was properly setup.   The decision is driven by
19987         mono_class_get_overrides_full which might run into non-existing
19988         methods. 
19989         
19990         (mono_class_init): Returns TRUE on success or FALSE if there was a
19991         problem in loading the type (incorrect assemblies, missing
19992         assemblies, methods, etc).
19993
19994         When we call mono_class_setup_fields we also check for a potential
19995         error inside this call (either a class exception or a general
19996         loader exception).
19997
19998         (mono_class_create_from_typedef): If the parent fails to load
19999         (calling mono_class_get_full) return NULL.
20000         
20001         ** Important **
20002
20003         calls to mono_metadata_parse_type_full should be checked
20004         everywhere and set the mono_class_set_failure
20005         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
20006
20007         The current patch checks the places where my manually constructed
20008         tests show the errors are showing up, but we should do it
20009         everywhere. 
20010
20011         ** Important2 **
20012
20013         mono_class_init return values should be tested everywhere, like
20014         the previous case this is something that we should audit
20015         everywhere and not only on the cases exposed by the tests I
20016         created. 
20017
20018 2006-04-26  Miguel de Icaza  <miguel@novell.com>
20019
20020         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
20021         boolean parameter and instead pass the information on `options'
20022         parameter (FileOptions).
20023
20024         * icall.c: Register the new signature for MonoIO.Open.
20025
20026         * debug-helpers.c (dis_one): Trying to understand how coverity
20027         works.  Fix Run 5, item 78.
20028
20029 2006-04-26  Dick Porter  <dick@ximian.com>
20030
20031         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
20032         dereference.
20033
20034 2006-04-25  Martin Baulig  <martin@ximian.com>
20035
20036         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
20037
20038         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
20039         debugger_thread_created().
20040         (debugger_gc_push_all_stacks): Don't handle the main thread in any
20041         special way.
20042         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
20043         (mono_debugger_finalize_threads): New function; undo the effects
20044         of mono_debugger_init_threads().
20045         (mono_debugger_create_all_threads): Removed.
20046
20047 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
20048
20049         * image.c (mono_image_close): Tidy up trace messages.
20050
20051         * assembly.c (mono_assembly_close): Ditto.
20052
20053         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
20054         no longer references an already freed assembly. Fixes #78168.
20055
20056 2006-04-21  Dick Porter  <dick@ximian.com>
20057
20058         * threads.c (mono_thread_detach): Fix reference counting when
20059         detaching threads.
20060
20061 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
20062
20063         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
20064         #78155.
20065
20066 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
20067
20068         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
20069         (mono_type_to_stind): Ditto.
20070
20071         * marshal.c: Use the new helper functions to simplify code.
20072
20073         * image.c (mono_image_close): Add some code for help debug assembly unloading
20074         problems.
20075
20076         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
20077         image mempool.
20078
20079         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
20080         assembly was already loaded in another appdomain. Fixes #78083.
20081
20082 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
20083
20084         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
20085         referenced assemblies.
20086         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
20087
20088         * domain.c (mono_domain_free): Add a trace message.
20089
20090         * appdomain.c (add_assemblies_to_domain): Ditto.        
20091
20092         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
20093         field.  
20094
20095 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
20096
20097         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
20098
20099 2006-04-12  Martin Baulig  <martin@ximian.com>
20100
20101         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
20102         `USE_INCLUDED_LIBGC'.   
20103
20104 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
20105
20106         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
20107         the patch contains ../ and a small directory name later. Hopefully fixes
20108         #78035.
20109
20110 2006-04-10  Martin Baulig  <martin@ximian.com>
20111
20112         Clean up the debugger's thread-handling code.
20113
20114         The debugger's thread-handling code has been moved from
20115         ../mini/debug-debugger.c to threads.c.  We now iterate directly
20116         over the `threads' hash, keep track of exiting threads and also
20117         use proper locking.
20118
20119         We can now debug XSP and XSP based applications with the debugger.
20120
20121         * object-internals.h (MonoThread): Added `gpointer end_stack'.
20122
20123         * threads.h
20124         (MonoThreadCallbacks): Removed; this was only used by the debugger.
20125         (mono_install_thread_callbacks): Likewise.      
20126
20127         * threads.c (mono_thread_callbacks): Removed.
20128         (debugger_thread_created, debugger_thread_exited): New static functions.
20129         (start_wrapper): Call debugger_thread_created().
20130         (thread_cleanup): Call debugger_thread_exited().
20131         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
20132         (mono_debugger_init_threads): New public function.
20133         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
20134         iterate directly over the `threads' hash and also use proper locking.
20135
20136         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
20137
20138         * mono-debug-debugger.h
20139         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
20140
20141 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
20142
20143         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
20144         argument type=array. Fixes #78057.
20145
20146 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
20147
20148         * culture-info-table.h : regenerated. Fixed bug #69652.
20149
20150 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
20151
20152         * loader.c metadata.c: Reapply a variant r59116.
20153         
20154         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
20155
20156         * class.c (mono_class_setup_interface_offsets): New internal function.
20157
20158         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
20159         interfaces too. Fixes #77398.
20160
20161         * reflection.c (encode_cattr_value): Add support for 
20162         parameter type=object, argument type=array.
20163         (load_cattr_value): Ditto. Fixes #77916.
20164
20165         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
20166         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
20167
20168         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
20169         a byval char array and CharSet is Ansi.
20170
20171         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
20172
20173 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
20174
20175         * metadata.c: Add some locking comments.
20176         
20177         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
20178         mempool.
20179         (mono_metadata_free_method_signature): Don't free the signature itself.
20180
20181         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
20182
20183         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
20184         reference the same MonoImage.
20185         (mono_assembly_load_from_full): Add an assert.
20186
20187 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
20188
20189         * image.c (mono_image_close): Don't put the image we are about to free into the
20190         loaded_images_guid_hash.
20191
20192         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
20193         to reduce code duplication.
20194
20195         * marshal.c: Register the native functions called by this module as icalls, to
20196         somewhat centralize the creation of MonoMethodSignature's.
20197
20198         * loader.c (mono_method_signature): Add a cache for method signatures.
20199
20200         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
20201         the parameter attributes of a method.
20202         (mono_metadata_parse_method_signature_full): Refactored the computation of
20203         parameter attributes into a separate function. Also avoid one allocation in
20204         most cases.
20205
20206         * assembly.c (mono_assembly_close): Ditto.
20207
20208         * image.c (mono_image_close): Log trace messages with INFO level.
20209
20210         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
20211
20212         * image.c reflection.c: Correct reference counting of image modules.
20213         
20214         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
20215         of this function from the image mempool.
20216         
20217         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
20218         to allow more cached types to be used.
20219
20220         * mono-debug.c (mono_debug_add_method): Appled patch from
20221         David S. Miller  <davem@sunset.davemloft.net>: Access 
20222         minfo->lexical_blocks[] entry elements using read32().
20223
20224 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
20225
20226         * loader.c (mono_free_method): No longer free the method header for non-dynamic
20227         methods as it is allocated from the mempool.
20228
20229         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
20230         image mempool.
20231
20232         * metadata-internals.h: Add comments describing the reference counting scheme
20233         used for MonoImage and MonoAssembly.
20234
20235         * image.c assembly.c reflection.c: Rework reference counting of images and 
20236         assemblies so they are freed when the runtime is shut down. Free some 
20237         additional memory structures when an image is unloaded.
20238         
20239 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
20240
20241         * class.c loader.c reflection.c: Allocate more data structures in
20242         the image mempool.
20243
20244 2006-03-31  Miguel de Icaza  <miguel@novell.com>
20245
20246         * icall.c
20247         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
20248         build on pre glib 2.4 systems.
20249
20250 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
20251
20252         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
20253
20254         * icall.c: Fix some warnings.
20255
20256 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
20257
20258         * culture-info-table.h : regenerated.
20259
20260 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
20261
20262         * threads.c, object-internals.h, verify.c: changed the culture caching
20263         code to use a normal MonoArray for storage so the GC can keep track of
20264         them easily. Fixed bits of the cache logic, too and simplified the
20265         code.
20266
20267 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
20268
20269         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
20270         thread for non-Boehm GCs.
20271
20272 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
20273
20274         * domain.c, object.c, domain-internals.h: reduce the amount of memory
20275         needed to keep track of the data for static fields.
20276
20277 2006-03-29  Raja R Harinath  <rharinath@novell.com>
20278
20279         Fix #75172
20280         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
20281         for interface classes.  Use 'num_methods' instead.
20282         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
20283         before using '->vtable_size' field.
20284
20285 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
20286
20287         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
20288         doesn't contain managed pointers, so use a normal hashtable.
20289
20290 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
20291
20292         * reflection.c, class-internals.h, domain.c: fixed handling of types
20293         used as values for objects in custom attributes (bug #77915):
20294
20295 2006-03-24  Martin Baulig  <martin@ximian.com>
20296
20297         * class.c (mono_class_setup_fields): Added support for generic
20298         instances; fixes #77580.
20299
20300 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20301
20302         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
20303
20304 2006-03-24  Dick Porter  <dick@ximian.com>
20305
20306         * file-io.c (get_file_attributes): More stat macro breakage.
20307         Fixes bug 77759.
20308
20309 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
20310
20311         * profiler.c: added the file=filename option in the default profiler
20312         to output the profile data to filename.
20313
20314 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20315
20316         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
20317         bug #77877.
20318
20319 2006-03-22  Martin Baulig  <martin@ximian.com>
20320
20321         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
20322         allocated `MonoClassField *' in `fb->handle'.
20323
20324 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
20325
20326         * class.c, image.c, metadata-internals.h: implemented new mechanism to
20327         allocate interface ID to save memory and allow better ID reuse on
20328         appdomain unload. setup_generic_vtable () removal from Martin.
20329
20330 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20331
20332         * object.h, appdomain.c, domain.c, exception.c, icall.c,
20333         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
20334         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
20335         write barriers for reference stores with managed objects accessed with
20336         C structures in the runtime and in embedding programs.
20337
20338 2006-03-20  Raja R Harinath  <rharinath@novell.com>
20339
20340         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
20341         'interface_id' and 'max_interface_id' fields of MonoClasses
20342         representing open generic types.
20343
20344 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
20345
20346         * object.h, object.c, icall.c: added functions to deal with
20347         storing valuetypes that contain references in managed objects.
20348         * reflection.c, string-icalls.c, threads.c, marshal.c: small
20349         fixes and comments around uses of mono_array_addr ().
20350
20351 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
20352
20353         * object.h, icall.c, monitor.c: object.GetHashCode ()
20354         implementation that supports the moving garbage collector.
20355
20356 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
20357
20358         * icall.c, threads-types.h, threads.c: implemented finalizer for
20359         LocalDataStoreSlot.
20360
20361 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
20362
20363         * metadata.c (mono_type_size): Add a fixme.
20364         (mono_type_stack_size): Ditto.
20365
20366         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
20367         'type_forwarders' field.
20368
20369         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
20370         attribute from net 2.0.
20371
20372         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
20373         from class.c.
20374
20375         * class.c (mono_class_setup_fields): Fix a warning.
20376         
20377         * class.c (mono_class_from_name): Add support for assemblyref entries
20378         in the EXPORTEDTYPE table.
20379
20380         * reflection.c: Add support for handling type forwarders under net 2.0.
20381
20382         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
20383         
20384 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
20385
20386         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
20387         overwriting entries in ModuleBuild->types, also clean up the code
20388         a little. Fixes #77774.
20389
20390 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
20391
20392         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
20393         load friend assembly info when present.
20394
20395 2006-03-14  Raja R Harinath  <rharinath@novell.com>
20396
20397         Fix crasher on gtest-158.cs.
20398         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
20399         the return value if the MonoClass we want is yet in an
20400         inconsistent state.
20401         * class.c (mono_class_create_from_typedef): Add an comment
20402         explaining an order dependency between mono_class_setup_parent and
20403         mono_class_setup_mono_type.
20404
20405 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
20406
20407         * class.c: documentation updates and events bug fix.
20408
20409 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
20410
20411         * class.c: some cleanup, locking fixes.
20412
20413 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
20414
20415         * class.c: fix the generics code to setup nested
20416         type info to the instantiated type (bug #77770).
20417
20418 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
20419
20420         * marshal.c: fixed a few type correctness issues.
20421
20422 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20423
20424         * loader.c: the Set/Get/Addrtess array methods should be public.
20425
20426 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
20427
20428         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
20429         
20430         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
20431         info->wrapper.
20432
20433 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
20434
20435         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
20436
20437         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
20438
20439         * mempool.c (mono_mempool_alloc): Speed this up a bit.
20440         (mono_mempool_alloc0): Ditto.
20441
20442 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20443
20444         * socket-io.c:
20445         (create_object_from_sockaddr): it was allocating 4 extra bytes
20446         for the AF_UNIX data. Fixes bug #77747.
20447
20448 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
20449
20450         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
20451
20452 2006-03-09  Dick Porter  <dick@ximian.com>
20453
20454         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
20455         Fixes bug 76966 again.
20456
20457 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
20458
20459         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
20460         names from r57532
20461         * appdomain.c: Bumped corlib version to 48 (due to r57532)
20462
20463 2006-03-07  Martin Baulig  <martin@ximian.com>
20464
20465         * object.c
20466         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
20467
20468 2006-03-07  Martin Baulig  <martin@ximian.com>
20469
20470         * class.c
20471         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
20472         regression introduced in r56970; see gtest-252.cs.
20473
20474         * loader.c (mono_get_method_constrained): Correctly handle generic
20475         methods; see gtest-253.cs.
20476
20477 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
20478
20479         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
20480
20481 2006-03-04  Martin Baulig  <martin@ximian.com>
20482
20483         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
20484         compute the parent type at runtime, just like we're already doing
20485         it for interfaces.
20486
20487         * reflection.c
20488         (mono_reflection_bind_generic_parameters): Don't compute the
20489         parent type anymore.
20490
20491         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
20492
20493 2006-03-04  Martin Baulig  <martin@ximian.com>
20494
20495         * mono-debug-debugger.h
20496         (mono_debugger_create_notification_function): Allocate memory at
20497         runtime and return a pointer to it.
20498
20499 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
20500
20501         * assembly.c: Fix windows build.
20502         
20503         * assembly.c: Fix build.
20504
20505         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
20506
20507         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
20508         
20509 2006-03-03  Dick Porter  <dick@ximian.com>
20510
20511         * process.c
20512         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20513         Check parameters before dereferencing them.  Fixes Aaron's part of
20514         bug 77393.
20515
20516 2006-03-03  Raja R Harinath  <rharinath@novell.com>
20517
20518         Fix performance regression.
20519         * loader.c (find_method_in_class): Add 'from_class' argument.
20520         Rename 'klass' argument to 'in_class'.  The signature is compared
20521         against the method in 'in_class', and the corresponding method is
20522         returned from 'from_class'.
20523         (find_method): Walk both 'in_class' and 'from_class' in parallel.
20524         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
20525         type definition and generic instantiation in parallel.
20526         (mono_get_method_constrained): Update to changes.
20527
20528 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
20529
20530         * threads.c: make sure the domain is correct, too when doing
20531         mono_thread_attach ().
20532
20533 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
20534
20535         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
20536         windows. Fixes #77683.
20537
20538 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
20539
20540         * object.h, *: introduced specific way to set elements of an array
20541         of references to be used as write barrier. Still need to audit the
20542         uses of mono_array_addr.
20543
20544 2006-03-01  Miguel de Icaza  <miguel@novell.com>
20545
20546         * object-internals.h: New field to cache the assmebly name, patch
20547         from Tambet Ingo (tambet@ximian.com)
20548
20549 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20550
20551         * decimal.h, class-internals.h, metadata-internals.h,
20552         file-io.h: mark a few function declarations as internal, to
20553         reduce the number of PLT entries.
20554
20555 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20556
20557         * file-io.c: fix typo in warning message.
20558
20559 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
20560
20561         * loader.c: on unix, lookup the "*A" version of a function
20562         if charset is auto as a second option before failing.
20563
20564 2006-02-28  Raja R Harinath  <rharinath@novell.com>
20565
20566         * class.h (mono_class_inflate_generic_method): Revert to two
20567         argument version.
20568         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
20569         (mono_class_inflate_generic_method_full): Add.
20570         * class.c (mono_class_inflate_generic_method_full): Rename from
20571         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
20572         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
20573         * loader.c, reflection.c: Update to changes.
20574
20575 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
20576
20577         * icall.c: const fixes and small improvements.
20578
20579 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20580
20581         * threadpool.c: for asynchronous connect(), enable the same workaround
20582         for BSD 6 as for the Mac. Fixes bug #77637.
20583
20584 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
20585
20586         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
20587         formatted classes. Fixes #77524.
20588
20589 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20590
20591         * class.c (inflate_generic_type): Add a couple more
20592         micro-optimizations.
20593         (inflate_generic_context): Don't use the 'gmethod' from
20594         'inflate_with'.
20595         (mono_class_inflate_generic_method): If the method has generic
20596         parameters, but the passed-in context doesn't have a 'gmethod',
20597         create one.  Use the possibly simplified generic instantiation
20598         from the declaring class instead of the one passed in.
20599
20600 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20601
20602         Make generic method signature and method header handling lazy.
20603         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20604         (inflate_generic_header): Likewise.
20605         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20606         parameter to avoid inflating types.
20607         (mono_get_inflated_method): Empty out.
20608         * class.h (mono_class_inflate_generic_method): Update to changes.
20609         * loader.c (mono_get_method_from_token): Don't parse signature for
20610         generic methods, nor methods of generic classes.
20611         (mono_method_signature): Rename from 'mono_method_signature'.
20612         Inflate signature on demand.
20613         (mono_method_get_header): Inflate method header on demand.
20614         * reflection.c: Update to changes.
20615
20616 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20617
20618         * metadata.c (mono_metadata_inflate_generic_inst): If the
20619         instantiation is closed, don't bother expanding it in the new
20620         context.
20621         * class.c (inflate_generic_class): If the generic instantiation
20622         doesn't change after inflation, return the argument itself.
20623         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20624         Add bounds checks.
20625         (inflate_generic_context): If neither the generic class nor the
20626         generic method instantiations change, return the original context.
20627         * reflection.c (mono_method_get_object): Do
20628         'mono_get_inflated_method' before accessing the ->klass field.
20629         (inflate_mono_method): Don't create a MonoGenericMethod unless
20630         necessary.
20631         (inflate_method): Don't pass a constructed type as the declaring
20632         type of a methodbuilder.
20633
20634 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20635
20636         * object.c: fix memory overwrite.
20637
20638 2006-02-22  Dick Porter  <dick@ximian.com>
20639
20640         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20641         it doesn't work any more.
20642         (mono_threads_request_thread_dump): Fix unused variable warnings.
20643
20644 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20645
20646         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20647         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20648         the public header file.
20649
20650 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20651
20652         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20653
20654 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20655
20656         * class-internals.h, object.c: reduce the size of MonoVTable
20657         and store the interface_offsets array at negative offsets.
20658
20659 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20660
20661         * metadata.c: tweak table descriptors data structures to reduce
20662         size and runtime relocations.
20663
20664 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20665
20666         * marshal.c: fix some types and opcodes to be type-safe
20667         in marshaling wrappers.
20668
20669 2006-02-21  Ankit Jain  <jankit@novell.com>
20670
20671         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20672
20673 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20674
20675         * metadata.c (get_constraints): Relax debugging checks for monodis.
20676
20677 2006-02-21  Ankit Jain  <jankit@novell.com>
20678
20679         * metadata.c (mono_metadata_load_generic_params): Move the code
20680         checking for ambiguous generic params from here to mono/dis/get.c
20681         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20682
20683 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20684
20685         Fix assertion triggered when compiling nemerle.
20686         * class.c (mono_get_shared_generic_inst): Rename from
20687         get_shared_inst and make non-static.
20688         * loader.c (mono_get_shared_generic_method): New.  Used to create
20689         the MonoGenericContext-equivalent of a MonoGenericContainer.
20690         (mono_get_method_from_token): Initialize the 'context' field of
20691         the created MonoGenericContainer.
20692         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20693         * metadata.c (get_constraints): Add sanity check.
20694         * class-internals.h: Add new internal methods.
20695
20696         * reflection.c (verify_safe_for_managed_space): New sanity check.
20697         Currently checks that owner-less generic parameters aren't allowed
20698         in managed space.
20699         (mono_type_get_object): Use it.
20700         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20701         that are now in mono_type_get_object.
20702         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20703
20704 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20705
20706         * metadata.c (mono_type_create_from_typespec): Rename from
20707         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20708         argument and caching of types in the generic container.
20709         (unwrap_arrays, find_generic_param): Remove.
20710         * metadata-internals.h: Update.
20711         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20712
20713 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20714
20715         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20716
20717         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20718         return values. Fixes #77581.
20719
20720         * class.c (mono_fnptr_class_get): Switch name and name_space.
20721
20722         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20723         classes and add support for [In, Out] attributes.
20724         (mono_marshal_free_asany): Ditto. Fixes #77524.
20725
20726 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20727
20728         * class.c (mono_class_from_generic_parameter): Make more robust to
20729         incomplete MonoGenericContainers from monodis.
20730
20731 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20732
20733         * class-internals.h: added some more exception types.
20734         * class.c, metadata.c: added a few checks to handle missing
20735         types.
20736
20737 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20738
20739         Use owner-less generic-params some more.
20740         * class.c (my_mono_class_from_generic_parameter): Remove.
20741         (mono_class_from_generic_parameter): Handle null image,
20742         param->name and param->owner.
20743         (mono_class_from_mono_type): Update.
20744         (mono_class_create_from_typespec): Remove 'container' parameter.
20745         If that parameter is non-null, the result is always inflated by
20746         'mono_class_get_full' anyway.
20747         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20748         parameter.
20749         (mono_class_get_full): Update.
20750
20751         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20752         instance is not open, don't bother inflating.
20753         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20754         parse metadata for inflated classes.
20755         (_mono_class_get): Change GenericContext* parameter to
20756         GenericContainer*.
20757         (mono_class_create_from_typespec): Likewise.  Simplify, and
20758         implement trivially.  All the cases are handled in
20759         mono_class_from_mono_type.  Don't inflate returned class.
20760         (mono_class_get_full): Delegate GENERICINST optimization to
20761         inflate_generic_type.
20762         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20763
20764 2006-02-16  Dick Porter  <dick@ximian.com>
20765
20766         * socket-io.c (create_object_from_sockaddr): Fix typo.
20767         (create_sockaddr_from_object): Check array lengths before
20768         potentially accessing items off the end.
20769         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20770         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20771         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20772         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20773         length checks to avoid wraparound overflows.
20774         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20775         contents of the array of sockets
20776         (hostent_to_IPHostEntry2)
20777         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20778         Check return value of inet_ntop ().
20779         (addrinfo_to_IPHostEntry): Fix typo
20780
20781 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20782
20783         Type metadata parsing doesn't use generic-instantiation information.
20784         * metadata.c (mono_metadata_parse_array_full): Change
20785         MonoGenericContext* parameter to MonoGenericContainer*.
20786         (mono_metadata_parse_type_full): Likewise.
20787         (mono_type_create_from_typespec_full): Likewise.
20788         (mono_metadata_parse_mh_full): Likewise.
20789         (mono_metadata_parse_generic_inst): Likewise.
20790         (do_mono_metadata_parse_generic_class): Likewise.
20791         (do_mono_metadata_parse_type): Likewise.
20792         * metadata-internals.h: Update to changes.
20793         * class.c (mono_class_find_enum_basetype): Likewise.
20794         (mono_class_setup_fields): Likewise.
20795         (mono_class_create_from_typespec): Likewise.
20796         * loader.c (method_from_methodspec): Likewise.
20797         (mono_get_method_from_token): Likewise.
20798         (mono_method_get_header): Likewise.
20799
20800 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20801
20802         * marshal.c: handle additional GENERICINST case (patch from
20803         Thong Nguyen <tum@veridicus.com>).
20804         Fix a few cases where LDIND_I/STIND_I was used for references.
20805
20806 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20807
20808         * reflection.c (mono_reflection_get_token): Remove unused variable.
20809
20810 2006-02-16  Martin Baulig  <martin@ximian.com>
20811
20812         * reflection.c (mono_reflection_get_token): Add support for fields
20813         in instantiated generic types.
20814
20815         * icall.c
20816         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20817
20818 2006-02-15  Martin Baulig  <martin@ximian.com>
20819
20820         * icall.c
20821         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20822         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20823         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20824         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20825
20826 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20827
20828         * class.c, metadata.c, metadata.h, object.c, icall.c,
20829         marshal.c: changed mono_type_get_underlying_type () to do
20830         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20831         Fixed handling of instantiated generic valuetypes (bug #75479).
20832
20833 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20834
20835         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20836         Delegate to mono_metadata_decode_value, and work on the returned value.
20837
20838         * icall.c (ves_icall_MonoType_GetGenericArguments):
20839         Add consistency check here too.
20840         
20841 2006-02-15  Ankit Jain  <jankit@novell.com>
20842
20843         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20844         char/short etc.
20845
20846 2006-02-15  Ankit Jain  <jankit@novell.com>
20847
20848         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20849         signed values, used only for representing lower bounds of arrays.
20850         (mono_metadata_parse_array_full): Use new
20851         mono_metadata_decode_signed_value to decode lower bounds.
20852
20853 2006-02-14  Martin Baulig  <martin@ximian.com>
20854
20855         * reflection.c
20856         (mono_reflection_get_token): Support "MonoGenericMethod" and
20857         "MonoGenericCMethod" and allow generic instances / methods.
20858
20859 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20860
20861         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20862         to obtain the terminal size using an ioctl.
20863
20864         * object.c (mono_nullable_init): Revert this as nullable reference
20865         types are not valid.
20866         (mono_nullable_box): Ditto.
20867
20868 2006-02-09  Dick Porter  <dick@ximian.com>
20869
20870         * threads.c (mono_thread_detach): Drop a reference to the thread
20871         we're detaching.
20872
20873 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20874
20875         * object.c (mono_nullable_init): Handle nullable reference types.
20876         (mono_nullable_box): Ditto. Fixes #77446.
20877
20878 2006-02-07  Martin Baulig  <martin@ximian.com>
20879
20880         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20881
20882 2006-02-07  Ankit Jain  <jankit@novell.com>
20883
20884         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20885         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20886         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20887         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20888         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20889         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20890
20891 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20892
20893         * class.c (mono_class_create_generic): Set type_token as well.
20894
20895         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20896         compatible with MS.
20897
20898 2006-02-02  Martin Baulig  <martin@ximian.com>
20899
20900         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20901         has never been used so far.
20902
20903 2006-02-02  Martin Baulig  <martin@ximian.com>
20904
20905         * mono-debug-debugger.h: Changed comment at the top of this file;
20906         the header is not installed, but it's safe to #include it from
20907         within the JIT.
20908
20909         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20910         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20911
20912 2006-02-02  Martin Baulig  <martin@ximian.com>
20913
20914         * mono-debug.h
20915         (MonoSymbolTable): Removed the `metadata_info' field.
20916
20917         * mono-debug.c
20918         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20919
20920         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20921         (mono_debugger_add_builtin_types): Removed.
20922         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20923         (mono_debugger_create_notification_function): We now operate on a
20924         pre-allocated area; take a `gpointer' and return `void'.
20925
20926         * mono-debug-debugger.c
20927         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20928         (mono_debugger_add_builtin_types): Removed.
20929
20930 2006-02-02  Martin Baulig  <martin@ximian.com>
20931
20932         * threads.c (mono_debugger_create_all_threads): New public method.
20933
20934 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20935
20936         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20937         breaks on several platforms.
20938
20939 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20940
20941         * assembly.c: the VS.NET build doesn't supply default values for
20942         MONO_ASSEMBLIES and MONO_CFG_DIR.
20943
20944 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20945
20946         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20947         helper function.
20948
20949         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20950
20951         * loader.c (method_from_memberref): Fix a warning.
20952
20953         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20954
20955         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20956         with explicit layout. Fixes #77433.
20957
20958 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20959
20960         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20961         max_interface_id is initialized before using it. Fixes #77398.
20962         (ves_icall_Type_GetInterfaces): Ditto.
20963
20964 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20965
20966         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20967         allocate memory for parameter attributes when parsing memberref
20968         signatures.
20969         * loader.c (mono_loader_set_error_method_load): Don't warn.
20970         (method_from_memberref): Ensure MissingMethodException gets thrown
20971         if method is not found.  Make warning more informative.
20972
20973 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20974
20975         Fix #77397
20976         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20977         return true if is byref.
20978         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20979         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20980         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20981
20982 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20983
20984         Fix tests/find-method.2.il
20985         * loader.c (find_method, find_method_in_class): Remove is_inflated
20986         argument.  Revert 2006-01-18 change.
20987         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20988         is generic, search for method in its generic definition.
20989         * class.c (mono_class_setup_vtable_general): Print generic
20990         arguments of generic types in debugging printf.
20991
20992 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20993
20994         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20995
20996         * threads.c (mono_threads_request_thread_dump): New helper function.
20997
20998 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20999
21000         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
21001
21002 2006-01-25  Ankit Jain  <jankit@novell.com>
21003
21004         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
21005         move definition to ..
21006         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
21007         
21008 2006-01-25  Ankit Jain  <jankit@novell.com>
21009             Raja R Harinath  <rharinath@novell.com>
21010
21011         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
21012         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
21013         as necessary.
21014
21015 2006-01-25  Martin Baulig  <martin@ximian.com>
21016
21017         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
21018         `MonoDebuggerThread' into debug-debugger.c.
21019
21020 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
21021
21022         * profiler.c: fix printing of data.
21023
21024 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
21025
21026         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
21027           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
21028
21029 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
21030
21031         * object.c: fix deadlock related to string interning.
21032
21033 2006-01-23  Martin Baulig  <martin@ximian.com>
21034
21035         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
21036
21037         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
21038
21039 2006-01-23  Martin Baulig  <martin@ximian.com>
21040
21041         * mono-debug.h: Moved the prototypes of some functions which are
21042         used by the JIT here from mono-debug-debugger.h.
21043
21044 2006-01-21  Martin Baulig  <martin@ximian.com>
21045
21046         * Makefile.am: Don't install mono-debug-debugger.h.
21047
21048 2006-01-21  Martin Baulig  <martin@ximian.com>
21049
21050         * mono-debug-debugger.h: Enforce the private status of this header
21051         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
21052         Moved some stuff from mono-debugger-jit-wrapper.h here.
21053
21054 2006-01-20  Raja R Harinath  <rharinath@novell.com>
21055
21056         * class.c (mono_class_from_typeref): Add a sanity test to help
21057         catch lack of assembly load/search hooks.
21058
21059 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
21060
21061         * marshal.c (emit_struct_conv): Relax the fields with same offset
21062         check even more. Fixes #77230.
21063
21064 2006-01-18  Martin Baulig  <martin@ximian.com>
21065
21066         * loader.c (find_method_in_class): Added `gboolean is_inflated'
21067         argument; if false, we compare the uninstantiated signatures.
21068         (method_from_memberref): Compare the uninstantiated signatures;
21069         fixes #76417.
21070
21071 2006-01-18  Robert Jordan  <robertj@gmx.net>
21072
21073         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
21074         Clear the weak link. Fixes bug #77170.
21075
21076         * gc.c (mono_gchandle_free):
21077         Reflect *-gc.c changes (tiny optimization).
21078
21079 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
21080
21081         * metadata.c (mono_metadata_signature_dup): Applied patch from
21082         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
21083         Fixes #77288.
21084
21085 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
21086
21087         * marshal.c (emit_struct_conv): Allow fields with the same offset when
21088         marshalling from native to managed code. Fixes #77230.
21089
21090 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21091
21092         * threadpool.c: fix problem (Mac only) when more than one asynchronous
21093         connect. Fixes bug #77020.
21094
21095 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
21096
21097         * class.c: fixed id assignement for nested interfaces (bug #77275).
21098         Added also better info for --print-vtable debugging.
21099
21100 2006-01-12  Martin Baulig  <martin@ximian.com>
21101
21102         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
21103         interfaces on-the-fly; fixes #76625.
21104
21105         * class-internals.h
21106         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
21107         don't need that anymore.
21108
21109 2006-01-12  Miguel de Icaza  <miguel@novell.com>
21110
21111         * socket-io.c
21112         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
21113         To avoid initing the nested_classes when not needed I turned the
21114         PeerCredData as a toplevel internal class, as it has to be shared
21115         anyways. 
21116
21117         Fixes the CASA issue.
21118
21119 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
21120
21121         * domain.c: Accessors for MonoJitInfo
21122
21123         * profiler-private.h: Add jitinfo to the end jit hook
21124
21125         * profiler.[ch]: Define new hooks, called after jitting which give
21126         the MonoJitInfo that was compiled
21127
21128 2006-01-10  Martin Baulig  <martin@ximian.com>
21129
21130         * class.c (mono_class_setup_events): Add support for generic
21131         classes; fixes #76440.
21132
21133 2006-01-06  Raja R Harinath  <rharinath@novell.com>
21134
21135         Fix #77160.
21136         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
21137         on passed-in method.
21138
21139 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
21140
21141         * object.c (mono_runtime_invoke_array): Add Nullable support.
21142
21143         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
21144
21145 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
21146
21147         * file-io.c: Don't consider sockets as directory and avoid an endless
21148         loop. Fix bug #76966.
21149
21150 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
21151
21152         * object.c (mono_nullable_init): New helper function.
21153         (mono_nullable_box): Ditto.
21154
21155         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
21156
21157         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
21158
21159         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
21160         
21161 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
21162
21163         * class.c (mono_class_is_assignable_from): Make T assignable to 
21164         Nullable<T>.
21165
21166 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
21167
21168         * appdomain.c: Bump corlib version to 46.
21169         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
21170         serialization purpose) and changed ves_icall_System_Reflection_
21171         Assembly_get_code_base signature to accept a boolean (to escape, or 
21172         not, the assembly code base).
21173
21174 2005-12-23  Dick Porter  <dick@ximian.com>
21175
21176         * icall.c: 
21177         * threads-types.h: 
21178         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
21179         CreateEvent icall now returns "created" boolean parameter.
21180
21181 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
21182
21183         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
21184         #76967.
21185
21186         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
21187         when attr_klass is an interface. Fixes #77045.
21188
21189 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
21190
21191         * marshal.c (emit_struct_conv): Fix previous patch.
21192         
21193         * marshal.c (emit_struct_conv): Add a check for fields with the same
21194         offset.
21195
21196 2005-12-20  Raja R Harinath  <rharinath@novell.com>
21197
21198         Fix regression in Mono.C5.
21199         * class.c (mono_class_create_generic): If 'klass' is an interface
21200         set up the interface offsets.
21201         (mono_class_is_assignable_from): Don't throw away generic arguments.
21202
21203 2005-12-19  Raja R Harinath  <rharinath@novell.com>
21204
21205         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
21206         type parameters.
21207
21208 2005-12-15  Raja R Harinath  <rharinath@novell.com>
21209
21210         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
21211         dead store.
21212         (do_mono_metadata_parse_generic_class): Don't pass the current
21213         generic context when parsing the type being instantiated: it
21214         cannot use it, anyway.
21215
21216         * loader.c (method_from_memberref): Don't inflate a signature if
21217         it doesn't contain any type parameters.
21218
21219 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
21220
21221         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
21222
21223 2005-12-14  Martin Baulig  <martin@ximian.com>
21224
21225         * class.c
21226         (mono_type_get_name_recurse): Don't return null for type
21227         parameters and open generic classes.
21228         (mono_class_setup_methods): Don't exclude generic instances.
21229         (mono_get_unique_iid): Use different IDs for different
21230         instantiations of the same generic type.
21231         (mono_class_setup_vtable): Only use setup_generic_vtable() for
21232         open generic instances; create a normal vtable for closed generic
21233         instances.
21234         (mono_class_setup_vtable_general): We're now also called for
21235         closed generic instances.
21236
21237         * reflection.c
21238         (mono_reflection_bind_generic_parameters): Correctly use
21239         mono_metadata_lookup_generic_inst() everywhere.
21240
21241 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
21242
21243         * object.c (mono_class_create_runtime_vtable): Call 
21244         mono_class_setup_vtable ().
21245
21246         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
21247         function.
21248         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
21249         #76959.
21250
21251         * loader.c (mono_loader_set_error_type_load): Print the type load
21252         warnings to the console so they are more visible to the user.
21253         (mono_loader_set_error_method_load): Ditto.
21254
21255         * reflection.c (ensure_runtime_vtable): Revert the last change as it
21256         is still broken.
21257         
21258         * reflection.c (ensure_runtime_vtable): Fix build.
21259
21260         * reflection.c (ensure_runtime_vtable): Disable an optimization which
21261         doesn't work in all cases.
21262
21263 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
21264
21265         * object.c (mono_array_new_full): Treat a single dimensional array
21266         with 0 lower bounds as an szarray. Fixes #76973.
21267
21268         * reflection.c (custom_attr_visible): Really fix this.
21269
21270 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
21271
21272         * reflection.c (custom_attr_visible): Allow nested public attributes
21273         as well.
21274
21275         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
21276         interface check.
21277
21278 2005-12-12  Raja R Harinath  <harinath@gmail.com>
21279
21280         * class.c (set_generic_param_owner): Delete.
21281         (mono_class_create_from_typedef): Don't set ->owner field of
21282         generic parameters to "param containers" of enclosing classes.
21283         * reflection.c (mono_reflection_initialize_generic_parameter):
21284         Likewise.
21285
21286 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
21287
21288         * reflection.c (custom_attr_visible): Fix build.
21289
21290 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
21291
21292         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
21293         private attributes.
21294         
21295         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
21296         handling of null parameter defaults.
21297
21298 2005-12-09  Raja R Harinath  <rharinath@novell.com>
21299
21300         * class.c (mono_class_from_generic_parameter): Don't set
21301         klass->generic_container.
21302         (my_mono_class_from_generic_parameter): Likewise.
21303
21304 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
21305
21306         * reflection.c (load_public_key): Fix a warning.
21307         (method_encode_code): Fix unaligned accesses.
21308
21309 2005-12-07  Martin Baulig  <martin@ximian.com>
21310
21311         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
21312
21313         * reflection.c
21314         (write_generic_param_entry): Encode our custom attrs.
21315
21316         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
21317
21318 2005-12-07  Martin Baulig  <martin@ximian.com>
21319
21320         * reflection.c (encode_new_constraint): Removed; we don't use the
21321         `NewConstraintAttribute' anymore.
21322
21323 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
21324
21325         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
21326         not fire a TypeResolve event when Assembly.GetType () is called.
21327
21328 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
21329
21330         Beginning of support for nullable types in the runtime. Parts of
21331         this patch are from Martin.
21332
21333         * appdomain.c (MONO_CORLIB_VERSION): Bump
21334
21335         * domain.c (mono_init_internal): get the nullable type
21336
21337         * class.c (mono_class_is_nullable): New method
21338         (mono_class_get_nullable_param): New mehod
21339         (mono_class_create_generic): In types T? set cast_class to T
21340
21341         * class-internals.h (MonoDefaults): new nullable default class
21342         (mono_class_get_nullable_param, mono_class_get_nullable_param):
21343         new methods.
21344
21345 2005-12-05  Raja R Harinath  <rharinath@novell.com>
21346
21347         * metadata.c (select_container): New.  Refactor code to select the
21348         appropriate GenericContainer given the type of generic parameter
21349         we are looking for.
21350         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
21351         not a MonoGenericContext.  Use select_container.  Update parameters.
21352         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
21353         and MONO_TYPE_MVAR.
21354         (unwrap_arrays): Remove duplicate tests.
21355         (find_generic_param): Rename from 'has_same_context'.  Now walks a
21356         generic instantiated class to find any arguments that are generic
21357         parameters.
21358         (mono_type_create_from_typespec_full): Use find_generic_param to
21359         avoid evicting some generic instantiations from the typespec
21360         cache.
21361
21362 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
21363
21364         * reflection.c: fixed writing of doubles on ARM FPA.
21365
21366 2005-12-02  Robert Jordan  <robertj@gmx.net>
21367
21368         * icall.c: Fixed EventInfo.ReflectedType (#76829).
21369
21370 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21371
21372         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
21373         least on SUSE 10 they are not the same (on debian, they are just the
21374         same thing).
21375
21376 2005-12-01  Raja R Harinath  <rharinath@novell.com>
21377
21378         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
21379         DeclaringType for VARs and MVARs.
21380         * class.c (set_generic_param_owner): Fix initialization of owner
21381         fields.
21382
21383 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21384
21385         * icall.c: fixed Enum.ToObject() to correctly convert the values.
21386
21387 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21388
21389         * threadpool.c: workaround for a bug that shows up on the Mac:
21390         select()+connect() on a blocking socket is not like it should
21391         be, so we proceed to connect() in that case, wasting the I/O
21392         threadpool thread until connect succeedes. Fixes bug #75436.
21393
21394 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21395
21396         * threadpool.c: fix typo when setting file descriptor states.
21397
21398 2005-11-28  Raja R Harinath  <rharinath@novell.com>
21399
21400         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
21401         * metadata.c (mono_metadata_parse_method_signature_full): Don't
21402         create a temporary signature container.
21403         (mono_metadata_parse_generic_param): Update to changes.
21404         (mono_type_create_from_typespec_full): Update to changes.
21405         * loader.c (method_from_memberref): Don't use a
21406         MonoGenericContainer while parsing a memberref signature.
21407         (method_from_methodspec): Remove dead-store of the 'container'
21408         variable.  It's overwritten before use.
21409
21410         * metadata.c (mono_type_create_from_typespec_full): Make debugging
21411         checks tighter.
21412         (mono_metadata_parse_generic_param): Likewise.
21413         * loader.c (find_method_in_class): Does not need a
21414         MonoGenericContainer.  Use 'mono_method_signature' rather than
21415         'mono_method_signature_full'.
21416         (find_method, mono_get_method_constrained, method_from_memberref):
21417         Update to changes.
21418
21419         * metadata.c (mono_type_create_from_typespec_full): Ensure that
21420         owner-less generic-parameters are never evicted from the typespec
21421         cache.
21422
21423         * loader.c (method_from_memberref): Don't use the current context
21424         when parsing signatures.
21425         (method_from_methodspec, mono_get_method_from_token): Update to changes.
21426
21427         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
21428         side-effects in g_assert.
21429         * loader.c (mono_get_method_from_token): Resolve klass earlier so
21430         that we don't potentially lose information.
21431
21432 2005-11-26  Dick Porter  <dick@ximian.com>
21433
21434         * icall.c:
21435         * threads.c: icalls to implement basic (ie, not named)
21436         System.Threading.Semaphore.
21437
21438 2005-11-24  Dick Porter  <dick@ximian.com>
21439
21440         * process.c
21441         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
21442         Use GetProcessId() if it's available.
21443
21444 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
21445
21446         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
21447
21448 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21449             Ankit Jain  <jankit@novell.com>
21450
21451         * loader.c (mono_get_method_from_token): Initialize 'method' field
21452         of all generic parameters before parsing the signature.  Remove
21453         code that "fixed"-up MVAR references.
21454
21455 2005-11-23  Ankit Jain  <jankit@novell.com>
21456
21457         * metadata.c (mono_metadata_has_generic_params):
21458         (mono_metadata_load_generic_param_constraints):
21459         (mono_metadata_load_generic_params): Move duplicate code ...
21460         (mono_metadata_get_generic_param_row): ... here. Returns the
21461         first row-id in GenericParam table for a given owner (token).
21462         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
21463         prototype.
21464
21465 2005-11-23  Raja R Harinath  <rharinath@novell.com>
21466             Ankit Jain  <jankit@novell.com>
21467
21468         * metadata.c (mono_metadata_class_equal): Pass signature_only when
21469         comparing VARs too.
21470         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
21471         type->data.generic_param only if the type is an MVAR.
21472         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
21473         leak owner-less VARs and MVARs into managed space.
21474
21475 2005-11-21  Martin Baulig  <martin@ximian.com>
21476
21477         * class-internals.h
21478         (MonoMethod): Moved the `generic_container' here from
21479         `MonoMethodNormal' since we now also need it for
21480         `MonoMethodPInvoke';
21481         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
21482         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
21483         an union containing both `MonoMethodNormal' and
21484         `MonoMethodPInvoke'.
21485
21486         * loader.c
21487         (mono_get_method_from_token): Allow implementing generic methods
21488         as interncalls.
21489
21490         * threads.c
21491         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
21492         icall.
21493
21494 2005-11-17  Dick Porter  <dick@ximian.com>
21495
21496         * icall.c: 
21497         * process.h: 
21498         * process.c: Split the Process Start_internal icall into
21499         ShellExecuteEx_internal and CreateProcess_internal, which are
21500         called depending on whether UseShellExecute is true.  Fixes bug
21501         76670.
21502
21503         * appdomain.c (MONO_CORLIB_VERSION): Incremented
21504
21505 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
21506
21507         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
21508         'msize' parameters, use the information in 'mspec' instead.
21509         (emit_object_to_ptr_conv): Ditto.
21510
21511         * marshal.c (emit_struct_conv): Handle explicit layout structs with
21512         fields out of order. Fixes #76733.
21513
21514 2005-11-17  Ankit Jain  <jankit@novell.com>
21515
21516         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
21517
21518 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
21519
21520         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
21521           bug #76575.
21522
21523 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21524
21525         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
21526         for types with non-auto layout. Fixes #76717.
21527
21528 2005-11-16  Ankit Jain  <jankit@novell.com>
21529
21530         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
21531         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
21532         if generic_context is null.
21533           (mono_metadata_generic_param_equal): param->owner can be null.
21534           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
21535         null.
21536
21537 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21538
21539         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
21540         the correct value.
21541
21542 2005-11-15  Martin Baulig  <martin@ximian.com>
21543
21544         * object.c (set_value): Use mono_class_from_mono_type() instead of
21545         the hack for generic instances; fixes #76136.
21546
21547 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
21548
21549         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
21550         fields.
21551
21552         * image.c (load_metadata_ptrs): Initialize the new fields.
21553
21554         * reflection.c (create_dynamic_mono_image): Ditto.
21555
21556         * reflection.c (build_compressed_metadata): Use the new fields.
21557
21558         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
21559         icall.
21560
21561         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
21562         icall.
21563         
21564 2005-11-15  Ankit Jain  <jankit@novell.com>
21565             Raja R Harinath  <harinath@gmail.com>
21566
21567         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
21568         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
21569         new per-generic_container cache if the cached MonoType's context matches
21570         the current context.
21571           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
21572         to the expected context.
21573           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
21574
21575 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21576
21577         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
21578         we changed the signature of an icall.
21579         * icall.c: Modify to mono_double_ParseImpl return true/false 
21580         depending on the success, instead of throwing the exception. This will
21581         help us in Double.TryParse methods.
21582         
21583 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
21584
21585         * marshal.c (emit_marshal_object): Throw an exception when
21586         marshalling 'object' instead of crashing. Fixes #76696.
21587
21588 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21589
21590         * class-internals.h: Add prototype for mono_type_get_full_name ().
21591
21592 2005-11-11  Dick Porter  <dick@ximian.com>
21593
21594         * threads.c (mono_thread_manage): Make sure the main thread has
21595         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21596
21597 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21598
21599         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21600         console about the missing type.
21601         (mono_loader_set_error_method_load): Ditto.
21602
21603 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21604
21605         * mono-config.c (mono_get_config_dir): Set the system defaults if
21606         none is specified.
21607
21608         * assembly.c (mono_set_dirs): New API entry point to set the
21609         assembly and the config directory in one call
21610
21611 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21612
21613         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21614         the ftnptr was created from a delegate in a domain other than the
21615         current domain. Fixes #75377.
21616
21617         * exception.h exception.c: Add mono_get_exception_not_supported ().
21618
21619 2005-11-08  Martin Baulig  <martin@ximian.com>
21620
21621         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21622
21623 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21624
21625         * security-manager.h: Added definitions to deal with strongname key 
21626         pairs bigger (and smaller) than 1024 bits.
21627         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21628         adjust wrt the public key length being used.
21629
21630 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21631
21632         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21633           Windows build (r51396-51397).
21634
21635 2005-11-03  Martin Baulig  <martin@ximian.com>
21636
21637         * class.c (mono_class_setup_vtable_general): Also add generic
21638         methods to the vtable; fixes #76581.
21639
21640 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21641
21642         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21643         sure that we lookup GetString method from the System.Text.Encoding
21644         class, not the derived class or we get an empty method.
21645
21646         Fixed class #76612.
21647
21648 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21649
21650         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21651         if it has been previously set (embedders). 
21652
21653         Make mono_set_rootdir available also on Unix.
21654
21655 005-10-24  Robert Jordan  <robertj@gmx.net>
21656
21657         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21658
21659 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21660
21661         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21662         only calls which are made to native code use this flag.
21663
21664         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21665
21666 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21667
21668         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21669         Add support for FieldBuilders.
21670
21671 2005-10-29  Martin Baulig  <martin@ximian.com>
21672
21673         * mono-debug.c
21674         (mono_debug_using_mono_debugger): New public method; returns
21675         whether we're running inside the debugger.
21676
21677 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21678
21679         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21680         for Method/Constructor/FieldBuilders.
21681
21682 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21683
21684         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21685         and fields as well.
21686
21687 2005-10-26  Martin Baulig  <martin@ximian.com>
21688
21689         * mono-debug-debugger.c
21690         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21691
21692 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21693
21694         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21695         integer to isspace.
21696
21697 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21698
21699         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21700         when passing valuetypes byref. Fixes #76502.
21701
21702 2005-10-19  Jackson Harper  <jackson@ximian.com>
21703
21704         * profiler.c: Don't put a . in front of types that are not in a
21705         namespace.
21706
21707 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21708
21709         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21710
21711 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21712
21713         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21714         #76436.
21715         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21716
21717 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21718
21719         * assembly.c metadata-internals.h icall.c: Define an additional
21720         parameter for mono_assembly_name_parse_full, so we can avoid creating
21721         S.R.AssemblyName.Version when no version info wasn't passed.
21722         
21723 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21724
21725         * class.c (mono_type_get_full_name): Reimplement method that was
21726         removed. 
21727
21728         * image.c: Some docs
21729
21730 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21731
21732         * profiler.c (output_newobj_profile): Fix printing of Total memory
21733         on x86.
21734
21735 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21736
21737         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21738
21739 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21740
21741         * threads.c: remove debug output.
21742
21743 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21744
21745         * threads.c (mono_thread_manage): Fix crashes if more than 64
21746         threads need to be aborted. Hopefully fixes #75899.
21747
21748         * assembly.c (mono_stringify_assembly_name): New helper function.
21749
21750         * class.c: Use mono_stringify_assembly_name instead of the similar
21751         static function.
21752
21753         * assembly.h assembly.c: Add support for calling a postload search 
21754         hook if an assembly cannot be loaded.
21755
21756         * appdomain.c: Register new search hooks which call the AssemblyResolve
21757         events in AppDomain. Fixes #75231
21758
21759 2005-10-07  Martin Baulig  <martin@ximian.com>
21760
21761         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21762         methods without debug info.
21763
21764 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21765
21766         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21767         wrappers.
21768
21769 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21770
21771         * file-io.c: now that we return symlinks, use lstat and, when the file
21772         is a symbolic link, stat, to get the file attributes. Also avoid the
21773         conversion to/from utf16/external.
21774
21775 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21776
21777         * class.c (mono_class_layout_fields): Compute klass->has_references
21778         correctly if an embedded valuetype is not yet initialized. Fixes
21779         #76331.
21780
21781 2005-10-04  Martin Baulig  <martin@ximian.com>
21782
21783         * metadata.c
21784         (mono_metadata_load_generic_param_constraints): New public
21785         function; splitted the constraints loading out from
21786         mono_metadata_load_generic_params().
21787
21788         * class.c (mono_class_create_from_typedef): Call
21789         mono_metadata_load_generic_param_constraints() after setting up
21790         the type and creating our parent; fixes #75329.
21791
21792 2005-10-04  Martin Baulig  <martin@ximian.com>
21793
21794         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21795         non-dynamic parent classes.
21796
21797 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21798
21799         * file-io.c : win32 build fix (ETXTBSY seems not found).
21800
21801 2005-10-04  Martin Baulig  <martin@ximian.com>
21802
21803         * reflection.c
21804         (mono_image_get_methodspec_token): Make the cache actually work;
21805         fixes #75974.
21806
21807 2005-10-04  Martin Baulig  <martin@ximian.com>
21808
21809         * class.c (mono_class_name_from_token): Removed the unneccessary
21810         `MonoGenericContext *' argument.
21811
21812 2005-10-04  Martin Baulig  <martin@ximian.com>
21813
21814         * loader.c
21815         (method_from_methodspec): Make the caching work again; fixes the
21816         performance regression from #76262.
21817
21818 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21819
21820         * file-io.c:
21821         * file-io.h:
21822         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21823         GetFileSystemEntries that performs the same work but without going
21824         into io-layer, locking, etc.
21825
21826 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21827
21828         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21829         ThreadState_Stopped as well. Fixes #76047.
21830
21831 2005-09-29  Martin Baulig  <martin@ximian.com>
21832
21833         * class.c
21834         (inflate_generic_context): If the new context has a `gmethod', set
21835         its `container' that that gmethod's `container'.
21836
21837         * metadata.c
21838         (mono_metadata_parse_generic_param): Simplify things;
21839         `generic_container = generic_context->container;' is just fine.
21840
21841         * loader.c (method_from_methodspec): Code cleanups.
21842
21843 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21844
21845         * decimal.c: fix warning (and let gcc generate correct
21846         code on ARM with optimizations).
21847
21848 2005-09-28  Martin Baulig  <martin@ximian.com>
21849
21850         * loader.c
21851         (method_from_memberref): Added `MonoGenericContext *class_context'
21852         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21853         (method_from_methodspec): If we're a memberref, use the enclosing
21854         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21855
21856 2005-09-28  Martin Baulig  <martin@ximian.com>
21857
21858         * object.c (mono_runtime_invoke_array): Added support for
21859         MONO_TYPE_GENERICINST; fixes #75917.
21860
21861 2005-09-27  Martin Baulig  <martin@ximian.com>
21862
21863         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21864         `k->byval_arg.type' to determine the actual type.
21865
21866         * loader.c (method_from_methodspec): Removed some hacks.
21867
21868 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21869
21870         * class-internals.h (mono_field_is_deleted): Do the test for
21871         rtspecialname before we check the actual name of the field. This
21872         prevents us from dereferencing a pointer into the string table,
21873         saving us from accessing a few pages
21874
21875         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21876         macros. This will allow a deadlock debugger to easily be plugged
21877         in.
21878
21879 2005-09-27  Martin Baulig  <martin@ximian.com>
21880
21881         * loader.c (method_from_methodspec): Create a "signature"
21882         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21883
21884 2005-09-27  Martin Baulig  <martin@ximian.com>
21885
21886         * class.c
21887         (inflate_generic_class): Correctly set the new context's
21888         container.
21889
21890         * loader.c
21891         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21892         instead of a `MonoGenericContext *'.
21893         (mono_method_signature_full): Take a `MonoGenericContainer *'
21894         instead of a `MonoGenericContext *'.
21895
21896         * metadata.c
21897         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21898         instead of a `MonoGenericContext *'.
21899         (mono_metadata_parse_method_signature_full): Likewise.
21900
21901 2005-09-26  Martin Baulig  <martin@ximian.com>
21902
21903         * class.c
21904         (mono_class_from_generic_parameter): Set `klass->generic_container'
21905         (mono_class_from_generic_parameter): Likewise.
21906         (mono_bounded_array_class_get): We inherit the generic container
21907         from the element class.
21908
21909         * loader.c
21910         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21911         argument rather than computing it here.
21912         (method_from_memberref): Correctly set the generic context before
21913         parsing the signature.  Fixes #75681.
21914
21915 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21916
21917         * object.c (mono_class_has_special_static_fields): Fix warnings.
21918
21919 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21920
21921         * assembly.c: Add parse_public_key function, to
21922         par the public keys. Also added mono_assembly_name_parse_full,
21923         to define it the parsed key should be freed or not.
21924         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21925         to parse a long format assembly name.
21926         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21927         private, since calling it to preserve the key requires
21928         freeing it manually.
21929         
21930 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21931
21932         * locales.c : removed HAVE_ICU part.
21933
21934 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21935
21936         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21937         field_is_special_static if the klass has no special static fields.
21938
21939         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21940         (MonoCachedClassInfo): Likewise.
21941
21942         * object.c (mono_class_has_special_static_fields): New helper function.
21943
21944 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21945
21946         * class.c (mono_class_create_from_typedef): Don't call 
21947         interfaces_from_typedef_full for enums.
21948         (mono_class_create_from_typedef): Compute the base types of enums directly
21949         without calling mono_class_setup_fields ().
21950         (mono_class_find_enum_basetype): New helper function.
21951
21952         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21953         one place inside the string heap.
21954         
21955 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21956
21957         * class.c: locking fixes, code cleanups, some docs added.
21958         Allocate some data structures in the image mempool.
21959
21960 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21961
21962         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21963         the example code.
21964         
21965 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21966
21967         * class-internals.h, class.c, reflection.c: reduce memory taken by
21968         MonoClass.
21969
21970 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21971
21972         * metadata.c, metadata.h, loader.h: documentation updates, code and
21973         API cleanups.
21974
21975 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21976
21977         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21978         the example code.
21979
21980         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21981         page faults caused by the runtime while reading metadata.
21982
21983 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21984
21985         * socket-io.c: the field names were changed 3 months ago and no one
21986         realized until bug #76077 got filed!
21987
21988 2005-09-20  Martin Baulig  <martin@ximian.com>
21989
21990         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21991
21992 2005-09-20  Martin Baulig  <martin@ximian.com>
21993
21994         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21995         write the rank into the class entry.
21996
21997 2005-09-20  Martin Baulig  <martin@ximian.com>
21998
21999         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
22000
22001 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
22002
22003         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22004
22005         * icall.c (custom_attrs_defined_internal): New icall.
22006
22007         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
22008         function.
22009         (mono_custom_attrs_construct_by_type): New helper function.
22010
22011 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
22012
22013         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
22014         terminate the resulting string. Fixes #76123.
22015
22016 2005-09-16  Martin Baulig  <martin@ximian.com>
22017
22018         * mono-debug.c
22019         (mono_debug_add_method): Ignore inflated methods for the moment.
22020
22021 2005-09-14  Martin Baulig  <martin@ximian.com>
22022
22023         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
22024
22025 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
22026
22027         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
22028         return a success/failure indication.
22029         (mono_metadata_interfaces_from_typedef_full): Ditto.
22030         (get_constraints): Ditto.
22031
22032 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
22033
22034         * marshal.c (emit_marshal_array): Fix handling of null arrays.
22035         
22036         * marshal.c (emit_marshal_array): Add support for returning string
22037         arrays from delegates. Fixes #76063.
22038
22039         * marshal.c: Use the emit_ldloc/stloc macros where possible.
22040
22041 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
22042
22043         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
22044         icall.
22045
22046 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
22047
22048         * reflection.c icall.c: Fix after mono_get_exception_type_load
22049         signature change.
22050
22051         * assembly.c (mono_assembly_get_assemblyref): New helper function.
22052         (mono_assembly_load_reference): Use the new helper.
22053
22054         * class-internals.h (MonoLoaderError): New structure containing 
22055         information about type loading errors.
22056
22057         * class-internals.h loader.c: Add APIs to store per-thread loader
22058         error information.
22059
22060         * loader.c class.c: Set the loader error if needed.
22061
22062         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
22063
22064 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
22065
22066         * decimal.c: fixed to handle the broken ARM fp format.
22067
22068 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
22069
22070         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
22071         broken.
22072
22073 2005-09-06  Martin Baulig  <martin@ximian.com>
22074
22075         * domain.c (supported_runtimes): Added v2.0.50727.
22076
22077 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
22078
22079         * culture-info.h: reduce the size of some structures.
22080
22081 2005-09-05  Martin Baulig  <martin@ximian.com>
22082
22083         Reflect latest API changes in the August CTP.
22084
22085         * icall.c
22086         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
22087         ("MonoType.HasGenericArguments"): Removed.
22088         ("MonoMethod.BindGenericParameters"): Renamed to
22089         "MakeGenericMethod".
22090         ("MethodBuilder.BindGenericParameters"): Renamed to
22091         "MakeGenericMethod".    
22092
22093 2005-09-05  Martin Baulig  <martin@ximian.com>
22094
22095         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
22096
22097 2005-09-05  Martin Baulig  <martin@ximian.com>
22098
22099         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22100
22101         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
22102         generic_container is non-NULL.
22103
22104 2005-09-05  Martin Baulig  <martin@ximian.com>
22105
22106         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22107
22108         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
22109
22110 2005-08-29  Michal Moskal  <malekith@nemerle.org>
22111
22112         * reflection.c (encode_locals,
22113         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
22114         for large generic types.
22115
22116 2005-09-05  Martin Baulig  <martin@ximian.com>
22117
22118         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22119
22120         * class.c (mono_dup_array_type): New public method.
22121         (mono_metadata_signature_deep_dup): New public method.
22122         (dup_type): Correctly duplicate array and function types.
22123
22124 2005-09-05  Martin Baulig  <martin@ximian.com>
22125
22126         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22127
22128         * reflection.c (get_default_param_value_blobs): Handle generic types
22129         and generic methods.
22130
22131 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
22132
22133         * class.c: Fixed error reporting (method/class were inversed) for 
22134         inheritance demands.
22135         * security-manager.c|h: Added the AppDomain when calling the managed
22136         System.Security.SecurityManager.InheritanceDemand method.
22137
22138 2005-09-01  Raja R Harinath  <rharinath@novell.com>
22139
22140         * reflection.c (encode_marshal_blob): 'marshaltype' and
22141         'marshaltyperef' are alternate sources for the custom marshaler
22142         name.
22143
22144 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
22145
22146         * class.c: fix creation of array classes with rank == 1
22147         (patch by Ankit Jain <jankit@novell.com>).
22148
22149 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
22150
22151         * object.c: fix check for creating the bound data for arrays vs
22152         szarrays.
22153
22154 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22155
22156         * object.c: configuration file name is now based on the executable name,
22157         not the image name. Fixes bug #75931.
22158
22159 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
22160
22161         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
22162         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
22163
22164 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
22165
22166         * rand.c: Use wincrypt.h instead of WinCrypt.h.
22167
22168 2005-08-24  Ankit Jain  <jankit@novell.com>
22169             Raja R Harinath  <rharinath@novell.com>
22170
22171         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
22172           called by it recursively.
22173           (mono_class_init): Remove special case in pending_init handling, since it's
22174           superseded by the fix to mono_class_from_typeref.
22175
22176 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
22177
22178         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
22179         BROKEN_THREAD_START stuff.
22180
22181 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
22182
22183         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
22184         trampoline.
22185
22186         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
22187         
22188         * object.c (mono_delegate_ctor): Replace the original function address with
22189         a delegate trampoline.
22190
22191 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
22192
22193         * icall.c: add boolean argument to base64_to_byte_array and 
22194         InternalFromBase64String to control whether a whitespace-only string
22195         is allowed (or should casue a FormatException to be thrown). We need
22196         this as the behavior has changed between MS.NET 1.x and 2.0, and we
22197         to match the MS behaviour in both profiles.
22198         * appdomain.c: Bump corlib version.
22199
22200 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22201
22202         This patch implements a big portion of publisher policy
22203         support, used to bind assembly versions and redirect
22204         one assembly from version A to version B.
22205
22206         * assembly.c:
22207         New GSList loaded_assembly_bindings, for storing the cached
22208         assembly bindings.
22209         (assembly_binding_maps_name): New static function for checking if a 
22210         assembly binding information maps an assembly name.
22211         (mono_assembly_binding_info_free): New function for freeing
22212         assembly binding information resources.
22213         (get_publisher_policy_info): New static function for retrieving 
22214         assembly binding information from a MonoImage.
22215         (compare_versions): New static function for comparing an assembly
22216         binding information data and the version of an assembly name.
22217         (check_policy_versions): New static function for checking if an
22218         assembly binding info mapping an assembly name is valid for it.
22219         (mono_assembly_load_publisher_policy): New static function for
22220         loading the 'policy.major.minor.MyAssembly' image for an assembly
22221         with an assembly name 'aname'.
22222         (mono_assembly_bind_version): New static function for updating
22223         assembly redirection.
22224         (mono_assembly_apply_binding): New static function for applying
22225         assembly binding.
22226         (search_binding_loaded): New static function for searching 
22227         loaded assembly binding infos in the cache domain.
22228         (mono_assembly_load_full): Don't apply assembly binding for
22229         reflection only assemblies.
22230
22231         * metadata-internals.h: Add MonoAssemblyBindingInfo,
22232         which contains information about assembly binding. Also
22233         declare signature for mono_config_parse_publisher_policy ()
22234         function, used to retrieve pub policy info.
22235         
22236         * mono-config.c:
22237         (publisher_policy_start): New static function used to parse publisher 
22238         policy config files.
22239         (publisher_policy_parser): New static MonoParseHandler containing 
22240         the functions used when parsing config files.
22241         (mono_config_parse_publisher_policy): New function for parsing
22242         publisher policy files.
22243         
22244 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
22245
22246         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
22247
22248         * marshal.c (mono_delegate_free_ftnptr): Ditto.
22249
22250         * object.c (mono_get_addr_from_ftnptr): New helper function.
22251
22252         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
22253
22254         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22255
22256 2005-08-19  Dick Porter  <dick@ximian.com>
22257
22258         * threads.c, threads.h, appdomain.c, appdomain.h,
22259         profiler-private.h, monitor.c, object.c, object-internals.h,
22260         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
22261         store the thread ID, so it can hold a 64 bit value if needed.
22262
22263 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
22264
22265         * reflection.c (mono_reflection_create_dynamic_method): Store the
22266         handle class into the method references as well so ldtoken works in
22267         dynamic methods.
22268
22269         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
22270         types.
22271
22272 2005-08-19  Ankit Jain <jankit@novell.com>
22273
22274         Fix #75847.
22275         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
22276           here rather than using the method signature of a arbitrary function
22277           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
22278           two arguments.
22279           Hack done with Harinath.
22280
22281 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22282
22283         * threadpool.c: disable printing stack traces when we get a exception
22284         in a threadpool thread. I need to do more testing to figure out which
22285         cases actually print this. Fixes bug #75828.
22286
22287 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22288
22289         * icall.c: there might be ignored whitespace after the last '='. This
22290         fixes length computation and bug #75840.
22291
22292 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
22293
22294         * assembly.c (mono_assembly_load_full): Consider .exe extension as
22295         well. Fixes #75809.
22296
22297         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
22298         #75784.
22299         
22300         * reflection.c (create_custom_attr_data): Ditto.
22301
22302 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
22303
22304         * locales.c, culture-info.h : removed RegionLCIDMap.
22305         * culture-info-tables.h : regenerated.
22306
22307 2005-08-16  Martin Baulig  <martin@ximian.com>
22308
22309         * class.c (mono_type_get_name_recurse): Small fix.
22310
22311 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
22312
22313         * locales.c : indentation fixie.
22314
22315 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
22316
22317         * object-internals.h,
22318           locales.h,
22319           locales.c,
22320           culture-info.h,
22321           icall.c : added RegionInfo table support.
22322         * culture-info-table.h : regenerated for region support.
22323
22324 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
22325
22326         * reflection.c (resolve_object): handle all kinds of MonoMethod
22327         including generic ones
22328
22329 2005-08-12  Ankit Jain <jankit@novell.com>
22330
22331         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
22332           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
22333
22334 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
22335
22336         * process.c: Don't close a thread handle when it's NULL. This is a
22337         workaround for bug #75733.
22338
22339 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
22340
22341         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
22342
22343 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
22344
22345         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
22346
22347 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22348
22349         * threadpool.c: if a work item in the thread pool has a callback that
22350         catches a exception, don't propagate it after invoking the callback.
22351         Fixes bug #75336.
22352
22353 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
22354
22355         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
22356
22357         * class-internals.h (MonoCachedClassInfo): Add some new fields.
22358
22359         * class.c (mono_class_init): Load field info lazily in the AOT case.    
22360
22361         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
22362
22363 2005-08-03  Ankit Jain  <jankit@novell.com>
22364
22365         Fix #75683.
22366         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
22367           PInvoke calling convention is 0.
22368
22369 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
22370
22371         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
22372         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
22373
22374 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
22375
22376         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
22377         to handle threads not started by the GC (patch by Michael Meeks
22378         <michael.meeks@novell.com>).
22379
22380 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
22381
22382         * reflection.c: Make buffer used in emitting types larger for some
22383         big generic types (patch by Michal Moskal).
22384
22385 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
22386
22387         * mono-debug.c: Fix some (not all) alignment problems.
22388
22389 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22390
22391         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
22392         Invoke mono_image_load_from_data_full passing the refonly
22393         parameter.
22394
22395         * assembly.c
22396         (mono_assembly_open_from_bundle): Add the refonly argument, 
22397         in order to pass it to other methods it calls to.
22398         (do_mono_assembly_open): Add the refonly argument, in order 
22399         to pass it to other methods it calls to.
22400         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
22401         the refonly parameter to it.
22402
22403         * image.c: Add loaded_images_refonly_hash and
22404         loaded_images_refonly_guid_hash to cache the reflection
22405         only loaded images.
22406         (mono_images_init): Initialize the hash tables used for
22407         caching the reflection only images.
22408         (load_modules): Invoke mono_image_open_full passing the refonly
22409         parameter to load the modules the correct way.
22410         (build_guid_table): Add the refonly argument, to re-build the 
22411         correct hash table.
22412         (do_mono_image_open): Added the refonly argument, in order to
22413         define it for the loaded image.
22414         (mono_image_loaded_full): New function, which receives an
22415         additional parameter to look for the image in the refonly or
22416         non-refonly section.
22417         (mono_image_loaded): Updated, using mono_image_loaded_full.
22418         (mono_image_loaded_by_guid_full): The same case that happens
22419         with mono_image_loaded_full.
22420         (mono_image_loaded_by_guid): Likewise.
22421         (register_image): Use the ref_only variable inside MonoImage
22422         to decide in which hash table store the current image.
22423         (mono_image_open_from_data_full): Rename
22424         mono_image_open_from_data to mono_image_open_from_data_full,
22425         adding the refonly argument, to define the ref_only variable 
22426         inside MonoImage.
22427         (mono_image_open_from_data): Return 
22428         mono_image_open_from_data_full.
22429         (mono_image_open_full): Rename mono_image_open to
22430         mono_image_open_full, receiving the new refonly argument,
22431         to pass it to inner methods.
22432         (mono_pe_file_open): Update this function, to open
22433         a MonoImage as a non-refonly image.
22434         (mono_image_close): Use the refonly variable inside
22435         MonoImage to remove the image from the correct caches.
22436
22437         * image.h: Add the signatures of mono_image_open_full,
22438         mono_image_open_from_data_full, mono_image_loaded_full,
22439         mono_image_loaded_by_guid_full.
22440
22441         * metadata-internals.h: Add the ref_only field to 
22442         MonoImage.
22443         
22444 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22445
22446         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
22447         Fix the last behavior, which used to load the assemblies and
22448         extract MonoReflectionAssemblyName information, instead of
22449         extract it from the metadata tables. Needed for Reflection
22450         Only assemblies.
22451         
22452 2005-07-29  Martin Baulig  <martin@ximian.com>
22453
22454         * mono-debug-debugger.c
22455         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
22456         not initialized.
22457
22458         * mono-debug.c
22459         (mono_debug_address_from_il_offset): Check whether we have
22460         debugging support before attempting to take the lock.
22461         (mono_debug_source_location_from_address): Likewise.
22462         (mono_debug_source_location_from_il_offset): Likewise.
22463         (mono_debug_il_offset_from_address): Likewise.
22464         (mono_debug_address_from_il_offset): Likewise.
22465
22466 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
22467
22468         * class.c (mono_class_from_name_case): Add support for dynamic images.
22469         Fixes #75650.
22470
22471         * object.c (mono_class_compute_gc_descriptor): Add a workaround
22472         for #75479.
22473
22474 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22475         
22476         * reflection.c (mono_method_get_object): Fix warning.
22477
22478 2005-07-28  Martin Baulig  <martin@ximian.com>
22479
22480         * mono-debug.c
22481         (mono_debug_add_wrapper): Also write the wrapper type.
22482
22483 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
22484
22485         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
22486         
22487         * class.c (mono_class_init): Avoid reading nested classes if the AOT
22488         data indicates the class has none.
22489
22490 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
22491
22492         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
22493         loader lock with the debugger lock. Prevents deadlocks for beagle.
22494
22495         Beagle can now run on an smp box for a weekend without any
22496         issues. Woohoo!
22497
22498 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
22499
22500         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
22501         in a module. Fixes #75629.
22502
22503 2005-07-26  Martin Baulig  <martin@ximian.com>
22504
22505         * mono-debug.c (mono_debug_add_wrapper): New static method.
22506         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
22507         interncall or a wrapper.
22508
22509         * mono-debug.h (MonoDebugWrapperData): New public typedef.
22510         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
22511         (MONO_DEBUGGER_VERSION): Bump to 51.
22512
22513         * mono-debug-debugger.c
22514         (mono_debugger_add_type): Removed this empty function.
22515         (mono_debugger_add_method): Likewise.
22516
22517 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
22518
22519         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
22520         before accessing method->slot.
22521
22522 2005-07-21  Jb Evain  <jbevain@gmail.com>
22523
22524         * reflection.c (method_encode_clauses/class): Handle filters clauses.
22525         Fixes #75010.
22526
22527 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
22528
22529         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
22530         #75587.
22531
22532 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
22533
22534         * image.h image.c: Add mono_image_get_guid () API function.
22535
22536 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
22537
22538         There were issues when multiple threads tried to load
22539         assemblies. A deadlock was created between assemblies_mutex and
22540         mono_domain_assemblies_lock. This fixes the issue by making the
22541         assembly ref counting be lock free. See bug 75586.
22542         
22543         * image.c (mono_image_close): The add ref function here was using
22544         Interlocked operations while the unref was using a mutex and a
22545         --. I don't think this was ever a bug that would be exposed in a
22546         non-pendantic way (ie, by an embedder doing a ref on one thread
22547         and an unref on another), but for the sake of correctness, this is
22548         now Interlocked.
22549
22550         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
22551         (mono_assembly_load_reference): Call mono_assembly_addref rather
22552         than touching the refcount ourselves.
22553         (mono_assembly_close): Use InterlockedDecrement to unref the
22554         assembly. Don't acquire the lock unless it is actually needed.
22555
22556 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22557
22558         * class.c (mono_class_layout_fields): Fix calculation of has_references
22559         for generic types.
22560
22561 2005-07-12  Martin Baulig  <martin@ximian.com>
22562
22563         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22564
22565         * metadata.c
22566         (mono_type_hash): Provide better hashing for generic instances.
22567         (mono_generic_inst_hash): Improve hashing.
22568         (mono_generic_class_hash): Likewise.
22569
22570         * reflection.c (mymono_metadata_type_hash): Improve hashing for
22571         generic instances.
22572
22573 2005-07-12  Martin Baulig  <martin@ximian.com>
22574
22575         * reflection.c (mono_reflection_create_runtime_class): Remove the
22576         hack for generic type definitions and non-`Run' assemblies.
22577         (mono_reflection_bind_generic_parameters): Also use
22578         `klass->wastypebuilder' to check for TypeBuilders.
22579
22580 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22581
22582         * class.c (mono_class_layout_fields): Fix calculation of has_references
22583         for generic types.
22584
22585         * class.c (inflate_generic_class): Fix a leak.
22586         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
22587         for generic types.
22588
22589 2005-07-11  Martin Baulig  <martin@ximian.com>
22590
22591         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22592         on error.
22593
22594 2005-07-11  Martin Baulig  <martin@ximian.com>
22595
22596         * loader.c (find_method): Also lookup in
22597         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22598
22599 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22600
22601         * appdomain.c (mono_domain_unload): Don't free the error message
22602         before passing it to mono_get_exception_...
22603
22604         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22605         
22606 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22607
22608         * threads.c: try to better guess an available RT signal (bug #75387).
22609
22610 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22611
22612         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22613         and CACHE_OBJECT.
22614
22615 2005-07-07  Martin Baulig  <martin@ximian.com>
22616
22617         * class.c (mono_type_get_name_full): Return NULL for
22618         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22619         fixes #75408.
22620
22621 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22622
22623         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22624         exit the appdomain as well being aborted.
22625
22626         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22627         change back to the root domain after calling managed code. This enables
22628         appdomains using threadpools to be unloaded.
22629
22630 2005-07-07  Martin Baulig  <martin@ximian.com>
22631
22632         * class-internals.h
22633         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22634         into `MonoDynamicGenericClass' since we only need it for dynamic
22635         types.
22636
22637         * reflection.c (mono_class_bind_generic_parameters): We don't need
22638         to compute the `parent' here.
22639
22640 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22641
22642         * culture-info-table.h : regenerated.
22643
22644 2005-07-06  Martin Baulig  <martin@ximian.com>
22645
22646         * icall.c
22647         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22648
22649         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22650
22651 2005-07-06  Martin Baulig  <martin@ximian.com>
22652
22653         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22654         we're doing a signature-only comparision; fixes #74945.
22655
22656 2005-07-06  Martin Baulig  <martin@ximian.com>
22657
22658         * class-internals.h (MonoGenericClass): Moved some things out into
22659         a new `MonoInflatedGenericClass' type.  
22660         (MonoInflatedGenericClass): New type; the `klass' of a
22661         `MonoGenericClass' is now computed lazyly in
22662         mono_get_inflated_generic_class().      
22663
22664         * class.c (mono_get_inflated_generic_class): New public function.
22665         (mono_class_inflate_generic_method): Removed the unused
22666         `MonoClass *' argument.
22667         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22668         all the methods.
22669         (mono_class_create_generic): Make this static and merge it with
22670         mono_class_create_generic_2(); we're now called automatically from
22671         mono_get_inflated_generic_class().
22672
22673         * loader.c (mono_method_signature): Call
22674         mono_get_inflated_method() here.
22675
22676 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22677
22678         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22679         type of fields with RVA.
22680
22681         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22682         for this pseudo class.
22683         (my_mono_class_from_generic_parameter): Likewise.
22684         (mono_class_init): Allow interfaces to have cctors.
22685
22686 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22687
22688         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22689         lazily for AOT methods.
22690
22691 2005-07-05  Martin Baulig  <martin@ximian.com>
22692
22693         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22694         returns FALSE for a successful match, not TRUE.
22695
22696 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22697
22698         * loader.c (mono_method_get_index): Optimize this a bit.
22699
22700 2005-07-04  Martin Baulig  <martin@ximian.com>
22701
22702         * class.c
22703         (class_compute_field_layout): Move the check for generic type
22704         definitions into mono_class_layout_fields().  Fixes #74684.
22705         (mono_class_from_generic_parameter): Correctly compute
22706         `klass->parent'; fixes #75457.
22707
22708         * reflection.c (register_assembly, register_module): Make sure
22709         `domain->rejobject_hash' is already created.
22710
22711 2005-07-02  Martin Baulig  <martin@ximian.com>
22712
22713         * class-internals.h
22714         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22715         `MonoDynamicGenericClass'.      
22716
22717 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22718
22719         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22720         returned by a field getter is null, since null is a valid value.
22721
22722 2005-07-01  Martin Baulig  <martin@ximian.com>
22723
22724         * reflection.c (mono_reflection_generic_class_initialize): Update
22725         the `dgclass->fields [i].parent' to the correct class.
22726         (mono_image_get_fieldref_token): Use the declaring type, not the
22727         reflected type.
22728
22729 2005-07-01  Martin Baulig  <martin@ximian.com>
22730
22731         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22732
22733 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22734
22735         * threads.c (thread_cleanup): assert that thread != NULL
22736         (wait_for_tids_or_state_change): We were using the wrong variable
22737         when accessing wait->threads. `i' was always out of the bounds of
22738         the array.
22739
22740 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22741
22742         * loader.c: map user32 and kernel32 to libMonoSupportW
22743
22744 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22745
22746         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22747
22748 2005-06-28  Martin Baulig  <martin@ximian.com>
22749
22750         * loader.c (method_from_methodspec): Fix #75334.
22751
22752 2005-06-28  Martin Baulig  <martin@ximian.com>
22753
22754         Fix #74953 - Arrays now implement the generic IList<T> interface
22755         on the 2.0 platform.
22756
22757         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22758
22759         * reflection.c (mono_class_bind_generic_parameters): New public
22760         function; similar to mono_reflection_bind_generic_parameters(),
22761         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22762
22763         * domain.c (mono_init_internal): Try to initialize.
22764         `mono_defaults.generic_array_class' here; this'll only succeed if
22765         we're using the 2.0 corlib.
22766
22767         * icall.c
22768         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22769         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22770         (mono_lookup_internal_call): Added support for nested classes.
22771
22772         * loader.c
22773         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22774         we're an interncall and have generic arguments.
22775
22776         * class.c
22777         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22778         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22779         instance of System.Array.InternalArray<T> for arrays, so they
22780         implement the generic IList<T> interface.
22781
22782 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22783
22784         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22785         (chastamar@yahoo.com). Fixes #75374.    
22786
22787 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22788
22789         * culture-info-table.h: regenerated.
22790
22791 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22792
22793         * icall.c: handle spaces correctly for base64 strings.
22794
22795 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22796
22797         * *.c: Kill some warnings.
22798
22799 2005-06-23  Duncan Mak  <duncan@novell.com>
22800
22801         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22802         that this builds on Solaris 10 (x86).
22803
22804 2005-06-23  Martin Baulig  <martin@ximian.com>
22805
22806         * class.c
22807         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22808         generic type definitions.
22809
22810 2005-06-23  Martin Baulig  <martin@ximian.com>
22811
22812         Fix #75331.
22813
22814         * metadata.c (mono_class_get_overrides): Renamed to
22815         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22816         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22817         pass it to mono_get_method_full().
22818
22819 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22820
22821         * reflection.c (mono_reflection_create_runtime_class): take the
22822         mono_domain_lock in this method. Prevents deadlocks
22823
22824 2005-06-22  Martin Baulig  <martin@ximian.com>
22825
22826         * loader.c (method_from_methodspec): Fix #75330.
22827
22828 2005-06-22  Martin Baulig  <martin@ximian.com>
22829
22830         * reflection.c (type_get_qualified_name): Use
22831         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22832         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22833         argument; use it if we don't have an assembly name.
22834
22835 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22836
22837         * object.c: In mono_message_init, set "copy out" flag for in
22838         parameters with the [Out] flag.
22839
22840 2005-06-21  Martin Baulig  <martin@ximian.com>
22841
22842         * class.c
22843         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22844         and MONO_TYPE_PTR.
22845
22846 2005-06-21  Martin Baulig  <martin@ximian.com>
22847
22848         * class.c (mono_class_init): Don't initialize `class->fields' for
22849         generic instances since they're initialized again in
22850         compute_field_layout(). 
22851         (compute_field_layout): Set the field's `generic_info' here; fix
22852         #75320. 
22853
22854 2005-06-21  Martin Baulig  <martin@ximian.com>
22855
22856         * class-internals.h
22857         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22858
22859         * metadata.c (mono_metadata_generic_method_equal): Also
22860         distinguish the `generic_class'; fixes #75334.
22861
22862 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22863
22864         * domain.c:
22865         * appdomain.c:
22866         * domain-internals.h:
22867         * reflection.c: 'domain_assemblies' field is now protected by its own
22868         lock. Don't call into managed code to run the AssemblyLoad event if we
22869         now there are no registered delegates for it.
22870
22871 2005-06-20  Martin Baulig  <martin@ximian.com>
22872
22873         * class.c (mono_class_is_assignable_from): Use a custom version of
22874         mono_class_has_parent() to make things work for generic instances;
22875         fix #75300.
22876
22877 2005-06-20  Martin Baulig  <martin@ximian.com>
22878
22879         * loader.c (method_from_methodspec): Apply a patch from
22880         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22881
22882 2005-06-20  Martin Baulig  <martin@ximian.com>
22883
22884         * class.c (mono_class_init): Reverted Zoltan's last change; it
22885         breaks generics.
22886
22887 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22888
22889         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22890
22891 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22892
22893         * socket-io.c: fix the index in the socket array for writable/error
22894         sockets. Fixes bug #75306.
22895
22896 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22897
22898         * class.c (mono_class_init): Allow interfaces to have static ctors.
22899
22900 2005-06-17  Martin Baulig  <martin@ximian.com>
22901
22902         * loader.c (method_from_methodspec): Use `context->container' when
22903         parsing the `gmethod->inst'.
22904
22905 2005-06-17  Martin Baulig  <martin@ximian.com>
22906
22907         * class.c (mono_type_get_name_recurse): Don't add the assembly
22908         name for type arguments.
22909
22910 2005-06-15  Martin Baulig  <martin@ximian.com>
22911
22912         * reflection.c (mono_image_get_inflated_method_token): Encode
22913         correct klass; fixes #75260.
22914
22915 2005-06-13 Michal Moskal <malekith@nemerle.org>
22916
22917         * icall.c: Make GetCorrespondingMethod/Constructor take
22918         MonoReflectionMethod method not MonoMethod. Removed
22919         MonoType.GetCorrespondingField, and make
22920         MonoGenericType.GetCorrespondingField take name not
22921         MonoClassField.
22922
22923 2005-06-13  Michal Moskal <malekith@nemerle.org>
22924
22925         * reflection.c (field_encode_signature, encode_locals):
22926          Make sizes of buffers for types larger (for big generic types).
22927          (create_generic_typespec,
22928          mono_reflection_sighelper_get_signature_local,
22929          mono_reflection_sighelper_get_signature_field):
22930          Add asserts for too small buffers.
22931
22932 2005-06-15  Martin Baulig  <martin@ximian.com>
22933
22934         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22935         if our parent is not a dynamic type.
22936
22937 2005-06-15  Martin Baulig  <martin@ximian.com>
22938
22939         * class-internals.h (MonoTypeNameFormat): New enum.
22940
22941         * class.c
22942         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22943         (mono_type_get_full_name): Removed.
22944         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22945         argument instead of the boolean's.
22946
22947         * icall.c (ves_icall_System_MonoType_getFullName):
22948         Added `gboolean assembly_qualified'.    
22949
22950         * reflection.h
22951         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22952
22953         * reflection.c (mono_reflection_parse_type): Parse the new type
22954         name format.
22955
22956 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22957
22958         * icall.c: no need to convert from utf16 to utf8 and then back again
22959         after the call to GetLogicalDrives.
22960
22961 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22962
22963         * icall.c: frombase64. Fix problems exposed by new tests.
22964
22965 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22966
22967         * icall.c: added internal calls for converting char [] and strings in
22968         base64 into byte [].
22969
22970 2005-06-10  Martin Baulig  <martin@ximian.com>
22971
22972         * class.c (mono_class_create_generic_2): Read the nested classes
22973         from the metadata rather than from `gklass->nested_classes' since
22974         `gklass' might not be initialized yet.
22975
22976 2005-06-09  Duncan Mak  <duncan@novell.com>
22977
22978         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22979         all public headers. Fixes #74919.
22980
22981 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22982
22983         * domain.c: The key for proxy_vtable_hash is now a pointer
22984         array. Added new GHashFunc and GCompareFunc functions for this.
22985
22986         * class.h: The list of interfaces in MonoRemoteClass is known in
22987         advance and can't grow (we create a new MonoRemoteClass if needed),
22988         so now the interface array can be allocated together with
22989         MonoRemoteClass.
22990         
22991         * object.c: Added a new method create_remote_class_key.
22992         Fixed mono_remote_class so it does not depend on
22993         mono_upgrade_remote_class.
22994         Removed extend_interface_array.
22995         Added new method clone_remote_class(), which makes a copy of a remote
22996         class and adds a new interface or class to it.
22997         mono_upgrade_remote_class() now creates a new remote class (or gets
22998         it from the cache) if an vtable upgrade is needed. In this way
22999         we make sure that other objects sharing the same remote class
23000         don't get the new vtable with unwanted interfaces.
23001         
23002         * object-internals.h:
23003         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
23004         
23005         * marshal.c: Track changes in mono_upgrade_remote_class().
23006
23007 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
23008         * icall.c: Add runtime methods for obtaining members of inflated
23009         class, which were created from supplied non-inflated members. It
23010         is used in internal Get{Method,Constructor,Field} methods in
23011         System.Type
23012
23013 2005-06-09  Martin Baulig  <martin@ximian.com>
23014
23015         * reflection.c
23016         (mono_reflection_bind_generic_method_parameters): Fix #75169.
23017
23018 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23019         * reflection.c (mono_image_basic_init): Define
23020         Version in MonoDynamicAssembly. 
23021         
23022 2005-06-08  Martin Baulig  <martin@ximian.com>
23023
23024         Fix #75136.
23025
23026         * loader.c
23027         (mono_method_signature_full): New public method; takes a
23028         `MonoGenericContext *'.
23029         (find_method): Use mono_method_signature_full() and pass the
23030         klass'es context to it.
23031
23032         * class.c (mono_class_is_inflated_method): Use
23033         mono_method_signature_full() and pass the context to it.
23034
23035 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
23036
23037         * object.c: add proper locking in mono_remote_class_vtable(),
23038         fixes possible memory corruption.
23039
23040 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
23041
23042         * marshal.c (mono_remoting_marshal_init): set
23043         initialized after initialization.
23044
23045 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23046
23047         * locales.c : hush.
23048
23049 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
23050
23051         * object.c (extend_interface_array): fix really silly
23052         memory corrupting / comparison bug.
23053
23054 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23055
23056         * reflection.c: Functions added to support the creation
23057         of CustomAttributeData, which includes Attribute data
23058         used by ReflectionOnly methods.
23059
23060         * reflection.h:  mono_reflection_get_custom_attrs_data and
23061          mono_custom_attrs_data_construct added (functions exposed).
23062
23063          * icall.c: Added mono_reflection_get_custom_attrs_data
23064          as icall.
23065         
23066 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
23067
23068         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
23069         lupus's request.
23070
23071 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
23072
23073         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
23074
23075         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
23076         dynamic DllImportAttribute.
23077
23078         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
23079         dynamic DllImportAttribute.
23080
23081         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
23082         Fixes #75162.
23083
23084 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23085
23086         * threads.c: avoid segfault when an unstarted thread is aborted.
23087
23088 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
23089
23090         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
23091         Returns the name and version of the runtime for reporting.
23092
23093 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23094
23095         * appdomain.c: bump corlib version.
23096         * object-internals.h: new field in MonoReflectionAssembly.
23097
23098 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23099
23100         * object-internals.h: Carlos forgot to add this field.
23101
23102 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23103
23104         * icall.c: Added create_version to create instances
23105         of Version of MonoReflectionAssemblyName. This change helps
23106         the AssemblyName tests to keep running fine.
23107         
23108 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
23109   
23110         * object.c (mono_method_return_message_restore): A somehow less
23111         intrusive fix for #75138.
23112
23113 2005-06-03  Raja R Harinath  <rharinath@novell.com>
23114
23115         * object.c (mono_method_return_message_restore): Fix computation
23116         of expected number of out args.
23117
23118 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
23119
23120         * reflection.c (mono_image_get_method_info): Fix the case when the
23121         charset is empty.
23122
23123 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
23124
23125         * object.c: Added missing null check in
23126           mono_method_return_message_restore.
23127
23128 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
23129
23130         * reflection.c (mono_image_get_method_info): Handle the case when
23131         dllentry is empty.
23132
23133 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
23134
23135         * object.c: When creating the vtable for a proxy, take into account
23136         all inherited interfaces, not only the ones registered in
23137         iclass->interfaces. This fixs bug #74996.
23138         Also, in mono_method_return_message_restore, verify that the array
23139         of out args has the expected lengh.
23140
23141 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23142
23143         * socket-io.c: update the timeout in Poll when the call is interrupte.
23144
23145 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23146
23147         * socket-io.c: support abort/suspend in Select_internal after last
23148         change.
23149
23150 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23151
23152         * threadpool.c: remove warning.
23153
23154 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23155
23156         * icall.c:
23157         * socket-io.[ch]: Select_internal uses poll() now when available, thus
23158         removing the 1024 limit from select(). Runtime part of the fix for
23159         bug #71203.
23160
23161 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23162
23163         * socket-io.c: when resolving the addresses for the same
23164         host returned by gethostname(), get the local IPs from the interface
23165         list. Loopback addresses are discarded if the are interfaces up with
23166         non-loopback ones. Fixes bug #63265.
23167
23168 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
23169
23170         * appdomain.c, verify.c, object-internals.h, reflection.c:
23171         bumped corlib number to 36, and added new extra_flags field
23172         to ReflectionMethodBuilder and friends.  Fixes #75060.
23173
23174 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
23175
23176         * gc.c: register a new weak link only if the object is non-null
23177         (fixes bug#75047).
23178
23179 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
23180
23181         * culture-info.h : short time pattern too.
23182
23183 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
23184
23185         * culture-info.h : expand long time pattern string length.
23186
23187 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23188
23189         * culture-info-table.h : update (more French date format; #72788).
23190
23191 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
23192
23193         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
23194         the method is static. Fixes #75029.
23195
23196 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
23197
23198         * reflection.c: Update the table_idx field of method builders after
23199         saving the module, since it can change. This is a workaround for
23200         bug #74914. 
23201
23202 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23203
23204         * culture-info-table.h : update (additional French date format).
23205
23206 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
23207
23208         * icall.c (ves_icall_type_Equals): Revert last change.
23209         
23210         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
23211
23212         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
23213
23214 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
23215
23216         * class-internals.h: Added executioncontext_class field to 
23217         MonoDefaults structure.
23218         * domain.c: Cache System.Threading.ExecutionContext class in 
23219         mono_defaults.
23220         * object.c: Capture the ExecutionContext for asynchroneous calls in
23221          mono_async_result_new.
23222         * object-internals.h: Added execution_context and original_context 
23223         fields to MonoAsyncResult. Added execution_context to MonoThread.
23224         * security-manager.c|.h: Added mono_get_context_capture_method to 
23225         return the capture method (if required by the security manager or by
23226         the framework version used).
23227         * threadpool.c: Apply capture (if present) ExecutionContext in 
23228         mono_async_invoke and revert to original context after it completes.
23229
23230 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
23231
23232         * culture-info-table.h : updated (real hacky solution for zh-CHT).
23233
23234 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
23235
23236         * culture-info-table.h : zh-CHT related workaround.
23237
23238 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23239
23240         * marshal.c (emit_marshal_custom): Add some error checking and call the
23241         methods in the ICustomMarshaler interface. Fixes #74875.
23242         
23243         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
23244         native->managed wrappers.
23245
23246 2005-05-12  Martin Baulig  <martin@ximian.com>
23247
23248         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
23249         here and use the loader lock.
23250
23251         * mono-debug.c: Properly lock when the debugger is not attached.
23252         (mono_debug_init): Release the initial lock if we're not running
23253         in the debugger.
23254
23255 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
23256
23257         * marshal.c (emit_marshal_custom): Pass through NULL values without
23258         calling the custom marshalling routines.
23259
23260         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
23261         conversion in structures. Fixes #74882.
23262
23263 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
23264
23265         * culture-info-table.h : zh-* cultures were missing.
23266
23267 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
23268
23269         * threads.c: Added a new event background_change_event which is signaled
23270         when a thread changes its background mode.
23271         Moved here several checks previously done in managed code. The checks
23272         require the thread lock, and using the thread lock in managed code
23273         can result in deadlocks.
23274         Merged Start_internal and Thread_internal into a single method. Now 
23275         Thread_internal does all work of creating and starting a thread.
23276         Added icalls for setting and getting the state of the object. Moved from
23277         managed code to avoid locking there.
23278         Added wait_for_tids_or_state_change() which is called instad of
23279         wait_for_tids when waiting for non-backround threads to end. This method
23280         will return if one of the threads ends or the background_change_event
23281         is signaled.
23282         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
23283         the background mode. This method signals the background_change_event
23284         event.
23285         * icall.c:
23286         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
23287         removed Start_internal.
23288         
23289 2005-05-11  Martin Baulig  <martin@ximian.com>
23290
23291         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
23292         to order of some fields to get proper alignment on 64-bit machines.
23293
23294 2005-05-11  Martin Baulig  <martin@ximian.com>
23295
23296         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
23297         changes as they're broken and mess with the debugger.
23298
23299         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
23300
23301 2005-05-10  Martin Baulig  <martin@ximian.com>
23302
23303         * reflection.c (mono_reflection_generic_class_initialize): Don't
23304         call mono_class_setup_parent() here.
23305
23306 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23307
23308         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
23309         send/receive timeout use an integer in milliseconds. We were using a
23310         struct timeval.
23311
23312 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23313
23314         * locales.c:
23315         (internal_get_cultures): reserve the first slot of the array for the
23316         InvariantCulture, which will be filled in managed code.
23317
23318 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
23319
23320         * reflection.c (mono_image_fill_module_table): Initialize the
23321         GENERATION field as well.
23322
23323 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23324
23325         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
23326         Monitor.Enter on the object.
23327
23328 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
23329
23330         * threads.c: Enable the wait for running threads when exiting.
23331         * icall.c: Suspend all threads before exiting.
23332
23333 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
23334
23335         * assembly.c (mono_assembly_load_reference): Fix warning.
23336
23337 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23338
23339         * threadpool.c: changed the default number of threads per cpu. From now
23340         on, the default will be 20 + (5 * number of cpus) instead of 50.
23341
23342 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
23343
23344         * loader.c (mono_method_get_signature_full): Add locking here.
23345
23346 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
23347
23348         * appdomain.c: Moved methods for parsing and freeing assembly
23349         names to assembly.c.
23350         * assembly.c, domain-internals.h: Created public methods for parsing
23351         assembly names. Fixed mono_assembly_load_with_partial_name:
23352         it now finds the best match, taking into account the version,
23353         token and culture specified in the partial name. Also return
23354         the latest version if no version information is specified.
23355
23356 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
23357
23358         * threadpool.c: replace check for SocketAsyncCall class.
23359
23360 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23361
23362         * threadpool-internals.h:
23363         * Makefile.am: added threadpool-internals.h
23364
23365         * threadpool.c: call mono_unhandled_exception on exceptions not handled
23366         that happen in threadpool threads (tested on MS).
23367         (mono_thread_pool_remove_socket): new function that dispatch any pending
23368         AIO call on a socket that is closing. By now only epoll really needs it,
23369         as select/poll wake up when the socket closes.
23370
23371
23372         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
23373
23374 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
23375
23376         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
23377
23378 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
23379
23380         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
23381
23382 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
23383
23384         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
23385         has an abort request, convert it into a suspend request.
23386
23387 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
23388
23389         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
23390         warning for the usage of `UnmanagedFunctionPointerAttribute' which
23391         is not supported yet.
23392
23393 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23394
23395         * image.c: register assemblies loaded from data (bundles) in the loaded
23396         assemblies hash. Fixes bug #74772.
23397
23398 2005-04-29  Martin Baulig  <martin@ximian.com>
23399
23400         * class.c (mono_type_get_name_recurse): Update to the new naming
23401         schema from the latest .NET 2.x beta2.
23402         (mono_class_setup_vtable_general): If we're a generic instance,
23403         copy the vtable from our generic type definition and inflate all
23404         the methods in it.
23405
23406         * loader.c (find_method): Update to the new naming schema from the
23407         latest .NET 2.x beta2.
23408
23409 2005-04-29  Raja R Harinath  <harinath@gmail.com>
23410
23411         * class.c (mono_class_init): Add a mono_loader_unlock to the
23412         #74734 fix.
23413
23414 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
23415
23416         * icall.c (ves_icall_System_Environment_Exit): Remove the 
23417         suspend_all_other_threads () call for the time being, since it can hang.
23418
23419         * threads.c (mono_thread_manage): Similarly, disable the waiting for
23420         the background threads to exit, since it can also hang.
23421
23422         * class.c (mono_class_init): Applied patch from Ankit Jain 
23423         (radical@gmail.com). Avoid pending init errors when a field refers
23424         to a nested class using a typeref. Fixes #74734.
23425
23426         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
23427         this for dynamic modules.
23428
23429 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23430
23431         * threads.c: don't wait for threads that are in the process of aborting
23432         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
23433         and waiting for background threads to finish. This makes xsp and
23434         mod-mono-server exit without random length delays and/or hangs.
23435
23436 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23437
23438         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
23439
23440 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
23441
23442         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
23443         dynamic types to prevent infinite loops. Fixes #74727.
23444
23445         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
23446         ..._is_assignable_to.
23447
23448 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
23449
23450         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
23451
23452 2005-04-25  Martin Baulig  <martin@ximian.com>
23453
23454         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
23455
23456         * domain.c
23457         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
23458
23459         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
23460
23461         * reflection.c (build_compressed_metadata): Set metadata header
23462         version to 2.0.
23463
23464 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
23465
23466         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
23467         number into an integral and a decimal part. Fixes #70473.
23468
23469         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
23470
23471 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
23472
23473         * culture-info-table.h : reflected the latest locale-builder output.
23474
23475 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23476
23477         * threadpool.c: check for SuspendRequested too when deciding if
23478         mono_thread_interruption_checkpoint should be called.
23479
23480 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23481
23482         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
23483         * threads.c: remove interruption_mutex and use Interlocked instead. When
23484         suspending all the threads, wait for all the suspended events at once.
23485         If we're shutting down and get an APC that is going to be queued,
23486         call mono_thread_execute_interruption immediately, as the thread might
23487         be sleeping on a pthread condition or mutex.
23488
23489         * icall.c: call mono_runtime_set_shutting_down before suspending the
23490         threads.
23491
23492         Fixes bug #74693. And now xsp is happier when exiting.
23493
23494 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
23495
23496         * loader.c (mono_stack_walk): Fix #74690.
23497
23498 2005-04-22  Martin Baulig  <martin@ximian.com>
23499
23500         * mono-debug.h (MonoDebugMethodJitInfo): Added
23501         `MonoDebugMethodJitInfo *jit'.
23502
23503         * mono-debug.c (mono_debug_read_method): Cache the
23504         MonoDebugMethodJitInfo in `address->jit'.
23505         (mono_debug_free_method_jit_info): New public method.
23506
23507 2005-04-22  Martin Baulig  <martin@ximian.com>
23508
23509         * class.c (mono_class_is_assignable_from): Disallow
23510         type parameter -> interface.
23511
23512 2005-04-21  Dick Porter  <dick@ximian.com>
23513
23514         * threads.c (mono_thread_create): Turn an assertion into an error.
23515
23516 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
23517
23518         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
23519         
23520         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
23521         Fix some gcc 4.0 warnings.
23522
23523 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
23524
23525         * file-io.c: fix alt dir separator char on unix systems
23526         and cleanup (fixes bug #71214).
23527
23528 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
23529
23530         * marshal.c: Use CALLVIRT instead of CALL when dispatching
23531         a call to a remote domain, since the method may be an
23532         interface method in the client domain. This fixes bug #74192.
23533
23534 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23535
23536         * threadpool.c: recv/send are now performed before going back to managed
23537         code to save one transition.
23538
23539 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23540
23541         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
23542
23543         * metadata/threadpool.c: removed hack to workaround the bug above.
23544
23545         Fixes bug #74618.
23546
23547 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
23548
23549         * reflection.c reflection.h: Fix handling of parameter defaults in
23550         dynamic methods. Also fixes handling of parameter attributes.
23551         Fixes #74609.
23552
23553         * mono-debug.c (mono_debug_close_image): Fix warning.
23554
23555 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23556
23557         * socket-io.h: replaced old unused field with new 'blocking'.
23558         * threadpool.c: restore socket blocking state on windows(tm).
23559
23560 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
23561
23562         * icall.c: don't return the codebase in the AssemblyName[] returned by
23563         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
23564         * object-internals.h: Removed FIXME (fields were presents) and fixed
23565         versioncompat declaration.
23566
23567 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23568
23569         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
23570         not closed, so don't cleanup when it happens.
23571
23572 2005-04-13  Chris Toshok  <toshok@ximian.com>
23573
23574         * mono-debug-debugger.h: change prototype for
23575         mono_debugger_lookup_type.
23576
23577         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
23578         this function, although it should probably be named
23579         mono_debugger_init_type.
23580
23581 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23582
23583         * threadpool.c: fix non-AIO case.
23584
23585 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
23586
23587         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
23588         the built-in profiler to measure just JIT compilation times.
23589
23590 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23591
23592         * threadpool.c: the epollfd might be closed by another thread at
23593         any time, so ignore EBADF at treat it as a "we're closing" sign.
23594
23595 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23596
23597         * threadpool.c: release the semaphores with a count equals to the number
23598         of working threads in both IO and regular pools. Fixed typo that messed
23599         up the count of IO pool threads. Don't initialize the pipe handles if
23600         we're using epoll.
23601
23602 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23603
23604         * threadpool.c: some systems don't like a NULL when deleting the socket
23605         from epoll.
23606
23607 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23608
23609         * threadpool.c: fix semaphore allocation.
23610
23611 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23612
23613         * threadpool.c: added epoll() based implementation for asynchronous IO
23614         that is used instead of the default poll() when available.
23615         It can be disabled by setting MONO_DISABLE_AIO.
23616
23617 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23618
23619         * threadpool.c: windows needs 'closesocket' and instead of returning
23620         0 when the stream is closed while in select, it returns -1. Fixes bug
23621         #74573.
23622
23623 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23624
23625         * class.c (class_compute_field_layout): Fix the regression caused by
23626         the previous try.
23627
23628 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23629
23630         * threadpool.c: separate pool for socket async. IO.
23631         * threadpool.h: mono_max_worker_threads is not a global any more.
23632
23633 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23634
23635         * class.c (class_compute_field_layout): Fix #74549.
23636
23637 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23638
23639         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23640         use 2 connected sockets instead.
23641
23642 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23643
23644         * mono-config.c: Add new entry point for mkbundle
23645         mono_config_parse_memory. 
23646
23647 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23648
23649         * threadpool.c: removed another unused function.
23650
23651 2005-04-08  Ankit Jain  <radical@corewars.org>
23652
23653         * reflection.c (get_default_param_value_blobs): Add 'types'
23654         parameter to get the types encoded in the constant table.
23655         (mono_param_get_objects): Use the type from the constant table,
23656         not the type of the parameter, when creating default values.
23657         Handle null default values correctly.
23658
23659 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23660
23661         * file-io.c:
23662         * file-io.h:
23663         * threadpool.c:
23664         * threadpool.h:
23665         * icall.c:
23666         * socket-io.c: removed dead code for async IO.
23667
23668 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23669
23670         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23671
23672         * threadpool.c: intercept socket async. calls and pass them to a thread
23673         that is polling and dispatching the job items to the threadpool as
23674         socket become ready. Fixes bugs #71217, #71933.
23675
23676         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23677         between char and short/ushort arrays.
23678
23679         * socket-io.c: remove dead code.
23680
23681 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23682
23683         * locales.c,
23684           icall.c : removed InternalToUpper_Comp() and
23685           InternalToLower_Comp().
23686
23687 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23688
23689         * char-conversions.h : The tables were incorrectly generated. Should
23690           be generated against invariant culture.
23691
23692 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23693
23694         * object.c (mono_runtime_invoke_array): Fix return value when 
23695         passing pre-created valuetype objects to ctors.
23696
23697         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23698         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23699         Fixes #74338.
23700
23701 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23702
23703         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23704         only used with --security and hides the wrong corlib version error.
23705
23706 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23707
23708         * class.c: Changed mono_class_name_from_token so that types
23709         outside of a namespace don't have an initial period.  Improved
23710         the g_warning message used in _mono_class_get when loading
23711         fails.
23712         * assembly.c: In mono_assembly_load_reference, when an assembly
23713         can't be found, "No such file or directory" is misleading and
23714         unhelpful because a few paths were checked for the presence of
23715         the assembly.  When that happens (ENOENT), display a nicer
23716         message indicating the directories that were searched.  In all
23717         cases, the warning is made easier to read for non-hackers.
23718
23719 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23720
23721         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23722         project/solution.
23723         * appdomain.h|domain.c: Removed inline from functions.
23724         * appdomain.c: Reduced warnings when compiling on windows.
23725         * icall.c: Fixed output_debug declaration to gunichar2*.
23726         * mono-config.c: Reduced warnings when compiling on windows.
23727         * rand.c: Added missing "windows.h". Added missing return value.
23728         * rawbuffer.c: Added missing winsock2.h for windows.
23729         * sysmath.h: Added mono-compiler.h header to allow/ease 
23730         compilation with non-GCC compilers.
23731         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23732         Removed cast warnings.
23733
23734         Adapted from the work of J Lothian (for VC6).
23735
23736 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23737
23738         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23739         from default_path.
23740
23741 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23742
23743         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23744         the 2.0 profile.
23745
23746 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23747
23748         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23749         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23750         stuff, and it would probably use $(prefix)/share rather than
23751         $(prefix)/lib.
23752
23753 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23754
23755         * console-io.c: added 2 includes that might be missing.
23756
23757 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23758
23759         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23760         profile.
23761
23762         * reflection.c (create_custom_attr): Allocate the params array using
23763         alloca so it gets GC tracking.
23764
23765 2005-03-23  Chris Toshok  <toshok@ximian.com>
23766
23767         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23768         out some spew.
23769
23770 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23771
23772         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23773         changes to pick up any changes in prefix, etc.
23774
23775 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23776
23777         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23778         
23779         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23780         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23781
23782 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23783
23784         * class-internals.h object-internals.h class.c reflection.c: Extend the
23785         mono_lookup_dynamic_token () function to return the class of the
23786         token as well. 
23787
23788         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23789         well. Fixes #73848.
23790
23791 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23792
23793         * security-manager.c: Skip inheritance checks for intra-corlib
23794         class inheritance and method overrides. This skips a lot of checks
23795         and (anyway) permissions cannot work until corlib is loaded.
23796
23797 2005-03-23  Martin Baulig  <martin@ximian.com>
23798
23799         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23800         MONO_TYPE_GENERICINST.  
23801
23802 2005-03-23  Martin Baulig  <martin@ximian.com>
23803
23804         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23805
23806 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23807
23808         * class.c: added locking comments to some functions.
23809         Cache the interface offsets arrays (saves about 20 KB
23810         of runtime memory in a typical app).
23811         Reduce the time overhead in mono_class_setup_supertypes ().
23812
23813 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23814
23815         * icall.c: speedup and fix leaks in GetMethodsByName and
23816         GetPropertiesByName.
23817
23818 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23819
23820         * reflection.c: some locking fixes.
23821
23822 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23823
23824         * metadata.c: added missing break in case statement.
23825
23826 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23827
23828         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23829         typedbyref return values. Fixes #73941.
23830
23831 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23832
23833         * security-manager.c|h: Added demandunmanaged method and 
23834         suppressunmanagedcodesecurity class to MonoSecurityManager.
23835         Renamed aptc class to allowpartiallytrustedcallers.
23836
23837 2005-03-17  Martin Baulig  <martin@ximian.com>
23838
23839         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23840
23841 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23842
23843         * file-io.c: disabled file async. IO using aio_*. It uses the
23844         threadpool now. Workaround for bug #73718.
23845
23846 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23847
23848         * assembly.h, mono-config.c: added code to deal with bundled configs
23849         for bundled assemblies.
23850
23851 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23852
23853         * *.c, private.h: cleanup, removing old private.h header file.
23854
23855 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23856
23857         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23858         and throw_on_unmappable_char attributes.
23859
23860 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23861
23862         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23863         _ProcessName_internal.
23864
23865 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23866
23867         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23868         #73631.
23869
23870         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23871         are no longer used.
23872
23873 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23874
23875         * object.c (compute_class_bitmap): Add support for generics. Fixes
23876         #73527.
23877
23878 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23879
23880         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23881
23882 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23883
23884         * filewatcher.c: commented out the code for windows watcher, as we don't
23885         use it (we use the managed implementation instead).
23886
23887 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23888
23889         * object-internals.h (MonoThread): Remove 'unused1' field.
23890
23891         * appdomain.c: Bump corlib version.
23892
23893         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23894
23895         * reflection.c (mono_reflection_create_runtime_class): Remove the
23896         AssemblyBuilder.Save optimization since it causes too many problems.
23897
23898 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23899
23900         * exception.c|h: Added mono_get_exception_reflection_type_load to
23901         create a ReflectionTypeLoadException object.
23902         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23903         to return NULL is a InheritanceDemand fails during reflection. Updated
23904         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23905         ReflectionTypeLoadException if an InheritanceDemand fails during 
23906         reflection. Added icall mapping for GetLinkDemandSecurity.
23907         * security-manager.c|h: Added ves_icall_System_Security_
23908         SecurityManager_GetLinkDemandSecurity internal call to return the
23909         class and methods permissions set for a LinkDemand. Removed unused
23910         fields in MonoSecurityManager.
23911
23912 2005-03-10  Martin Baulig  <martin@ximian.com>
23913
23914         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23915         it's a generic instance.
23916
23917 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23918
23919         * reflection.c (mono_get_object_from_blob): Applied patch from
23920         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23921
23922         * class.c (mono_class_is_assignable_from): Another try at fixing 
23923         #73469 without breaking anything.
23924
23925 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23926
23927         * class.c: (mono_class_is_assignable_from): Revert the last changes
23928         since they don't work with generics.
23929         
23930         * class.c (mono_class_is_assignable_from): Fix build bustage.
23931
23932         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23933         the managed IsAssignableFrom method. Fixes #73469.
23934
23935         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23936         function.
23937
23938 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23939
23940         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23941         memory when the remoting callback does not sets the out arguments.
23942         Fixes #73007.
23943
23944         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23945         by mistake.
23946
23947         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23948
23949         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23950
23951         * appdomain.c: Bump corlib version.
23952
23953 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23954
23955         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23956         function.
23957
23958         * threads.c (mono_thread_attach): Detect threads which are not started
23959         by the GC pthread wrappers.
23960
23961 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23962
23963         * icall.c: Added new icall for RNG.
23964         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23965         single handle on Linux to access /dev/urandom and fix #73183.
23966
23967 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23968
23969         * object.c: setting the new vtable in a transparent proxy object must
23970         not change the GC descriptor.
23971
23972 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23973
23974         * object.c: fixed compilation without GCJ support.
23975         * reflection.c: for runtime-created types ensure klass->has_references
23976         is correct (bug #73215).
23977
23978 2005-03-02  Martin Baulig  <martin@ximian.com>
23979
23980         * class.c (mono_class_is_assignable_from): Make this work if
23981         `oklass' is a generic instance; fixes #72831.
23982
23983 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23984
23985         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23986         with hasthis set.
23987         
23988         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23989
23990         * marshal.c: Reorganize native->managed marshalling code to also use
23991         the emit_marshal_... functions.
23992
23993 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23994
23995         * object.c: typed allocs have issues with bitmap sizes > 30,
23996         so check for max_set >= 30.
23997
23998 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23999
24000         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
24001         managed code. Fixes #73012.
24002
24003         * metadata.h (MonoMarshalSpec): Add elem_mult field.
24004
24005         * metadata.c reflection.c: Load/Emit elem_mult as well.
24006         
24007         * metadata.h (MonoMarshalSpec): Add comment.
24008
24009         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
24010
24011         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
24012         num_elem to -1 if not given.
24013
24014         * object-internals.h (MonoReflectionMarshal): Add has_size field.
24015
24016         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
24017         given values.
24018
24019 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
24020
24021         * null-gc.c (mono_gc_free_fixed): Was not compilable.
24022
24023 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
24024
24025         * reflection.c (encode_marshal_blob): Encode param_num field as well.
24026
24027         * object-internals.h (MonoReflectionMarshal): Add param_num field.
24028
24029 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
24030
24031         * object.c: generalized the reference bitmap creation
24032         and added hooks for the new GC.
24033         * class-internals.c: removed the gc_bitmap field from MonoClass.
24034
24035 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24036
24037         * domain.c: help the compiler to produce better code
24038         in mono_jit_info_table_find ().
24039
24040 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
24041
24042         * object.c: make all allocations look typed.
24043
24044 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24045
24046         * socket-io.c: load Mono.Posix if it's not loaded already
24047         (fixes bug#73033).
24048
24049 2005-02-24  Martin Baulig  <martin@ximian.com>
24050
24051         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
24052         * reflection.c (dup_type): Likewise.
24053
24054 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
24055
24056         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
24057         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
24058
24059 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24060
24061         * domain.c, threads.c, object-internals.h: make the critical thread
24062         local vars use the fast access mode (even when we're compiled in
24063         a lib). Provide accessors to be used by the jit during codegen.
24064
24065 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
24066
24067         * appdomain.c: Changed hook functios behavior to include
24068         support for the reflection only assemblies. Some icalls were changed
24069         to support the mentioned assemblies too. Signatures of static methods
24070         try_assembly_resolve and real_load now have an additional parameter:
24071         refonly.
24072
24073         * assembly.c: General changes to mono_assembly_ methods to support
24074         reflection only api. Functions mono_assembly_open, mono_assembly_load,
24075         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
24076         suffix, to support an additional gbool parameter to specify whether
24077         the assembli is reflection only or not. Created some new hook functions 
24078         to add support for reflection only assemblies. Signatures of static 
24079         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
24080         have now an additional parameter: refonly.
24081
24082         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
24083         indicating whether the assembly is reflection only or not.
24084
24085         * exception.c: Add mono_get_exception_invalid_operation.
24086
24087         * icall.c: Throw an InvalidOperationException when trying to invoke
24088         a property/method/event, or trying to set/get the value of a field.
24089         Also add an icall to retrieve the ref_only flag to the
24090         MonoReflectionAssembly.
24091
24092 2005-02-23  Chris Toshok  <toshok@ximian.com>
24093
24094         Part of fix for #72827.
24095         * mono-debug.c (mono_debug_add_method): add lexical block data to
24096         the info we write.  Kind of a hack at the moment - we copy the
24097         lexical block info from the MonoDebugMethodInfo to the
24098         MonoDebugMethodJitInfo here, before writing it.
24099         (mono_debug_read_method): read the lexical block info.
24100
24101         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
24102
24103         * debug-mono-symfile.h: add lexical block support.
24104
24105         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
24106         support.
24107
24108 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
24109
24110         * loader.c (mono_lookup_pinvoke_call): Fix warning.
24111
24112         * object.c (mono_runtime_free_method): Call mono_free_method () and
24113         put the TODOs there.
24114
24115         * loader.c (mono_free_method): Free up most memory allocated for 
24116         dynamic methods.
24117
24118 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24119
24120         * reflection.c: properly flag a Type argument to a
24121         named custom attr value (bug #72248).
24122
24123 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24124
24125         * reflection.c: reduce code duplication in named custom
24126         attribute encoding.
24127
24128 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
24129
24130         * reflection.c: properly encode custom attrs of type object
24131         (bug #72649).
24132
24133 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
24134
24135         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
24136
24137 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
24138
24139         * socket-io.c: load System.dll if it's not loaded already
24140         (bug #72850 and #70477).
24141
24142 2005-02-21  Martin Baulig  <martin@ximian.com>
24143
24144         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
24145         generic instances.
24146
24147 2005-02-21  Martin Baulig  <martin@ximian.com>
24148
24149         * reflection.c (mono_image_build_metadata): We also need to
24150         "fixup" the MethodImpl table after we computed the final method
24151         indices.  Call fixup_methodimpl() to do that.
24152         (fixup_methodimpl): New private method.
24153
24154 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
24155
24156         * assembly.c: special case mscorlib.dll (bug#72536),
24157         patch from Carlos Alberto Cortez.
24158
24159 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
24160
24161         * threads-types.h threads.c: Fix build bustage.
24162
24163         * threads.c: Use a union for long<->double conversions.
24164
24165         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
24166         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
24167
24168         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
24169         containing the checkpoint call with NOT_TAKEN.
24170         
24171         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
24172         checkpoint before pushing the arguments, so they won't have to be
24173         spilled to stack.
24174
24175 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24176
24177         * domain.c, assembly.c, domain-internals.h: make some data
24178         const and relocation-free.
24179
24180 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
24181
24182         * object.c, appdomain.c, class-internals.h: introduce the
24183         MonoClassRuntimeInfo structure to hold the info needed to
24184         use a class at runtime. Made mono_class_vtable() lock-free
24185         for all the appdomains.
24186
24187 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
24188
24189         * metadata-internals.h, image.c: introduce a per-image mempool to
24190         be used for memory that has the same lifetime as the image.
24191
24192 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
24193
24194         * domain.c: In mono_init_internal(), instead of selecting the first
24195         runtime version supported by an executable, get a list of all
24196         supported versions and select the one for which an mscorlib exists
24197         (since even if the runtime supports a given version, it doesn't mean
24198         that the framework for that version is installed).
24199         Modified get_runtimes_from_exe to support this behavior.
24200         In supported_runtimes, added information about additional system
24201         assembly versions.
24202         
24203         * assembly.c: Added support for more than one system assembly version
24204         per runtime version. Updated the assembly list.
24205         In mono_assembly_remap_version, removed the initial version check,
24206         since we don't know to which version we need to compare until we
24207         get the version set on which the assembly is based.
24208         Moved the code for loading corlib into the new method
24209         mono_assembly_load_corlib(), so it can be used by the initialization
24210         code.
24211         
24212         * domain-internals.h: Updated data structures and added declaration
24213         for mono_assembly_load_corlib.
24214
24215 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24216
24217         * reflection.c (resolve_object): Fix the creation of the signature in 
24218         the SignatureHelper case.
24219
24220         * assembly.c (mono_assembly_remap_version): Fix binary search.
24221         
24222 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
24223  
24224         * class.c: Added inheritance check when a method is overloaded (from a
24225         virtual method or when implementing an interface) and when a class is
24226         inherited. Added functions to set a failure for a class and to 
24227         retreive the exception from a failure.
24228         * class-internals.h: Added fields to MonoClass to keep the exception
24229         information status for inheritance (or other exceptions) to be thrown
24230         later (i.e. not at load time).
24231         * object.c: Throw the inheritance SecurityException when a type is to 
24232         be created with either class or method inheritance violations.
24233         * reflection.c|h: Fix when getting declsec from a class. Removed 
24234         unrequired code for class. Improved sanity in parameter naming.
24235         * security-manager.c|h: Added functions to check for class and method
24236         inheritance.
24237
24238 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
24239
24240         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
24241         and has_finalize in dynamic types as well.
24242
24243 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
24244
24245         * culture-info-table.h : fixed currency format for en-GB (and so on).
24246
24247 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
24248
24249         * gc.c: ensure the GC handles never have 0 as a value.
24250
24251 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24252
24253         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
24254         a pointer to a struct to unmanaged code. Fixes #72625.
24255
24256 2005-02-16  Martin Baulig  <martin@ximian.com>
24257
24258         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
24259
24260 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
24261
24262         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
24263
24264 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24265
24266         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
24267
24268         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
24269         UnmanagedFunctionPointerAttribute, use it for determining calling convention
24270         etc. Fixes #71471.
24271
24272         * reflection.c (mono_custom_attrs_get_attr): New helper function.
24273
24274         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
24275
24276 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
24277
24278         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
24279         changes to make the current context a field in MonoThread.
24280
24281 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
24282
24283         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
24284         the last change.
24285         
24286         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
24287         extracted from mono_marshal_get_native_wrapper.
24288
24289         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
24290         to create wrappers around native functions.
24291
24292         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
24293         delegates for arbitrary function pointers. Fixes #71472.
24294
24295 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24296
24297         * threads.c: cleaned up the code a little.
24298
24299 2005-02-15  Martin Baulig  <martin@ximian.com>
24300
24301         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
24302         the data table.
24303
24304         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
24305         allocate larger chunks if needed.
24306
24307 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24308
24309         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
24310         in by mistake.
24311
24312 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
24313
24314         * domain.c: keep the domains in an array and ensure the domain ids
24315         are kept small, so they can be used as indexes to domain-specific data
24316         with a small memory overhead.
24317
24318 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
24319
24320         * icall.c: Handle byref types in Type icalls. Fixes #72544.
24321
24322 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
24323
24324         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
24325
24326 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
24327
24328         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
24329
24330         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
24331         values.
24332
24333         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
24334         
24335 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
24336
24337         * domain-internals.h: add the hashtable here.
24338
24339         * class-internals.h: Remove `info' from MonoMethod
24340
24341         * domain.c: Add a new hashtable, jit_trampoline_hash
24342
24343 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24344
24345         * object.c: don't set the value of static fields
24346         (fixes bug#72494).
24347
24348 2005-02-11  Martin Baulig  <martin@ximian.com>
24349
24350         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
24351         (mono_debug_add_method): Silently ignore the method if it's too big.
24352         (mono_debug_add_type): Likewise.
24353
24354 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
24355
24356         * threads.c, appdomain.c: remove #ifdefs from the code.
24357
24358 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
24359
24360         * metadata-internals.h: Added flags to MonoAssembly to cache the most
24361         common security informations. This allows us to stay in unmanaged code
24362         when doing LinkDemand and it's special cases (except for the first 
24363         time for initialization). The flags a very much used with --security.
24364         * reflection.c|h: Added code to get declarative security attributes 
24365         for LinkDemand and InheritanceDemand. This required to refactor the
24366         existing code for Demand.
24367         * security-manager.c|h: Added new method fields for the special cases
24368         of LinkDemand.
24369
24370 2005-02-10  Martin Baulig  <martin@ximian.com>
24371
24372         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
24373         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
24374
24375 2005-02-10  Martin Baulig  <martin@ximian.com>
24376
24377         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
24378         debugging code; this is almost a complete rewrite.
24379
24380         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
24381
24382 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24383
24384         * domain.c, object.h: expose mono_string_equal () and 
24385         mono_string_hash ().
24386         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
24387         it's implemented in managed code.
24388
24389 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24390
24391         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
24392         lo leak objects between appdomains.
24393
24394 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24395
24396         * assembly.c: old compilers compilation fix from 
24397         robertj@gmx.net (Robert Jordan).
24398
24399 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
24400
24401         * class-internals.h: Little reminder for the future.
24402
24403         * debug-helpers.c: Fix up wrapper_type_names
24404
24405 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24406
24407         * image.c, metadata-internals.h: when loading an image from a file,
24408         mmap all of it and use the same codepaths as when using a
24409         in-memory image: the code is simpler and we use less memory
24410         (both writable and readonly).
24411
24412 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24413
24414         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
24415         API to alloc runtime data structures that need to be tracked by the
24416         GC and contain pointers.
24417         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
24418         make the code more readable and eventually use a different GC.
24419
24420 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
24421
24422         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
24423         for out arguments.
24424         
24425 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
24426
24427         * object.c: In release_type_locks(), don't release the cctor lock
24428         if it has already been released. This fixes a crash in the
24429         thread5 test.
24430
24431 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
24432
24433         * gc.c, marshal.c, icall.c: register a delegate for finalization
24434         only when the native function pointer has been allocated for it.
24435
24436 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24437
24438         * object.c: cleaned up some code, allocate objects that are
24439         pointer free with the atomic malloc variant. Allocate memory
24440         for static data from the mempool if it's pointer-free.
24441         Allocate the bounds array at the end of the array data, when needed.
24442         * object-internals.h, object.h: move a private function in a private
24443         header.
24444         * class.c: handle missing case in tracking references in fields.
24445
24446 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
24447
24448         * class.c, class-internals.h: keep track if a type has
24449         reference fields in either the instance or static fields.
24450
24451 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
24452
24453         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
24454         and renamed to MonoRuntimeInfo. Added fields to store the expected
24455         framework assembly version. Changed mono_get_framework_version and
24456         mono_get_runtime_version for a single mono_get_runtime_info method.
24457         
24458         * assembly.c: Added method to remap system assembly versions to the
24459         current executing runtime version. Removed old mapping code.
24460         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
24461         
24462         * icall.c, reflection.c: Track api changes.
24463
24464 2005-02-06  Miguel de Icaza  <miguel@novell.com>
24465
24466         * loader.c (method_from_memberref): Improve error reporting,
24467         produce the class name instead of the typeref/typedef index. 
24468
24469 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
24470
24471         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
24472
24473 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24474
24475         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
24476         stdcall and charset name mangling.  Reorganize the code and add
24477         some tracing stuff.
24478
24479 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24480
24481         * monodiet.c: More iters!
24482
24483         * marshal.c: Iter usage.
24484
24485         * icall.c: Iter usage.
24486
24487         * object.c: Use iters.
24488
24489         * debug-helpers.c: More iters
24490
24491 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24492
24493         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
24494         under win32.
24495
24496 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
24497
24498         * mono-debug-debugger.c: use iters
24499
24500         * class.c, class-internals.h: mono_class_setup_events is static
24501         now
24502
24503         * All callers: use iters
24504
24505 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
24506
24507         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
24508         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
24509
24510 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24511
24512         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
24513
24514         * marshal.h: Add prototypes for ldfld/stfld_remote.
24515
24516         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
24517         this is called during startup.
24518         
24519 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
24520
24521         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
24522         MonoThreadsSync struct private in monitor.c. Changed the way
24523         MonoThreadsSync is allocated so it's faster and there is no
24524         need to keep track of it with a finalizer and it uses less memory.
24525         This also finally allows us to allocate mono objects as ptrfree when
24526         there are no reference fields.
24527
24528 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
24529
24530         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
24531         disappearing link to the GC interface and use them to simplify
24532         the gchandles code.
24533
24534 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24535
24536         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
24537         stfld_remote which call mono_load/store_field_new. This allows methods
24538         calling ldfld/stfld wrappers to be AOTed.
24539
24540         * console-io.c: Include sys/filio.h under solaris.
24541         
24542         * console-io.c: Include curses.h if needed correctly.
24543
24544 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24545         
24546         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
24547         method->klass as well.
24548
24549         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
24550
24551         * class.c (mono_class_init): Switch on lazy initialization of 
24552         methods.
24553
24554         * class.c (mono_class_get_finalizer): Handle the case when the 
24555         finalizer is inherited.
24556
24557 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24558
24559         * console-io.c: <curses.h> is needed by term.h on solaris.
24560
24561 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
24562
24563         * icall.c, class-internals.h, monodiet.c, class.c: Remove
24564         mono_class_setup_properties where possible. Remove this ftn from
24565         the header file, and make it static.
24566
24567 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24568
24569         * loader.c: Add missing setup_... call.
24570
24571         * class.c: Add missing setup_... calls.
24572
24573         * class.c (mono_class_init): Switch on lazy initialization of 
24574         the generic vtable.
24575         
24576         * class.c (mono_class_init): Fix generics broken by the recent changes.
24577
24578         * monodiet.c (handle_type): Add missing setup_... calls.
24579
24580         * class.c: Back out garbage in previous patch.
24581         
24582         * class.c: Add missing setup_... calls.
24583
24584         * class.c (mono_class_get_method_from_name_flags): Avoid calling
24585         mono_class_setup_methods () if possible.
24586
24587         * class-internals.h (MonoClass): Add 'has_cctor' flag.
24588
24589         * class-internals.h (MonoCachedClassInfo): New structure.
24590
24591         * class.c: Initialize properties and events fields of MonoClass lazily.
24592
24593         * class.c: Add infrastructure for lazily initializing the methods and
24594         vtable fields of MonoClass. Not yet used.
24595
24596         * class.c (mono_class_get_finalizer): New helper function.
24597
24598         * class.c: Add infrastructure for loading some class related data from
24599         an AOT file.
24600
24601         * object.c: Add infrastructure for initializing the vtable from data
24602         in the AOT file.
24603
24604         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24605
24606         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24607         appropriate initialization function before accessing parts of the
24608         MonoClass structure.
24609
24610         * marshal.c: Fix warnings.
24611         
24612         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24613
24614         * mono-debug-debugger.c (get_exception_message): Use 
24615         mono_class_get_method_from_name_flags ().
24616
24617 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24618
24619         * reflection.c, appdomain.c: Replace a few manual searches that
24620         Zoltan missed. (Paolo approved this part of my initial patch).
24621
24622 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24623
24624         * profiler.c: disable recording statistical events at report time.
24625
24626 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24627
24628         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24629         to byteswap arrays of enum values, too (bug #72080).
24630
24631 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24632
24633         * appdomain.c (set_domain_search_path): Allow this to be called if
24634         domain->setup is not yet set.
24635
24636         * loader.c (mono_method_get_index): New helper function.
24637
24638         * loader.c reflection.c: Use mono_method_get_index ().
24639
24640         * class.c (mono_class_get_method_from_name_flags): New helper method.
24641
24642         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24643         this.
24644
24645         * class.c (mono_class_get_cctor): New helper method.
24646
24647         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24648         mono_class_get_method () to look up methods.
24649
24650 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24651
24652         * console-io.c: Fix the build, this should work on Windows.
24653
24654 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24655
24656         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24657         be set to null to keep things valid
24658
24659 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24660
24661         * icall.c: added Console 2.0 icalls.
24662         * Makefile.am: added console-io.[ch]
24663         * console-io.[ch]: internal calls for Console 2.0 API.
24664
24665 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24666
24667         * class.c: make sure we consider all the interfaces
24668         when calculating max_interface_id (bug found by
24669         Jeroen Frijters running ikvm).
24670
24671 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24672
24673         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24674         valuetype fields to null.
24675
24676         * object.c (set_value): Ditto. Fixes #71669.    
24677
24678 2005-01-31  Martin Baulig  <martin@ximian.com>
24679
24680         * metadata.c (mono_metadata_has_generic_params): New public
24681         function; checks whether something is a generic method.
24682
24683 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24684
24685         * appdomain.c: fix infinite recursion when adding assemblies.
24686
24687 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24688
24689         * object.c: Fix small typo to return all items for Environment.
24690         GetCommandLineArgs.
24691
24692 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24693
24694         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24695         reflection.c: more domain and assembly-unload related fixes
24696         and memory leaks plugs.
24697
24698 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24699
24700         * 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.
24701
24702 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24703
24704         * loader.c (mono_method_signature): Make this method lazy
24705         (mono_get_method_from_token): Don't computate the signature here.
24706
24707         Doing this saves quite a bit of memory. I got 90 kb on starting up
24708         monodoc. It should also save some disk reads on startup.
24709
24710         * *: MonoMethod->signature might be NULL now. You *MUST* use
24711         mono_method_signature.
24712
24713 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24714
24715         * object.c (mono_runtime_get_main_args): Return an array from the
24716         current domain here. Fixes #71938.
24717
24718 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24719
24720         * monitor.c: formatting changes to comply with the
24721         mono coding style and remove #ifdefs from the code.
24722
24723 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24724
24725         * metadata.c, private.h: remove some unneeded data
24726         and use a more compact representation for table schemas.
24727
24728 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24729
24730         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24731         to get a better distribution in hash tables.
24732         * *.c: use mono_aligned_addr_hash() where appropriate.
24733         * assembly.c: make var static.
24734
24735 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24736
24737         * domain-internals.h: Put MonoJitInfo on a diet.
24738
24739         * domain.c: Fix a warning.
24740
24741 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24742
24743         * gc.c: rework the gc handles code to reuse handles
24744         when freed.
24745
24746 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24747
24748         * domain.c: fixed long standing bug in mono_string_equal() which
24749         was brought to light with the ldstr changes.
24750
24751 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24752
24753         * reflection.c: Remove warning by adding missing include for marshal.h
24754
24755 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24756
24757         * domain.c, object.c: change the ldstr_table to hold
24758         MonoString* as keys: makes the runtime isinterned lookup
24759         faster and simplifies memory management.
24760
24761 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24762  
24763         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24764         possible to add imperative security checks before calling the icall.
24765         * reflection.c: Return security attributes on the original MonoMethod
24766         (and not the wrapped one). This fix permissions on icalls.
24767
24768 2005-01-25  Dick Porter  <dick@ximian.com>
24769
24770         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24771         the check for mktime() support actually test the mktime() return
24772         value.  "Fixes" bug 71682, though the output is still different to
24773         MS.
24774
24775 2005-01-25  Martin Baulig  <martin@ximian.com>
24776
24777         * class.c (mono_class_is_assignable_from): Make this work for
24778         generic instances.
24779
24780 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24781
24782         * marshal.c (mono_string_utf8_to_builder)
24783         (mono_string_builder_to_utf16): We might not have ownership of the
24784         string. In thise case, we need to create a new buffer.
24785
24786         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24787         be null, in which case, use the default capacity.
24788
24789 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24790
24791         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24792         GC events to the profiler.
24793
24794 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24795
24796         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24797         if you don't want the GC to run.
24798
24799 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24800
24801         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24802         start providing a GC API and keeping different implementations in
24803         their own file.
24804         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24805
24806 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24807
24808         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24809         mmap rather than allocating a huge buffer.
24810         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24811         above.
24812
24813 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24814
24815         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24816         and CheckExecutionRights.
24817         * reflection.c|h: Keep the index of the declarative security to be 
24818         used, instead of the pointer, when AOT compiler is used. Also add 
24819         class initialization when requesting demands.
24820         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24821         CheckExecutionRights. Both properties are now FALSE by default, and
24822         unmodifiable, unless the --security option is used.
24823
24824 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24825
24826         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24827         reflection.c: properly refcount images and assemblies, many leaks fixed.
24828
24829 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24830
24831         * threadpool.c: increase the timeout for threads in the thread pool to
24832         10s.  Fixes bug #67159.
24833
24834 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24835
24836         * class-internals.h: Sun's compiler insists on explicit
24837         signed on bit fields to handle then correctly.
24838
24839 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24840
24841         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24842         Make the size of the array fit only the number of invalid path
24843         chars that we have.
24844
24845         * class.c (_mono_class_get): Improve the error reporting when a
24846         class referenced is not found, to assist debugging. 
24847
24848 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24849
24850         * threads.c: fix off-by-one error.
24851         * domain.c: free data allocated in the domain.
24852
24853 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24854
24855         * reflection.c (mono_method_body_get_object): Fill out exception info
24856         as well.
24857
24858         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24859         structure.
24860         
24861 2005-01-19  Martin Baulig  <martin@ximian.com>
24862
24863         * loader.c (mono_get_method_constrained): Make this work again.
24864
24865 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24866
24867         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24868         guint16 to match the managed side.
24869
24870         * reflection.c (mono_reflection_body_get_object): Fill out local
24871         variables array.
24872
24873         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24874         as well.
24875
24876         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24877         'local_var_sig_token'.
24878
24879 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24880
24881         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24882         System.Drawing.
24883
24884         * reflection.c (mono_method_body_get_object): Handle abstract and
24885         runtime methods.
24886
24887 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24888
24889         * marshal.c, loader.c, class-internals.h, reflection.c:
24890         store the emthod data for a wrapper in an array instead of a list.
24891
24892 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24893
24894         * marshal.c: change the code to allocate memory more
24895         conservatively for method wrappers.
24896
24897 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24898
24899         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24900         fields from MonoClass to the marshal info structure where they belong.
24901
24902 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24903
24904         * class.c, object.c, class-internals.h, marshal.c: rearrange
24905         some fields and tweak some types to lower memory usage.
24906
24907 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24908
24909         * threads.c (signal_thread_state_change): Handle the case when the
24910         target thread is the current thread.
24911
24912         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24913
24914         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24915         emit_ptr_to_object_conv. 
24916
24917         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24918         marshalling. Fixes #71352.
24919
24920 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24921
24922         * metadata.h, blob.h: move table enum to blob.h so it can be included
24923         in any header.
24924         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24925         cut the size of MonoImage/MonoDynamicImage.
24926
24927 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24928
24929         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24930
24931 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24932
24933         * reflection.c, reflection.h, icall.c: add a function to check
24934         if an attribute type is defined for a metadata object.
24935
24936 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24937
24938         * object-internals.h: Added some needed fields from StringBuilder class.
24939         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24940
24941 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24942
24943         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24944         threads before shutting down the runtime.
24945
24946         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24947
24948 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24949
24950         * object-internal.h, threads.c: implement stacksize and 
24951         parameterized thread start functionality (requires
24952         matching corlib). Marked broken code for later removal.
24953
24954 2005-01-12  Martin Baulig  <martin@ximian.com>
24955
24956         * class-internals.h (MonoGenericClass): Moved the `initialized'
24957         flag to MonoDynamicGenericClass, removed `init_pending'.
24958         (MonoGenericInst): Added `is_reference' flag.
24959
24960 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24961
24962         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24963         inside the MSDOS header. Fixes #71201.
24964
24965         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24966         gc thread.
24967         (mono_domain_finalize): Ditto.
24968
24969 2005-01-12  Martin Baulig  <martin@ximian.com>
24970
24971         * class.c (mono_get_shared_generic_class): Use the cache for
24972         non-dynamic generic classes.
24973
24974         * class-internals.h (mono_class_create_generic_2): Removed
24975         function prototype, this function is now static inside class.c.
24976
24977         * class.c (mono_class_create_generic_2): Made this static, only
24978         call it from mono_class_init() and mono_class_setup_parent().
24979         (collect_implemented_interfaces_aux): Call mono_class_init() on
24980         the interfaces we collect.
24981         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24982
24983 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24984
24985         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24986         it a real thread handle.
24987
24988         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24989         MonoJitExceptionInfo, since each catch clause needs its own variable.
24990         
24991 2005-01-11  Dick Porter  <dick@ximian.com>
24992
24993         * image.c (mono_pe_file_open): New variant on mono_image_open()
24994         that does not set up the CLI metadata; used for FileVersionInfo so
24995         it can get the data for windows binaries too.
24996         
24997         * process.c (process_read_string_block): Don't read off the end of
24998         the StringTable block.
24999
25000         These both fix bug 70766.
25001
25002 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
25003
25004         * gc.c: set some fields to NULL at GC cleanup time.
25005         * threads.c: if we quit the main thread, call exit ().
25006
25007 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
25008
25009         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
25010
25011 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
25012
25013         * threads.h, threads.c, object.c: added accessor and settor for
25014         main_thread. Handle it specially when exiting from it: wait
25015         for other foreground threads to exit.
25016
25017 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
25018
25019         * process.c, verify.c: remove some bloat.
25020
25021 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
25022
25023         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
25024         the calling convention to cdecl under win32.
25025
25026 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
25027
25028         * object.c (mono_object_get_size): New function to get the size of
25029         an object instance.
25030
25031         * profiler.c (simple_allocation): Use above.
25032
25033 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
25034
25035         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
25036         ves_icall_System_AppDomain_getRootDomain (as it's not required to
25037         get an appdomain by it's id and we can't assume the root's id is 0).
25038         * domain-internals.h: Change the function prototype to match.
25039         * icall.c: Change the icall table for AppDomain.
25040
25041 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
25042
25043         * locales.c (string_invariant_compare_char): Only compute
25044         GUnicodeTypes in the case where we need them.  Test for ordinality
25045         first and return if so.
25046
25047         From the commit:
25048
25049                 /*
25050                  * FIXME: here we must use the information from c1type and c2type
25051                  * to find out the proper collation, even on the InvariantCulture, the
25052                  * sorting is not done by computing the unicode values, but their
25053                  * actual sort order.
25054                  */
25055
25056 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
25057
25058         * loader.c: for P/Invoke methods, allow the "Internal" shared
25059         library name to refer to the calling process symbol namespace.
25060
25061 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
25062
25063         * Makefile.am: Add the security manager to the build.
25064         * security-manager.c|h: New. Initialization of the security manager.
25065
25066 2005-01-07  Dick Porter  <dick@ximian.com>
25067
25068         * threads.c: 
25069         * monitor.c: Update thread state during Monitor and WaitHandle
25070         waits.  Fixes bug 71031.
25071
25072 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
25073
25074         * reflection.c (property_encode_signature): Correctly handle when the
25075         property has no methods.
25076
25077 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
25078
25079         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
25080         
25081         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
25082         fields from mb, not rmb. Fixes #71017.
25083
25084         * marshal.c (emit_ptr_to_str_conv): Add support for 
25085         ByValTStr -> string conversion. Fixes #71015.
25086
25087         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
25088
25089         * mempool.c (mono_mempool_contains_addr): New helper function.
25090
25091 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
25092
25093         * metadata.c (mono_metadata_compute_size): Fix size calculation of
25094         HasSematics encoded fields.
25095         
25096         * metadata.c (mono_type_to_unmanaged): Improve error message for 
25097         invalid string marshalling.
25098
25099         * metadata.c: Fix warnings.
25100         
25101 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
25102
25103         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
25104         profiler support.
25105
25106 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
25107
25108         * domain.c object.c domain-internals.h: Revert part of r38077 since the
25109         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
25110         tests.
25111
25112 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
25113
25114         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
25115         so methods containing these can be AOTed.
25116
25117 2005-01-03  Martin Baulig  <martin@ximian.com>
25118
25119         * loader.c (find_method): Removed the hack for generic instances.
25120         (method_from_memberref): If our parent is a generic instance, pass
25121         its generic type definition to find_method() and then inflate the
25122         method.
25123         (mono_get_method_constrained): Pass the generic type definition to
25124         find_method() and inflate the method later.
25125
25126         * class-internals.h (MonoStats): Added `generic_class_count'.
25127
25128         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
25129         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
25130
25131         * reflection.c (mono_custom_attrs_from_params): Don't ignore
25132         generic type definitions.
25133
25134 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
25135
25136         * loader.c icall.c: Fix warnings.
25137
25138 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
25139
25140         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
25141         blittable types. Fixes #70864.
25142
25143 2004-12-29  Martin Baulig  <martin@ximian.com>
25144
25145         * icall.c
25146         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
25147
25148         * reflection.c (mono_method_get_object): Create a
25149         "System.Reflection.MonoGenericMethod" for inflated methods; don't
25150         call mono_get_inflated_method().
25151
25152         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
25153
25154 2004-12-27  Martin Baulig  <martin@ximian.com>
25155
25156         * class-internals.h (MonoMethod): Added `is_inflated' flag.
25157         (MonoMethodInflated): Added `inflated' field.
25158
25159         * class.c (mono_class_inflate_generic_method): Don't really
25160         inflate the method here; just set the `is_inflated' flag in the
25161         MonoMethod.
25162         (mono_class_get_inflated_method): Actually inflate the method here
25163         if it's not already inflated; we use the MonoMethodInflated's new
25164         `inflated' field as a cache.
25165
25166 2004-12-26  Martin Baulig  <martin@ximian.com>
25167
25168         * class.c
25169         (inflate_generic_class): Moved some code out of inflate_generic_type().
25170         (mono_class_inflate_generic_method): If we're already inflated,
25171         inflate the context and use the declaring method; ie. make sure
25172         the declaring method of an inflated method is always the generic
25173         method definition.
25174         (mono_class_create_from_typedef): Create
25175         `class->generic_container->context->gclass'.
25176
25177 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
25178
25179         * metadata-internals.h, marshal.c, reflection.c: More
25180         MonoGHashTable->GHashTable.
25181
25182         * domain-internals.h, class.c: Change MonoGHashTable's into
25183         GHashTables for some cases where no gc stuff is used
25184
25185         All users: update apis
25186
25187 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
25188
25189         * metadata.c (builtin_types): Make this `const'. Makes this get
25190         put into the shareable section.
25191         (mono_metadata_init): Casts to make gcc happy.
25192
25193 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
25194
25195         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
25196
25197 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
25198
25199         * icall.c: Added an internal call to retrieve the position and length
25200         of assembly-level declarative security attributes (RequestMinimum, 
25201         RequestOptional and RequestRefuse). This is used by the Assembly class
25202         to re-create the corresponding permission sets.
25203
25204 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
25205
25206         * marshal.c: fix the stelemref wrapper to be type correct
25207         (and faster).
25208
25209 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
25210
25211         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
25212         to do key & 0x7fffffff. Hashtable already does this. It just
25213         results in longer code.
25214
25215 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
25216
25217         * appdomain.c: Bump corlib version.
25218         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
25219         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
25220         * reflection.c|h: Add functions to get declarative security infos
25221         (blob position and length) for assemblies, classes and methods.
25222
25223 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
25224
25225         * reflection.c: sort the constant table (bug #70693).
25226
25227 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
25228
25229         * object-internals.h, threads.c, domain.c: add accessors for
25230         the MonoThread and MonoDomain tls keys.
25231
25232 2004-12-18  Martin Baulig  <martin@ximian.com>
25233
25234         * class.c (inflate_generic_type): If we're inflating a generic
25235         instance, set `ngclass->context->container = context->container';
25236         ie. the container we inflated into.
25237
25238         * metadata.c (mono_metadata_parse_generic_param): Reflect above
25239         inflate_generic_type() changes.
25240
25241 2004-12-17  Martin Baulig  <martin@ximian.com>
25242
25243         * class-internals.h
25244         (MonoGenericClass): Replaced `MonoType *generic_type' with
25245         `MonoClass *generic_class'.  Removed `dynamic_info'; if
25246         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
25247         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
25248
25249 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
25250
25251         * exception.c (mono_exception_from_token): New helper function.
25252
25253 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
25254
25255         * assembly.c (mono_assembly_load_with_partial_name): Call 
25256         mono_assembly_loaded before invoking the preload hooks. Fixes
25257         #70564.
25258
25259         * object-internals.h (MonoThread): Change culture_info and 
25260         ui_culture_info into an array.
25261
25262         * threads.c: Cache culture info objects from more than one appdomain.
25263
25264         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
25265         current UI culture.
25266
25267 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
25268
25269         * threads.h threads.c appdomain.c: Clear the culture_info field of
25270         all threads during unloading if they point to an object in the dying
25271         appdomain.
25272
25273 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
25274
25275         * culture-info.h (TextInfoEntry): New struct
25276         * object-internals.h: sync with managed
25277         * locales.c: fill the `text_info_data' field
25278         * culture-info-tables.h: update
25279
25280 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
25281
25282         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
25283         collector.
25284
25285 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
25286
25287         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
25288         (ves_icall_ModuleBuilder_getMethodToken): Ditto
25289
25290 2004-12-12  Martin Baulig  <martin@ximian.com>
25291
25292         * mono-debug-debugger.c (write_type): If we're an enum and the
25293         builtin types have already been initialized, call mono_class_init().
25294
25295 2004-12-11  Martin Baulig  <martin@ximian.com>
25296
25297         * metadata.c (mono_metadata_load_generic_params): Added
25298         `MonoGenericContainer *parent_container' argument; automatically
25299         compute `container->is_method'; pass the correct owner to
25300         get_constraints().      
25301
25302         * reflection.c (compare_genericparam): Sort the GenericParam table
25303         according to increasing owners. 
25304
25305 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
25306
25307         * profiler.c: allow disabling the default profiler.
25308
25309 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
25310
25311         * decimal.c, icall.c: allow disabling System.Decimal support.
25312
25313 2004-12-09  Marek Safar <marek.safar@seznam.cz>
25314
25315         * reflection.c: Add support for null attribute arguments.
25316
25317 2004-12-09  Martin Baulig  <martin@ximian.com>
25318
25319         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
25320         names to get rid of compiler warnings.
25321
25322 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25323
25324         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
25325         mono_marshal_load_type_info (). Fixes #69625.
25326         (mono_marshal_get_ptr_to_struct): Likewise.
25327
25328 2004-12-08  Martin Baulig  <martin@ximian.com>
25329
25330         * mono-debug.h: Bumped version number to 47.
25331
25332         * mono-debug-debugger.c
25333         (mono_debugger_event_handler, mono_debugger_event): Take two
25334         guint64 arguments insteed of a gpointer and a guint32.  
25335
25336 2004-12-08  Martin Baulig  <martin@ximian.com>
25337
25338         * debug-mono-symfile.h
25339         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
25340         `address' to `native_offset'.
25341
25342 2004-12-08  Martin Baulig  <martin@ximian.com>
25343
25344         * class.c (mono_class_create_from_typespec): Only inflate if we
25345         either have `context->gclass' or `context->gmethod'.
25346
25347 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
25348
25349         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
25350
25351         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
25352
25353         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
25354
25355         * reflection.c (mono_assembly_get_object): Remove the workaround put
25356         in for the release.
25357         
25358         * appdomain.c: Use the corlib_internal field from MonoAssembly.
25359
25360         * appdomain.c: Bump corlib version.
25361
25362         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
25363         be visible in other appdomains.
25364
25365 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
25366
25367         * threads.c: Interlocked inc and dec for longs were messed up,
25368         use a KISS based impl for this. Fixes 70234
25369
25370 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
25371
25372         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
25373
25374 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25375
25376         * icall.c: fix to follow policy not to allow struct
25377         arguments in icalls.
25378
25379 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25380
25381         * process.c: make the patch that handles spaces in file paths work
25382         on mono/windows too.
25383
25384 2004-12-06  Martin Baulig  <martin@ximian.com>
25385
25386         * class.c (mono_class_create_generic): Call
25387         mono_class_setup_supertypes() if we're dynamic.
25388         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
25389
25390 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
25391
25392         * object-internals.h: Add new fields to MonoThread.
25393
25394         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25395
25396         * icall.c threads-types.h threads.c: Add new icalls.
25397
25398         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
25399
25400         * object-internals.h (MonoReflectionAssembly): Sync object layout with
25401         managed side.
25402
25403         * appdomain.c: Bump corlib version.
25404
25405         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
25406         internal assemblies. Fixes #69181.
25407
25408 2004-12-05  Martin Baulig  <martin@ximian.com>
25409
25410         * class.c (mono_class_inflate_generic_signature): Make this a
25411         no-op if `context' is NULL or we don't have any type parameters;
25412         also copy `sentinelpos'.        
25413
25414 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
25415
25416         * image.c: Add unbox_wrapper_cache.
25417
25418         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
25419
25420         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
25421         function generator.
25422         
25423         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
25424         Fixes #70173.
25425
25426         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
25427         
25428 2004-12-04  Martin Baulig  <martin@ximian.com>
25429
25430         * loader.c (mono_method_get_signature_full): New public function;
25431         like mono_method_get_signature(), but with an additional
25432         `MonoGenericContext *' argument.
25433
25434         * class.c (mono_class_inflate_generic_signature): Formerly known
25435         as inflate_generic_signature(); make this public.
25436
25437 2004-12-04  Martin Baulig  <martin@ximian.com>
25438
25439         * metadata.c
25440         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
25441         instead of a `MonoGenericContainer *'.  
25442         (mono_metadata_parse_array_full): Likewise.
25443         (mono_metadata_parse_signature_full): Likewise.
25444         (mono_metadata_parse_method_signature_full): Likewise.
25445         (mono_metadata_parse_generic_inst): Likewise.
25446         (mono_metadata_parse_generic_param): Likewise.
25447         (mono_metadata_parse_mh_full): Likewise.
25448         (mono_type_create_from_typespec_full): Likewise.
25449
25450 2004-12-03  Martin Baulig  <martin@ximian.com>
25451
25452         * class-internals.h (MonoGenericContainer): Replaced the
25453         `MonoGenericContext * pointer with a `MonoGenericContext'
25454         structure and made it the first element.
25455
25456 2004-12-03  Martin Baulig  <martin@ximian.com>
25457
25458         * class.c
25459         (inflate_generic_type): Set the `context->container' when creating
25460         a new MonoGenericContext.
25461         (mono_class_inflate_generic_method): Likewise.
25462         (mono_class_create_from_typespec): Just use `context->container'
25463         to get the container.
25464
25465         * loader.c (method_from_methodspec): Set `context->parent' from
25466         `context->container' - and if that's a method container, use its
25467         parent.  Also set the `context->container' when creating a new
25468         MonoGenericContext.
25469         (mono_get_method_from_token): Use just `context->container' to get
25470         the container.
25471
25472         * metadata.c (do_mono_metadata_parse_generic_class): Also set
25473         `gclass->context->container'.
25474
25475         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
25476         the `context->container' when creating a new MonoGenericContext.
25477
25478 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
25479
25480         * reflection.c (compare_genericparam): Sort params with identical
25481         owner by their number. Fixes gen-111 on sparc.
25482
25483 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25484
25485         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
25486         around the domain changes.
25487
25488         * appdomain.c (mono_domain_unload): Handle the case when the thread
25489         calling Unload is itself being aborted during unloading. Fixes #70022.
25490
25491         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
25492
25493         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
25494         checkpoint_func as an icall so it gets a wrapper.
25495         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
25496         in the cross-appdomain wrappers too.
25497
25498         * threads.c (mono_thread_has_appdomain_ref): Make this public.
25499
25500         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
25501
25502         * reflection.c: Fix some memory leaks.
25503         
25504 2004-12-02  Martin Baulig  <martin@ximian.com>
25505
25506         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
25507
25508         * metadata.c (generic_class_cache): New static hashtable.
25509         (mono_metadata_lookup_generic_class): New public method.
25510
25511 2004-12-02  Martin Baulig  <martin@ximian.com>
25512
25513         * class.c (mono_class_create_from_typedef): Call
25514         mono_class_setup_parent() and mono_class_create_mono_type() before
25515         parsing the interfaces.
25516
25517 2004-12-02  Martin Baulig  <martin@ximian.com>
25518
25519         * metadata.c (generic_inst_cache): New static hashtable.
25520         (mono_metadata_lookup_generic_inst): New public function.
25521         (mono_metadata_inflate_generic_inst): New public function.
25522         (mono_metadata_parse_generic_inst): New public function.
25523         (do_mono_metadata_parse_generic_class): Use the new
25524         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
25525         since this'll also use the cache.
25526
25527         * reflection.c (mono_reflection_bind_generic_method_parameters):
25528         Use mono_metadata_lookup_generic_inst() to use the new cache.
25529
25530         * class.c (inflate_mono_type): Use
25531         mono_metadata_inflate_generic_inst() to inflate a generic
25532         instance; this'll also use the new cache.
25533
25534         * loader.c (method_from_methodspec): Use
25535         mono_metadata_parse_generic_inst() and
25536         mono_metadata_inflate_generic_inst() rather than parsing it
25537         manually, so we can use the new cache.
25538
25539 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25540
25541         * threads.c (wait_for_tids): Do not incorrectly free threads when 
25542         the wait times out.
25543
25544 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
25545
25546         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
25547         iter->args based on whether parameters are passed in registers (i.e.
25548         MONO_ARCH_REGPARMS is defined)
25549
25550 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
25551
25552         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
25553         the exception message. Fixes #70070.
25554         (method_from_methodspec): Fix warnings.
25555
25556 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25557
25558         * process.c: (complete_path) return the path quoted
25559
25560 2004-12-01  Martin Baulig  <martin@ximian.com>
25561
25562         * class-internals.h (MonoGenericInst): New structure.
25563         (MonoGenericClass): Replaced `type_argc', `type_argv' and
25564         `is_open' with `MonoGenericInst *inst'.
25565         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
25566         `is_open' with `MonoGenericInst *inst'.
25567
25568 2004-11-30  Martin Baulig  <martin@ximian.com>
25569
25570         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
25571
25572         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
25573         to `generic_class_cache'.
25574
25575         * metadata.c
25576         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
25577         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
25578         (mono_generic_inst_is_valuetype): Renamed to
25579         mono_generic_class_is_valuetype().
25580
25581         * class-internals.h
25582         (MonoGenericInst): Renamed to MonoGenericClass.
25583         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
25584         (MonoClass): Renamed `generic_inst' to `generic_class'.
25585         (MonoGenericContext): Renamed `ginst' to `gclass'.
25586
25587         * object-internals.h
25588         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25589
25590         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25591         mono_reflection_generic_class_initialize().
25592
25593         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25594         now known as "System.Reflection.MonoGenericClass".
25595         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25596
25597 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25598
25599         * class-internals.h: Added a flag field to MonoClass to cache the
25600         declarative security attributes actions associated with the class.
25601         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25602         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25603         applicable to the JITted method.
25604         * reflection.c|h: Added functions to extract (as flags) which security
25605         actions are available (declaratively) for a method, class or assembly.
25606         * metadata.c|h: Added functions to search the declarative security
25607         table in the metadata.
25608         
25609 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25610
25611         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25612         EXPORTEDTYPES are already in the class name cache, so there is no
25613         need to add extra code here to look at them. Just removes a bit of
25614         cruft.
25615
25616         (ves_icall_System_Environment_get_TickCount): No need for #if
25617         WINDOWS. We already have the code in io-layer.
25618
25619 2004-11-28  Martin Baulig  <martin@ximian.com>
25620
25621         * loader.c
25622         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25623         Fixes gen-112.cs.
25624
25625 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25626
25627         * assembly.c (do_mono_assembly_open): Instead of having a
25628         conditional WITH_BUNDLE, incorporate support for bundles here, by
25629         having a global `bundles' variable holding a pointer to the actual
25630         bundles. 
25631
25632         (mono_register_bundled_assemblies): New API call used by the
25633         bundle code. 
25634
25635         See mkbundle.1 for details.
25636         
25637 2004-11-27  Martin Baulig  <martin@ximian.com>
25638
25639         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25640         the vtable for generic methods.
25641
25642 2004-11-26  Martin Baulig  <martin@ximian.com>
25643
25644         * metadata.c
25645         (mono_metadata_generic_method_hash): New public function.
25646         (mono_metadata_generic_method_equal): Likewise.
25647
25648         * class-internals.h
25649         (MonoGenericContainer): Added `GHashTable *method_hash'.
25650
25651         * reflection.c (ReflectionMethodBuilder): Added
25652         `MonoGenericContainer *generic_container'.
25653         (reflection_methodbuilder_to_mono_method): Don't create a new
25654         MonoGenericContainer each time we're called.
25655         (mono_reflection_bind_generic_method_parameters): Use
25656         `container->method_hash' to cache the results so we don't create a
25657         different method if we're called several times with the same
25658         arguments.
25659
25660         * loader.c (method_from_methodspec): Use the new
25661         `container->method_hash' here, too.
25662
25663 2004-11-26  Martin Baulig  <martin@ximian.com>
25664
25665         * class.c (inflate_generic_signature): Correctly compute
25666         `res->has_type_parameters'.
25667         (mono_class_vtable): Use the `has_type_parameters' flag to
25668         determine whether we're a generic method.
25669
25670         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25671
25672 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25673
25674         * object.c (mono_runtime_run_main): Fix a small memory leak.
25675
25676 2004-11-25  Martin Baulig  <martin@ximian.com>
25677
25678         * class.c (set_generic_param_owner): Fixed the loop.
25679
25680 2004-11-25  Martin Baulig  <martin@ximian.com>
25681
25682         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25683         generic methods.
25684
25685 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25686
25687         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25688         names. Fixes #69787.
25689
25690 2004-11-24  Martin Baulig  <martin@ximian.com>
25691
25692         * class.c (mono_class_create_generic_2): If we don't have a
25693         `ginst->parent', inflate `gklass->parent' to get our parent.
25694
25695 2004-11-24  Martin Baulig  <martin@ximian.com>
25696
25697         * reflection.c (compare_genericparam): Correctly sort the
25698         GenericParam table; fixes #69779.
25699
25700 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25701
25702         * reflection.c: When writing a PE file, don't create a huge
25703         buffer in memory. Just write the arrays we have to the file.
25704         This reduces memory usage.
25705
25706         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25707         globally.
25708
25709 2004-11-17  Martin Baulig  <martin@ximian.com>
25710
25711         * class.c (mono_class_init): Don't setup `class->parent' for
25712         dynamic instances; moved this to mono_class_generic_2().
25713         (mono_class_create_generic): Also set `klass->inited' for dynamic
25714         generic instances.
25715         (mono_class_create_generic_2): Don't do anything for dynamic
25716         generic instances.  Set `klass->parent' here and also call
25717         mono_class_setup_parent() here. 
25718
25719         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25720         `MonoType *parent' argument; set `ginst->parent' before calling
25721         mono_class_create_generic_2(), so we set the correct parent.
25722
25723 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25724
25725         * reflection.c: allow getting attributes from ModuleBuilder
25726         (used by ikvm).
25727
25728 2004-11-17  Martin Baulig  <martin@ximian.com>
25729
25730         * class.c (mono_class_create_from_typedef): If a type parameter is
25731         inherited from an outer class, set its owner to that class.
25732
25733 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25734
25735         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25736           for (int*) written size. This fixes bug #69592.
25737
25738 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25739
25740         * icall.c: Added IsAuthenticodePresnet internal call.
25741         * image.c|h: New function that check a MonoImage for an Authenticode
25742         signature in the certificate PE data directory.
25743         * security.c|h: New internal call to ask the runtime if an 
25744         Authenticode signature seems referenced in the PE header.
25745
25746 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25747
25748         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25749
25750         * reflection.c (mono_image_create_pefile): Free the assembly streams
25751         after writing out the assembly file.
25752
25753         * object.c (mono_runtime_run_main): Fix small memory leak.
25754
25755         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25756         property access modifiers. Fixes #69389.
25757
25758 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25759
25760         * domain.c, object.c, object-internals.h, domain-internals.h,
25761         object.h, marshal.c: keep dynamic code info per domain.
25762
25763 2004-11-15  Martin Baulig  <martin@ximian.com>
25764
25765         * class.c (mono_type_get_name_recurse): Put type arguments in
25766         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25767         see bug #68387.
25768
25769 2004-11-15  Martin Baulig  <martin@ximian.com>
25770
25771         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25772         (mono_class_setup_vtable): When computing `the_cname' for a
25773         generic instance, don't include the namespace since we'd otherwise
25774         add it twice.
25775
25776 2004-11-15  Martin Baulig  <martin@ximian.com>
25777
25778         * class.c (mono_class_create_generic): Changed return type to void.
25779         (mono_class_create_generic_2): New public function; setup
25780         `class->method', `class->field' and `class->interfaces' here
25781         instead of in mono_class_init().
25782
25783         * class.h (mono_class_create_generic): Moved to class-internals.h.
25784
25785 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25786
25787         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25788         rather than writing to memory, write to this file. Right now,
25789         we are just writting into a buffer, and copying that. However
25790         we can avoid the buffer later.
25791
25792         (mono_dynamic_stream_reset): new function
25793
25794         * icall.c, object-internals.h: update for the above.
25795
25796 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25797
25798         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25799         have been using gc'd memory. First it is slower, unlikely
25800         the comment in the source code said, secondly, it increases
25801         our footprint to do it in the gc.
25802
25803         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25804         the method so that it does not have to copy to managed code.
25805
25806 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25807
25808         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25809
25810 2004-11-12  Martin Baulig  <martin@localhost>
25811
25812         * reflection.c (mono_image_create_token): Allow generic method
25813         definitions here, since they may appear in an `.override'; see
25814         gen-98/gen-99 for an example.
25815
25816 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25817
25818         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25819         #69365.
25820
25821         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25822         descriptive.
25823
25824 2004-11-11  Martin Baulig  <martin@ximian.com>
25825
25826         * class.c (mono_class_setup_vtable): In an explicit interface
25827         implementation, the method name now includes the arity.
25828
25829 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25830
25831         * object.c (mono_array_full_copy): Fix warning.
25832
25833 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25834
25835         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25836         mono_class_get_method_from_name() instead.
25837         
25838         * class-internals.h: Added two new types of wrappers. 
25839         Added MonoRemotingTarget enum. Added new trampoline function type, which
25840         takes an additional MonoRemotingTarget value as parameter, so it is
25841         possible to request a trampoline for a specific target.
25842         
25843         * class.c: Added new mono_class_get_method_from_name() method.
25844         
25845         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25846         general remoting sinks and one specific for cross domain calls.
25847         
25848         * debug-helpers.c: Added new wrapper names.
25849         
25850         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25851         of a remote class.
25852         
25853         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25854         
25855         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25856         with several other methods (mono_marshal_get_xappdomain_dispatch,
25857         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25858         and others) can generate a fast remoting wrapper for cross domain calls.
25859         More information can be found in docs/remoting.
25860         Other changes: Removed mono_find_method_by_name, and used
25861         mono_class_get_method_from_name instead.
25862         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25863         is stored in the remoting invoke hashtable.
25864         
25865         * marshal.h: published the new method for getting the xdomain wrapper,
25866         and also added a method for getting the adequate wrapper for a given
25867         method and target.
25868         
25869         * object-internals.h, object.c: Added a couple of methods for capying and
25870         cloning arrays.
25871         Modified mono_install_remoting_trampoline, which takes the new remoting
25872         trampoline that has a remoting target as parameter.
25873         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25874         will return the most suitable vtable for the target.
25875         Added mono_remote_class_vtable, which returns the vtable of a remote class
25876         (which can be the normal remoting vtable or the xdomain vtable).
25877         
25878         * threads.c: the xdomain invoke and dispatch wrappers must also be
25879         protected against interruptions.
25880
25881 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25882
25883         * icall.c: use memmove in BlockCopyInternal when the source and
25884         destination arrays are the same.
25885
25886 2004-11-09  Martin Baulig  <martin@ximian.com>
25887
25888         * class-internals.h (MonoGenericContainer): Removed `method' and
25889         `signature', replaced them with `is_method' and `is_signature'
25890         flags.  Added `context'.
25891
25892         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25893         instead of a `MonoGenericContainer *'.
25894
25895         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25896         for dynamic type parameters.
25897         (mono_metadata_load_generic_params): Setup `container->context'.
25898
25899         * reflection.c (mono_reflection_setup_generic_class): Setup
25900         `tb->generic_container->context'.
25901         (do_mono_reflection_bind_generic_parameters): Use
25902         mono_class_inflate_generic_type() to correctly inflate types,
25903         rather than using our own hack just for MONO_TYPE_VAR.
25904
25905 2004-11-09  Martin Baulig  <martin@ximian.com>
25906
25907         * class.c (mono_class_inflate_generic_method): Small fix; don't
25908         crash here.
25909
25910         * icall.c
25911         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25912         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25913         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25914         (ves_icall_Type_BindGenericParameters): Likewise.
25915         (ves_icall_Type_get_IsGenericInstance): Likewise.
25916         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25917         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25918         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25919         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25920
25921 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25922
25923         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25924         assembly versions and public key tokens. Fixes #69113.
25925
25926 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25927
25928         * metadata.c: fix bug introduced with the type cache changes
25929         on 2004-11-06.
25930
25931 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25932
25933         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25934         the MonoClass pointer instead of the token in exception clauses.
25935         * reflection.c: updates for the above and make the code not depend
25936         on the structure of MonoExceptionClause.
25937
25938 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25939
25940         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25941         Add support for dynamic assemblies. Fixes #69114.
25942
25943         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25944
25945 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25946
25947         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25948         since most only those methods use it. the code member of
25949         MonoMethodPInvoke was dead, so that can be removed too. Also,
25950         remove inline_count (again, not used), and move slot so that it
25951         can share bits with some other flags. This saves 8 bytes in the
25952         structure and gives us about 50 kb back for mcs helloworld.cs
25953
25954         * *.[ch]: Do naming changes for the above.
25955
25956         * loader.c (mono_method_get_header): Lazily init the header
25957         on first access.
25958         (mono_get_method_from_token): don't init the header here
25959         (mono_free_method): the header may never be allocated
25960
25961         Overall, this saves 150 kb of unmanaged allocations
25962         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25963         memory at runtime.
25964         
25965         * loader.c, loader.h (mono_method_get_header): new accessor.
25966
25967         * *.[ch]: use the above method. Prepares us to lazily load
25968         the header.
25969
25970         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25971         three warnings, which are actual bugs (see 69206).
25972
25973         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25974         unused. Saves a cool 4 bytes / method.
25975
25976 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25977
25978         * metadata.c (builtin_types): Add types for System.Object here.
25979         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25980         for a class or valuetype from klass->this_arg or klass->byval_arg.
25981
25982         On mcs for a hello world, this gets us down from 21836 MonoType's
25983         to 14560.
25984
25985         (mono_metadata_free_type): Account for the above change.
25986
25987 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25988
25989         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25990         exception instead of asserting if name is null.
25991         (ves_icall_System_AppDomain_GetData): Ditto.
25992
25993 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25994
25995         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25996         EnumBuilder.
25997
25998         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25999         Return NULL when the domain does not have entry_assembly set.
26000
26001         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
26002         Add a 'resource_modules' argument.
26003         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
26004
26005         * reflection.c (mono_reflection_create_runtime_class): Move setting
26006         of wastypebuilder here, so mono_get_type_object () returns a MonoType
26007         for enums too.
26008
26009         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
26010         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
26011         Throw an ArgumentNullException if 'ptr' is null.
26012
26013         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
26014         assemblies here. Fixes #69020.
26015
26016 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
26017
26018         * reflection.c (build_compressed_metadata): Fix the previous patch for
26019         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
26020         the stack.
26021
26022 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
26023
26024         * assembly.c (mono_assembly_names_equal): Allow a match if one of
26025         the cultures is false. Fixes #69090.
26026
26027         * reflection.c (build_compressed_metadata): Fix invalid memory read 
26028         detected by valgrind.
26029         
26030         * reflection.c (mono_reflection_get_type): Avoid triggering a 
26031         TypeResolve multiple times for the same type. Fixes #65577.
26032
26033 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
26034
26035         * marshal.c: Avoid using ldftn to call managed functions. It is
26036         much slower than just a call.
26037
26038         * reflection.c (mono_module_get_object): free the basename we
26039         allocate here from glib.
26040         
26041         * reflection.c (ensure_runtime_vtable): make sure to free
26042         overrides.  Also, we were allocating an array of MonoMethod not an
26043         array of MonoMethod*.
26044
26045         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
26046
26047         * image.c (mono_image_close): free image->guid here.
26048
26049 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
26050
26051         * reflection.c: Fix some spec conformance issues with the PE file
26052         structures so mcs compiled apps run on the Net 2.0 beta.
26053
26054 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
26055
26056         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
26057         Implement this. Fixes #67264.
26058
26059         * debug-helpers.h debug-helpers.c marshal.c: Move 
26060         mono_find_method_by_name to debug-helpers.c.
26061
26062 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
26063
26064         * object.c (mono_release_type_locks): type_initialization_hash is
26065         a GHashTable.
26066
26067         * reflection.c object.c object-internals.h: Fix warnings.
26068
26069         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
26070         without accessors. Fixes #61561.
26071
26072         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
26073         application base from the root domain if not set. Fixes #65641.
26074         (mono_runtime_init): Fix warning.
26075
26076 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26077
26078         * appdomain.c: call mono_thread_pool_init.
26079         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
26080         of worker threads based on the number of CPUs and the environment
26081         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
26082         for non-windows (windows) systems.
26083
26084 2004-10-27  Chris Toshok  <toshok@ximian.com>
26085
26086         * mono-debug-debugger.c (write_class): don't call mono_class_init
26087         here, as even with the check for (!klass->init_pending), we get
26088         into a situation where we're hitting cycles in class
26089         initialization.  Fixes #68816.
26090
26091 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
26092
26093         * image.c: Avoid overwriting values in the loaded_images_hash when an
26094         assembly is loaded multiple times. Fixes #61152.
26095
26096         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
26097         so multiple satellite assemblies for the same name can be loaded.
26098         Fixes #68259.
26099
26100         * mono_domain_assembly_preload: Actually return the loaded assembly, 
26101         not NULL.
26102
26103         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
26104         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
26105
26106         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
26107         pending finalizers are not invoked after the appdomain has been 
26108         unloaded. Fixes #67862.
26109
26110 2004-10-22  Martin Baulig  <martin@ximian.com>
26111
26112         * mono-debug-debugger.c
26113         (mono_debugger_runtime_invoke): Don't box valuetypes.
26114
26115 2004-10-22  Chris Toshok  <toshok@ximian.com>
26116
26117         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
26118         don't hide private methods.
26119
26120 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
26121
26122         * icall.c: Allows the runtime to "share" (when known) the public key
26123         token of an assembly. This avoid the need to recalculate the token 
26124         (from the public key) in managed code.
26125
26126 2004-10-21  Chris Toshok  <toshok@ximian.com>
26127
26128         * debug-helpers.c (append_class_name): argh, revert last patch.
26129         
26130 2004-10-21  Chris Toshok  <toshok@ximian.com>
26131
26132         * debug-helpers.c (append_class_name): use '+' as the delimiter,
26133         not '/', so that it matches what the debugger uses to look up
26134         methods.
26135
26136 2004-10-21  Martin Baulig  <martin@ximian.com>
26137
26138         * mono-debug-debugger.c (mono_debugger_throw_exception): New
26139         public method; this is called each time an exception is thrown and
26140         allows the debugger to use exception catch points.
26141
26142 2004-10-21  Martin Baulig  <martin@ximian.com>
26143
26144         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
26145         the stack pointer and the exception object in some struct and pass
26146         that to the debugger.
26147
26148 2004-10-21  Chris Toshok  <toshok@ximian.com>
26149
26150         * mono-debug-debugger.c (do_write_class): add instance/static
26151         event support.  We don't expose "raise" or "other" yet.
26152         (event_is_static): new method.
26153
26154 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
26155
26156         * mono-debug-debugger.c
26157         (mono_debugger_handle_exception): Remove
26158         bogus return value for fussy compilers.
26159
26160 2004-10-20  Martin Baulig  <martin@ximian.com>
26161
26162         * mono-debug-debugger.c
26163         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
26164         (mono_debugger_handled_exception): Likewise.
26165
26166 2004-10-20  Martin Baulig  <martin@ximian.com>
26167
26168         * mono-debug-debugger.h (MonoDebuggerEvent): Added
26169         MONO_DEBUGGER_EVENT_EXCEPTION.
26170
26171         * mono-debug-debugger.c (mono_debugger_handle_exception): New
26172         public function to send the debugger a notification for an
26173         exception and inform it about a catch/finally clause.
26174
26175 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
26176
26177         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
26178         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
26179         fix 2.95 build. 
26180
26181         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
26182
26183 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
26184
26185         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
26186         marshalled as [In,Out]. Fixes #58325.
26187
26188 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
26189
26190         * reflection.c (mono_method_body_get_object): Implement some fields.
26191
26192 2004-10-12  Martin Baulig  <martin@ximian.com>
26193
26194         * reflection.c (mono_reflection_bind_generic_parameters): Small
26195         fix, correctly retrieve our parent from a generic instance.
26196
26197 2004-10-12  Martin Baulig  <martin@ximian.com>
26198
26199         * metadata.c (mono_metadata_generic_param_equal): We always have
26200         an owner.
26201
26202         * class.c
26203         (mono_class_from_generic_parameter): We need to have an owner.
26204         (my_mono_class_from_generic_parameter): Likewise.
26205
26206         * reflection.c (mono_reflection_setup_generic_class): Renamed to
26207         mono_reflection_create_generic_class() and added a new
26208         mono_reflection_setup_generic_class().  
26209         (mono_reflection_initialize_generic_param): If we're a nested
26210         generic type and inherited from the containing class, set our
26211         owner to the outer class.
26212
26213 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
26214
26215         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
26216
26217         * reflection.c (mono_method_body_get_object): New function to create
26218         a MethodBody object.
26219
26220         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
26221
26222 2004-10-11  Martin Baulig  <martin@ximian.com>
26223
26224         * metadata.c (_mono_metadata_type_equal): Renamed to
26225         do_mono_metadata_type_equal() and made static.
26226
26227 2004-10-11  Martin Baulig  <martin@ximian.com>
26228
26229         * appdomain.c: Bump corlib version number to 28.
26230
26231 2004-10-10  Martin Baulig  <martin@ximian.com>
26232
26233         * class-internals.h
26234         (MonoGenericInst): Added `MonoGenericContainer *container'.
26235         (MonoGenericMethod): Likewise.
26236         (MonoGenericContext): Likewise.
26237         (MonoGenericParam): Added `MonoGenericContainer *owner'.
26238
26239         * metadata.c
26240         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
26241         (do_mono_metadata_parse_generic_inst): Likewise.
26242         (mono_metadata_parse_type_full): New public method.  This is the actual
26243         mono_metadata_parse_type() implementation - with an additional
26244         `MonoGenericContainer *' argument.
26245         (mono_metadata_parse_array_full): Likewise.
26246         (mono_metadata_parse_signature_full): Likewise.
26247         (mono_metadata_parse_method_signature_full): Likewise.
26248         (mono_metadata_parse_mh_full): Likewise.
26249         (mono_type_create_from_typespec): Likewise.
26250         (mono_metadata_interfaces_from_typedef_full): New public method;
26251         this is similar to the other _full() methods, but we take a
26252         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
26253         (mono_metadata_parse_generic_param): Take an additional
26254         `MonoGenericContainer *' argument and lookup the MonoGenericParam
26255         from that container.
26256         (mono_metadata_generic_param_equal): New static method to compare
26257         two type parameters.
26258         (_mono_metadata_type_equal): New static method; takes an
26259         additional `gboolean signature_only' argument - if true, we don't
26260         compare the owners of generic parameters.
26261         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
26262         with a TRUE argument - do a signature-only comparision.
26263
26264         * loader.c: Use the new _full() methods and pass the
26265         MonoGenericContainer to them.
26266
26267         * object-internals.h (MonoReflectionTypeBuilder): Added
26268         `MonoGenericContainer *generic_container' field.
26269         (MonoReflectionMethodBuilder): Likewise.
26270
26271 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
26272
26273         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
26274         case initial images of dynamic assemblies.
26275
26276         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
26277
26278         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
26279
26280         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
26281         length of event->other array.
26282         (typebuilder_setup_events): Ditto.
26283
26284         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
26285         'assembly_by_name' and add an 'assemblies' list.
26286
26287         * assembly.h assembly.c: Add a new search hook for determining whenever
26288         an assembly is already loaded. Use this instead of searching in the
26289         loaded_assemblies list.
26290
26291         * domain.c appdomain.c: Implement the new search hook so loaded 
26292         assemblies are now scoped by appdomain. Fixes #67727.
26293
26294 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
26295
26296         * threads.c (mono_thread_attach): Initialize synch_lock field so
26297         mono_thread_detach works again.
26298
26299         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
26300         'lib' too. Fixes #63130.
26301
26302 2004-10-06  Jackson Harper  <jackson@ximian.com>
26303
26304         * culture-info-tables.h: regenerated.
26305
26306 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
26307
26308         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
26309         implemented by other interfaces in the result. Fixes #65764.
26310         
26311         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26312         Handle unloadable modules without crashing.
26313
26314         * image.c (load_modules): Revert the previous patch since modules must
26315         have a fixed index inside the array.
26316         
26317         * image.c (load_modules): Don't include native modules in the modules
26318         array.
26319
26320 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
26321
26322         * reflection.h: Add param_defaults field.
26323
26324         * reflection.c: Add support for parameter defaults in dynamic methods.
26325         Fixes #64595.
26326
26327         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
26328         an empty string when a type has no namespace. Fixes #64230.
26329
26330 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
26331
26332         * tabledefs.h: Added "internal" security actions to support non-CAS
26333         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
26334         Note: they do not seems to be used anymore in 2.0 (new metadata format)
26335
26336 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
26337
26338         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
26339         constructor of abstract class. Fixes #61689.
26340
26341 2004-10-04  Martin Baulig  <martin@ximian.com>
26342
26343         * class-internals.h (MonoGenericContainer): New type.
26344         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
26345         `MonoGenericContainer *generic_container'.
26346         (MonoClass): Replaced `gen_params' and `num_gen_params' with
26347         `MonoGenericContainer *generic_container'.
26348
26349         * metadata.c (mono_metadata_load_generic_params): Return a
26350         `MonoGenericContainer *' instead of a `MonoGenericParam *';
26351         removed the `num' argument.
26352
26353 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
26354
26355         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
26356         for dynamic images.
26357
26358         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
26359         machine fields.
26360
26361         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
26362
26363         * reflection.c: Save pe_kind and machine values into the generated
26364         image file.
26365
26366         * appdomain.c: Bump corlib version number.
26367
26368         * object-internals.h: Reorganize layout of LocalBuilder.
26369
26370         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
26371         New helper function.
26372
26373         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
26374         created MonoType for dynamic types. Fixes #66180.
26375
26376 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
26377
26378         * threadpool.c: the ares hashtable needs a critical section around it.
26379         this prevents some nasty segfaults
26380
26381 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
26382
26383         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
26384         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
26385         bug 67324).
26386         
26387 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26388
26389         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
26390         
26391 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
26392
26393         * image.c: Always canonicalize image file names, to avoid loading
26394         the same assembly twice when referenced using a relative path.
26395
26396 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
26397
26398         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
26399
26400         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
26401
26402         * marshal.c: Fix warnings.
26403
26404 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
26405
26406         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
26407         attempting to marshal the delegate_trampoline as the method_addr.
26408         This patch has a static hashtable of marshalled delegates so that 
26409         we can map delegate_trampoline addresses back to delegates.  This
26410         allows a delegate passed to managed code to be passed back into native
26411         code.  Fixes #67039
26412
26413 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26414
26415         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
26416
26417         * reflection.c (method_encode_code): Align method headers properly.
26418         Fixes #66025.
26419
26420 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26421
26422         * marshal.c: In the runtime invoke wrapper, reset the abort
26423         exception if it is cached. This avoids the automatic rethrowal of 
26424         the exception after the catch of the wrapper. Also check for pending
26425         interruptions before calling the managed method. This is done using
26426         the new method emit_thread_force_interrupt_checkpoint, since the
26427         normal checkpoint method is ignored when running the invoke wrapper.
26428         * object.c: If the abort exception is rethrown, set the abort_exc
26429         field of the thread, so it will be rethrown aftere every catch.
26430         * threadpool.c: Only run an interruption checkpoint if what has been
26431         requested is a stop of the thread (aborts will be ignored).
26432         * threads.c: By default, a thread will now never be interrumped while
26433         running the runtime invoke wrapper (this ensures that runtime_invoke
26434         will always return to the caller if an exception pointer is provided).
26435         There is a new special method mono_thread_force_interruption_checkpoint()
26436         to force an interruption checkpoint even if running a protected
26437         wrapper, which is used by the same runtime invoke wrapper to do a check
26438         at a safe point.
26439
26440 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
26441
26442         * object.c, object-internals.h: Implemented mono_release_type_locks,
26443         which releases the cctor locks held by a thread.
26444         * threads.c, threads.h: In thread_cleanup, release cctor locks held
26445         by a thread. Added mono_thread_exit() method to be used to safely stop
26446         a thread.
26447
26448 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26449
26450         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
26451         Move null check before dereference.  Avoid indexing beyond the end
26452         of the 'modules' array.
26453
26454 2004-09-28  Raja R Harinath  <rharinath@novell.com>
26455
26456         * metadata-internals.h (MonoImage): Add module_count field.
26457         * image.c (load_modules): Set image->module_count.
26458         (mono_image_load_file_for_image): Use image->module_count.
26459         * reflection.c (mono_image_load_module): Append to image->modules array 
26460         of dynamic assembly.
26461         (mono_module_get_object): Fix loop to actually increment index.
26462         Use image->module_count.
26463         * assembly.c (mono_assembly_load_references): Use image->module_count.
26464         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
26465         Likewise.
26466
26467 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
26468
26469         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
26470         Avoid assert on generic types.
26471
26472 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
26473
26474         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
26475
26476         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
26477
26478         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
26479         function to convert a MarshalSpec structure to its managed counterpart.
26480
26481         * reflection.c: Fix warnings.
26482         
26483         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
26484         field.
26485
26486         * icall.c (mono_create_icall_signature): Fix build.
26487
26488 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
26489
26490         * icall.c: Add MakePointType icall.
26491
26492         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
26493         warnings.
26494
26495 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26496
26497         * threadpool.c: reuse allocated slots in the queue.
26498
26499 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
26500
26501         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
26502
26503         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
26504
26505         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
26506         previous change.
26507
26508         * tabledefs.h: Add constants for pinvoke attributes BestFit and
26509         ThrowOnUnmappableChar.
26510
26511         * icall.c (ves_icall_Type_GetPacking): New icall.
26512
26513 2004-09-24  Martin Baulig  <martin@ximian.com>
26514
26515         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
26516
26517 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26518
26519         * appdomain.c:
26520         (mono_domain_set): allow setting a domain that is being unloaded.
26521         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
26522         being unloaded.
26523
26524 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26525
26526         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
26527         the GetCustomAttributes icall.
26528
26529 2004-09-23  Martin Baulig  <martin@ximian.com>
26530
26531         * object-internals.h (MonoReflectionGenericParam): Replaced
26532         'has_ctor_constraint', `has_reference_type' and `has_value_type'
26533         with `guint32 attrs'.
26534
26535 2004-09-23  Martin Baulig  <martin@ximian.com>
26536
26537         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
26538
26539 2004-09-23  Martin Baulig  <martin@ximian.com>
26540
26541         * object-internals.h (GenericParameterAttributes): New enum.
26542
26543 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26544
26545         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
26546         
26547         * class.c (init_events): Fill out event->other field.
26548
26549         * class.c: Fix warnings.
26550
26551         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
26552
26553 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
26554
26555         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
26556         walk which doesn't supply the IL offset.
26557
26558 2004-09-22  Martin Baulig  <martin@ximian.com>
26559
26560         * reflection.c (mono_reflection_setup_internal_class): If we're
26561         System.ValueType, System.Object or System.Enum, set
26562         `klass->instance_size' and create the vtable.
26563         (mono_reflection_create_internal_class): If we're an enum type,
26564         get the base class from our current corlib.
26565
26566 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
26567
26568         * reflection.h (MonoResolveTokenError): New type.
26569
26570         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
26571         icall.
26572
26573         * icall.c: Add an 'error' argument to the ResolveToken icalls.
26574
26575 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
26576
26577         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
26578         Support also calling constructors, but only for already allocated objects.
26579
26580 2004-09-17  Geoff Norton <gnorton@customerdna.com>
26581
26582         * reflection.c (type_get_qualified_name): If the klass is null
26583         return the typename to avoid a NullRefEx.
26584         (encode_cattr_value): Get the qualified name of the boxed type,
26585         not the underlying enumtype.  Fixes #62984.
26586
26587 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
26588
26589         * marshal.c: Fix problems with previous checkin.
26590
26591 2004-09-21    <vargaz@freemail.hu>
26592
26593         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26594         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26595
26596         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26597
26598 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26599
26600         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26601         should only return a type for pointers, arrays, and passbyref types.
26602         Fixes bug #63841.
26603
26604 2004-09-21  Martin Baulig  <martin@ximian.com>
26605
26606         * domain.c (mono_debugger_check_runtime_version): New public
26607         function.
26608
26609         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26610
26611 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26612
26613         * reflection.c: Added missing sort to the declarative security 
26614         attributes table. MS implementation stops seeing the attributes if the
26615         token number regress in the table (as shown by ildasm and permview).
26616
26617 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26618
26619         * object-internals.h (MonoReflectionModule): Add 'token' field.
26620         
26621         * reflection.c (mono_reflection_get_token): Add support for Module
26622         and Assembly.
26623         (mono_module_get_object): Set 'token' field.
26624         (mono_module_file_get_object): Set 'token' field.
26625
26626         * icall.c: Add new Assembly and Module icalls.
26627
26628         * appdomain.c: Bump corlib version.
26629
26630 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26631
26632         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26633         tokens of metadata objects.
26634
26635         * reflection.h reflection.c (mono_reflection_get_token): New function
26636         to obtain the token of a metadata object.
26637
26638         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26639
26640 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26641
26642         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26643         
26644         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26645
26646 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26647
26648         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26649         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26650         AssemblyBuilder to access the permissions set in the class lib.
26651         * reflection.c: Added security attributes encoding step in 
26652         mono_image_build_metadata.
26653         * tabledefs.h: Added new security actions defined in 2.0:
26654         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26655
26656 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26657
26658         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26659         macro parameter.
26660
26661 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26662  
26663         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26664           finalized. There where random SIGSEVs at program termination, when
26665           an object being finalized was trying to do a string comparison and
26666           the current culture was already finalized.
26667  
26668 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26669
26670         * threads.c: call thread_cleanup before finishing the thread if we get
26671         there.
26672
26673 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26674
26675         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26676         assemblies from the parent. Fixes #65665.
26677
26678 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26679
26680         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26681         modifiers.
26682
26683 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26684
26685         * reflection.h: add prototype for mono_get_dbnull_object
26686         * reflection.c: add prototypes for get_default_param_value_blobs 
26687         and mono_get_object_from_blob for fussier compilers
26688
26689 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26690  
26691         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26692         false deadlock checks in class initialization.
26693  
26694 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26695
26696         * image.c (mono_image_addref): Fix comment.
26697
26698         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26699         possible.
26700
26701 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26702
26703         * reflection.c (mono_param_get_objects): Modified to return
26704         ParameterInfo.DefaultValue object.
26705
26706         (get_default_param_value_blobs):
26707         (mono_get_object_from_blob):
26708         (mono_get_dbnull_object): New helper routines. 
26709
26710         * object.c (mono_get_constant_value_from_blob): New helper routine
26711         carved out from get_default_field_value ()
26712
26713         * object-internals.h (mono_get_constant_value_from_blob): Added
26714         function declaration.
26715
26716 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26717
26718         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26719         referenced assemblies. Fixes #62135.
26720
26721         * exception.h exception.c (mono_get_exception_file_not_found2): New
26722         helper function.
26723
26724 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26725
26726         * class.h class.c: Add mono_type_get_underlying_type ().
26727
26728 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26729
26730         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26731         Fix GetTypes() to support dynamically created assemblies.
26732
26733 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26734
26735         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26736         
26737         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26738         previous patch.
26739
26740         * reflection.h reflection.c loader.c: Allow dynamic construction of
26741         pinvoke methods. Fixes #65571.
26742         
26743         * reflection.c (mono_reflection_get_type): Revert previous change since
26744         it causes regressions.
26745
26746 2004-09-08  Martin Baulig  <martin@ximian.com>
26747
26748         * class.c (class_compute_field_layout): Don't call
26749         mono_class_layout_fields() for open generic instances.
26750
26751 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26752         * threads.c appdomain.c: fix typo in GC macro
26753
26754 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26755
26756         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26757         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26758
26759 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26760
26761         * image.c (mono_image_close): Applied patch from 
26762         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26763         assembly is loaded multiple times from data.
26764         
26765         * image.c (mono_image_open): Fix warning.
26766
26767 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26768
26769         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26770         once. Fixes #58334.
26771         
26772         * reflection.c (mono_reflection_create_runtime_class): Initialize
26773         klass->nested_classes. Fixes #61224.
26774
26775 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26776
26777         * threads.c: sched_yield() on exit, to allow threads to quit.
26778
26779 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26780
26781         * object.c (mono_unhandled_exception): Remove leftover debug code.
26782
26783 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26784
26785         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26786
26787 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26788
26789         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26790         
26791         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26792
26793 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26794
26795         * marshal.c (emit_marshal_array): Null terminate string arrays.
26796         
26797         * marshal.c (raise_auto_layout_exception): Fix warning.
26798
26799         * reflection.c (mono_param_get_objects): Initialize the default value
26800         with DBNull.Value, not null. Fixes #62123.
26801
26802 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26803
26804         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26805         throw an exception with a cute explanation.
26806
26807 2004-09-06  Dick Porter  <dick@ximian.com>
26808
26809         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26810         Close the new process's thread handle, as we don't use it.  The
26811         handle stays around forever otherwise.
26812
26813 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26814
26815         * object.c (arith_overflow): Fix warning.
26816
26817         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26818         calling conventions in method refs. Fixes #65352.
26819
26820         * reflection.c: Fix warnings.
26821
26822 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26823
26824         * icall.c: Add a new icall for Array.Clear
26825
26826 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26827
26828         * object.c: When allocating an array, we have to throw
26829         an overflow exception if any of the lengths are < 0.
26830
26831 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26832
26833         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26834         properly. Also move implementation of string array marshalling to 
26835         managed code. Fixes #42316.
26836
26837 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26838
26839         * assembly.c: provide more information when loading an assembly fails.
26840
26841 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26842
26843         * filewatcher.c: don't expect the development fam package to be
26844         installed.
26845
26846 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26847
26848         * marshal.c: Make a copy of the signature cookie since it will be
26849         freed by the caller.
26850         
26851         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26852
26853         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26854
26855         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26856         marshal specs.
26857
26858         * marshal.c: More refactoring.
26859         
26860         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26861         smaller functions.
26862
26863 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26864
26865         * object.c: In mono_message_invoke, fill the output parameter array after
26866           calling the managed method (it was done before the call). This fixes
26867           bug #59299.
26868
26869 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26870
26871         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26872         as well.
26873
26874 2004-09-02  Martin Baulig  <martin@ximian.com>
26875
26876         * class.c (mono_class_instance_size): Don't allow generic type
26877         definitions or open generic instances.
26878         (mono_class_array_element_size): If we're a value type, call
26879         mono_class_instance_size() on the original class.
26880
26881         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26882         handle generic instances.
26883
26884         * mono-debug-debugger.c (write_type): Handle generic instances
26885         like classes.
26886
26887 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26888
26889         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26890         the allocation request fails. Fixes #65089.
26891
26892         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26893         
26894         * object.c (mono_runtime_free_method): New function to free a dynamic
26895         method.
26896
26897         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26898         delegate trampoline.
26899
26900         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26901         with hasthis as dynamic,
26902
26903         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26904
26905         * domain.c (mono_jit_info_table_remove): New function to remove an
26906         entry from the jit info table.
26907
26908         * class-internals.h (MonoMethod): Add 'dynamic' field.
26909
26910         * loader.c: Fix warnings.
26911
26912 2004-09-01  Martin Baulig  <martin@ximian.com>
26913
26914         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26915         instead of mono_debugger_lock() because the latter one is a no-op
26916         unless running in the debugger.
26917
26918 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26919
26920         * class.c (class_compute_field_layout): Classes with auto-layout or
26921         reference fields are not blittable.
26922         
26923 2004-09-01  Dick Porter  <dick@ximian.com>
26924
26925         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26926         mono_image_get_filename() to get the assembly location.
26927
26928         * icall.c:
26929         * metadata.h: Fix compile warnings
26930
26931 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26932
26933         * class.c (class_compute_field_layout): System.Object is blittable.
26934
26935         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26936         as in/out. Fixes #59909.
26937
26938 2004-09-01  Martin Baulig  <martin@ximian.com>
26939
26940         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26941         mono_metadata_generic_inst_is_valuetype() if we're a generic
26942         instance to check whether our underlying type is a reference type.
26943
26944 2004-09-01  Martin Baulig  <martin@ximian.com>
26945
26946         * metadata.c (mono_type_size): If we're a generic instance, call
26947         mono_class_value_size() for value types.
26948
26949 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26950
26951         * marshal.c: Implement more custom marshalling functionality. Fixes
26952         #64915.
26953
26954 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26955
26956         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26957
26958 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26959
26960         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26961
26962         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26963
26964         * icall.c: Fix some warnings.
26965
26966         * threads.c (abort_appdomain_thread): Fix unref errors.
26967         (mono_thread_current): Fix THREAD_DEBUG define.
26968
26969 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26970
26971         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26972
26973         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26974
26975 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26976
26977         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26978         string arrays.
26979
26980 2004-08-28  Martin Baulig  <martin@ximian.com>
26981
26982         * metadata.c
26983         (mono_metadata_generic_inst_is_valuetype): New public function.
26984
26985         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26986         mono_metadata_generic_inst_is_valuetype() if we're a generic
26987         instance to check whether our underlying type is a valuetype.
26988
26989 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26990
26991         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26992         #63768.
26993
26994 2004-08-25  Martin Baulig  <martin@ximian.com>
26995
26996         * loader.c (mono_get_method_from_token): Abstract methods can also
26997         be generic and thus have type parameters.
26998
26999         * metadata-internals.h
27000         (MonoDynamicImage): Added `GPtrArray *gen_params'.
27001
27002         * reflection.c (mono_image_get_generic_param_info): Don't create a
27003         metadata row, just add an entry to the `gen_params' array.
27004         (build_compressed_metadata): Sort the `gen_params' array and then
27005         actually create the metadata.
27006
27007 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27008
27009         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
27010
27011 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
27012
27013         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
27014
27015 2004-08-24  Martin Baulig  <martin@ximian.com>
27016
27017         * class.cs (mono_class_is_subclass_of): Like an interface, a
27018         generic instance also derives from System.Object.
27019
27020 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
27021
27022         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
27023         custom modifiers to be in any order. Fixes #61990.
27024
27025 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
27026
27027         * object.c: Register mono_object_new_fast icall.
27028         
27029         * object.c (mono_class_get_allocation_ftn): Return to calling
27030         mono_object_new_fast, since it seems faster to compute the object 
27031         size in unmanaged code than passing it as a parameter.
27032
27033         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
27034
27035         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
27036         this function with Boehm as the oom handler, so we don't have to check
27037         the result of GC_malloc.
27038
27039         * object.c: Remove checks for oom.
27040
27041         * object.h object.c (mono_class_get_allocation_ftn): New function to
27042         return the icall which can be used to allocate an instance of a given
27043         class. 
27044
27045         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
27046
27047         * class-internals.h: Add 'enabled' field.
27048
27049 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
27050
27051         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
27052
27053 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
27054         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
27055         value 0x0010.
27056
27057 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
27058
27059         * appdomain.c: use the Tls function for appdomain too,
27060         at Zoltan's request. Actually return in mono_context_get
27061
27062         * appdomain.c, profiler.c, threads.c: use __thread
27063
27064 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
27065
27066         * appdomain.c threads.c: Call GC_CreateThread on windows.
27067
27068         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
27069         multiple libraries since this don't work on windows.
27070
27071 2004-08-18  Martin Baulig  <martin@ximian.com>
27072
27073         * class-internals.h
27074         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
27075         MonoMethodHeader.
27076
27077         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
27078         MonoMethodNormal since we also need it for abstract and interface
27079         methods.
27080
27081         * reflection.c
27082         (build_compressed_metadata): Sort the GenericParam table.
27083         (mono_image_create_token): Added `gboolean create_methodspec'
27084         argument; this is false when generating a MethodImpl token.
27085         (reflection_methodbuilder_to_mono_method): Abstract and interface
27086         methods may also have generic parameters.
27087
27088 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
27089
27090         * appdomain.c: thread local alloc
27091
27092 2004-08-17  Martin Baulig  <martin@ximian.com>
27093
27094         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
27095
27096         * icall.c
27097         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
27098         argument.
27099
27100         * class.c (mono_type_get_full_name): New public function.
27101         (mono_type_get_name): Don't include the type arguments.
27102
27103 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
27104
27105         * Makefile.am: Build static versions of libmetadata and libmonoruntime
27106         for inclusion into the mono executable.
27107
27108 2004-08-16  Martin Baulig  <martin@ximian.com>
27109
27110         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
27111         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
27112
27113 2004-08-14  Martin Baulig  <martin@ximian.com>
27114
27115         * class.c (dup_type): Also copy the `byref' field.
27116
27117 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
27118
27119         * reflection.c (create_dynamic_mono_image): Revert the last change 
27120         since it breaks bootstrap.
27121
27122 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
27123
27124         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
27125
27126         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
27127         not free them with g_free.
27128
27129 2004-08-11  Martin Baulig  <martin@ximian.com>
27130
27131         * reflection.c (mono_reflection_setup_internal_class): Also call
27132         mono_class_setup_mono_type() if we already have a `tb->type.type'.
27133
27134 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
27135
27136         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
27137         called during default (first) AppDomain creation. Keep track of
27138         Evidence when loading assemblies.
27139
27140 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27141
27142         * opcodes.c, opcodes.h: reduce runtime relocations.
27143
27144 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
27145
27146         * culture-info.h, locales.c: fixes and chages to sue the new
27147         optimized format of the locale data.
27148         * culture-info-tables.h: regenerated.
27149
27150 2004-08-06  Geoff Norton <gnorton@customerdna.com>
27151         
27152         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
27153
27154 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
27155
27156         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
27157         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
27158         * domain-internals.h: icall declaration.
27159         * icall.c: icall registration.
27160         * object-internals.h: New fields in MonoAssembly for CAS.
27161
27162 2004-08-05  Duncan Mak  <duncan@ximian.com>
27163
27164         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
27165         CEE_LDELEM_ANY.
27166
27167 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27168
27169         * reflection.c: fix to deal with object[] arrays in custom ctors
27170         (bug #62550).
27171
27172 2004-08-05  Martin Baulig  <martin@ximian.com>
27173
27174         * class.c (mono_class_array_element_size): Added support for
27175         generic instances and correctly handle "recursive" types.
27176
27177 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
27178
27179         * assembly.c: Fix warnings.
27180
27181 2004-08-04  Martin Baulig  <martin@ximian.com>
27182
27183         * class.c
27184         (mono_type_get_name_recurse): Added `gboolean include_arity'
27185         argument specifying whether or not we should include the generic
27186         arity in the type name.
27187         (_mono_type_get_name): New static function.
27188         (mono_class_setup_vtable): If we're a generic instance, don't
27189         include the generic arity in the names of explicit method
27190         implementations.        
27191
27192 2004-08-03  Martin Baulig  <martin@ximian.com>
27193
27194         * class.c (mono_type_get_name_recurse): Enclose the generic type
27195         arguments in `<', '>'.
27196
27197 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27198
27199         * gc.c: make GC warning messages use the trace API, they are just
27200         noise to most of the users.
27201
27202 2004-08-03  Martin Baulig  <martin@ximian.com>
27203
27204         * debug-mono-symfile.c (read_string): Correctly read the string.
27205
27206 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
27207
27208         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
27209         
27210         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
27211         icalls.
27212         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
27213
27214 2004-07-30  Martin Baulig  <martin@ximian.com>
27215
27216         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
27217         Reflect latest symbol writer changes.   
27218
27219 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27220
27221         * object.c: always create an object if null is passed
27222         to Invoke() where a valuetype is expected.
27223
27224 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
27225
27226         * marshal.c (mono_marshal_init): make managed
27227         signatures match native ones better for 64bits.
27228
27229 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27230
27231         * appdomain.c: hack to build correctly the private bin path on windows.
27232         Fixes bug #61991.
27233
27234 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
27235
27236         * assembly.c: Load mscorlib from the correct framework directory
27237           (mono/<version>/mscorlib.dll).
27238         * appdomain.h: Added prototypes for new functions.
27239         * internals.h: Added some prototypes.
27240         * domain.c: When initializing the runtime, get from the executable and
27241           the configuration files the runtime version that the app supports.
27242           Added support methods for reading app.exe.config. Added list of versions
27243           supported by the JIT. Added two new methods: mono_init_from_assembly,
27244           which initializes the runtime and determines the required version from
27245           the provided exe file, and mono_init_version, which initializes
27246           the runtime using the provided version.
27247         * icall.c: Get machine.config from version-specific directory.
27248         * reflection.c: When generating an image, embed the version number
27249           of the current runtime.
27250
27251 2004-07-28  Dick Porter  <dick@ximian.com>
27252
27253         * socket-io.c
27254         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
27255         returned sockaddr size before creating the remote address object.
27256         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
27257         61608.
27258
27259 2004-07-28  Dick Porter  <dick@ximian.com>
27260
27261         * locales.c (string_invariant_compare_char): Fix invariant char
27262         compares between upper and lower cases.  Fixes bug 61458.
27263
27264 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
27265         
27266         * marshal.c: actually cache stelem.ref wrappers.
27267         
27268 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
27269
27270         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
27271         sections and remove the mono_cli_rva_map () function.
27272
27273 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27274
27275         * debug-mono-symfile.c: fix one more endianess issue, from a patch
27276         by Geoff Norton (<gnorton@customerdna.com>).
27277
27278 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27279
27280         * class.c: fix class loads for pointer types (typeof(int) !=
27281         typeof(int*)).
27282
27283 2004-07-27  Martin Baulig  <martin@ximian.com>
27284
27285         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
27286         reading the debugging information from an external ".mdb" file.
27287
27288 2004-07-24  Martin Baulig  <martin@ximian.com>
27289
27290         * reflection.c (mono_image_get_type_info): Only write a class
27291         layout entry if we actually have a size or a packing size.
27292
27293 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27294
27295         * reflection.c (type_get_fully_qualified_name): 
27296         insert cast to get type checking of ?: with non-gcc compilers
27297
27298 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
27299
27300         * rand.c: use g_getenv for both lookups of
27301         MONO_EGD_SOCKET
27302
27303 2004-07-17  Martin Baulig  <martin@ximian.com>
27304
27305         * reflection.c (mono_reflection_bind_generic_method_parameters):
27306         Set `gmethod->reflection_info'.
27307
27308 2004-07-17  Martin Baulig  <martin@ximian.com>
27309
27310         * class.c (mono_class_create_from_typedef): Insert the newly
27311         created class into the hash table before computing the interfaces
27312         since we could be called recursively.
27313
27314 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
27315
27316         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
27317         function to implement stelem.ref in managed code
27318         * class-internals.h, debug-helpers.c: a new wrapper type
27319         for the above.
27320
27321 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
27322
27323         * gc.c: allow GC handles to work even when no GC is compiled in.
27324         Fix part of bug #61134 (GetAddrOfPinnedObject).
27325
27326 2004-07-13  Peter Williams  <peter@newton.cx>
27327  
27328         * process.c (complete_path): Make sure we don't attempt to execute
27329         directories.
27330  
27331 2004-07-12  Geoff Norton <gnorton@customerdna.com>
27332
27333         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
27334           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
27335           and will add/subtract the hour if needed
27336
27337 2004-07-12  Martin Baulig  <martin@ximian.com>
27338
27339         * reflection.c (mono_field_get_object): If we have
27340         `field->generic_info', take the attributes from
27341         `field->generic_info->generic_type'.    
27342
27343 2004-07-12  Martin Baulig  <martin@ximian.com>
27344
27345         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
27346         This function must be called before initializing the runtime.
27347         (mono_debug_init_1): New function; call this after initializing
27348         the runtime, but before loading the assembly.  It tells the
27349         debugger to load corlib and the builtin types.
27350
27351         * mono-debug-debugger.c: Did some larger changes in the debugging
27352         code; support recursive class declarations, make sure we actually
27353         add all classes.
27354
27355 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27356
27357         * debug-helpers.c: undo my previous patch and fixed the real issue in
27358         ../mini/exceptions-x86.c
27359
27360 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27361
27362         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
27363         when no HOME env. variable was set and a NullRef was thrown in a .cctor
27364         called from other .cctors.
27365
27366 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
27367
27368         * loader.c: Removed the mono_loader_wine_init hack now that we are
27369         doing a managed version of Windows.Forms.
27370
27371 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
27372
27373         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
27374         threadpool.c, threads.c: remove static data from rootset.
27375
27376 2004-07-09  Dick Porter  <dick@ximian.com>
27377
27378         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
27379         Don't do any more processing if the matched length was 0.  It was
27380         increasing the size of the string before.  Fixes bug 61167.
27381
27382 2004-07-09  Dick Porter  <dick@ximian.com>
27383
27384         * socket-io.h:
27385         * socket-io.c
27386         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
27387         Add support for SO_PEERCRED if its available.
27388
27389 2004-07-09  Peter Bartok <pbartok@novell.com>
27390         * loader.c: winelib.exe.so error message is now only displayed if
27391         MONO_DEBUG is set. To help us avoid questions when people are trying
27392         out the new Managed.Windows.Forms.
27393
27394 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
27395
27396         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
27397         for isinst and castclass wrappers.
27398
27399         * class-internals.h icall.c: Move registration and lookup of JIT icalls
27400         to libmetadata from the JIT, so they could be used by the marshalling
27401         code and the interpreter.
27402
27403         * marshal.c: Register marshalling related JIT icalls here instead of
27404         in mini.c. Use CEE_MONO_ICALL instead of the family of 
27405         CEE_MONO_PROC<x> opcodes to call marshalling functions.
27406
27407         * metadata.h: Remove unneeded marshalling conversions.
27408
27409         * opcodes.c: Update for new opcodes.
27410         
27411 2004-07-08  Martin Baulig  <martin@ximian.com>
27412
27413         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
27414         (mono_debug_get_domain_data): Make this function static.
27415
27416 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27417
27418         * gc.c, object.h: add nice GC handle API for embedders.
27419
27420 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
27421
27422         * reflection.c: more changes for the new api
27423
27424         * object.c: When we reflect on a field w/ a constant value, it
27425         will not have a memory location, so we must access metadata. Also,
27426         allow easier reading of strings so that we can read them from
27427         the constant data.
27428
27429         * class.c (mono_class_layout_fields): no need for literal fields here.
27430
27431         * class-internals.h: api changes for const fields
27432
27433         * icall.c (ves_icall_get_enum_info): use new apis for const fields
27434
27435 2004-07-06  Martin Baulig  <martin@ximian.com>
27436
27437         * mono-debug.h: Increment version number to 44.
27438
27439         * mono-debug.c (mono_debug_add_wrapper): The second argument is
27440         now a gpointer, rewrote this whole method.
27441
27442         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
27443         function.  Add information about the wrapper in a new "misc table".
27444
27445         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
27446         for the new misc table.
27447
27448 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
27449
27450         * metadata-internals.h image.c: Add a cache for helper signatures.
27451
27452         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
27453
27454 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
27455
27456         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
27457         delegates from a delegate. Fixes #61033.
27458         
27459         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
27460         marshalling of stringbuilder arrays. Fixes #59900.
27461
27462 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
27463
27464         * icall.c: Add EnumBuilder:setup_enum_type icall.
27465
27466 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
27467
27468         * icall.c: Added a new icall for the property version of
27469         OffsetOfStringData.
27470
27471 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
27472
27473         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
27474         it has a constant size across platforms.
27475
27476         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
27477         stack trace.
27478
27479 2004-06-29  Martin Baulig  <martin@ximian.com>
27480
27481         * mono-debug.c (mono_debug_add_method): Protect the whole function
27482         in mono_debugger_lock(), not just parts of it.
27483
27484 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
27485
27486         * reflection.c: make sure padding bytes in heaps are zeroed.
27487
27488 2004-06-24  David Waite  <mass@akuma.org>
27489
27490         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
27491         image.c, loader.c, locales.c, marshal.c, metadata.c,
27492         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
27493         string-icalls.c, threads.c: change to C90-style comments from C99 /
27494         C++ -style
27495
27496 2004-06-24  Dick Porter  <dick@ximian.com>
27497
27498         * threads.c
27499         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
27500         return createdNew.  Fixes bug 60412.
27501
27502         * threads-types.h: 
27503         * icall.c: Add createdNew parameter to CreateMutex icall
27504
27505 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27506
27507         * reflection.c, object-internals.h: save default value in params.
27508
27509 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27510
27511         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
27512         no need to build a new path combining that with the application base.
27513         Fixes bug #60442.
27514
27515 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
27516
27517         * reflection.c: fixed minor standard compliance issues.
27518
27519 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
27520
27521         * reflection.c: fixed issue with encoding some custom attributes
27522         (arrays in properties and fields, bug #60411).
27523
27524 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27525
27526         * reflection.c: fix start address when copying the public key token.
27527
27528 2004-06-23  Martin Baulig  <martin@ximian.com>
27529
27530         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
27531         the `exc' object in a static object to put it into the GC's root set.
27532
27533 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
27534
27535         * reflection.c: make mono_reflection_setup_internal_class ()
27536         callable a second time to setup a new parent class.
27537
27538 2004-06-23  Dick Porter  <dick@ximian.com>
27539
27540         * threads.c: Check for WAIT_IO_COMPLETION return values.
27541
27542 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
27543
27544         * appdomain.c: Removed the g_free on the public key token. Now copy 
27545         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
27546         * assembly.c: Added public key token string value when loading 
27547         assemblies. Fix bug #60439.
27548         * icall.c: Added missing informations (like public key) in 
27549         GetReferencedAssemblies. Fix #60519.
27550         * image.h: Changed definition for public key token from const char*
27551         public_tok_value to guchar public_key_token [17];
27552         * reflection.c: Updated for changes to public key token.
27553
27554 2004-06-22  Lluis Sanchez Gual
27555
27556         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
27557         for the field in base classes.
27558
27559 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27560
27561         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
27562         mark headers as not supported, they are installed only for use by the
27563         debugger.
27564
27565 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
27566
27567         * *.c, *.h: avoid namespace pollution in public headers.
27568
27569 2004-06-21  Martin Baulig  <martin@ximian.com>
27570
27571         * exception.c (mono_get_exception_security): It's in
27572         "System.Security", not in "System".
27573
27574         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
27575         the exception classes.
27576
27577 2004-06-21  Martin Baulig  <martin@ximian.com>
27578
27579         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
27580         Protect the exception object from being finalized.
27581
27582 2004-06-21  Martin Baulig  <martin@ximian.com>
27583
27584         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
27585         public function.
27586
27587 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
27588
27589         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27590         if it was not loaded before. Fix parts of #60439.
27591
27592 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27593
27594         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27595         code that was broken since Ben's change: wrappers are now
27596         dependent on the method signature only again.
27597
27598 2004-06-21  Martin Baulig  <martin@ximian.com>
27599
27600         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27601         added interface support.
27602
27603 2004-06-21  Martin Baulig  <martin@ximian.com>
27604
27605         * class.c (mono_vtable_get_static_field_data): New public method.
27606
27607 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27608
27609         * filewatcher.c : Windows build fix to be compliant with API changes.
27610
27611 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27612
27613         * class.h, class.c: more accessors.
27614         * metadata.h, metadata.c: prepare for hiding MonoType and
27615         MonoMethodSignature: people should use the accessors from now on
27616         outside of the tree.
27617
27618 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27619
27620         * *.c, *.h: more API cleanups.
27621
27622 2004-06-18  Jackson Harper  <jackson@ximian.com>
27623
27624         * assembly.c: Trace loading assemblies.
27625         * loader.c: Trace loading native libraries.
27626         * mono-config.c: Trace loading config files.
27627         
27628 2004-06-18  Dick Porter  <dick@ximian.com>
27629
27630         * locales.c: Tell ICU the lengths of strings, it can cope with
27631         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27632
27633 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27634
27635         * image.c: swapped name/filename;
27636
27637 2004-06-18  Martin Baulig  <martin@ximian.com>
27638
27639         * mono-debug-debugger.c (write_class): Write the parent class at
27640         the end of the header.
27641
27642 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27643
27644         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27645
27646 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27647
27648         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27649         (bundle_obj): New conditional define.
27650         (BUILT_SOURCES): Remove.
27651         ($(bundle_srcs)): Make parallel-make safe.
27652         (libmonoruntime_la_LIBADD): Make unconditional.
27653         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27654         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27655
27656 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27657
27658         * culture-info-tables.h: It was inconsistent with the latest
27659           supp info files.
27660
27661 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27662
27663         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27664         be loaded.
27665
27666         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27667         with gcc 2.95.
27668
27669 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27670
27671         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27672         cleaned up public header threads.h.
27673
27674 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27675
27676         * Makefile.am, *.c, *.h: more API cleanups.
27677
27678 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27679
27680         * Makefile.am: removed monosn from compilation.
27681         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27682         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27683         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27684         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27685         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27686         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27687
27688 2004-06-15  Jackson Harper  <jackson@ximian.com>
27689
27690         * assembly.c: Make locales lower case when searching the GAC for
27691         assemblies. gacutil will always make locales lowercase when
27692         installing so this effectively makes them case insensitive.
27693         
27694 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27695
27696         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27697         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27698           parameter which allows to choose whether the wait can be interrupted or 
27699           not. Also added the method mono_monitor_enter(), which locks the monitor
27700           using an infinite wait and without allowing interruption.
27701           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27702           interrupted.
27703         * object.h: Added new fields in MonoThread. suspend_event holds the event
27704           used to susped/resume the thread. synch_lock is the lock object to use for
27705           modifying the thread state.
27706         * threads.c: Use the new synch_lock object for locking, instead of "this",
27707           which can generate deadlocks.
27708           Moved thread state change in Thread.Sleep and Thread.Join from managed
27709           to unmanaged code. This avoids a deadlock when the thread was suspended
27710           just after acquiring the thread lock.
27711           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27712           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27713           which is not fully implemented in the io-layer.
27714         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27715
27716 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27717
27718         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27719         threads-types.h: more API cleanups.
27720
27721 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27722
27723         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27724         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27725         threadpool.c, threads.c: first pass at the exported API cleanup.
27726
27727 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27728
27729         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27730
27731 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27732
27733         * icall.c: added internalGetHome.
27734
27735 2004-06-14  Dick Porter  <dick@ximian.com>
27736
27737         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27738         possible to return successfully when '.' or '..' were the only
27739         entries in a directory, but were skipped.  The MonoIOStat was not
27740         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27741         Fixes bug 59574.
27742
27743 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27744
27745         * reflection.c: make binaries run on .Net 1.1 by default.
27746
27747 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27748
27749         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27750
27751 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27752
27753         * marshal.c: keep track of struct size with explicit layout
27754         (bug #59979).
27755
27756 2004-06-12  Martin Baulig  <martin@ximian.com>
27757
27758         * mono-debug-debugger.c: Comment out a debugging g_message().
27759
27760 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27761
27762         * reflection.c, reflection.h: do not free custom attrs that are cached.
27763         * icall.c: use braces to make code clearer.
27764
27765 2004-06-11  Martin Baulig  <martin@ximian.com>
27766
27767         * class.h (MonoInflatedField): New type.
27768         (MonoClassField): Replaced `MonoType *generic_type' with
27769         `MonoInflatedField *generic_info'.
27770
27771         * icall.c
27772         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27773
27774 2004-06-11  Martin Baulig  <martin@ximian.com>
27775
27776         * reflection.c (mono_image_create_method_token): Correctly encode
27777         varargs methods.
27778
27779 2004-06-11  Martin Baulig  <martin@ximian.com>
27780
27781         * metadata.c (mono_metadata_parse_method_signature): When parsing
27782         a MethodDef which has VarArgs, also set sentinelpos if we don't
27783         have any parameters.
27784
27785 2004-06-11  Martin Baulig  <martin@ximian.com>
27786
27787         * verify.c (mono_method_verify): In CEE_CALL, use
27788         mono_method_get_signature() to get the method's signature, unless
27789         we're a PInvoke method.
27790
27791 2004-06-10  Jackson Harper  <jackson@ximian.com>
27792
27793         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27794         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27795         logical name as the supplied path is just a prefix to the gac not
27796         the direct path to it.
27797         
27798 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27799
27800         * reflection.c: make the token for a created method match
27801         the token of the MethodBuilder it was created from
27802         (IKVM requires this behaviour now).
27803
27804 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27805
27806         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27807         reflection.c, socket-io.c: leak fixes.
27808
27809 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27810
27811         * icall.c: handle sentinel pos in vararg methods in position different
27812         from 0.
27813
27814 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27815
27816         * culture-info-tables.h: freshly generated.
27817
27818 2004-06-09  Martin Baulig  <martin@ximian.com>
27819
27820         * loader.c (mono_get_method_constrained): Call `mono_class_init
27821         (constrained_class)'.   
27822
27823 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27824
27825         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27826         any methods. Fixes #59629.
27827
27828 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27829
27830         * culture-info-tables.h: reflecting locale-builder updates.
27831
27832 2004-06-08  Dick Porter  <dick@ximian.com>
27833
27834         * object.h:
27835         * locales.c: Fixed compile warnings, including a real bug in
27836         CompareInfo_internal_compare.
27837         
27838 2004-06-08  Dick Porter  <dick@ximian.com>
27839
27840         * locales.c
27841         (ves_icall_System_Globalization_CompareInfo_internal_index):
27842         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27843         Double-check the resuls of usearches, because ICU currently
27844         ignores most of the collator settings here.  Fixes bug 59720.
27845         
27846 2004-06-08  Dick Porter  <dick@ximian.com>
27847
27848         * locales.c
27849         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27850         Fix memory leak and segfault-causing typo.  No idea how this one
27851         lasted so long without being noticed.
27852
27853 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27854
27855         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27856         any methods. Fixes #59629.
27857
27858 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27859
27860         * assembly.c:
27861         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27862         own the critical section before). Removed dead code (that's done
27863         in the preload hook).
27864
27865         (mono_assembly_load_with_partial_name): call the preload hook.
27866
27867 2004-06-08  Martin Baulig  <martin@ximian.com>
27868
27869         * metadata.c (mono_metadata_signature_alloc): Default
27870         `sentinelpos' to -1.
27871
27872         * reflection.c (mono_image_get_array_token): Likewise.
27873
27874 2004-06-08  Martin Baulig  <martin@ximian.com>
27875
27876         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27877
27878         * metadata.c (mono_metadata_parse_method_signature): When parsing
27879         a MethodDef which has VarArgs, set sentinelpos.
27880
27881         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27882         `gint16' since we're using -1 for non-varargs methods.
27883
27884         * reflection.c
27885         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27886         (method_encode_signature): Added varargs support.
27887         (method_builder_encode_signature): Likewise.
27888         (mono_image_get_varargs_method_token): New static method.
27889         (mono_image_create_method_token): New public method; this is
27890         called via an icall instead of mono_image_create_token() when
27891         calling a varargs method.       
27892
27893 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27894
27895         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27896
27897 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27898
27899         * culture-info-tables.h : Reflecting the latest locale-builder that
27900           fixed empty array representation ({} to {0}).
27901
27902 2004-06-07  Jackson Harper  <jackson@ximian.com>
27903
27904         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27905         looking up extra gac paths. This allows MONO_GAC_PATH to act
27906         exactly like a prefix.
27907         
27908 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27909
27910         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27911         type name before modifying it. Fixes #59405.
27912
27913 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27914
27915         * culture-info.h: added fields for "all datetime patterns".
27916         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27917           _construct_datetime_format ()): fill xxx_patterns fields.
27918         * object.h: added fields for "all datetime patterns" to
27919           MonoDateTimeFormatInfo.
27920         * culture-info-tables.h: reflecting locale-builder updates.
27921
27922 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27923
27924         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27925         the event has no add and remove methods. Fixes #59629.
27926
27927 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27928
27929         * object.c: Fixed possible integer overflow when allocating large
27930         strings.
27931
27932 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27933
27934         * culture-info-tables.h: reflecting locale-builder updates.
27935
27936 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27937
27938         * culture-info-tables.h: reflecting locale-builder updates.
27939
27940 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27941
27942         * culture-info-tables.h: reflecting locale-builder updates.
27943
27944 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27945
27946         * threads.c: Made Thread.Sleep abortable.
27947
27948 2004-06-02  Martin Baulig  <martin@ximian.com>
27949
27950         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27951
27952         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27953
27954 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27955
27956         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27957
27958 2004-05-30  Jackson Harper  <jackson@ximian.com>
27959
27960         * reflection.c: Do not hardcode assembly versions or public key
27961         tokens anymore. All of this except the corlib section was dead
27962         code anyways.
27963         
27964 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27965
27966         * object.c (mono_runtime_invoke_array): Automatically create boxed
27967         objects for byref valuetypes if needed. Fixes #59300.
27968         
27969         * object.c (mono_method_return_message_restore): Handle 
27970         MONO_TYPE_OBJECT as well.
27971
27972 2004-05-28  Jackson Harper  <jackson@ximian.com>
27973
27974         * reflection.c: The modified type encoding was causing build
27975         problems. Reverted for now.
27976         
27977 2004-05-28  Jackson Harper  <jackson@ximian.com>
27978
27979         * reflection.c/h: Take an assembly ref so that we dont create
27980         fully qualified names when encoding types in the same assembly as
27981         the custom attribute being emitted.
27982         * appdomain.c: Increment version number.
27983         
27984 2004-05-26  Duncan Mak  <duncan@ximian.com>
27985
27986         * icall.c
27987         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27988         Set the full version number (major, minor, build, revision).
27989
27990 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27991
27992         * marshal.c (emit_struct_conv): increment src/dst after blit
27993         (mono_marshal_get_managed_wrapper,
27994         mono_marshal_get_native_wrapper): make sure we have marshalling
27995         info before marshalling params (info computation affects
27996         blittable)
27997
27998         * class.c (class_compute_field_layout): correctly deal with
27999         blittable
28000         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
28001         value types (as per what windows dows by default)
28002         (mono_class_setup_mono_type): System.ValueType is blittable
28003         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
28004         blittable
28005
28006         * marshal.c (mono_marshal_load_type_info): flag types  as
28007         non-blittable if the native layout doesn't match the managed
28008         layout
28009
28010 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28011
28012         * appdomain.c: don't add stuff in the private search path that is
28013         above the application base. If application base is not set, there's
28014         no private search path.
28015
28016 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
28017
28018         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
28019         byref struct arguments in native->managed marshalling.
28020
28021 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
28022
28023         * marshal.c (mono_marshal_get_runtime_invoke): correctly
28024         cache methods using signature (special case for methods
28025         that are value type or string class)
28026         
28027         * image.c (mono_image_close): clean up allocated GSList's
28028         in runtime_invoke_cache.
28029
28030 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28031
28032         * mono-config.c: set the correct path for mono_cfg_dir on windows when
28033         there's no MONO_CFG_DIR environment variable defined.
28034
28035 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28036
28037         * threads.c: windows version must be >= 0x0500 to include OpenThread.
28038
28039 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
28040
28041         * threadpool.c: Really wait for 500ms after the async call, even if the wait
28042           is interrumped.
28043         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
28044           before waiting for it, and call CloseHandle after the wait to unref it.
28045           This will make sure that handles are not disposed too early.
28046
28047 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28048
28049         * appdomain.c:
28050         * appdomain.h:
28051         * icall.c: removed
28052         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
28053         needed now.
28054
28055         * object.c: se the application_base only for the domain that runs
28056         Main. Fixes bug #59216,
28057
28058 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28059
28060         * appdomain.c:
28061         * object.c: only the domain in which Main is run have
28062         SetupInformation.ConfigurationFile set, so moved a few lines from
28063         appdomain.c to object.c.
28064
28065 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28066
28067         * appdomain.c: we tried to load [name].(dll|exe), but according
28068         to bug #57710, we must also try [culture]/[name].(dll|exe) and
28069         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
28070         There's a test case attached to bug #58922.
28071
28072 2004-05-27  Dick Porter  <dick@ximian.com>
28073
28074         * icall.c:
28075         * file-io.c: Implemented icalls for locking and unlocking regions
28076         in a file.
28077         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
28078         FALSE on error (fixes both compiler warning and real bug.)
28079
28080 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
28081
28082         * culture-info-tables.h: reflecting locale-builder updates.
28083
28084           (Added missing ChangeLog entry for 05/26)
28085
28086 2004-05-27  Jackson Harper  <jackson@ximian.com>
28087
28088         * locales.c: Fix some cut and paste errors.
28089         
28090 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28091
28092         * mono-config.c: set the correct path for config. directory on windows.
28093
28094 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
28095
28096         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
28097           on win32.
28098
28099 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
28100
28101         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
28102         from pinvoke functions.
28103         
28104         * marshal.c (mono_ftnptr_to_delegate): Implement this.
28105
28106 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
28107
28108         * culture-info-tables.h: reflecting locale-builder updates.
28109
28110 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
28111
28112         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
28113         #59086.
28114
28115 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
28116
28117         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
28118         * icall.c: Modified icalls for RNG.
28119         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
28120         Windows (CryptoAPI).
28121
28122 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
28123
28124         * locales.c: Fix build.
28125
28126 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
28127
28128         * culture-info-tables.h: reflecting locale-builder updates.
28129
28130 2004-05-25  Jackson Harper  <jackson@ximian.com>
28131
28132         * locales.c: When creating the current culture use the $LANGs
28133         specific culture. So DateTimeFormat and NumberFormat entries are created.
28134         
28135 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
28136
28137         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
28138         a char array as parameter.
28139
28140 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
28141
28142         * image.c: In mono_image_open(), always use an absolute path name to
28143           look for already loaded images.
28144
28145 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
28146
28147         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
28148         missing in the windows build (like older cygwin include files).
28149
28150 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
28151
28152         * icall.c: Fixed check for possible integer overflow in Buffer_
28153         BlockCopy icall. Replaced comments style // by /* */.
28154
28155 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
28156
28157         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
28158         
28159         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
28160         check after MONO_VTADDR. Fixes pinvoke2.exe.
28161
28162         * marshal.h marshal.c metadata.h: Add beginnings of support for
28163         ftnptr -> delegate marshalling.
28164
28165 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
28166
28167         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
28168         * threads.c: Fix warnings.
28169
28170 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
28171
28172         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
28173         * icall.c: Registered icalls for Suspend and Resume.
28174         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
28175           Thread.Abort.
28176         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
28177         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
28178         * process.c: Use WaitForSingleObjectEx.
28179         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
28180           checkpoints.
28181         * threads.c, threads.h: Make use of new Ex wait methods. Improved
28182           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
28183           for Suspend and Resume. Added new mono_thread_stop, used for stoping
28184           background threads. Added basic support for Abort in Windows.
28185           Start new threads using a managed delegate invoke wrapper. This wrapper
28186           has an interruption checkpoint that is needed since an interruption
28187           can be requested before the thread leaves the unmanaged code that starts 
28188           the thread.
28189         * marshal.c: Added interruption checkpoint after every native call, and
28190           also before managed calls for wrappers called from unmanaged code to
28191           go into managed code.
28192         * object.h: Added new field in MonoThread to keep track of interruption
28193           requests.
28194
28195 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
28196
28197         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
28198         calls.
28199
28200 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28201
28202         * appdomain.c:
28203         * assembly.c:
28204         * gc.c:
28205         * locales.c:
28206         * mono-config.c:
28207         * rand.c: getenv -> g_getenv (windows!)
28208
28209         * process.c: complete_path is also used on non-windows platforms.
28210
28211 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28212
28213         * icall.c: new signature for Process_Start.
28214
28215         * process.[ch]: new signature for Process_Start. If we're on windows
28216         and UseShellExecute is false, we have to search for the program by
28217         ourselves if we don't get a full path.
28218
28219 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
28220
28221         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
28222         marshalling and call CleanUpNativeData if needed. Fixes #58646.
28223
28224 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28225
28226         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
28227         Fixes bug #58373.
28228
28229 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28230
28231         * process.c: use double quotes to quote program name and arguments on
28232         windows. Fixes bug #58575.
28233
28234 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28235
28236         * file-io.c: don't return "." and ".." when using windows Find*File.
28237
28238 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
28239
28240         * marshal.c: Don't pass wrappers to message init because method 
28241         addressed used to lookup metadata. part of remoting[2|3] fix.
28242
28243 2004-05-15  Jackson Harper  <jackson@ximian.com>
28244
28245         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
28246         path is essentially the same as MONO_PATH except that it points to
28247         GACs instead of lib directories.
28248         * loader.h: The user gac is gone so we dont need function to
28249         enable/disable it.
28250         * mono-config.c: user gac option is now gone.
28251         
28252 2004-05-15  Jackson Harper  <jackson@ximian.com>
28253
28254         * culture-info.h: Make defines more consistent, add calendar data
28255         to the culture info table.
28256         * culture-info-tables.h: Add basic calendar data. Basically
28257         everyone gets default gregorian until all the data is
28258         updated.
28259         * locales.c: Use the new consistent defines. Set calendar data for
28260         culture info objects.
28261         * object.h: add a field for calendar data to CultureInfo
28262         
28263 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
28264
28265         * image.c: image->runtime_invoke_cache is keyed on signatures now.
28266         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
28267         a signature.
28268         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
28269         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
28270         an extra param that is the pointer of the method to invoke. The IL for
28271         the invoke method is no longer specific to the method, but to the
28272         signature of the method. Thus, we can share the same code for multiple
28273         methods. This reduces the number of methods that have to be compiled.
28274
28275 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
28276
28277         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
28278
28279         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28280
28281         * icall.c: Optimize Buffer.BlockCopy.
28282
28283 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28284
28285         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
28286         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
28287         quote). Changed them to "MMMM yyyy".
28288
28289 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
28290
28291         * rand.c
28292         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
28293
28294 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
28295
28296         * reflection.h: Updated after changes to managed structures.
28297
28298         * appdomain.c: Bump corlib version.
28299
28300 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28301
28302         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
28303         windows.
28304
28305 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28306
28307         * Makefile.am: link to ../os/libmonoos.la on windows.
28308
28309         * assembly.c:
28310                 -If MONO_DEBUG, warn about non-existing directories in
28311                 MONO_PATH.
28312                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
28313                 compile time variable.
28314                 -Removed init_default_path and call mono_set_rootdir from
28315                 libmonoos.a instead (windows only).
28316
28317         * assembly.h: declare mono_assembly_getrootdir().
28318
28319         * domain.c:
28320         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
28321
28322         * loader.c: s/getenv/g_getenv/
28323
28324 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
28325
28326         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
28327
28328         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
28329
28330         * metadata.h: Add new marshalling conversions.
28331
28332         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
28333         function.
28334
28335         * reflection.c (mono_reflection_get_type): Lookup the type in all
28336         modules of a multi-module assembly. Fixes #58291.
28337
28338 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
28339
28340         * threads.c: Before aborting a background, set the StopRequested
28341         state.  This avoids throwing the Abort exception.
28342         In mono_thread_manage, don't continue with the shutdown until all
28343         aborted threads have actually stopped.
28344
28345 2004-05-10  Jackson Harper  <jackson@ximian.com>
28346
28347         * locales.c: Remove the modifier from culture names.
28348         
28349 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28350
28351         * Makefile.am: monosn is not installed any more. It has been deprecated
28352         in favor of sn.
28353
28354 2004-05-07  Jackson Harper  <jackson@ximian.com>
28355
28356         * locales.c
28357         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
28358         Fix array construction, add bailout if the length is 0.
28359
28360 2004-05-07  Dick Porter  <dick@ximian.com>
28361
28362         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
28363         machine doesn't have a DNS entry.  Patch by Urs Muff
28364         (umuff@quark.com), fixes bug 57928.
28365
28366 2004-05-06  Jackson Harper  <jackson@ximian.com>
28367
28368         * reflection.c: Handle null PublicTokens properly. alloc mem for
28369         assembly names culture so we dont crash when freeing it.
28370         
28371 2004-05-06  Jackson Harper  <jackson@ximian.com>
28372
28373         * assembly.c: Check the usergac when loading with partial names.
28374         
28375 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28376
28377         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
28378         does nothing for now (not required for Linux/Windows) but the class
28379         library can call it (and a newer or modified runtime could need it).
28380         * icall.c: Registred icall.
28381
28382 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28383
28384         * loader.c: prints a message on module loading error we set MONO_DEBUG
28385         environment variable.
28386
28387 2004-05-05  Jackson Harper  <jackson@ximian.com>
28388
28389         * appdomain.c: Handle PublicKeyToken=null properly.
28390         
28391 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
28392
28393         * environment.c|h: Added icall ves_icall_System_Environment_
28394         GetOSVersionString to get the current OS version as a string.
28395         * icall.c: Registred icall.
28396
28397 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
28398
28399         * object.c: in mono_object_get_virtual_method(), take into account that
28400         non-virtual methods don't have a slot in the vtable. Check needed when
28401         the object is a proxy.
28402
28403 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
28404
28405         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
28406         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
28407
28408         * object.c (mono_class_compute_gc_descriptor): Fix warning.
28409
28410         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
28411         passed when a valuetype is expected.
28412
28413         * object.c (mono_unhandled_exception): Only set the exit code if the
28414         exception happens in the main thread. Fixes thread5.exe.
28415
28416         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
28417         invalid names. Fixes #58047.
28418
28419 2004-05-03  Jackson Harper  <jackson@ximian.com>
28420
28421         * assembly.c: This line was committed accidently and is unneeded.
28422         
28423 2004-05-03  Jackson Harper  <jackson@ximian.com>
28424
28425         * icall.c: Add new icall for Assembly::LoadWithPartialName
28426         * assembly.c/.h: new function that probes the GAC to load partial
28427         assembly names by Paolo Molaro.
28428         
28429 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28430
28431         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
28432         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
28433         (type_get_fully_qualified_name): Added PublicKeyToken when building a
28434         full type name.
28435
28436 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28437
28438         * appdomain.c: fixed check for 'neutral' culture and removed warning.
28439         * reflection.c: fix bug when parsing a full type name and Version is not
28440         the last thing in the string.
28441
28442 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
28443
28444         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
28445         crashes when it is freed.
28446
28447 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28448
28449         * assembly.c: print the compat warning to stderr.
28450
28451 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
28452
28453         * assembly.c (mono_assembly_load_references): Add a compatibility
28454         hack to run old applications that might be still referencing the
28455         3300-based assemblies, only do this for System.xxx.
28456
28457 2004-05-01  Jackson Harper  <jackson@ximian.com>
28458
28459         * appdomain.c: If the culture is neutral we set it to "".
28460         
28461 2004-04-29  Jackson Harper  <jackson@ximian.com>
28462
28463         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
28464
28465 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
28466  
28467         * string-icalls.c: added low overhead function for copying chars
28468         * icall.c: added needed icall for the above function
28469  
28470 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28471
28472         * icall.c: fix return value of get_global_assembly_cache.  Implemented
28473         Environment.GetLogicalDrives.
28474
28475 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
28476
28477         * rand.c: try and talk to egd or prngd
28478         for random bytes if opening devices fail.
28479
28480 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
28481
28482         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
28483         alignment for the type using the native alignment of its members 
28484         instead of using klass->min_align.
28485
28486         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
28487
28488 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28489
28490         * file-io.c:
28491         * socket-io.c: added check for sys/aio.h.
28492
28493 2004-04-28  Dick Porter  <dick@ximian.com>
28494
28495         * threads.c: Don't abort a thread thats already aborting, when
28496         terminating everything.
28497
28498 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28499
28500         * icall.c: added 2 new async calls for Socket.
28501
28502         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
28503         IO on *nix systems.
28504
28505         * threadpool.c: removed unused variable.
28506
28507 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
28508
28509         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
28510
28511 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
28512
28513         * locales.c: put back string_invariant_tolower () and
28514         string_invariant_toupper ().
28515
28516 2004-04-26 David Waite <mass@akuma.org>
28517
28518         * file-io.h:
28519         * socket-io.h:
28520         * threads.h:
28521         * unicode.h: remove comma from end of enumeration declarations
28522
28523 2004-04-26 David Waite <mass@akuma.org>
28524
28525         * debug-mono-symfile.h:
28526         * decimal.c:
28527         * mono_debug.h:
28528         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
28529
28530
28531 2004-04-26  Jackson Harper  <jackson@ximian.com>
28532
28533         * appdomain.c: Increment version number.
28534         
28535 2004-04-26  Jackson Harper  <jackson@ximian.com>
28536
28537         * appdomain.c: Set assembly references public token value when
28538         PublicKeyToken is specified, not the hash_value. Free public token
28539         values when free assembly name data. Previously the public key
28540         token was hex decoded, however we are using hex encoded public key
28541         tokens, so this is not neccasary.
28542         * assembly.c: Lookup assemblies in the gac if their public token
28543         value is set. Add function to allow enabling user gac
28544         lookups. Specify whether or not the assembly was loaded from the
28545         GAC. Compare full assembly names when checking the cache for
28546         assemblies (Temporarily disabled see comment in code). Remove
28547         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
28548         specifies trace-loader they get extra info to stdout on the
28549         loading of assemblies.
28550         * image.h: Add a field for an assembly references public token
28551         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
28552         whether an assembly has been loaded from the GAC.
28553         * image.c: Remove a corlib -> mscorlib name mapping.
28554         * loader.h: Add function to enable/disable the user gac.
28555         * mono-config.c: Check if the usergac is enabled in the config
28556         file.
28557         * icall.c: New icall to determine whether or not an assembly has
28558         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
28559         * tabldefs.h: Add constant for assemblyref flag that specifies a
28560         full public key is used instead of a public token.
28561         * reflection.c: Remove mscorlib -> corlib mappings. Set
28562         PublicTokenValue instead of hash value. This value is a hex
28563         string so it does not need to be expanded.
28564
28565 2004-04-26  Martin Baulig  <martin@ximian.com>
28566
28567         * mono-debug-debugger.c (mono_debugger_initialize): Set
28568         `mono_debugger_initialized' before calling mono_debug_lock().
28569
28570 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
28571
28572         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
28573           InternalToUpper/InternalToLower.
28574         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
28575           removed invariant culture shortcut.  This is now done in managed code.
28576         * locales.c: (string_invariant_toupper/tolower) removed.
28577
28578 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28579
28580         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
28581         Added Poll internal call.
28582
28583         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
28584         call for Poll. Select was too heavy for polling a single socket.
28585
28586         * threadpool.[ch]: added mono_threadpool_cleanup.
28587         * threads.c: use it. Don't use Thread_Abort on windows.
28588
28589 2004-04-23  Martin Baulig  <martin@ximian.com>
28590
28591         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28592
28593 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28594
28595         * icall.c: Registred new icalls for key pair protection and added an
28596         icall for Environment.GetFolderPath on Windows.
28597         * security.c|h: Added new icalls for key pair protection.
28598
28599 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28600
28601         * socket-io.c: don't display the non-supported family warning for known
28602         families. Now this is not displayed on windows when checking support
28603         for IPv4/IPv6.
28604
28605 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28606
28607         * class.c: don't display the layout warning for static fields.
28608
28609 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28610
28611         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28612         * locales.c, locales.h: Added new icalls for culture-specific
28613         Char.ToLower and Char.ToUpper.
28614
28615 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28616
28617         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28618         by David Waite.
28619
28620 2004-04-20  Martin Baulig  <martin@ximian.com>
28621
28622         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28623         of the type name before passing it to mono_reflection_type_from_name().
28624
28625 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28626
28627         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28628         encodings here. Fixes #56965.
28629
28630 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28631
28632         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28633         fix test on strstr result not that I can see anything that
28634         relies on the result.
28635
28636 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28637
28638         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28639         Fixes #57081.
28640
28641         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28642
28643         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28644         function to determine which marshalling to use for strings. Fixes
28645         #56965.
28646
28647         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28648
28649         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28650
28651 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28652
28653         * icall.c: #include mono-config.h
28654
28655 2004-04-15  Jackson Harper  <jackson@ximian.com>
28656
28657         * culture-info-tables.h: Fix date formats for en-US culture.
28658         
28659 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28660
28661         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28662         ThreadPool.SetMinThreads.
28663         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28664         ThreadPool.SetMinThreads.
28665
28666 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28667
28668         * mono-config.c: also load the .config file in the directory
28669         where the assembly was found.
28670
28671 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28672
28673         * assembly.c: load per-assembly config files.
28674         * icall.c: decrapified code to get the config dir and moved to
28675         mono-config.c.
28676         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28677         per-assembly config files. When doing a dll map lookup give precedence
28678         to the per-assembly data.
28679
28680 2004-04-14  Martin Baulig  <martin@ximian.com>
28681
28682         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28683         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28684         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28685
28686         * mono-debugger-debugger.c: While the debugger is locked, remember
28687         whether the symbol tables have changes and send one single
28688         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28689
28690 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28691
28692         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28693
28694         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28695         function.
28696
28697         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28698         account when marshalling string arrays. Fixes #56965.
28699
28700 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28701
28702         * icall.c: Add new icalls mapping for security.
28703         * security.c|h: Add internal calls for WindowsIdentity,
28704         WindowsImpersonationContext and WindowsPrincipal.
28705
28706 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28707
28708         * class.c: Added comment to ensure the System.MonoDummy class
28709         is removed when no longer necessary
28710
28711 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28712
28713         * appdomain.c: Pass arguments to the bootstraping exceptions to
28714         minimize JITed methods at boot
28715
28716         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28717         second string to be null.
28718
28719         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28720         Change the protocol to minimize the JIT methods at startup.  Now
28721         it Returns the internal codepage, if the value of "int_code_page"
28722         is 1 at entry, and we can not compute a suitable code page
28723         number, returns the code page as a string.
28724
28725 2004-04-13  Jackson Harper  <jackson@ximian.com>
28726
28727         * culture-info-tables.h: Fix number of decimal digits for all
28728         english locales.
28729
28730 2004-04-13  Jackson Harper  <jackson@ximian.com>
28731
28732         * icall.c: Clairfy out of sync error message. It is not always
28733         your corlib that is out of sync.
28734
28735 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28736
28737         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28738         properties when only the set accessor is overriden. Fixes #55874.
28739
28740 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28741
28742         * assembly.c (mono_assembly_load_references): Make this thread safe.
28743         Fixes #56327.
28744
28745 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28746
28747         * monosn.c: Add missing initialization calls.
28748
28749 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28750
28751         * locales.c:
28752         ves_icall_System_Globalization_CultureInfo_construct_number_format
28753         Fix g_assert so it compiles on fussier compilers re int/ptr
28754         mismatch
28755
28756 2004-04-08  Dick Porter  <dick@ximian.com>
28757
28758         * socket-io.h:
28759         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28760         53992.  Also rearrange the code so that the internal calls return
28761         an error value and exceptions are thrown from managed code.
28762
28763         * icall.c: Add type info to the socket icalls.
28764
28765 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28766
28767         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28768         owes me a beer.
28769
28770 2004-04-07  Martin Baulig  <martin@ximian.com>
28771
28772         * class.c (mono_class_from_generic_parameter): Don't default
28773         `klass->parent' to `mono_defaults.object_type'.
28774
28775 2004-04-07  Martin Baulig  <martin@ximian.com>
28776
28777         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28778         `param->pklass->reflection_info'.       
28779
28780 2004-04-07  Jackson Harper  <jackson@ximian.com>
28781
28782         * culture-info-tables.h: Fix date separator symbol.
28783         
28784 2004-04-07  Martin Baulig  <martin@ximian.com>
28785
28786         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28787         from System.Type to System.MonoType.
28788
28789 2004-04-07  Martin Baulig  <martin@ximian.com>
28790
28791         * reflection.h
28792         (MonoReflectionGenericParam): Added `has_reference_type' and
28793         `has_value_type' fields.
28794
28795         * reflection.c (mono_image_get_generic_param_info): Encode the
28796         correct flags if we have the `class' or `struct' constraint.
28797
28798 2004-04-07  Martin Baulig  <martin@ximian.com>
28799
28800         * reflection.h
28801         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28802
28803 2004-04-07  Jackson Harper  <jackson@ximian.com>
28804
28805         * appdomain.c: Revert extra patches, just wanted to bump the
28806         version number.
28807         
28808 2004-04-07  Jackson Harper  <jackson@ximian.com>
28809
28810         * Makefile.am: Add culture-info private headers.
28811         * icall.c: Add new icalls for contructing locales.
28812         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28813         * locales.h: Declare new culture info construction methods.
28814         * object.h: Add new fields used to avoid the CultureMap to
28815         MonoCultureInfo.
28816         * culture-info.h: Definition of structs used in the culture info
28817         tables.
28818         * culture-info-tables.h: Autogenerated tables that contain culture
28819         info data. This file was generated with the locale-builder tool.
28820         * appdomain.c: Incement corlib version number.
28821         
28822 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28823
28824         * appdomain.c: (mono_runtime_init) move mono_thread_init
28825         to before mono_object_new calls so critical sections
28826         are initialized before use.
28827
28828 2004-04-07  Martin Baulig  <martin@ximian.com>
28829
28830         * icall.c
28831         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28832         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28833         (ves_icall_MonoGenericParam_initialize): Removed.
28834         (monogenericparam_icalls): Removed.
28835         (generictypeparambuilder_icalls): Added new table for
28836         System.Reflection.Emit.GenericTypeParameterBuilder.
28837
28838         * reflection.c
28839         (mono_reflection_define_generic_parameter): Removed.
28840         (mono_reflection_initialize_generic_parameter): This is now called
28841         from GenericTypeParameterBuilder's .ctor.
28842
28843 2004-04-06  Martin Baulig  <martin@ximian.com>
28844
28845         * class.c (mono_class_init): Don't inflate nested classes in a
28846         generic instance.
28847         (mono_type_get_name_recurse): Include the generic arguments for
28848         generic instances and generic type declarations.
28849         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28850         (_mono_class_get_instantiation_name): Removed.
28851         (mono_class_create_generic): Always use `gklass->name' as our name.
28852
28853         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28854
28855         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28856         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28857         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28858         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28859         closed generic methods here.
28860
28861         * reflection.c
28862         (mono_reflection_generic_inst_get_nested_types): Removed.
28863         (inflate_mono_method): Copy the generic parameters from the
28864         MonoMethodHeader into out MonoGenericMethod.
28865
28866 2004-04-06  Martin Baulig  <martin@ximian.com>
28867
28868         * row-indexes.h
28869         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28870
28871         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28872
28873         * reflection.c (build_compressed_metadata): If we have any entries
28874         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28875         set the header version to 1.1.
28876
28877 2004-04-06  Martin Baulig  <martin@ximian.com>
28878
28879         * class.c (mono_class_init): If we're a generic instance,
28880         initialize our nested classes, too.
28881         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28882         suffix. 
28883
28884 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28885
28886         * process.c: quote the argument passed to the shell on windows.
28887
28888 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28889
28890         * threads.c (mono_alloc_special_static_data): Allow this to be
28891         called during startup.
28892
28893 2004-04-02  Martin Baulig  <martin@ximian.com>
28894
28895         * icall.c
28896         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28897
28898 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28899
28900         * icall.c: Fix build.
28901
28902 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28903
28904         * Makefile.am: Added security.c|h.
28905         * icall.c: Added icall for get_UserName;
28906         * security.c: New file for security related icalls. Added function
28907         get_UserName for System.Environment (fix #56144).
28908         * security.h: New. Header file for security.c
28909
28910 2004-04-02  Dick Porter  <dick@ximian.com>
28911
28912         * icall.c: Deleted the icalls that were obsoleted some time ago
28913         by the ICU string code, and which were mixed into the icall
28914         rearranging.  Fixes bug 55969.
28915
28916         * string-icalls.h: 
28917         * string-icalls.c: Deleted the code that those icalls reference.
28918
28919 2004-04-01  Martin Baulig  <martin@ximian.com>
28920
28921         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28922
28923         * class.c (mono_class_from_generic_parameter): Don't set 
28924         TYPE_ATTRIBUTE_INTERFACE.
28925         (my_mono_class_from_generic_parameter): Likewise.
28926
28927 2004-04-01  Martin Baulig  <martin@ximian.com>
28928
28929         * loader.c (find_method): Added an optional `MonoClass *ic'
28930         argument to search in a specific interface.
28931         (mono_get_method_constrained): New public function.
28932
28933 2004-04-01  Martin Baulig  <martin@ximian.com>
28934
28935         * reflection.c (mono_image_get_generic_field_token): Use the
28936         `handleref' cache here.
28937
28938 2004-04-01  Martin Baulig  <martin@ximian.com>
28939
28940         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28941
28942         * reflection.c (create_generic_typespec): Use the `typespec' hash
28943         here, not the `typeref' one.    
28944
28945 2004-04-01  Martin Baulig  <martin@ximian.com>
28946
28947         * class.c (mono_class_inflate_generic_type): Moved the
28948         functionality into a new static inflate_generic_type() which
28949         returns NULL if it didn't do anything.  Only increment the
28950         `mono_stats.inflated_type_count' if we actually inflated
28951         something.
28952         (mono_class_get_full): Check the classes type to see whether we
28953         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28954
28955 2004-04-01  Jackson Harper  <jackson@ximian.com>
28956
28957         * reflection.c: Set culture for assembly references.
28958         
28959 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28960
28961         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28962
28963 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28964
28965         * assembly.c:
28966         (do_mono_assembly_open): the critical section also covers
28967         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28968
28969 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28970
28971         * threads.c:
28972         (mono_manage_threads): abort the background threads when finishing.
28973         Fixes bug #47232.
28974
28975 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28976
28977         * gc.c: only close the done_event handle if there was no timeout.
28978         C-ified comments.
28979
28980 2004-03-30  Martin Baulig  <martin@ximian.com>
28981
28982         * icall.c (icall_entries): It's called "System.Activator", not
28983         "System.Activation".    
28984
28985 2004-03-30  Martin Baulig  <martin@ximian.com>
28986
28987         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28988         (mono_class_create_from_typespec): Likewise.
28989
28990 2004-03-30  Martin Baulig  <martin@ximian.com>
28991
28992         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28993         `has_ctor_constraint' and `initialized'.
28994
28995 2004-03-30  Martin Baulig  <martin@ximian.com>
28996
28997         * reflection.c (encode_new_constraint): New static function to add
28998         the constructor constraint attribute to a type parameter.
28999         (encode_constraints): Call encode_new_constraint() if necessary.
29000
29001         * reflection.h
29002         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
29003
29004         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
29005         
29006 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
29007
29008         * reflection.c, icall.c: add support for pinning variables. 
29009
29010 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
29011
29012         * marshal.c (mono_marshal_get_managed_wrapper):
29013         init bool local with zero rather than null.
29014
29015 2004-03-29  Martin Baulig  <martin@ximian.com>
29016
29017         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
29018         the "official" behavior here.
29019         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
29020
29021 2004-03-29  Martin Baulig  <martin@ximian.com>
29022
29023         * icall.c: Reflect latest API changes.
29024
29025 2004-03-29  Martin Baulig  <martin@ximian.com>
29026
29027         * loader.c (mono_get_method_from_token): Also call
29028         mono_metadata_load_generic_params () for abstract and interface
29029         methods; replace the type arguments in the method signature with
29030         the ones which are loaded from the metadata.
29031
29032 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
29033
29034         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
29035         of the lock is not the current thread. MS.NET don't do it, in spite of
29036         what the documentation says. See bug #56157.
29037
29038 2004-03-28  Martin Baulig  <martin@ximian.com>
29039
29040         * class.c (mono_class_init): Don't call init_properties() and
29041         init_events() for generic instances; set `prop->parent' when
29042         inflating properties.
29043
29044         * reflection.c (mono_generic_inst_get_object): Call
29045         `mono_class_init (ginst->klass)'.
29046         (mono_type_get_object): Only create a MonoGenericInst if your
29047         generic type is a TypeBuilder.
29048         (do_mono_reflection_bind_generic_parameters): Only set
29049         `ginst->is_dynamic' if our generic type is a TypeBuilder.
29050
29051 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
29052
29053         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
29054         Fixes #56091.
29055
29056 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29057
29058         * icall.c: added Kill_internal icall.
29059         * process.[ch]: added Kill_internal icall.
29060
29061 2004-03-25  Martin Baulig  <martin@ximian.com>
29062
29063         * class.h (MonoStats): Added `generic_instance_count',
29064         `inflated_method_count', `inflated_type_count' and
29065         `generics_metadata_size'.       
29066
29067 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29068
29069         * reflection.c: no warnings now.
29070
29071 2004-03-25  Martin Baulig  <martin@ximian.com>
29072
29073         * class.c (mono_class_get_full): New public function; does a
29074         mono_class_get(), but also takes a `MonoGenericContext *'.
29075
29076         * loader.c (mono_field_from_memberref): Renamed to
29077         `field_from_memberref', made static and added `MonoGenericContext *'
29078         argument.
29079         (mono_field_from_token): Added `MonoGenericInst *' argument.
29080         (method_from_memberef): Likewise.
29081         (mono_get_method_from_token): Likewise.
29082         (mono_get_method_full): New public function; does a
29083         mono_get_method(), but also takes a `MonoGenericContext *'.
29084
29085         * verify.c (mono_method_verify): Get the method's generic context
29086         and pass it to mono_field_from_token(), mono_get_method_full() and
29087         mono_class_get_full().
29088
29089 2004-03-25  Martin Baulig  <martin@ximian.com>
29090
29091         * class.c (mono_class_inflate_generic_type): Take a
29092         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
29093         `MonoGenericMethod *'.
29094
29095 2004-03-25  Martin Baulig  <martin@ximian.com>
29096
29097         * loader.h (MonoMethodInflated): Store the MonoGenericContext
29098         instead of the MonoGenericMethod here.
29099
29100 2004-03-25  Martin Baulig  <martin@ximian.com>
29101
29102         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
29103         each time we create a new MonoGenericInst, we also create a new
29104         context which points back to us.
29105
29106         * class.c (inflate_method): Use `ginst->context' instead of
29107         creating a new context.
29108
29109         * loader.c (method_from_memberref): Use
29110         `klass->generic_inst->context' instead of creating a new context.
29111
29112 2004-03-25  Martin Baulig  <martin@ximian.com>
29113
29114         * class.h (MonoGenericContext): New struct.
29115         (MonoGenericMethod): Removed `generic_inst'.
29116
29117         * class.c (mono_class_inflate_generic_method): Take a
29118         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
29119
29120 2004-03-25  Martin Baulig  <martin@ximian.com>
29121
29122         * loader.h (MonoMethodInflated): New typedef.
29123
29124         * metadata.h (MonoMethodSignature): Removed `gen_method', make
29125         `generic_param_count' consume just 30 bits, added `is_inflated'
29126         and `has_type_parameters' flags (one bit each).
29127
29128         * class.c (mono_class_inflate_generic_method): Create a
29129         MonoMethodInflated instead of a MonoMethodNormal and set
29130         `is_inflated' in the method signature.
29131
29132         * class.h (MonoGenericMethod): Removed `generic_method'.
29133
29134 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
29135
29136         * image.c: Make sure the name of a MonoImage is always an absolute path.
29137           This fixes bug #54415.
29138
29139 2004-03-24  Martin Baulig  <martin@ximian.com>
29140
29141         * class.c (mono_class_setup_vtable): If we're a generic instance,
29142         use our generic type's vtable size.
29143
29144 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
29145
29146         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
29147         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
29148         problems.
29149
29150 2004-03-23  Martin Baulig  <martin@ximian.com>
29151
29152         * class.h (MonoDynamicGenericInst): Added `int count_events' and
29153         `MonoEvent *events'.
29154
29155         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
29156         (typebuilder_icalls): Added "get_event_info"; calls
29157         mono_reflection_event_builder_get_event_info(). 
29158
29159         * reflection.c (mono_reflection_generic_inst_initialize): Added
29160         `MonoArray *events'.
29161         (mono_reflection_event_builder_get_event_info): New function.
29162
29163 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
29164
29165         * object.h: add mono_type_initialization_init
29166
29167         * object.c (mono_runtime_class_init): 
29168         implement class constructor synchronization rules
29169         to cope with threading issues.  
29170         add mono_type_initialization_init
29171
29172         * appdomain.c (mono_runtime_init): call 
29173         mono_type_initialization_init
29174
29175         * class.h: removing initializing field from MonoVTable
29176
29177 2004-03-23  Martin Baulig  <martin@ximian.com>
29178
29179         * class.c (my_mono_class_from_generic_parameter): Use
29180         `param->name' if it's not NULL. 
29181
29182 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
29183
29184         * class.c: do not insert non-virtual methods in the vtable.
29185         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
29186         that means the method is non-virtual. This never would have
29187         happened before.
29188
29189 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
29190
29191         * profiler.c: Added lock for accessing coverage_hash.
29192
29193 2004-03-22  Martin Baulig  <martin@ximian.com>
29194
29195         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
29196         `method->method->signature->generic_param_count != 0' to make it
29197         work for interface methods.
29198
29199 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29200
29201         * process.c: quote the string passed to the shell using g_shell_quote.
29202
29203 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29204
29205         * threads.c:
29206         (mono_threads_manage): don't remove the finalizer thread and self
29207         from the threads hash table so that mono_thread_manage can be called
29208         more than once.
29209
29210 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29211
29212         * process.c: quote the arguments when UseShellExecute is true. Fixes
29213         bug #55790.
29214
29215 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29216
29217         * threads.c: set mono_thread_detach as a cleanup routine for every
29218         thread. This way it's always executed upon thread termination, either
29219         aborted or finished normally. No more xsp hangs!
29220
29221 2004-03-17  Martin Baulig  <martin@ximian.com>
29222
29223         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
29224         `int count_nested' and a `MonoType **nested'.
29225
29226         * reflection.c (mono_reflection_bind_generic_parameters): Moved
29227         most of the functionality into a new static
29228         do_mono_reflection_bind_generic_parameters() and don't take a
29229         `MonoType *nested_in' argument any more.  Don't compute nested
29230         types here.
29231         (mono_reflection_generic_inst_get_nested_types): New public method
29232         to get nested types.
29233
29234         * class.c (mono_class_create_generic): Set `klass->nested_in' if
29235         we're a nested class.
29236
29237         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
29238         mono_reflection_generic_inst_get_nested_types() to compute the
29239         nested types.
29240
29241 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29242
29243         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
29244         descriptive error message under windows.
29245         
29246 2004-03-17  Martin Baulig  <martin@ximian.com>
29247
29248         * class.c (dup_type): Added `const MonoType *original' argument;
29249         copy the attrs from the original type.
29250
29251 2004-03-17  Martin Baulig  <martin@ximian.com>
29252
29253         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
29254         `m->generic_inst_cache' here.
29255
29256 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
29257
29258         * exception.h exception.c: Add stack_overflow_exception.
29259
29260 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29261
29262         * threadpool.c:
29263         (overlapped_callback): call SetEvent *after* invoking the callback.
29264         No need to call CloseHandle.
29265
29266 2004-03-16  Martin Baulig  <martin@ximian.com>
29267
29268         * reflection.c (mono_image_get_fieldref_token): Take a
29269         `MonoReflectionField *' instead of a `MonoClassField *' and a
29270         `MonoClass *'; store the `MonoReflectionField *' in the hash.
29271
29272 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29273
29274         * appdomain.c: don't add the culture to the filename we're looking for
29275         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
29276
29277 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29278
29279         * locales.c: don't ignore symbols when doing case insensitive compares.
29280         Thanks Dick! Fixes bug #54046.
29281
29282         * threads.c: surround 'threads' usage with enter/leave in
29283         mono_thread_manage.
29284
29285 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
29286
29287         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
29288         implicitly marshalled as [Out]. Fixes #55450.
29289
29290         (mono_marshal_get_runtime_invoke): Zero out the result if there is
29291         an exception.
29292
29293 2004-03-16  Martin Baulig  <martin@ximian.com>
29294
29295         * class.c (mono_class_from_generic_parameter): Use the actual
29296         parameter name. 
29297
29298 2004-03-16  Martin Baulig  <martin@ximian.com>
29299
29300         * reflection.c (type_get_signature_size): New static function.
29301         Compues the size of the type in a method signature.
29302         (method_get_signature_size): New static function; calls
29303         type_get_signature_size() to compute the actual size of the
29304         method's signature.
29305         (method_encode_signature): Use method_get_signature_size() to get
29306         the signature's size rather than using `nparams * 10'.
29307
29308 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29309
29310         * file-io.h: define here WapiOverlapped on windows. I don't want the
29311         regular OVERLAPPED one.
29312
29313         * file-io.c:
29314         * threadpool.c: somehow, BindIoCompletionCallback is not found.
29315         Disabling AIO on windows.
29316
29317 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29318
29319         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
29320         bug #55385.
29321
29322 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29323
29324         * appdomain.c: upgraded corlib version.
29325
29326         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
29327         and BeginWrite. Allow opening files for asynchrnous operations.
29328
29329         * file-io.h: new struct that maps FileStreamAsyncResult.
29330         * icall.c: added new icalls.
29331         * process.[ch]: support setting child process environment variables
29332         and use the SHELL or COMSPEC when UseShellExecute is true.
29333
29334         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
29335         callback for async. IO is here and also BindHandle.
29336
29337         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
29338         from here.
29339
29340 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
29341
29342         * reflection.c (create_custom_attr): Allow len == 0.
29343
29344         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
29345         computation on big-endian machines.
29346
29347 2004-03-13  Martin Baulig  <martin@ximian.com>
29348
29349         * class.h (MonoGenericInst): Added `int count_ifaces'.
29350
29351         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
29352         `ginst->count_ifaces' instead `klass->interface_count' since we
29353         may get called before the vtable is created.
29354
29355         * loader.c (mono_method_get_param_names): If we're a generic
29356         instance, return and don't initialize the class.
29357
29358         * reflection.c (mono_reflection_setup_generic_class): Don't call
29359         ensure_runtime_vtable().
29360         (mono_reflection_bind_generic_parameters): Set
29361         `ginst->count_ifaces'.
29362
29363 2004-03-11  Jackson Harper <jackson@ximian.com>
29364
29365         * icall.c:
29366         * unicode.c:
29367         * unicode.h: Remove unused System.Char icalls.
29368         
29369 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
29370
29371         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
29372         code when we P/Invoke the first library in Windows.Forms, instead
29373         of when we first open the assembly.
29374
29375         * assembly.c: Drop the lookup from here.
29376
29377 2004-03-10  Martin Baulig  <martin@ximian.com>
29378
29379         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
29380         class for properties, fields and events.  Finally fixes #54945.
29381
29382 2004-03-10  Martin Baulig  <martin@ximian.com>
29383
29384         * metadata.c (mono_metadata_class_equal): New static function;
29385         checks whether two generic instances or two generic parameters are
29386         equal.
29387         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
29388         compare classes.        
29389
29390 2004-03-10  Martin Baulig  <martin@ximian.com>
29391
29392         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
29393
29394         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
29395         argument and write it into the `reflection_info' field.
29396
29397         * icall.c
29398         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
29399         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
29400
29401 2004-03-09  Jackson Harper  <jackson@ximian.com>
29402
29403         * char-conversions.h: use 8 bits for numeric data its all we need
29404         * icall.c: numeric data is only 8 bits now.
29405
29406 2004-03-09  Martin Baulig  <martin@ximian.com>
29407
29408         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
29409
29410         * class.c (init_properties, init_events): Initialize the new
29411         `parent' field.
29412
29413         * reflection.c (typebuilder_setup_properties): Likewise.
29414         (typebuilder_setup_events): Likewise.
29415
29416         * reflection.h (MonoEventInfo): Replaced `parent with
29417         `declaring_type' and `reflected_type'.
29418
29419         * icall.c (ves_icall_get_property_info): Distinguish between
29420         declaring and reflected type.
29421         (ves_icall_get_event_info): Likewise.
29422
29423 2004-03-09  Martin Baulig  <martin@ximian.com>
29424
29425         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
29426         (ves_icall_Type_GetField): Correctly set field->klass.
29427
29428 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
29429
29430         * loader.h: Fix warning.
29431
29432 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
29433
29434         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
29435         library routine if present.  Notice that it will still continue
29436         executing even if its missing, for those working on the Gtk#
29437         edition of Windows.Forms.
29438
29439         * assembly.c (do_mono_assembly_open): If loading the
29440         System.Windows.Forms call mono_loader_wini_init.
29441
29442 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
29443
29444         * class.h: Added MonoRemoteClass struct.
29445         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
29446         function for MonoStrings.
29447         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
29448         Added internal call for getting the proxy type.
29449         * marshal.c: Get the type of transparent proxies from its remote_class.
29450         Added methods that generate the IL for type checks and casts:
29451         mono_marshal_get_isinst, mono_marshal_get_castclass, 
29452         mono_marshal_get_proxy_cancast.
29453         * marshal.h: Declaration of the previous new methods.
29454         * object.c: Added new moethods for creating and updating MonoRemoteClass
29455         instances: mono_remote_class, mono_upgrade_remote_class, 
29456         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
29457         * verify.c: FIx transparent_proxy_fields layout.
29458         * appdomain.c: Bump corlib version.
29459
29460 2004-03-04  Jackson Harper  <jackson@ximian.com>
29461
29462         * icall.c: Add icall to access char conversion tables.
29463         * char-conversions.h: Character conversion tables.
29464         * Makefile.am: Add char-conversions.h private header file.
29465         
29466 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
29467
29468         * appdomain.c (unload_thread_main): Increase unloading timeout to
29469         10 sec as a temporary workaround for Nant problems.
29470
29471 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
29472
29473         * gc.c: Add checks for GC_enable and GC_disable.
29474
29475         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
29476         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
29477         (bug #54988).
29478         
29479 2004-02-27  Martin Baulig  <martin@ximian.com>
29480
29481         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29482         `MonoReflectionType *' instead of a `MonoType *'.
29483
29484 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
29485
29486         * gc.c (run_finalize): Avoid finalizing the object representing the
29487         finalizer thread.
29488         (finalizer_thread): Fix warning.
29489
29490 2004-02-25  Martin Baulig  <martin@ximian.com>
29491
29492         * class.c (_mono_class_get_instantiation_name): Added `int offset'
29493         argument for nested types.
29494         (mono_class_create_generic): Added support for nested generictypes.
29495
29496         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
29497         `GList *nested'.
29498
29499         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
29500
29501         * reflection.c (method_encode_signature): Increase the minimum
29502         value of `size' from 10 to 11.
29503         (mono_reflection_bind_generic_parameters): Take `int type_argc'
29504         and `MonoType **types' arguments instead of the `MonoArray
29505         *types'; added `MonoType *nested_in'.  Recursively instantiate
29506         nested classes. 
29507
29508 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
29509
29510         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
29511         stack_overflow_ex members which are used by exception handling.
29512
29513         * appdomain.c (mono_runtime_init): Initialize the new members.
29514
29515         * gc.c (mono_gc_enable): New helper function.
29516         * gc.c (mono_gc_disable): New helper function.
29517
29518 2004-02-23  Martin Baulig  <martin@ximian.com>
29519
29520         * icall.c: I must have been really stupid - make it actually work
29521         this time ;-)
29522
29523 2004-02-23  Martin Baulig  <martin@ximian.com>
29524
29525         * loader.c (method_from_memberref): Only inflate the method if
29526         it's in another klass.
29527
29528 2004-02-23  Martin Baulig  <martin@ximian.com>
29529
29530         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
29531         (mono_class_init): If we're a generic instance and an interface,
29532         compute `class->interface_id'; also create `class->interfaces'
29533         here and inflate them.
29534
29535         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
29536         `ginst->is_open'.
29537         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
29538
29539         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
29540
29541 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
29542
29543         * reflection.c (method_encode_code): Improved the error message
29544         generated by the exception.
29545
29546 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29547
29548         * icall.c: Martin did not do what he said in the ChangeLog for
29549         2004-02-18, but put back the changes for properties and events.
29550         Commenting those changes out again and adding comment to bug #54518.
29551         
29552         * process.c: removed warning.
29553
29554 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
29555
29556         * marshal.c (emit_struct_conv): Print an error message instead of
29557         asserting when a type does not have the StructLayout attribute.
29558
29559 2004-02-20  Martin Baulig  <martin@ximian.com>
29560
29561         * reflection.c (mono_type_get_object): Also use the cache for
29562         generic instances.
29563         (mono_reflection_bind_generic_parameters): Always compute
29564         `ginst->ifaces'.        
29565
29566 2004-02-20  Martin Baulig  <martin@ximian.com>
29567
29568         * class.h (MonoGenericMethod): Removed `klass'.
29569
29570         * class.c (mono_class_inflate_generic_method): Added `MonoClass
29571         *klass' argument.
29572
29573 2004-02-20  Martin Baulig  <martin@ximian.com>
29574
29575         * reflection.c (method_encode_methodspec): Actually use the
29576         uninflated signature for the memberref.
29577
29578 2004-02-20  Martin Baulig  <martin@ximian.com>
29579
29580         * class.h (MonoGenericMethod): Removed `declaring'.
29581
29582         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
29583         is NULL, compute it here.
29584
29585 2004-02-20  Martin Baulig  <martin@ximian.com>
29586
29587         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
29588
29589         * metadata.c (mono_metadata_generic_inst_hash): New method.
29590         (mono_metadata_generic_inst_equal): New method.
29591
29592         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29593         `klass->image->generic_inst_cache' cache to avoid creating
29594         duplicate MonoGenericInst's.
29595
29596         * class.c (mono_class_inflate_generic_type): Use the cache.
29597
29598 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29599
29600         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29601
29602 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29603
29604         * icall.c: added Socket.WSAIoctl icall.
29605
29606         * socket-io.[ch]: implemented
29607         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29608
29609 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29610
29611         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29612
29613 2004-02-18  Urs C Muff  <umuff@quark.com>
29614
29615         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29616         this work on PPC and other big-endian architectures.
29617
29618         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29619         fields with an underscore to make sure they're only accessed by
29620         the read32() macro.
29621
29622 2004-02-18  Martin Baulig  <martin@ximian.com>
29623
29624         * icall.c: Put the klass->refclass changes back for methods and
29625         fields, but not for properties and events.  We're currently not
29626         distinguishing between DeclaringType and ReflectedType for
29627         properties and events, that's what caused the regressions.
29628
29629 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29630
29631         * object.c:
29632         (mono_async_result_new): the handle can be NULL.
29633
29634         * threadpool.c: Use an event instead of a semaphore, don't initialize
29635         it until needed. This saves quite a few semaphores from being created
29636         when using the threadpool.
29637
29638 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29639
29640         * object.c (mono_string_is_interned_lookup): Fix interning of long
29641         strings. Fixes #54473.
29642
29643         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29644
29645         * icall.c: Revert the klass->refclass changes since they introduce
29646         regressions (bug #54518).
29647
29648 2004-02-18  Martin Baulig  <martin@ximian.com>
29649
29650         * class.c (mono_class_init): If we're a generic instance and don't
29651         come from a TypeBuilder, inflate our members here.
29652         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29653         (mono_class_create_generic): New public method.
29654         (mono_class_initialize_generic): Removed.
29655         (get_instantiation_name): Renamed to
29656         _mono_class_get_instantiation_name() and made it public.
29657
29658 2004-02-18  Martin Baulig  <martin@ximian.com>
29659
29660         * class.c (mono_class_inflate_generic_type): Clear the new
29661         instance's `nginst->klass' when inflating a generic instance.
29662         (mono_class_is_subclass_of): Added (basic) support for generic
29663         instances.
29664
29665 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29666
29667         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29668         MonoMempool to hold compiled native code.
29669
29670 2004-02-17  Martin Baulig  <martin@ximian.com>
29671
29672         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29673         `properties'.
29674
29675         * reflection.c (mono_reflection_generic_inst_initialize): Added
29676         `MonoArray *properties' argument.
29677
29678         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29679
29680 2004-02-17  Martin Baulig  <martin@ximian.com>
29681
29682         * icall.c (ves_icall_Type_GetFields): Renamed to
29683         ves_icall_Type_GetFields_internal() and added a
29684         `MonoReflectionType *rtype' argument; pass it to
29685         mono_field_get_object() to set the field's "reflected" type.
29686         (ves_icall_Type_GetConstructors): Likewise.
29687         (ves_icall_Type_GetEvents): Likewise.
29688         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29689         argument; pass it to mono_method_get_object() to set the method's
29690         "reflected" type.       
29691
29692 2004-02-17  Martin Baulig  <martin@ximian.com>
29693
29694         * class.h (MonoDynamicGenericInst): New type.
29695         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29696
29697         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29698         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29699         (ves_icall_MonoGenericInst_GetFields): New interncall.
29700
29701         * class.c (mono_class_from_generic): Don't call
29702         mono_class_initialize_generic() if this is a dynamic instance;
29703         ie. it's being created from a TypeBuilder.
29704         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29705         `class->byval_arg.type'.
29706
29707         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29708         to `inflate_method' and made static.
29709         (mono_reflection_inflate_field): Removed.
29710         (mono_reflection_generic_inst_initialize): New public method.
29711
29712         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29713         `ctors' and `fields'; added `initialized'.
29714
29715 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29716
29717         * debug-helpers.c (mono_method_full_name): Fix output for empty
29718         namespaces.
29719
29720 2004-02-12  Martin Baulig  <martin@ximian.com>
29721
29722         * class.h (MonoClassField): Added `MonoType *generic_type'.
29723
29724         * reflection.c (mono_image_get_fieldref_token): Added support for
29725         instantiated generic types.
29726         (field_encode_inflated_field): Removed.
29727         (mono_image_get_inflated_field_token): Removed.
29728         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29729
29730         * reflection.h (MonoReflectionInflatedField): Removed.
29731
29732 2004-02-12  Martin Baulig  <martin@ximian.com>
29733
29734         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29735         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29736
29737         * reflection.c (mono_image_get_methodspec_token): Take a
29738         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29739         (mono_image_create_token): Check whether we have a
29740         `method->signature->gen_method' and call
29741         mono_image_get_methodspec_token() if appropriate.
29742         (inflated_method_get_object): Removed.
29743         (mono_reflection_bind_generic_method_parameters): Return a
29744         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29745         (mono_reflection_inflate_method_or_ctor): Likewise.
29746
29747         * reflection.h (MonoReflectionInflatedMethod): Removed.
29748
29749 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29750
29751         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29752         for custom valuetype marshalling.
29753
29754         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29755
29756 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29757
29758         * icall.c: fixed WSAGetLastError_internal name.
29759
29760 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29761
29762         * threads.c (mono_thread_attach): Allow this to be called multiple
29763         times for a thread.
29764         
29765         * threads.c (build_wait_tids): Do not wait for ourselves.
29766
29767         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29768         appdomain list is empty.
29769
29770         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29771         memory returned by mono_string_builder_to_utf16, since it points into
29772         managed memory. Thanks to Bernie Solomon for noticing this.
29773
29774         * icall.c: Add AppDomainSetup icalls.
29775
29776         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29777
29778         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29779         types.
29780
29781         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29782         custom attributes to the method_aux struct. Also fix array indexes etc.
29783
29784         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29785         
29786 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29787
29788         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29789         (both static and runtime) and reduce startup time.
29790
29791 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29792
29793         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29794         AsAny marshalling conversion instead of crashing.
29795
29796         * marshal.c: Fix warnings.
29797
29798 2004-02-09  Martin Baulig  <martin@ximian.com>
29799
29800         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29801
29802         * reflection.h (MonoReflectionInflatedMethod): Removed the
29803         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29804
29805         * reflection.c (method_encode_methodspec): Removed the `method'
29806         argument; we get it from `gmethod->declaring'.
29807         (inflated_method_get_object): Removed the `declaring' argument.
29808
29809 2004-02-09  Martin Baulig  <martin@ximian.com>
29810
29811         * class.h (MonoGenericMethod): New type.
29812         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29813         `generic_method'.
29814
29815         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29816         a `MonoGenericMethod *gen_method' one.
29817
29818         * class.c (mono_class_inflate_generic_type): Take an additional
29819         `MonoGenericMethod * argument.  This is only non-NULL if we're
29820         inflating types for a generic method.   
29821         (mono_class_inflate_generic_signature): Renamed to
29822         inflate_generic_signature() and made static; take a
29823         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29824         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29825         instead of a `MonoGenericInst *' one.
29826         (mono_class_inflate_generic_method): Likewise.
29827
29828         * reflection.c (encode_generic_method_sig): Take a
29829         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29830         (method_encode_methodspec): Likewise.
29831         (inflated_method_get_object): Likewise. 
29832
29833         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29834         field with a `MonoGenericMethod *gmethod' one.  
29835
29836 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29837
29838         * class.h (mono_class_has_parent): add parens to expansion
29839         so you can ! this.
29840
29841 2004-02-08  Martin Baulig  <martin@ximian.com>
29842
29843         * image.h (MonoImage): Removed `generics_cache'.
29844
29845         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29846         instead of a `MonoType *' argument; removed the `inflate_methods'
29847         argument.  Don't inflate methods here.
29848
29849         * loader.c (find_method): If it's a generic instance, call
29850         mono_class_init() on the `sclass->generic_inst->generic_type'.
29851
29852         * metadata.c (mono_type_size): Make this work on uninitialized
29853         generic instances; call it on the `ginst->generic_type's class.
29854
29855         * reflection.c (mono_reflection_bind_generic_parameters): Call
29856         mono_class_from_generic() to create the `ginst->klass'.
29857
29858 2004-02-08  Martin Baulig  <martin@ximian.com>
29859
29860         * class.h (MonoClass): Changed type of `generic_inst' from
29861         `MonoType *' to `MonoGenericInst *'.
29862
29863 2004-02-08  Martin Baulig  <martin@ximian.com>
29864
29865         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29866         mono_type_get_object(), this is now creating a `MonoGenericInst'
29867         for MONO_TYPE_GENERICINST.
29868         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29869         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29870
29871         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29872         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29873         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29874         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29875         and reflected type.
29876
29877         * reflection.h (MonoReflectionInflatedMethod): Removed
29878         `declaring_type' and `reflected_type'.
29879
29880 2004-02-08  Martin Baulig  <martin@ximian.com>
29881
29882         * class.h (MonoGenericInst): Added `MonoType *parent' and
29883         `MonoType **ifaces'.
29884
29885         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29886         `parent' and `interfaces'.
29887
29888         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29889         `MonoType *' argument and return a `MonoType *'.
29890
29891         * icall.c
29892         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29893         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29894
29895 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29896
29897         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29898         valuetype marshalling.
29899
29900 2004-02-06  Martin Baulig  <martin@ximian.com>
29901
29902         * class.c
29903         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29904         (my_mono_class_from_generic_parameter): Likewise.
29905
29906 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29907
29908         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29909         contents of the symbol files lazily.
29910
29911         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29912
29913         * threads.h threads.c icall.c: New icalls for getting and setting the
29914         threads name.
29915
29916 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29917
29918         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29919         Raise an exception when the domain is not found.
29920
29921 2004-02-03  Martin Baulig  <martin@ximian.com>
29922
29923         * reflection.c (mono_image_get_methodspec_token): Use the
29924         uninflated signature; fixes gen-33.
29925
29926 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29927
29928         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29929         the finalizer code can use thread functionality.
29930
29931         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29932         the finalizer thread.
29933
29934         * threads.c: Make some functions more robust.
29935
29936         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29937
29938         * metadata.h: Add new marshalling conventions.
29939
29940         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29941         stringbuilder marshalling. Fixes #53700.
29942
29943         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29944
29945         * reflection.c (mono_image_get_type_info): Save declarative security
29946         info.
29947
29948         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29949         unmanaged fields as well.
29950
29951         * appdomain.c: Bump corlib version.
29952
29953 2004-02-01  Martin Baulig  <martin@ximian.com>
29954
29955         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29956         method type arguments.  
29957
29958 2004-01-30  Duncan Mak  <duncan@ximian.com>
29959
29960         * marshal.h: Add prototype for
29961         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29962         and
29963         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29964         fix the build.
29965
29966 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29967
29968         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29969         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29970
29971 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29972
29973         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29974         custom marshalling of valuetypes.
29975
29976         * marshal.c: Fix some warnings.
29977
29978 2004-01-29  Martin Baulig  <martin@ximian.com>
29979
29980         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29981         for generic method parameters.
29982
29983         * reflection.c (method_encode_methodspec): Write the uninflated
29984         signature into the methodspec table.
29985         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29986         is always the uninflated method.
29987         (reflection_methodbuilder_to_mono_method): Copy the generic
29988         parameters from the MethodBuilder into `header->gen_params'.
29989
29990 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29991
29992         * class.c (mono_class_from_generic_parameter): Fix warning.
29993
29994 2004-01-27  Martin Baulig  <martin@ximian.com>
29995
29996         * class.c (mono_class_from_generic_parameter): Don't create
29997         `klass->methods' here.  
29998
29999 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
30000
30001         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
30002         extension since it does not work with libraries named lib<FOO>.dll.so.
30003
30004 2004-01-25  Martin Baulig  <martin@ximian.com>
30005
30006         * class.c (mono_class_inflate_generic_type): Added support for
30007         MONO_TYPE_GENERICINST.
30008
30009         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
30010         inflate methods on open constructed types.      
30011
30012 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30013
30014         * object.c: fire ProcessExit event in the root AppDomain after running
30015         Main. Fixes bug #53299.
30016
30017 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
30018
30019         * socket-io.c: include the new socket-wrappers.h header.
30020         Use the wrappers instead of the unix socket functions to make the code
30021         more clear.
30022
30023 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
30024
30025         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
30026
30027         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
30028         Fixes #22532.
30029
30030 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
30031
30032         * reflection.c (mono_image_create_pefile): Handle the case when the
30033         entry point is not a MethodBuilder.
30034
30035         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
30036         field to ReflectionMethod since it is not allways a builder.
30037
30038         * reflection.c (type_get_fully_qualified_name): New helper function to
30039         return the fully qualified name of a type.
30040
30041         * reflection.c (encode_marshal_blob): Always emit the fully qualified
30042         type name for custom marshallers.
30043
30044         * reflection.c (mono_marshal_spec_from_builder): Ditto.
30045
30046         * class.c (mono_class_setup_vtable): If a parent class already 
30047         implements an interface, use the implementing methods from that class.
30048         Fixes #53148.
30049
30050 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30051
30052         * threadpool.c: just return instead of ExitThread to allow for thread
30053         clean up earlier.
30054
30055 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
30056
30057         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
30058         when closing resource modules.
30059
30060         * reflection.c (mono_image_create_pefile): Handle the case when the
30061         entry point is not a MethodBuilder.
30062
30063         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
30064         field to ReflectionMethod since it is not allways a builder.
30065
30066 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
30067
30068         * marshal.c (mono_marshal_get_managed_wrapper): 
30069         mono_marshal_alloc takes native int so CONV_I
30070         the arg for 64bits.
30071
30072 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
30073
30074         * reflection.c (fixup_cattrs): New function to fixup the methoddef
30075         tokens in the cattr table. Fixes #53108.
30076
30077 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30078
30079         * loader.c: don't trim ".dll" before looking up in the config file.
30080         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
30081
30082 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
30083
30084         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
30085         Return the module which contains the resource as well.
30086         (ves_icall_System_Reflection_Module_Close): New icall.
30087
30088         * appdomain.c: Bump corlib version number.
30089
30090         * image.c (mono_image_addref): New public function.
30091
30092         * assembly.c: Call mono_image_addref.
30093
30094         * reflection.c (mono_module_get_object): Increase reference count of 
30095         the image.
30096
30097         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
30098         Fixes #22532.
30099
30100         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
30101         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
30102         proper exceptions on DllImport problems.
30103
30104 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
30105
30106         * class.c, metadata.c: eliminate CSIZE macro.
30107
30108 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
30109
30110         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
30111         * object.h: Added async_callback field in MonoAsyncResult.
30112         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
30113         * verify.c: Added async_callback in MonoAsyncResult layout.
30114
30115 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
30116
30117         * reflection.c (mono_reflection_get_custom_attrs): Add support
30118         for Modules.
30119
30120 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
30121
30122         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
30123         marshalling.
30124         (mono_marshal_method_from_wrapper): Add null pointer check.
30125
30126 2004-01-16  Martin Baulig  <martin@ximian.com>
30127
30128         * debug-mono-symfile.h: Set version number to 36 and reflect
30129         latest symbol writer changes.
30130
30131 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
30132
30133         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
30134         multi-dimensional arrays.
30135         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
30136         (mono_class_from_mono_type): Use bounded_array_class_get.
30137         
30138         * class.c (mono_bounded_array_class_get): New function which takes
30139         a 'bounded' bool argument to distinguish vectors from one dimensional
30140         arrays.
30141
30142         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
30143         bounded_array_class_get if the array has bounds.
30144
30145         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30146         Search modules loaded using AssemblyBuilder:AddModule as well.
30147
30148 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30149
30150         * appdomain.c: increased corlib version.
30151         * filewatcher.c: removed g_print.
30152         * icall.c:
30153         (get_property_info): only allocate what is actually requested.
30154         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
30155
30156 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30157
30158         * Makefile.am: added filewatcher.[ch]
30159         * filewatcher.[ch]: FileSystemWatcher runtime support.
30160         * icall.c: added new FSW icalls.
30161
30162 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
30163
30164         * string-icalls.c: fix stringbuilder regression as suggested by
30165         Iain McCoy <iain@mccoy.id.au>.
30166
30167 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
30168
30169         * process.c (process_read_stringtable_block): Recognize '007f' as
30170         a language neutral stringtable block.
30171
30172 2004-01-12  Patrik Torstensson
30173
30174         * object.h (MonoStringBuilder) : Changed layout to support our
30175         new stringbuilder class.
30176         * marshal.c: Change marshalling to support the new layout of 
30177         string builder.
30178         * appdomain.c: increased version number because new layout of
30179         string builder.
30180
30181 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
30182
30183         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
30184         assembly name as an string instead of an AssemblyName, since it is
30185         easier to extract info from it.
30186
30187         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
30188         the culture subdirectories too. Fixes #52231.
30189
30190 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30191
30192         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
30193         It takes 2 new parameters with an optional name for the method to look
30194         for and case ignoring info.
30195
30196         * threadpool.c: removed unused variable.
30197
30198 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30199
30200         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
30201         It takes 2 new parameters with an optional name for the property to look
30202         for and case ignoring info.
30203         Fixes bug #52753.
30204
30205 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
30206
30207         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
30208         Fix #52451.
30209
30210 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30211
30212         * appdomain.c:
30213         * assembly.c: escape the uri before passing it to g_filename_from_uri.
30214         Fixes bug #52630.
30215
30216 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
30217
30218         * reflection.c: Add support for more than one unmanaged resource.
30219
30220         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
30221         in field->def_value, as done in all other cases.
30222
30223         * reflection.c (mono_reflection_get_custom_attrs): Add support for
30224         TypeBuilders.
30225
30226         * reflection.c (mono_reflection_create_runtime_class): Remove 
30227         errorneous assignment to klass->element_class, since it is already
30228         done in mono_reflection_setup_internal_class.
30229
30230 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30231
30232         * gc.c: added missing LeaveCriticalSection.
30233         * icall.c: indented a couple of lines.
30234         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
30235         if we call EndInvoke inside a callback. Fixes bug #52601.
30236
30237 2004-01-07  Martin Baulig  <martin@ximian.com>
30238
30239         * mono-debug-debugger.h
30240         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
30241
30242 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
30243
30244         * appdomain.c: Use messages in NotImplementedException.
30245
30246         * exception.c (mono_get_exception_not_implemented): Now this takes
30247         a message argument.
30248
30249         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
30250         exception instead of g_asserting an aborting when something is not
30251         implemented.
30252
30253         Add some inline docs.
30254
30255 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
30256
30257         * reflection.h: Update after changes to object layout.
30258
30259         * reflection.c: Implement saving of unmanaged aka win32 resources.
30260
30261         * appdomain.c: Bump version number.
30262
30263         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
30264         Handle missing domains gracefully.
30265
30266 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
30267
30268         * file-io.c : On Windows, there are much more invalid_path_chars.
30269
30270 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
30271
30272         * class.h, object.c: prepare for GetType () speedup.
30273
30274 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
30275
30276         * profiler.c: workaround for --profile null reference exception on
30277           cygwin. Patch by Patrik Torstensson.
30278
30279 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
30280
30281         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
30282         make work for unaligned access.
30283
30284 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
30285
30286         * class.c: small cleanup (class->fields [i] -> field).
30287         * image.c: check address of metadata is valid.
30288
30289 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
30290
30291         * assembly.h assembly.c (mono_assembly_loaded): New public function to
30292         search the list of loaded assemblies.
30293
30294         * reflection.c (mono_reflection_type_from_name): Use 
30295         mono_assembly_loaded instead of mono_image_loaded.
30296
30297         * reflection.c: Fix warnings.
30298
30299 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
30300
30301         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
30302         is dynamic. This is needed since an assembly can contain both dynamic and
30303         non-dynamic images.
30304
30305         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
30306         assembly->dynamic.
30307
30308         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
30309
30310         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
30311         to store modules loaded using AddModule.
30312
30313         * reflection.c (mono_image_fill_file_table): Generalize this so it works
30314         on Modules.
30315
30316         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
30317
30318         * reflection.c (mono_image_fill_export_table_from_module): New function to
30319         fill out the EXPORTEDTYPES table from a module.
30320
30321         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
30322         into a separate function. Also handle loaded non-dynamic modules.
30323
30324         * reflection.c (mono_image_basic_init): Fix memory allocation.
30325
30326         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30327
30328         * assembly.c (mono_assembly_load_references): Make this public.
30329
30330 2003-12-19  Martin Baulig  <martin@ximian.com>
30331
30332         * class.c (mono_class_initialize_generic): Made this static, take
30333         a `MonoGenericInst *' instead of a `MonoClass *'.
30334         (mono_class_from_generic): Call mono_class_initialize_generic()
30335         unless we're already initialized or being called from
30336         do_mono_metadata_parse_generic_inst().
30337
30338         * class.h (MonoGenericInst): Added `initialized' and
30339         `init_pending' flags.
30340
30341         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
30342         `mono_class_init (gklass)' or mono_class_initialize_generic()
30343         here; set `generic_inst->init_pending' while parsing the
30344         `type_argv'.
30345
30346 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
30347
30348         * locales.c: include string.h for memxxx prototypes
30349
30350 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
30351
30352         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
30353         constructor when accessing literal fields.
30354
30355 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
30356
30357         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
30358
30359         * reflection.c (assembly_add_resource_manifest): New function to fill
30360         the MANIFESTRESOURCE table.
30361
30362         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
30363
30364         * reflection.h: Update to changes in class layout.
30365
30366         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
30367         Reenable call to mono_runtime_is_shutting_down ().
30368
30369         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
30370         determine if the runtime is shutting down.
30371
30372 2003-12-16  Jackson Harper <jackson@ximian.com>
30373
30374         * icall.c: comment out call to mono_runtime_is_shutting_down to
30375         fix build.
30376         
30377 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
30378
30379         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
30380         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
30381
30382 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
30383
30384         * reflection.c: move definition of swap_with_size
30385         to before its first call
30386
30387 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
30388
30389         * appdomain.c (mono_runtime_is_shutting_down): New public function.
30390
30391         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
30392         icall.
30393
30394         * object.c: Fix warnings.
30395
30396         * icall.c (ves_icall_Type_Get...): Only consider inherited static
30397         members if FlattenHierarchy is set.
30398
30399         * reflection.c (mono_image_add_decl_security): New function to emit
30400         declarative security.
30401
30402         * reflection.h reflection.c: Add support for declarative security.
30403
30404         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30405         
30406 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
30407
30408         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
30409         
30410         * appdomain.c verify.c: Moved corlib version checking into its own
30411         function in appdomain.c since it needs to create vtables etc.
30412
30413 2003-12-13  Patrik Torstensson <p@rxc.se>
30414
30415         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
30416         instead of unwrapped server.
30417
30418 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
30419
30420         * verify.c (check_corlib): Fix field index.
30421
30422 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
30423
30424         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
30425         GetGacPath icall.
30426
30427 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
30428
30429         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
30430         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
30431         cope with sizeof(size_t) != sizeof(guint32).
30432
30433 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30434
30435         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
30436         in case of failure.
30437
30438 2003-12-10  Mark Crichton <crichton@gimp.org>
30439
30440         * icall.c: removed the GetNonZeroBytes.  We now handle this case
30441         in managed code.
30442
30443         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
30444
30445 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
30446
30447         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
30448         marked as deleted.
30449
30450 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
30451
30452         * verify.c (check_corlib): Handle the case when the version field is 
30453         initialized by a static constructor.
30454
30455 2003-12-08  Patrik Torstensson  <p@rxc.se>
30456
30457     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
30458
30459 2003-12-08  Martin Baulig  <martin@ximian.com>
30460
30461         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
30462         a MonoReflectionGenericParameter, also take the parameter index
30463         and name as arguments.
30464         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
30465         (ves_icall_MonoGenericParam_initialize): New interncall.
30466         (ves_icall_Type_make_byref_type): New interncall.
30467
30468         * reflection.h (MonoReflectionGenericParam): Derive from
30469         MonoReflectionType, not just from MonoObject.  Added `refobj' and
30470         `index' fields.
30471
30472         * reflection.c (mono_reflection_define_generic_parameter): Create
30473         and return a new MonoReflectionGenericParam; don't initialize the
30474         constraints here.
30475         (mono_reflection_initialize_generic_parameter): New public method;
30476         initializes the constraints and creates the `param->pklass'.
30477
30478 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
30479
30480         * reflection.h reflection.c: Use the new fields 'num_types', 
30481         'num_fields' and 'num_methods' to track the number of types etc.
30482
30483         * verify.c (check_corlib): Check corlib version number.
30484
30485 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
30486
30487         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
30488         function works on all methods.
30489
30490 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
30491
30492         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
30493         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
30494         the custom_type_info flag of the transparent proxy.
30495         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
30496         objects that supports IRemotingTypeInfo.
30497         * object.h: Added custom_type_info field in transparent proxy.
30498
30499 2003-12-06  Martin Baulig  <martin@ximian.com>
30500
30501         * class.c (mono_class_create_from_generic): Removed.
30502         (mono_class_from_generic): Check `ginst->klass' before doing
30503         anything else.  This is important to fully support "recursive"
30504         generic types.
30505
30506         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
30507         empty `generic_inst->klass' before doing anything else.
30508
30509 2003-12-06  Dick Porter  <dick@ximian.com>
30510
30511         * verify.c: 
30512         * object.h:
30513         * icall.c:
30514         * locales.c: Use C structs to access class fields.  Don't do a
30515         conversion between MonoString and UChar because both are
30516         platform-endian UTF-16.  Compare now takes startindex and count
30517         parameters.  Add a char overload for IndexOf.  Speed up the
30518         invariant string IndexOf.
30519
30520 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
30521
30522         * Makefile.am (monosn_LDADD): Fix parallel build.
30523
30524 2003-12-04  Martin Baulig  <martin@ximian.com>
30525
30526         * icall.c
30527         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30528         (ves_icall_Type_make_array_type): New interncall.       
30529
30530 2003-12-04  Martin Baulig  <martin@ximian.com>
30531
30532         * locales.c: also change it in the !HAVE_ICU case.
30533
30534 2003-12-04  Dick Porter  <dick@ximian.com>
30535
30536         * icall.c:
30537         * locales.c: construct_compareinfo is now in CompareInfo, not
30538         CultureInfo.
30539
30540 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
30541
30542         * image.c (mono_image_load_file_for_image): Cache loaded images in the
30543         image->files array.
30544
30545         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
30546         table as well.
30547
30548         * assembly.c (mono_assembly_load_references): Only load references
30549         once.
30550
30551         * class.c (mono_class_from_name): Avoid linear search of the 
30552         EXPORTEDTYPE table.
30553
30554         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
30555
30556 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
30557
30558         * image.h (MonoImage): Add 'field_cache' field.
30559
30560         * loader.c (mono_field_from_token): Cache field lookups.
30561         
30562         * reflection.c (mono_module_get_object): Fix name property.
30563
30564         * icall.c (ves_icall_get_enum_info): Update after changes to 
30565         mono_metadata_get_constant_index ().
30566
30567         * icall.c: Get rid of get_type_info icall, use a separate icall for
30568         each type property to avoid needless memory allocations. Fixes #51514.
30569
30570         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
30571         to avoid needless binary searches.
30572
30573         * class.c (class_compute_field_layout): Move the initialization of
30574         field->def_value to mono_class_vtable ().
30575
30576         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
30577         non-corlib types.
30578
30579         * object.c (mono_object_allocate): Make it inline.
30580
30581         * object.c (mono_object_allocate_spec): Make it inline.
30582         
30583 2003-12-02  Dick Porter  <dick@ximian.com>
30584
30585         * locales.c (create_NumberFormat): NumberFormatInfo construction.
30586         Patch by Mohammad DAMT (mdamt@cdl2000.com).
30587
30588 2003-12-01  Dick Porter  <dick@ximian.com>
30589
30590         * threads.c: Fix signature and call in CreateMutex and
30591         CreateEvent.
30592
30593 2003-12-01  Dick Porter  <dick@ximian.com>
30594
30595         * icall.c: 
30596         * locales.c: Implement string compares and searching
30597
30598         * object.h: Add extra Thread field
30599
30600 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30601
30602         * reflection.c (fixup_method): Add support for MonoCMethod.
30603
30604 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30605
30606         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30607
30608         * reflection.c (assembly_name_to_aname): Allow extra characters in
30609         assembly names. Fixes #51468.
30610
30611 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30612
30613         * exception.c (mono_exception_from_name_domain): New helper function.
30614
30615         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30616         exception object in the correct domain.
30617
30618         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30619         formatting + make a copy a the input data.
30620
30621         * loader.c (mono_get_method_from_token): Methods which contain
30622         native code do not have entries in the ImplMap.
30623
30624         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30625         Thanks to Gonzalo for spotting this.
30626         
30627         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30628         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30629
30630         * assembly.h (mono_assembly_load_from): Split the second part of 
30631         assembly loading into a new public function.
30632
30633         * exception.h (mono_get_exception_bad_image_format): New function.
30634
30635 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30636
30637         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30638         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30639         
30640         * icall.c: Add new icall for creating dynamic methods.
30641
30642         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30643
30644         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30645
30646         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30647         create a dynamic method.
30648
30649         * reflection.c (resolve_object): New helper function.
30650
30651         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30652         which manipulate it so they can also work on dynamic methods.
30653
30654         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30655         creating the MonoReflectionMethodAux structure if it is not needed.
30656         
30657         * reflection.h verify.c: Update after changes to object layout.
30658
30659         * reflection.c (method_builder_encode_signature): Fix compilation on
30660         gcc 2.95.x.
30661
30662 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30663
30664         * appdomain.h: Added support for context static fields. Added static_data
30665           field to MonoAppContext and renamed thread_static_fields to a more
30666           generic special_static_fields in MonoAppDomain, since it can now contain
30667           context static fields.
30668         * domain.c: Updated hashtable name.
30669         * object.c: Replaced field_is_thread_static() for a more generic
30670           field_is_special_static() which also checks for context static attribute.
30671           In mono_class_vtable(), added support for static context fields.
30672         * threads.c: Changed methods that manage thread static fields to more
30673           generic methods so they can be reused both for thread and context static
30674           data.
30675         * threads.h: Declared some new methods.
30676
30677 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30678
30679         * reflection.h: Update after changes to the managed types.
30680
30681         * reflection.c (encode_custom_modifiers): New helper function.
30682
30683         * reflection.c (method_encode_signature): Emit custom modifiers.
30684
30685         * reflection.c (field_encode_signature): Emit custom modifiers.
30686
30687 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30688
30689         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30690
30691         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30692         implementation.
30693
30694         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30695         icall.
30696
30697         * object.c (mono_field_get_value_object): New function.
30698
30699         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30700         specific.
30701
30702 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30703
30704         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30705         return a preallocated out-of-memory exception instance.
30706
30707         * object.c (out_of_memory): Use the new function.
30708
30709         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30710         flag is before the custom modifiers. Fixes #49802.
30711
30712 2003-11-16  Martin Baulig  <martin@ximian.com>
30713
30714         * class.c (mono_class_is_open_constructed_type): Implemented the
30715         MONO_TYPE_GENERICINST case.
30716
30717 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30718
30719         * assembly.c (mono_assembly_fill_assembly_name): New function to
30720         fill out the MonoAssemblyName structure.
30721         (mono_assembly_open): Use the new function.
30722
30723         * icall.c (fill_reflection_assembly_name): New helper function.
30724
30725         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30726         new function.
30727
30728         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30729
30730 2003-11-15  Martin Baulig  <martin@ximian.com>
30731
30732         * class.c (mono_class_is_open_constructed_type): New public
30733         function; checks whether a type is an open constructed type,
30734         ie. whether it still contains type parameters.
30735         (mono_class_inflate_generic_type): If we're a type parameter and
30736         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30737         type.
30738
30739         * class.h (MonoGenericInst): Added `guint32 is_open'.
30740
30741         * loader.c (method_from_methodspec): Check whether we're an open
30742         or closed constructed type and set `ginst->is_open'.
30743
30744         * reflection.c (mono_reflection_bind_generic_parameters): Check
30745         whether we're an open or closed constructed type and set
30746         `ginst->is_open'.
30747         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30748         from open constructed types.
30749
30750 2003-11-15  Martin Baulig  <martin@ximian.com>
30751
30752         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30753         a generic instance (instead of a generic type declaration) with
30754         unbound generic parameters, bind them to our actual types.
30755
30756 2003-11-14  Martin Baulig  <martin@ximian.com>
30757
30758         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30759
30760         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30761         an interface type, populate `res->interfaces' with instantiated
30762         versions of all the interfaces we inherit.
30763
30764 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30765
30766         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30767         when MONO_PATH is set but doesn't contain the install dir.
30768
30769 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30770
30771         * icall.c:
30772         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30773         it's also implemented in base classes. Fixes bug #50927.
30774
30775 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30776
30777         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30778         if this method is called from a finalizer. Fixes #50913.
30779
30780 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30781
30782         * threads.c: Implement VolatileRead/VolatileWrite
30783
30784         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30785
30786 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30787
30788         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30789         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30790         2.95.3.
30791
30792         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30793         from Peter Ross (pro@missioncriticalit.com).
30794         
30795 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30796
30797         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30798
30799 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30800
30801         * assembly.c (mono_assembly_load_references): Disable check because it
30802         triggers on older corlibs which lots of people have.
30803
30804 2003-11-12  Jackson Harper  <jackson@ximian.com>
30805
30806         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30807         load corlib.dll if mscorlib.dll is not found.
30808         * assembly.h: Remove corlib name define.
30809         * class.c:
30810         * domain.c:
30811         * image.c: Change corlib name to mscorlib.
30812         
30813 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30814
30815         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30816
30817 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30818
30819         * appdomain.h: Added loader_optimization here to sync with the C#
30820         code, and add disallow_binding_redirects field.
30821
30822 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30823
30824         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30825
30826         * reflection.c (mono_image_build_metadata): Fix crash on modules
30827         with no types.
30828
30829         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30830
30831         * icall.c (ves_icall_get_method_info): Return callingConvention as
30832         well.
30833
30834         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30835         namespaces from the EXPORTEDTYPE table as well.
30836
30837         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30838         from all modules inside the assembly.
30839         
30840 2003-11-11  Martin Baulig  <martin@ximian.com>
30841
30842         * reflection.c (mono_reflection_bind_generic_parameters): Make
30843         this work for interfaces.
30844
30845 2003-11-11  Martin Baulig  <martin@ximian.com>
30846
30847         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30848
30849 2003-11-11  Martin Baulig  <martin@ximian.com>
30850
30851         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30852         "MonoInflatedMethod" and "MonoInflatedCtor".
30853
30854 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30855
30856         * reflection.c (resolution_scope_from_image): Use the assembly table
30857         from the manifest module, since other modules don't have it.
30858
30859         * debug-helpers.c (mono_type_full_name): New helper function.
30860
30861         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30862
30863         * image.c (mono_image_load_file_for_image): New public function which
30864         is a replacement for the load_file_for_image in class.c.
30865
30866         * assembly.c (mono_assembly_load_module): A wrapper for the function
30867         above which does assembly association and reference loading too.
30868
30869         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30870
30871 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30872
30873         * appdomain.c: not all of the attributes for the full assembly name
30874         are required and the order doesn't matter. Fixes bug #50787.
30875
30876 2003-11-10  Dick Porter  <dick@ximian.com>
30877
30878         * locales.c: Use platform-endian UTF16
30879
30880 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30881
30882         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30883         
30884 2003-11-10  Martin Baulig  <martin@ximian.com>
30885
30886         * metadata.c
30887         (mono_metadata_load_generic_params): Make this actually work.
30888
30889         * reflection.c (mono_reflection_bind_generic_parameters): If our
30890         parent is a generic instance, pass all the `types' to it, no
30891         matter whether it has the same number of type parameters or not.
30892
30893 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30894
30895         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30896
30897         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30898         assignment code to this function so it gets called recursively for all
30899         modules.
30900
30901         * image.c (load_modules): Remove the assembly assignment since it is
30902         now done by mono_assembly_load_references.
30903         
30904         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30905         Add 'module' argument.
30906         (mono_module_get_types): New helper function.
30907         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30908
30909 2003-11-08  Martin Baulig  <martin@ximian.com>
30910
30911         * class.c (mono_class_inflate_generic_method): Interface method
30912         don't have a header.
30913
30914         * reflection.c (mono_image_get_methodspec_token): Take an
30915         additional `MonoGenericInst *' argument instead of reading it from
30916         the header; this is necessary to support interfaces.
30917         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30918         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30919         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30920         argument.
30921
30922         * reflection.h (MonoReflectionInflatedMethod): Added
30923         `MonoGenericInst *ginst'.
30924
30925 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30926
30927         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30928
30929 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30930
30931         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30932
30933 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30934
30935         * reflection.c 
30936         (reflection_methodbuilder_from_method_builder):
30937         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30938         initialize a ReflectionMethodBuilder structure.
30939         (mono_image_get_methodbuilder_token):
30940         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30941         tokens which point to types in another module inside the same assembly.
30942
30943         * reflection.c: Use the new helper functions.
30944         
30945         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30946
30947         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30948         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30949
30950         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30951         neccesary.
30952
30953         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30954         current module. Emit the manifest only for the main module.
30955
30956         * reflection.c (mono_image_create_token): Add assertion when a 
30957         memberref needs to be created.
30958
30959         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30960
30961         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30962         larger buffer for the custom attribute blob. Fixes #50637.
30963         
30964 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30965
30966         * threadpool.c: notify listener on async processing handles after
30967         invoking the async callback. Thanks to Zoltan.
30968
30969 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30970
30971         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30972         avoid code duplication.
30973
30974         * reflection.h (MonoDynamicImage): New type which is currently unused,
30975         but will be used through the ref.emit code in place of 
30976         MonoDynamicAssembly.
30977
30978         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30979         object layout.
30980
30981         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30982         a MonoDynamicImage instead of just a MonoImage.
30983         
30984         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30985         icalls to ModuleBuilder but keep their semantics, so they will work
30986         with moduleb->assemblyb. This will change later.
30987         
30988 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30989
30990         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30991         object layout.
30992
30993         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30994         main module, since it is now done by the managed code.
30995
30996 2003-11-03  Martin Baulig  <martin@ximian.com>
30997
30998         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30999         `ginst->klass' here.
31000         (method_encode_methodspec): Don't use the `ginst->generic_method's
31001         klass if it's a generic instance, use `ginst->klass' in this case.
31002
31003 2003-11-03  Martin Baulig  <martin@ximian.com>
31004
31005         * reflection.c (mono_image_get_generic_method_param_info):
31006         Removed, use mono_image_get_generic_param_info() instead.
31007         (mono_image_get_type_info): Write the GenericParam table before
31008         the Method table.  This is neccessary because in the GenericParam
31009         table, type parameters of the class (ie. '!0' etc.) must come
31010         before the ones from its generic methods (ie. '!!0' etc).
31011
31012 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
31013
31014         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
31015
31016 2003-11-02  Martin Baulig  <martin@ximian.com>
31017
31018         * reflection.c (create_generic_typespec): Take a
31019         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
31020         the generic parameters from it.
31021
31022 2003-11-02  Martin Baulig  <martin@ximian.com>
31023
31024         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
31025         instead of a `MonoClassField *' since we just need the type.
31026         (create_generic_typespec): New static function.  Creates a
31027         TypeSpec token for a generic type declaration.
31028         (mono_image_get_generic_field_token): New static function.
31029         (mono_image_create_token): If we're a FieldBuilder in a generic
31030         type declaration, call mono_image_get_generic_field_token() to get
31031         the token.
31032
31033 2003-11-02  Martin Baulig  <martin@ximian.com>
31034
31035         * reflection.h
31036         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
31037         `MonoReflectionGenericInst *declaring_type' and
31038         `MonoReflectionGenericInst *reflected_type' fields.
31039
31040         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
31041         `MonoReflectionGenericInst *declaring_type' and a
31042         `MonoReflectionGenericInst *reflected_type' argument instead of a
31043         single `MonoReflectionGenericInst *type' one.  Set
31044         `res->declaring_type' and `res->reflected_type' from them.
31045         (mono_reflection_inflate_field): Likewise.      
31046
31047 2003-11-02  Martin Baulig  <martin@ximian.com>
31048
31049         * class.c (mono_class_setup_vtable): Don't store generic methods
31050         in the vtable.  
31051
31052 2003-11-02  Martin Baulig  <martin@ximian.com>
31053
31054         * reflection.h (MonoReflectionGenericInst): Added
31055         `MonoReflectionType *declaring_type'.
31056
31057         * reflection.c (mono_reflection_bind_generic_parameters): Use
31058         `if (tb->parent)' instead of `klass->parent'.
31059
31060 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
31061
31062         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
31063         with an empty ASSEMBLY table.
31064
31065         * reflection.c (mono_image_build_metadata): Avoid using the same loop
31066         variable in the inner and outer loops.
31067
31068 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
31069
31070         * metadata.h (mono_metadata_make_token): Put parentheses around macro
31071         argument.
31072
31073         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
31074         
31075         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
31076         icalls. Instead, do everything in managed code. This is needed since
31077         it is hard to restore the original domain etc. in unmanaged code in the
31078         presence of undeniable exceptions.
31079
31080         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
31081         New icalls to push and pop appdomain refs.
31082
31083 2003-10-31  Martin Baulig  <martin@ximian.com>
31084
31085         * class.c (inflate_generic_type): Renamed to
31086         mono_class_inflate_generic_type() and made it public.
31087
31088         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
31089         New interncall.
31090
31091         * loader.c (mono_field_from_memberref): Also set the retklass for
31092         typespecs.
31093
31094         * fielder.c (mono_image_get_inflated_field_token): New static
31095         method; creates a metadata token for an inflated field.
31096         (mono_image_create_token, fixup_method): Added support for
31097         "MonoInflatedField".
31098         (fieldbuilder_to_mono_class_field): New static function.
31099         (mono_reflection_inflate_field): New public function.
31100
31101         * reflection.h
31102         (MonoReflectionGenericInst): Added `MonoArray *fields'.
31103         (MonoReflectionInflatedField): New typedef.     
31104
31105 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
31106
31107         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
31108         for Solaris and other platforms without s6_addr16
31109
31110 2003-10-30  Martin Baulig  <martin@ximian.com>
31111
31112         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
31113         argument instead of two.
31114         (mono_class_inflate_generic_signature): Likewise.
31115         (inflate_generic_header): Likewise.
31116         (mono_class_inflate_generic_method): Likewise.  In addition, if
31117         `ginst->klass' is set, it becomes the new `method->klass'.
31118
31119         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
31120         field.
31121
31122         * reflection.c (encode_generic_method_sig): Write a 0xa as the
31123         first byte. [FIXME]
31124         (method_encode_methodspec): If we have generic parameters, create
31125         a MethodSpec instead of a MethodRef.
31126         (fixup_method): Added support for "MonoInflatedMethod" and
31127         "MonoInflatedCtor".
31128         (mono_image_create_token): Added support for "MonoInflatedMethod"
31129         and "MonoInflatedCtor".
31130         (inflated_method_get_object): New static function; returns a
31131         managed "System.Reflection.MonoInflatedMethod" object.
31132         (mono_reflection_bind_generic_method_parameters): Return a
31133         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
31134         (mono_reflection_inflate_method_or_ctor): Likewise.
31135         (mono_image_get_generic_method_param_info): Initialize unused
31136         fields to zero.
31137         (mono_image_get_generic_param_info): Likewise.
31138
31139         * reflection.h (MonoReflectionInflatedMethod): New public
31140         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
31141         "S.R.MonoInflatedCtor" classes.
31142
31143         * loader.c (method_from_memberref): If we're a TypeSpec and it
31144         resolves to a generic instance, inflate the method.
31145
31146 2003-10-28  Dick Porter  <dick@ximian.com>
31147
31148         * object.c (mono_runtime_run_main): Convert command-line arguments
31149         into utf8, falling back to the user's locale encoding to do so.
31150
31151 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
31152
31153         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
31154         at this time.
31155
31156         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
31157
31158         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
31159         up icalls at method definition time. Partially fixes #33569.
31160
31161 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
31162
31163         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
31164         marshalling of arrays. Fixes #50116.
31165
31166         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
31167
31168         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
31169         points to a vtable in the dying appdomain.
31170
31171         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
31172         listeners into unmanaged code inside the lock.
31173
31174         * object.c (mono_class_vtable): Turn off typed allocation in non-root
31175         domains and add some comments.
31176
31177 2003-10-25  Martin Baulig  <martin@ximian.com>
31178
31179         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
31180
31181         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
31182
31183         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
31184         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
31185         currently parsing.  Create the generic class and store it in
31186         `generic_inst->klass' before parsing the type arguments.  This is
31187         required to support "recursive" definitions; see mcs/tests/gen-23.cs
31188         for an example.
31189         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
31190         to support recursive typespec entries.
31191
31192         * class.c (mono_class_setup_parent): If our parent is a generic
31193         instance, we may get called before it has its name set.
31194         (mono_class_from_generic): Splitted into
31195         mono_class_create_from_generic() and mono_class_initialize_generic().
31196
31197 2003-10-25  Martin Baulig  <martin@ximian.com>
31198
31199         * icall.c (ves_icall_Type_BindGenericParameters): Return a
31200         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
31201         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
31202         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
31203
31204         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
31205         (create_typespec): Likewise.
31206         (mono_reflection_bind_generic_parameters): Return a
31207         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
31208         (mono_reflection_inflate_method_or_ctor): New public function.
31209
31210         * reflection.h (MonoReflectionGenericInst): New typedef.        
31211
31212 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
31213
31214         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
31215         inside the domain lock. Fixes #49993.
31216         
31217         * object.c (mono_class_vtable): When typed allocation is used, 
31218         allocate vtables in the GC heap instead of in the mempool, since the
31219         vtables contain GC descriptors which are used by the collector even
31220         after the domain owning the mempool is unloaded.
31221
31222         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
31223
31224         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
31225         reflect what it does. Also invalidate mempools instead of freeing
31226         them if a define is set.
31227
31228         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
31229         of the appdomain.
31230         
31231         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
31232         hold the finalizable objects in this domain.
31233
31234         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
31235         appdomain.
31236
31237         * appdomain.c (mono_domain_set): New function to set the current
31238         appdomain, but only if it is not being unloaded.
31239
31240         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
31241         appdomain which is being unloaded.
31242         
31243         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
31244         unloading of the root appdomain.
31245
31246         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
31247         icall to execute a method in another appdomain. Intended as a 
31248         replacement for InternalSetDomain, which can confuse the code 
31249         generation in the JIT.
31250
31251         * appdomain.c (mono_domain_is_unloading): New function to determine
31252         whenever an appdomain is unloading.
31253
31254         * appdomain.c (mono_domain_unload): New function to correctly unload
31255         an appdomain.
31256
31257         * assembly.c (mono_assembly_load_references): Check that an assembly
31258         does not references itself.
31259
31260         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
31261         domain manually, it asks the finalizer thread to do it, then waits for
31262         the result. Also added a timeout.
31263
31264         * icall.c: Register the new icalls.
31265
31266         * threads.h threads.c: Export the mono_gc_stop_world and 
31267         mono_gc_start_world functions.
31268         
31269         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
31270         function to fill out the mempool with 0x2a.
31271
31272 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
31273
31274         * reflection.h (MonoReflectionMethodAux): New structure to store
31275         information which is rarely used, thus is not in the MonoMethod
31276         structure.
31277
31278         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
31279         store the aux info.
31280
31281         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
31282         and marshalling info into the aux structure.
31283
31284         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
31285         from the aux structure.
31286
31287         * loader.c (mono_method_get_param_names): Retrieve the param names from
31288         the aux structure.
31289         
31290 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
31291
31292         * exception.h exception.c: Add AppDomainUnloadedException && fix 
31293         warning.
31294
31295 2003-10-21  Dick Porter  <dick@ximian.com>
31296
31297         * socket-io.c
31298         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
31299         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
31300
31301 2003-10-21  Martin Baulig  <martin@ximian.com>
31302
31303         * reflection.c (mono_reflection_bind_generic_parameters):
31304         `klass->parent' is NULL for interfaces.
31305
31306 2003-10-21  Martin Baulig  <martin@ximian.com>
31307
31308         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31309
31310 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
31311
31312         * exception.c (mono_exception_from_name_msg): New helper function for
31313         creating exceptions and initializing their message field.
31314
31315         * exception.c: Simplify functions using the new helper.
31316
31317         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
31318         New function.
31319
31320         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
31321         mono_raise_exception, since otherwise gcc doesn't generate the function
31322         epilog for raise_exception, confusing the stack unwinding in the JIT.
31323         Fixes #45043.
31324
31325         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
31326         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
31327         Fixes #49499.
31328
31329 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31330
31331         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
31332         utf8.
31333
31334 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
31335
31336         * icall.c: Removed GetUninitializedObject method because
31337           AllocateUninitializedClassInstance does the same.
31338
31339 2003-10-18  Martin Baulig  <martin@ximian.com>
31340
31341         * class.c (inflate_generic_signature): Renamed to
31342         mono_class_inflate_generic_signature() and made it public.
31343         (my_mono_class_from_generic_parameter): New static function; if we
31344         don't already have the generic parameter's MonoClass, create a
31345         very simple one which is just used internally in the runtime and
31346         not passed back to managed code.
31347
31348         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
31349
31350         * metadata.h (MonoMethodSignature): Moved the
31351         `MonoGenericParam *gen_params' to the MonoMethodHeader.
31352         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
31353
31354         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
31355         ves_icall_MonoMethod_GetGenericArguments(); this is now an
31356         interncall on the MonoMethod class, not on MethodInfo.
31357         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
31358         calling mono_reflection_bind_generic_method_parameters() directly.
31359
31360         * loader.c (mono_method_get_signature): If this is a MethodSpec;
31361         return the already computed `method->signature'.
31362         (method_from_methodspec): New static function to load a method
31363         from a MethodSpec entry.
31364         (mono_get_method_from_token): Call the new method_from_methodspec()
31365         for MethodSpec tokens.  
31366         (mono_get_method_from_token): If we're a generic method, load the
31367         type parameters.
31368
31369         * reflection.c (mono_image_get_memberref_token): Allow
31370         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
31371         table.
31372         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
31373         (mono_image_create_token): First check whether it's a generic
31374         method (so we'd need to create a MethodSpec), then do the other
31375         two alternatives.
31376         (mono_reflection_bind_generic_method_parameters): Return a
31377         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
31378         called directly from the interncall.
31379
31380 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
31381
31382         * reflection.c (load_public_key): Move loading of the public key
31383         into managed code.
31384
31385         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
31386
31387         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
31388         fields.
31389
31390         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
31391         culture, hash_alg and public_key. Fixes #49555.
31392
31393 2003-10-17  Martin Baulig  <martin@ximian.com>
31394
31395         * class.h (MonoGenericInst): Moved this declaration here and added
31396         `MonoMethod *generic_method'.
31397
31398         * icall.c
31399         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
31400         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
31401
31402         * metadata.c (mono_metadata_type_equal): Two types of
31403         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
31404         index; ie. don't compare the address of the `MonoGenericParam'
31405         structure.
31406         (mono_metadata_load_generic_params): Removed the `MonoMethod
31407         *method' argument.
31408
31409         * metadata.h (MonoGenericInst): Moved declaration to class.h.
31410         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
31411
31412         * reflection.c (method_encode_signature): Encode the number of
31413         generic parameters.
31414         (encode_generic_method_sig): New static function.
31415         (method_encode_methodspec): New static function; creates an entry
31416         in the MethodSpec table for a generic method.
31417         (mono_image_get_methodspec_token): New static function.
31418         (mono_image_create_token): Call mono_image_get_methodspec_token()
31419         for generic methods.
31420         (mono_reflection_bind_generic_method_parameters): New public
31421         function.  Instantiates a generic method.
31422
31423 2003-10-16  Martin Baulig  <martin@ximian.com>
31424
31425         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
31426         *gen_params' here from MonoMethodHeader.
31427
31428         * metadata.c (mono_metadata_parse_method_signature): If we have
31429         generic parameters, initialize `method->gen_params' and then set
31430         the correct `type->data.generic_param' in all the parameters.
31431
31432 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
31433
31434         * threads.c (mono_threads_get_default_stacksize): New function to 
31435         return the default stacksize.
31436
31437         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
31438         termination of the finalizer thread, since the previous method had
31439         race conditions. Fixes #49628.
31440
31441         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
31442         as for the other managed threads.
31443
31444 2003-10-16  Martin Baulig  <martin@ximian.com>
31445
31446         * class.c (inflate_generic_signature): Copy `generic_param_count'
31447         and `gen_params'.
31448
31449         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
31450         New interncall.
31451
31452         * metadata.c (mono_metadata_parse_method_signature): Actually set
31453         the `method->generic_param_count' here.
31454         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
31455
31456 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
31457
31458         * object.h: Add a new field to TypedRef to simplify the implementation
31459         of the REFANY opcodes in the JIT.
31460
31461         * icall.c: Make use of the new field.
31462
31463         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
31464         dynamically.
31465
31466 2003-10-15  Martin Baulig  <martin@ximian.com>
31467
31468         * class.c (mono_class_from_gen_param): Renamed to
31469         mono_class_from_generic_parameter() and moved most of the
31470         functionality from mono_reflection_define_generic_parameter()
31471         here; ie. we create a "real" class here.
31472         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
31473         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
31474         previously been called.
31475
31476         * class.h (MonoGenericParam): Moved the declaration of this struct
31477         here from metadata.h and added `MonoMethod *method'.
31478
31479         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
31480         interncall.
31481
31482         * loader.c (mono_get_method_from_token): If we have any generic
31483         parameters, call mono_metadata_load_generic_params() to read them
31484         from the MONO_TABLE_GENERICPAR.
31485
31486         * metadata.c (mono_metadata_load_generic_params): Added
31487         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
31488
31489         * metadata.h (MonoMethodSignature): Replaced
31490         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
31491         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
31492
31493         * reflection.c (mono_reflection_define_generic_parameter): Moved
31494         most of the functionality into the new
31495         mono_class_from_generic_parameter(); set the `method' field if
31496         we're a method parameter.       
31497
31498 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
31499
31500         * marshal.c (emit_struct_conv): if native size is 0
31501         emit no code.
31502
31503 2003-10-14  Martin Baulig  <martin@ximian.com>
31504
31505         * icall.c: The generics API has changed in the spec since it was
31506         added to System.Type; these modifications make it match the spec
31507         again.
31508         (ves_icall_Type_GetGenericParameters): Renamed to
31509         `ves_icall_Type_GetGenericArguments'.
31510         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
31511         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
31512         `ves_icall_MonoType_get_HasGenericArguments'.
31513         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
31514         `ves_icall_MonoType_get_IsGenericParameter'.
31515         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
31516         this is no interncall anymore.
31517         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
31518         `ves_icall_TypeBuilder_get_IsGenericParameter'.
31519
31520 2003-10-14  Martin Baulig  <martin@ximian.com>
31521
31522         * reflection.c (mono_reflection_bind_generic_parameters): Also
31523         inflate generic methods if we're reading the class from IL.
31524
31525 2003-10-13  Martin Baulig  <martin@ximian.com>
31526
31527         * reflection.c (mono_reflection_define_generic_parameter): This
31528         method isn't called directly from the icall anymore; take a
31529         `MonoReflectionAssemblyBuilder *' so we can use this for type and
31530         method generic parameters.
31531         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
31532         (method_builder_encode_signature): Encode generic parameters.
31533         (mono_image_get_method_info): Write generic params to the
31534         MONO_TABLE_GENERICPARAM table.
31535
31536         * reflection.h (MonoReflectionMethodBuilder): Added
31537         `MonoArray *generic_params'.
31538
31539         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
31540
31541         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
31542         wrapper for mono_reflection_define_generic_parameter().
31543         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
31544
31545 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
31546
31547         * marshal.h: Add missing function to fix build.
31548
31549         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
31550         the SetLastError pinvoke attribute.
31551
31552         * marshal.c (mono_marshal_set_last_error): New helper function called
31553         by the generated code.
31554         
31555         * marshal.c (mono_mb_emit_branch): New helper function.
31556
31557         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
31558
31559         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31560         classes as parameters and return values of delegates. Fixes #29256. 
31561
31562 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
31563
31564         * locales.c: use gint32 in non HAVE_ICU case
31565
31566 2003-10-11  Martin Baulig  <martin@ximian.com>
31567
31568         * mono-debug.c (mono_debug_add_method): Added a workaround for
31569         bug #48591.
31570
31571 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
31572
31573         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
31574         delegates passed to native code must use the STDCALL calling 
31575         convention. Fixes #35987.
31576
31577 2003-10-10  Martin Baulig  <martin@ximian.com>
31578
31579         * class.c (inflate_generic_type): If we're inflating for a generic
31580         type instance (and not for a generic method), return
31581         MONO_TYPE_MVAR unchanged.
31582
31583 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31584
31585         * string-icalls.c: Join ignores null strings in the source array.
31586         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
31587         * threads.c: GetAvailableTheads is slightly more accurate.
31588
31589 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31590
31591         * threads.h threads.c : add mono_threads_set_default_stacksize
31592         and pass default to CreateThread calls.
31593
31594 2003-10-09  Dick Porter  <dick@ximian.com>
31595
31596         * icall.c:
31597         * locales.h:
31598         * locales.c: Internal calls for constructing CultureInfo and
31599         related objects from libicu (if its available.)
31600
31601 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31602
31603         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31604
31605 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31606
31607         * threadpool.c: added an argument to async_invoke_thread that is the
31608         item to process, pass the MonoAsyncResult to the thread start function
31609         when creating a new thread. This way we don't need to acquire any lock
31610         when we're creating a new thread. Readded a semaphore for faster
31611         response times (instead of that Sleep i added).
31612
31613 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31614
31615         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31616         get daylight change dates better on Windows, fix handling
31617         of platforms without tm_gmtoff.
31618
31619 2003-10-06  Martin Baulig  <martin@ximian.com>
31620
31621         * class.c (inflate_generic_method): Renamed to
31622         mono_class_inflate_generic_method() and made public.
31623         (mono_class_init): Don't inflate the generic methods here.
31624         (mono_class_from_generic): Added `gboolean inflate_methods'
31625         argument.  Inflate the methods here.
31626
31627         * loader.c (mono_method_get_param_names): Ignore instances of
31628         generic types for the moment.
31629
31630         * reflection.c (fixup_method): Added support for inflated methods.
31631         (mono_image_create_token): Use mono_image_get_methodref_token()
31632         for inflated methods.
31633         (mono_custom_attrs_from_param): Ignore instances of generic types
31634         for the moment.
31635         (mono_reflection_bind_generic_parameters): New public function.
31636         Moved all the functionality from
31637         ves_icall_Type_BindGenericParameters() here and added support for
31638         dynamic types.
31639         (mono_reflection_define_generic_parameter): Initialize
31640         `klass->methods' here.
31641
31642         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31643         functionality into mono_reflection_define_generic_parameter().
31644         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31645         TypeBuilder, return that TypeBuilder.
31646
31647 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31648
31649         * appdomain.c: removed mono_delegate_semaphore.
31650
31651         * threadpool.c:
31652         (mono_thread_pool_add): moved hash table creation inside and the thread 
31653         creation outside of the critical region.
31654         (mono_thread_pool_finish): removed obsolete code.
31655         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31656         continue or exit the thread depending on the queue.
31657
31658 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31659
31660         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31661         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31662         handle more bool marshalling options
31663
31664 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31665
31666         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31667         arrays of structs. Also add a more descriptive error message when
31668         a structure member is marshalled as LPArray.
31669
31670 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31671
31672         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31673         marshalling arrays of complex types. Fixes #29098. Also remove an
31674         usused and incomplete function.
31675
31676 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31677
31678         * gc.c: report heap_size - free_bytes as total memory allocated
31679         (bug#49362).
31680
31681 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31682
31683         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31684         fix timezone handling problems on Windows.
31685         
31686         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31687         asserts when the year is outside the range handled by ms the functions.
31688
31689         * class.c (setup_interface_offsets): If the class is an interface,
31690         fill out its interface_offsets slot.
31691
31692 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31693
31694         * threadpool.c: mark threadpool threads as background.
31695
31696 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31697
31698         * decimal.c - define DECINLINE to nothing if not using GCC
31699
31700 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31701
31702         * assembly.c: More refcount fixes.
31703
31704 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31705
31706         * string-icalls.c: if we're not trimming, return the same string.
31707         When not splitting, don't create a new string.
31708
31709 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31710
31711         * image.c:
31712         (mono_image_open): increment the ref_count inside the critical section.
31713
31714 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31715
31716         * image.c (mono_image_open): Fix reference counting bug.
31717
31718 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31719
31720         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31721         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31722         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31723         mono_lookup_pinvoke_call throws.        
31724
31725 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31726
31727         * reflection.c (mono_reflection_parse_type): Fix #49114.
31728
31729         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31730         temporary workaround for cygwin header problem.
31731
31732         * object.c (mono_object_isinst): Synchronize this with the code
31733         generated by the JIT for casts.
31734
31735 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31736
31737         * reflection.c (encode_type): Fix #38332.
31738
31739 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31740
31741         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31742         the original method from the wrapper method.
31743
31744 2003-09-25  Martin Baulig  <martin@ximian.com>
31745
31746         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31747         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31748         (ves_icall_Type_get_IsGenericInstance): New interncall.
31749
31750 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31751
31752         * object.c: fix cast warning in big endian code.
31753
31754 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31755
31756         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31757         
31758 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31759
31760         * assembly.c: don't call check_env from mono_assembly_load. It's
31761         already done once in mono_assemblies_init and may cause headaches when
31762         multiple threads are loading assemblies.
31763
31764 2003-09-19  Martin Baulig  <martin@ximian.com>
31765
31766         * reflection.c (mono_reflection_define_generic_parameter): Don't
31767         allocate `klass->methods', set `klass->flags' to
31768         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31769
31770 2003-09-18  Martin Baulig  <martin@ximian.com>
31771
31772         * class.c (mono_class_init): Don't create `class->methods' if it's
31773         already initialized.
31774
31775         * metadata.c (mono_metadata_load_generic_params): Make this
31776         actually work.
31777
31778         * reflection.c (mono_reflection_define_generic_parameter): Set
31779         parent class and interfaces from the constraints.
31780
31781         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31782         to keep this struct in sync with the declaration in TypeBuilder.cs.
31783
31784 2003-09-17  Martin Baulig  <martin@ximian.com>
31785
31786         * metadata.h (MonoType): Replaced the data's `int type_param'
31787         field with `MonoGenericParam *generic_param'.
31788         (MonoGenericParam): Added `MonoClass *klass'.
31789
31790         * class.c (mono_class_from_gen_param): Removed the
31791         `MonoImage *image' and `int type_num' arguments.
31792
31793         * metadata.c (mono_metadata_parse_generic_param): New static
31794         method; creates a MonoGenericParam which just contains the index.
31795         (do_mono_metadata_parse_type): Call
31796         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31797         MONO_TYPE_MVAR.
31798
31799         * reflection.c (mono_image_typedef_or_ref): Generic type
31800         parameters may be in the same assembly, but never use a typedef
31801         for them.
31802         (mono_reflection_define_generic_parameter): We're now creating a
31803         "real" class for the type parameter; it's now safe to call
31804         mono_class_from_mono_type() on the class'es type, it'll do the
31805         right thing.
31806
31807 2003-09-16  Martin Baulig  <martin@ximian.com>
31808
31809         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31810         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31811         the `symfile' data structure must be fully initialized before it
31812         gets added to the table.
31813
31814 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31815
31816         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31817
31818         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31819         class init trampolines.
31820
31821 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31822
31823         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31824         to the built-in profiler to turn off time and allocation profiling
31825         respectively.
31826
31827 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31828
31829         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31830         g_direct_equal.
31831
31832         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31833         in human readable form.
31834
31835 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31836
31837         * reflection.c icall.c: Fixed warnings.
31838
31839         * image.c (load_class_names): Use a temporary hash table to hold the
31840         namespaces in order to avoid doing many string comparisons.
31841
31842         * image.h: Fix typo.
31843
31844         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31845         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31846         since the NULL case is short-circuited inside g_hash_table_lookup, 
31847         leading to better performance.  
31848
31849         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31850         obtain the first custom attribute for a given index. Depends on the
31851         CustomAttribute table being sorted by the parent field.
31852
31853         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31854         for better performance.
31855
31856 2003-09-07  Martin Baulig  <martin@ximian.com>
31857
31858         * class.c (mono_class_init): If we're a generic instance, inflate
31859         all our methods instead of loading them from the image.
31860         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31861
31862 2003-09-07  Martin Baulig  <martin@ximian.com>
31863
31864         * mono-debug-debugger.c: Added support for constructors.
31865
31866 2003-09-06  Martin Baulig  <martin@ximian.com>
31867
31868         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31869         New interncall.
31870
31871         * reflection.c (mono_reflection_setup_generic_class): Call
31872         ensure_runtime_vtable() to create the vtable.
31873
31874 2003-09-05  Martin Baulig  <martin@ximian.com>
31875
31876         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31877         MONO_TYPE_MVAR.
31878
31879 2003-09-04  Martin Baulig  <martin@ximian.com>
31880
31881         * reflection.c (mono_reflection_define_generic_parameter): Generic
31882         parameters start with zero.
31883
31884 2003-09-04  Martin Baulig  <martin@ximian.com>
31885
31886         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31887
31888         * reflection.h (MonoReflectionGenericParam): New typedef.
31889         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31890         the generic parameters from the managed TypeBuilder.
31891
31892         * reflection.c (mono_reflection_define_generic_parameter): New function.
31893         (mono_reflection_create_runtime_class): Encode generic parameters.
31894         (mono_reflection_setup_generic_class): New function; this is
31895         called after adding adding all generic params to the TypeBuilder.
31896         (encode_type): Added MONO_TYPE_VAR.
31897
31898 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31899
31900         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31901         here from the JIT.
31902
31903         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31904         load hook.
31905
31906 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31907
31908         * reflection.h reflection.c class.h class.c: Delete duplicate 
31909         definition of mono_type_get_name () from reflection.c and export the
31910         one in class.c.
31911
31912         * class.c: Class loading fixes from Bernie Solomon 
31913         (bernard@ugsolutions.com).
31914
31915         * reflection.c: Endianness fixes from Bernie Solomon 
31916         (bernard@ugsolutions.com).
31917         
31918 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31919
31920         * assembly.h assembly.c: Define a file format version for AOT
31921         libraries.
31922         
31923         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31924
31925         * appdomain.h (MonoJitInfo): New field to determine whenever the
31926         code is domain neutral.
31927         
31928 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31929
31930         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31931
31932 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31933
31934         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31935         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31936         Avoid caching the result since strings must be domain specific. Fixes
31937         #48050.
31938
31939 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31940
31941         * marshal.c (mono_marshal_init): Make this callable multiple times
31942         since it is hard to find a correct place to call it.
31943
31944         * object.c (mono_runtime_class_init): Execute static constructors in
31945         the correct appdomain.
31946
31947         * image.c (build_guid_table): Handle the case when multiple images have
31948         the same GUID.
31949
31950 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31951
31952         * icall.c: added a couple of icalls for System.Web.
31953
31954 2003-08-28  Martin Baulig  <martin@ximian.com>
31955
31956         * icall.c (ves_icall_Type_BindGenericParameters): Use
31957         `klass->generic_inst' instead of `&klass->byval_arg' in the
31958         mono_type_get_object() call.  The returned type must be
31959         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31960
31961 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31962
31963         * NOTES: New file.
31964
31965         * object.c (mono_class_proxy_vtable): Make it thread safe.
31966
31967         * pedump.c: Fix warning.
31968
31969         * object.c appdomain.h: Get rid of metadata_section. 
31970         It is no longer needed and it was causing deadlocks with domain->lock.
31971
31972         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31973
31974 2003-08-26  Martin Baulig  <martin@ximian.com>
31975
31976         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31977
31978 2003-08-26  Martin Baulig  <martin@ximian.com>
31979
31980         * pedump.c (main): Call mono_metadata_init(),
31981         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31982         and mono_loader_init().
31983
31984 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31985
31986         * loader.h: Add missing include to fix build.
31987
31988         * image.h: mono_image_load_references is no more.
31989
31990         * assembly.c: Reworked assembly loading to make it really thread safe.
31991         After these changes, the assembly returned by mono_assembly_open is
31992         fully initialized, i.e. all its references assemblies are loaded.
31993
31994         * assembly.c (mono_image_load_references): Renamed to 
31995         mono_assembly_load_references, and made private, since clients no
31996         longer need to call it.
31997
31998         * class.c: Removed calls to mono_assembly_load_references, since it was
31999         a source of deadlocks.
32000
32001         * loader.h loader.c class.h class.c: Protect data structures using a 
32002         new lock, the loader lock.
32003
32004         * class.c (mono_class_setup_vtable): Create temporary hash tables and
32005         GPtrArrays only when needed.
32006
32007         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
32008         into empty structures by mcs. Fixes pinvoke7.cs.
32009         
32010         * domain.c (mono_init): Call a new initialization function.
32011
32012         * appdomain.c (mono_runtime_init): Call the new initializer function
32013         of the marshal module.
32014
32015         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
32016         inserted into empty structures by mcs. Fixes pinvoke7.cs.
32017
32018         * marshal.h marshal.c: Added locks around the wrapper caches to make
32019         this module thread safe.
32020
32021         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
32022         this argument. Fixes pinvoke1.exe.
32023
32024 2003-08-25  Lluis Sanchez <lluis@ximian.com>
32025
32026         * object.h: Added call_type field to MonoMethodMessage and the corresponding
32027         enumeration of values. Removed fields to store remote call output values in
32028         MonoAsyncResult. Not needed any more.
32029         * object.c: Initialize call_type and async_result fields in mono_message_init.
32030         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
32031         dispatching the message.
32032         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
32033         async call to finish. To do it use a message with EndInvoke call type.
32034
32035 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
32036
32037         * loader.h loader.c (mono_method_hash_marhal_info): New function which
32038         determines whenever a method has marshalling info.
32039
32040 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32041
32042         * assembly.c: fix the build on windows.
32043
32044 2003-08-22 Lluis Sanchez <lluis@ximian.com>
32045
32046         * object.cs: Fixed bug #47785.
32047
32048 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
32049
32050         * string-icalls.c (StringReplace): If their are no occurances of
32051         the old string found return a reference to the supplied
32052         string. This saves some memory and matches MS behavoir.
32053         
32054 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32055
32056         * socket-io.c: fixed compilation for systems that define AF_INET6
32057         and don't define SOL_IP/SOL_IPV6.
32058
32059 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
32060
32061         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
32062         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
32063
32064         * rawbuffer.c rawbuffer.h: Make this module thread safe.
32065
32066         * domain.c: Make this module thread safe.
32067
32068         * domain.c (mono_init): Call new initialization function.
32069
32070         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
32071         reference types too. Fixes #38812.
32072
32073         * image.c (mono_image_init): Fixed warnings.
32074
32075         * class.c (mono_class_from_typeref): Handle assembly load failure
32076         correctly.
32077
32078         * appdomain.c (add_assemblies_to_domain): Handle the case when
32079         the references of an assembly are not yet loaded.
32080
32081         * metadata.c image.c assembly.c: Moved initialization of global
32082         variables to a separate function called at startup since lazy 
32083         initialization of these variables is not thread safe.
32084         
32085         * image.c assembly.c: Made this module thread safe by adding locks in 
32086         the appropriate places.
32087
32088         * domain.c (mono_init): Call the new initialization functions of the
32089         three modules.
32090
32091 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
32092
32093         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
32094           make a direct call. It is proxy's work to make the call asynchronous.
32095           mono_delegate_end_invoke(): If the targe is a proxy, just collect
32096           the return values.
32097         * object.cs: mono_method_call_message_new(): read AsyncResult and
32098           state object from parameters list, if this info is requested.
32099         * object.h: Added fields to store remote call output values in
32100           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
32101
32102 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32103
32104         * object.h: add needed fields to MonoThread.
32105         * threads.c, threads.h: allow registering a function to cleanup data
32106         allocated per thread by the JIT.
32107
32108 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32109
32110         * loader.h: portability fix by Bernie Solomon
32111         * <bernard@ugsolutions.com>.
32112
32113 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
32114
32115         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
32116         return a MonoArray. This simplifies the code and also ensures that
32117         the cache allways contains an object reference as a value.
32118
32119         * icall.c (ves_icall_get_parameter_info): Simplified using the new
32120         function.
32121
32122 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32123
32124         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
32125         fixes a problem with byte ordering when getting the address family for
32126         a socket.
32127
32128 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
32129
32130         * .cvsignore: Added monosn.
32131
32132         * reflection.h reflection.c loader.c: Added support for parameter
32133         marshalling to dynamically created types. Fixes #47295.
32134
32135 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
32136
32137         * rand.c: remove useless warnings.
32138
32139 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
32140
32141         * class.c: implemented ldtoken for methods and fieldrefs.
32142
32143 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32144
32145         * threadpool.c: when mono_async_invoke was called, no one took care of
32146         monitoring the queue. So if the method invoked took some time and we
32147         got new async invoke requests after 500 ms (the thread created waited
32148         that long in WaitForSingleObject), the new async invoke was not called
32149         until the previous one finished.
32150
32151         This is fixed now. Thanks to Totte for helping with it.
32152
32153 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32154
32155         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
32156
32157 2003-08-11  Martin Baulig  <martin@ximian.com>
32158
32159         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
32160
32161 2003-08-06  Martin Baulig  <martin@ximian.com>
32162
32163         * mono-debug-debugger.c: Added support for static fields,
32164         properties and methods.
32165
32166 2003-08-06  Martin Baulig  <martin@ximian.com>
32167
32168         * mono-debug-debugger.c: Don't store the MonoString's vtable to
32169         make this work for applications with multiple application domains.
32170
32171 2003-08-04  Martin Baulig  <martin@ximian.com>
32172
32173         * mono-debug-debugger.c: Completely reworked the type support; the
32174         most important thing is that we're now just using one single
32175         `MonoType' instance per type.
32176
32177 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
32178
32179         * mono-endian.h, mono-endian.c, icall.c: Added icall
32180         ves_icall_System_Double_AssertEndianity to assert double word endianity
32181         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
32182
32183 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32184
32185         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
32186         support, icalls and fixes.
32187
32188 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
32189
32190         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
32191         classes that are a punctuation character in .NET is not the same a
32192         g_unichar_ispunct.
32193
32194 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32195
32196         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
32197
32198 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
32199
32200         * icall.c: Add new MemCopy internalcall.
32201         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
32202         Simplified code; It is not necessary to handle all the cases here,
32203         as the C# code takes care of it.  Only handle the case of the name
32204         resource embedded into the assembly.
32205
32206         Changed signature to return the data pointer and the size of the
32207         data. 
32208
32209 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
32210
32211         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
32212         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
32213
32214 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32215
32216         * socket-io.c: ignore EINTR error in select.
32217
32218 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32219
32220         * class.h, class.c: removed unused subclasses field in MonoClass.
32221
32222 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
32223
32224         * icall.c: improve fix of get_base_definition(). If the parent class
32225           doesn't have the mehod, look at the parent of the parent.
32226         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
32227           to check if a parameter is an in or out parameter
32228           (PARAM_ATTRIBUTE_IN is not set by default).
32229           mono_method_return_message_restore(): Use mono_class_value_size to
32230           get the size of a value type. mono_type_stack_size (parameterType)
32231           does not return the correct value if parameterType is byRef.
32232           mono_load_remote_field(), mono_load_remote_field_new(),
32233           mono_store_remote_field(), mono_store_remote_field_new():
32234           raise exception if the remote call returns an exception.
32235
32236 2003-07-28  Martin Baulig  <martin@ximian.com>
32237
32238         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
32239         method.  This is a wrapper around mono_runtime_invoke() which
32240         boxes the instance object if neccessary.
32241
32242 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32243
32244         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
32245         metadata.h, row-indexes.h, verify.c: first cut of generics support.
32246
32247 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32248
32249         * icall.c: disable mcs bug workaround.
32250
32251 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
32252
32253         * object.c (mono_runtime_class_init): Take the metadata_section
32254         mutex before obtaining the domain mutex.
32255
32256         * appdomain.h: Added definition of metadata_section mutex here. 
32257
32258         * object.c: define metadata_mutex here.
32259
32260 2003-07-24  Ravi Pratap  <ravi@ximian.com>
32261
32262         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
32263         fixed.
32264
32265 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
32266
32267         * reflection.c: Fix bug #46669
32268
32269 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32270
32271         * exception.c:
32272         * exception.h:
32273         * icall.c:
32274         * object.h: fill in the type name for TypeLoadException.
32275
32276 2003-07-23  Ravi Pratap  <ravi@ximian.com>
32277
32278         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
32279         relationship between TypeBuilders while compiling corlib) and bug
32280         45993 (Array types returned from the runtime while compiling
32281         corlib were from the loaded corlib).
32282
32283 2003-07-22  Martin Baulig  <martin@ximian.com>
32284
32285         * mono-debug-debugger.c: Reworked the type support a bit more;
32286         distinguish between types and classes.
32287
32288 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
32289
32290         * icall.c: add IsArrayImpl icall.
32291
32292 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
32293
32294         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
32295         initializing real_size only once. Also fix bug #46602.
32296
32297 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
32298
32299         * object.c: Renamed mono_metadata_section to metadata_section.
32300
32301 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
32302
32303         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
32304           empty array if the type is an array. Fixed.
32305           ves_icall_MonoMethod_get_base_definition: if the base method
32306           is abstract, get the MethodInfo from the list of methods of
32307           the class.
32308         * reflection.c: ParameterInfo.PositionImpl should be zero-based
32309           and it was 1-based. Fixed in mono_param_get_objects.
32310
32311 2003-07-20  Martin Baulig  <martin@ximian.com>
32312
32313         * mono-debug.h: Set version number to 31.
32314         (mono_debug_init): Added `MonoDomain *' argument.
32315
32316         * mono-debug-debugger.c: Reworked the type support; explicitly
32317         tell the debugger about builtin types; pass the `klass' address to
32318         the debugger.
32319
32320 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
32321
32322         * image.c: Allow new metadata tables to be loaded without a
32323         warning. Also update the warning message to give the new constant value.
32324                 
32325 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
32326
32327         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
32328         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
32329         array type representation changes.
32330
32331 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32332
32333         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
32334         on Environment.Exit () call.
32335
32336 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
32337
32338         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
32339         requires a matching corlib.
32340
32341 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32342
32343         * Changelog: My editor decided to add a CR to each line. Sorry about that.
32344           Committed again without the CRs.
32345         
32346 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
32347
32348         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
32349           getting it from the "this" socket instance. Did not work
32350           if the socket is a subclass of Socket.
32351           Also fixed bug #35371.
32352
32353 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32354
32355         * metadata.c: fixed size for TypedByRef.
32356         * loader.c: when searching for a method, consider the vararg amrker.
32357         * unicode.c, decimal.c: constify some arrays.
32358
32359 2003-07-15  Dick Porter  <dick@ximian.com>
32360
32361         * socket-io.c: Fixed compilation for gcc < 3.2.
32362
32363         Fixed compilation for machines that don't have AF_INET6 (thanks to
32364         Bernie Solomon <bernard@ugsolutions.com> for that part.)
32365
32366         Fixed compile warnings.
32367         
32368         Fixed formatting and line endings.
32369
32370 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
32371
32372         * socket-io.h:
32373         * socket-io.c: Added IPv6 support.
32374
32375 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
32376
32377         * class.c (mono_class_is_assignable_from): New function to implement
32378         the is_assignable_from logic. Used by mono_object_isinst, 
32379         Type::IsAssignableFrom () and the interpreter.
32380
32381         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
32382         Object, even interfaces.
32383         
32384         * object.c (mono_object_isinst): Implement in terms of 
32385         is_assignable_from.
32386
32387         * icall.c (ves_icall_type_is_assignable_from): New icall.
32388
32389 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
32390
32391         * domain.c (foreach_domain): fix compiler warning.
32392
32393 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
32394
32395         * image.c (load_metadata_ptrs): use g_strndup because strndup is
32396         not available on all plattforms
32397
32398 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
32399
32400         * image.h image.c: Store the metadata version string in MonoImage.
32401         * icall.c: New icall to retrieve the image version.
32402         * reflection.c (create_dynamic_image): Fill in the image version field
32403         * reflection.c (build_compressed_metadata): Use the image version
32404         from the image structure.
32405
32406 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32407
32408         * appdomain.c: modified comment.
32409         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
32410         That will be its last iteration when mono_gc_cleanup is called from
32411         mono_runtime_cleanup and before the domain is unloaded.
32412
32413         Fixes bug #45962.
32414
32415 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
32416
32417         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
32418         attributes.
32419
32420 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32421
32422         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
32423         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
32424         Bernie Solomon <bernard@ugsolutions.com>.
32425
32426 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32427
32428         * object.c, object.h: provide mono_object_new_fast() for faster
32429         allocation in some special cases.
32430
32431 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
32432
32433         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
32434         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
32435
32436 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
32437
32438         * threadpool.c: fix leaks.
32439
32440 2003-07-01  Dick Porter  <dick@ximian.com>
32441
32442         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
32443         using MonoGHashTables.  Fixes threadpool bug posted to list.
32444
32445 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
32446
32447         * image.h, image.c: added support to load an assembly from a byte array.
32448         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
32449         assembly bundle support.
32450
32451 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
32452
32453         * threadpool.c (mono_thread_pool_add): keep a reference to the
32454         AsyncResult to prevent GC
32455
32456 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32457
32458         * class.c: leak fix.
32459
32460 2003-06-25  Dick Porter  <dick@ximian.com>
32461
32462         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
32463         for the async object, the WaitHandle object will close the handle.
32464         Fixes bug 45321.
32465
32466 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32467
32468         * class.c: in mono_array_class_get (), lookup from the hash with the
32469         same type we insert: this works around a bug in
32470         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
32471         lluis. The real fix will have to wait for after the release.
32472
32473 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32474
32475         * icall.c: fix memory leak when getting type members.
32476
32477 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32478
32479         * reflection.c: added more pubtoken special cases.
32480
32481 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
32482
32483         * class.c: handle field offset correctly when class size
32484         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
32485
32486 2003-06-20  Martin Baulig  <martin@ximian.com>
32487
32488         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
32489         *image' field.
32490
32491 2003-06-20  Martin Baulig  <martin@ximian.com>
32492
32493         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
32494
32495 2003-06-20  Martin Baulig  <martin@ximian.com>
32496
32497         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
32498         just distinguish between variables in registers and variables at
32499         an offset relative to a register.
32500
32501 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32502
32503         * icall.c: #ifdef out latest changes until mcs is fixed.
32504
32505 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32506
32507         * icall.c: return members in metadata order.
32508
32509 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
32510
32511         * icall.c: avoid infinite loop in GetTimeZoneData.
32512
32513 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
32514
32515         * icall.c: added Marshal.Prelink/All icalls.
32516
32517 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
32518
32519         * object.c, object.h: fix warnings and do some overflow checking
32520         when creating arrays.
32521
32522 2003-06-17  Dick Porter  <dick@ximian.com>
32523
32524         * file-io.h:
32525         * file-io.c: File attributes need to be tweaked slightly when
32526         passed from the managed to the w32 world.
32527
32528 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32529         * profiler.h profiler-private.h profiler.c: Rework last patch
32530         based on suggestion by Paolo.
32531         
32532 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32533
32534         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
32535         instruction level coverage data collection.
32536         * profiler.h profiler.c (: Added new callback function which can be
32537         used by the profiler to limit which functions should have coverage
32538         instrumentation.
32539         * profiler.c (mono_profiler_load): Call g_module_build_path to
32540         generate the file name of the profiler library.
32541
32542 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32543
32544         * profiler.c, profiler.h, profiler-private.h: added basic block 
32545         coverage profiling API.
32546
32547 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
32548
32549         * reflection.c (mono_reflection_create_runtime_class): Add support
32550         for events in dynamically generated code.
32551
32552         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
32553         not allocated.
32554
32555 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32556
32557         * icall.c: when getting timezone info, return reasonable values if we
32558         can't get the actual data.
32559
32560 2003-06-14  Dick Porter  <dick@ximian.com>
32561
32562         * threads.c (start_wrapper): Remove the reference to the thread
32563         object in the TLS data, so the thread object can be finalized.
32564         This won't be reached if the thread threw an uncaught exception,
32565         so those thread handles will stay referenced :-( (This is due to
32566         missing support for scanning thread-specific data in the Boehm GC
32567         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
32568
32569 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
32570
32571         * reflection.c: ensure streams and tables are first allocated with
32572         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
32573
32574 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32575
32576         * icall.c: fixed GetElementType for byrefs (bug# 44792).
32577
32578 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
32579
32580         * reflection.c (mono_reflection_create_runtime_class): Add support for
32581         properties to dynamically created classes.
32582         * reflection.c: Fix a few places where non-MonoObjects were inserted
32583         into the tokens hashtable.
32584
32585 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32586
32587         * object.c: some support to handle out of memory exceptions.
32588
32589 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32590
32591         * marshal.c (mono_marshal_get_native_wrapper): support reference
32592         return types
32593
32594 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32595
32596         * object.h, object.c: more portability stuff from Bernie Solomon.
32597         Unexport mono_object_allocate(). Added mono_object_unbox ().
32598         Set exitcode when an unhandled exception is thrown.
32599
32600 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32601
32602         * marshal.c (mono_marshal_get_native_wrapper): use custom
32603         marshaler for return types.
32604
32605 2003-06-10  Dick Porter  <dick@ximian.com>
32606
32607         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32608         ip_mreq is available
32609
32610 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32611
32612         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32613         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32614         by Bernie Solomon <bernard@ugsolutions.com>.
32615
32616 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32617
32618         * gc.c (mono_gc_init): Avoid error message on shutdown when
32619         GC_DONT_GC=1 is used.
32620
32621         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32622         New icall to return the GUID of a module.
32623
32624 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32625
32626         * class.c: ensure instance size always includes the parent's size
32627         even whem class size is set explicitly (fixes bug#44294).
32628
32629 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32630
32631         * profiler.h, profiler.c: made the simple profiler thread-safe,
32632         get more accurate timing info. Allow the loading of an
32633         externally-developed profiler module.
32634
32635 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32636
32637         * marshal.c (mono_marshal_get_native_wrapper): improved
32638         class/byref arguments.
32639         (mono_marshal_get_native_wrapper): better string marshaling support.
32640
32641 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32642
32643         * class.c: ensure .pack and .size are handled correctly and
32644         simplified layout of static fields.
32645
32646 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32647
32648         * appdomain.c
32649         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32650
32651         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32652         current directory (fix bug 44008)
32653
32654 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32655
32656         * marshal.c (mono_marshal_get_native_wrapper): started support for
32657         custom marshalers.
32658         (mono_delegate_to_ftnptr): consider marshalling specifications
32659
32660 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32661
32662         * reflection.c, reflection.h: emit custom marshal info.
32663
32664 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32665
32666         * object.c: free the GError.
32667         * icall.c: added CloseEvent_internal.
32668         * threads.[ch]:
32669         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32670         call.
32671
32672 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32673
32674         * loader.c (mono_method_get_signature): Add support for dynamic
32675         assemblies.
32676
32677 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32678
32679         * reflection.c: fixed bug #43905.
32680
32681 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32682
32683         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32684         handling TypedReference and ArgIterator.
32685         * loader.c, loader.h: added function to get signature at call site.
32686
32687 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32688
32689         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32690         data readonly. Buglets and warning fixes. Some MethodSpec support.
32691
32692 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32693
32694         * class.h, class.c, object.c: remove relative numbering support.
32695
32696 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32697
32698         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32699         free the string, until we get a chance to fix Gtk#
32700
32701 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32702
32703         * marshal.c: revert last patch.
32704
32705 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32706
32707         * icall.c: updates for new mono_class_vtable() not calling
32708         the type constructor anymore.
32709
32710 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32711
32712         * object.h, object.c: separate vtable creation from type
32713         initialization. Make running the .cctor thread safe.
32714
32715 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32716
32717         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32718
32719 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32720
32721         * loader.c (mono_get_method): consider calling convention
32722
32723 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32724
32725         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32726         to return the invisible global type for a module.
32727
32728         * reflection.c (mono_image_build_metadata): Emit global fields too.
32729
32730 2003-05-20  Peter Williams  <peterw@ximian.com>
32731
32732         * loader.c (mono_lookup_internal_call): Add a few newlines.
32733
32734 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32735
32736         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32737         literal strings.
32738
32739         * appdomain.c (set_domain_search_path): Recalculate search path when
32740         AppDomainSetup.PrivateBinPath changes.
32741
32742         * object.c (mono_class_compute_gc_descriptor): It turns out some
32743         parts of the class libs (like System.Thread) holds pointers to
32744         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32745         to treat native int a pointer type here.
32746         
32747 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32748
32749         * appdomain.h, domain.c: add hashtable for jump target resolution.
32750
32751 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32752
32753         * reflection.h reflection.c icall.c: Added new icalls 
32754         GetManifestResourceInfoInternal, GetModulesInternal and support
32755         infrastructure.
32756
32757 2003-05-16  Dick Porter  <dick@ximian.com>
32758
32759         * icall.c:
32760         * file-io.h:
32761         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32762
32763 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32764
32765         * object.c: mono_store_remote_field: little fix to previous patch.
32766
32767 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32768
32769         * class.c: add constructors to array classes.
32770         * icall.c: special case array construction for InternalInvoke (),
32771
32772 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32773
32774         * class.h class.c reflection.c object.c: Added support for field
32775         defaults in dynamically generated classes.
32776
32777 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32778
32779         * reflection.c: properly encode charset for ddlimport.
32780
32781 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32782
32783         * threads.c: allow compiling without GC.
32784
32785 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32786
32787         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32788         handling of thread static data.
32789
32790 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32791
32792         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32793
32794 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32795
32796         * class.c (mono_array_class_get): always set the serializable flags
32797         (mono_array_class_get): always set the SEALED attribute for array types
32798
32799 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32800
32801         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32802         attributes (fix for bug 42021).
32803
32804 2003-05-12  Dick Porter  <dick@ximian.com>
32805
32806         * gc.c: Don't run finalizers when the finalizer thread is
32807         finishing up, because the default domain has already been
32808         destroyed.
32809
32810 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32811
32812         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32813         value is null, we should throw an exception.   This is slightly
32814         different than the other conventions used for the constructor.
32815
32816 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32817
32818         * socket-io.c: fixed windows build.
32819
32820 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32821
32822         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32823
32824 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32825
32826         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32827         compilers.
32828
32829 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32830
32831         * class.c (mono_class_layout_fields): Add experimental GC aware
32832         auto layout facility. Requires class library changes to work correctly.
32833
32834         (mono_class_setup_vtable): Avoid overriding explicit interface
32835         method implementations. Fixes iface3.exe test.
32836
32837         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32838         object reference.
32839         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32840         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32841
32842         * metadata.h: Add new type classification macro which determines
32843         whenever the type holds an object reference.
32844
32845 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32846
32847         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32848
32849 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32850
32851         * gc.c (finalizer_thread): Work around a GC bug.
32852
32853 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32854
32855         * marshal.c (emit_struct_conv): allow unions
32856
32857         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32858
32859 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32860
32861         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32862
32863 2003-05-06  Martin Baulig  <martin@ximian.com>
32864
32865         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32866
32867 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32868
32869         * socket-io.c:
32870         (Select_internal): allow NULLs, don't create arrays if not needed.
32871         Coupled with Socket.cs changes.
32872
32873         * threadpool.c:
32874         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32875         register a finalizer for it that will close the semaphore handle. This
32876         fixes the leak and make Lupus' test run with > 4080 loops.
32877
32878 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32879
32880         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32881         Jerome Laban (bug #42287)
32882
32883 2003-05-02  Martin Baulig  <martin@ximian.com>
32884
32885         * debug-mono-symfile.h
32886         (MonoSymbolFile): Moved declaration into mono-debug.h.
32887         (MonoDebugMethodJitInfo): Likewise.
32888         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32889         argument.
32890         (_mono_debug_address_from_il_offset): Take a
32891         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32892
32893         * mono-debug.h
32894         (MonoDebugDomainData): New struct.
32895         (mono_debug_get_domain_data): New function.
32896         (mono_debug_add_method): Take an additional `MonoDomain *'
32897         argument.
32898         (mono_debug_source_location_from_address): Likewise.
32899         (mono_debug_il_offset_from_address): Likewise.
32900         (mono_debug_address_from_il_offset): Likewise.
32901
32902 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32903
32904         * reflection.c: one more check for null type in custom attrs.
32905
32906 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32907
32908         * reflection.c: avoid warning (comparison is always false due to limited
32909         range of data type).
32910
32911 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32912
32913         * icall.c: throw an exception in Type.GetField if the argument 'name'
32914         is NULL.
32915
32916 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32917
32918         * reflection.c: fixed handling of enums in named arguments to custom
32919         attributes (bug #42123).
32920
32921 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32922
32923         * reflection.c: use the right array element type and handle
32924         a null for a Type argument, too.
32925
32926 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32927
32928         * reflection.c: handle arrays as arguments to custom attributes.
32929
32930 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32931
32932         * reflection.c: handle a string value in a custom attr
32933         ctor that takes an object.
32934
32935 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32936
32937         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32938         (fix bug #42063)
32939
32940 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32941
32942         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32943
32944 2003-04-27  Martin Baulig  <martin@ximian.com>
32945
32946         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32947         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32948         MONO_DEBUGGER_EVENT_BREAKPOINT.
32949         (mono_breakpoint_trampoline_code): Removed.
32950         (mono_debugger_event_handler): The last argument is now a
32951         `guint32'.
32952         (mono_debugger_insert_breakpoint_full): Removed the
32953         `use_trampoline' argument.
32954         (mono_debugger_method_has_breakpoint): Likewise.
32955         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32956         mono_debugger_breakpoint_callback(); take the method and
32957         breakpoint number as arguments.
32958
32959 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32960
32961         * metadata.c: fix off by one when loading parameters attributes.
32962
32963 2003-04-24  Martin Baulig  <martin@ximian.com>
32964
32965         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32966
32967 2003-04-24  Martin Baulig  <martin@ximian.com>
32968
32969         * mono-debug-debugger.c: Moved all code which interacts with the
32970         Mono Debugger here.
32971
32972         * debug-mono-symfile.c: This code now just deals with the symbol
32973         file itself, the debugger code is now in mono-debug-debugger.c.
32974
32975 2003-04-23  Martin Baulig  <martin@ximian.com>
32976
32977         * mono-debug.c (mono_debug_source_location_from_il_offset):
32978         New method; like mono_debug_source_location_from_address(), but
32979         takes an IL offset instead of a machine address.
32980
32981 2003-04-23  Martin Baulig  <martin@ximian.com>
32982
32983         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32984         `line' field; this is now computed by the debugger.
32985
32986 2003-04-23  Martin Baulig  <martin@ximian.com>
32987
32988         * mono-debug.[ch]: New files.  This is the new debugging interface.
32989
32990         * mono-debug-debugger.[ch]: New files.  Moved all code which
32991         interacts with the Mono Debugger here.
32992
32993 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32994
32995         * domain.c (mono_init): initialize mono_defaults.monitor_class
32996
32997 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32998
32999         * reflection.c (method_encode_code): Add a spicy exception to help
33000         future compiler authors.
33001
33002 2003-04-21  Martin Baulig  <martin@ximian.com>
33003
33004         * icall.c
33005         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33006         Make this work with relative pathnames; g_filename_to_uri() needs
33007         an absolute filename.
33008
33009 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
33010
33011         * icall.c: Track name changes in Object and ValueType.
33012
33013 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
33014
33015         * metadata.c (mono_type_stack_size): size should be a multiple of
33016         sizeof (gpointer)
33017
33018 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33019
33020         * gc.c:
33021         (internal_domain_finalize): moved into mono_domain_finalize. No need
33022         to create another thread because the finalizers will be run in the
33023         finalizer thread.
33024         
33025         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
33026         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
33027         to be run (MS does this too).
33028
33029 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
33030
33031         * object.c (mono_class_compute_gc_descriptor): Update comment.
33032
33033         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
33034
33035         * image.h: Add synchronized wrapper cache.
33036
33037         * image.c (do_mono_image_open): Initialize cache.
33038
33039         * reflection.c (create_dynamic_mono_image): Initialize cache.
33040
33041 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33042
33043         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
33044         ves_icall_System_Buffer_ByteLengthInternal.
33045
33046 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
33047
33048         * reflection.c: setup klass->nested_in earlier. Allow
33049         a dash in the assembly name.
33050
33051 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
33052
33053         * metadata.c (mono_type_to_unmanaged): dont access
33054         type->data.klass for MONO_TYPE_OBJECT
33055         (mono_type_to_unmanaged): consider System.Delegate class
33056
33057 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
33058
33059         * class.c: just setup supertypes in the proper place instead of
33060         initializing the full element class for arrays.
33061
33062 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
33063
33064         * class.c: ensure the element class of arrays is initialized.
33065         Setup the supertype info for array classes, too.
33066
33067 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
33068
33069         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
33070
33071 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33072
33073         * Makefile.am: re-added -m option when running cygpath. This way,
33074         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
33075         separator.
33076         * mono-config.c: same codepath for locating mono config file for WIN32
33077         and the rest.
33078         * assembly.c: if mono_assembly_setrootdir is called, don't override
33079         the value set.
33080
33081 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33082
33083         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
33084         MONO_ASSEMBLIES variable.
33085
33086 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
33087
33088         * icall.c: added Assembly::GetNamespaces() icall.
33089
33090 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33091
33092         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
33093
33094 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
33095
33096         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
33097         * object.c: fixed bug in the construction of vtable for proxies
33098
33099 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
33100
33101         * object.c (mono_array_new): Mark mono_array_new as an icall.
33102
33103 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33104
33105         * class.c: fixed test for public method when overriding interfaces.
33106         Closes bug #40970.
33107
33108 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
33109
33110         * appdomain.h, domain.c: added mono_domain_foreach() to
33111         be able to access the currently loaded appdomains.
33112         * object.c: make string interning work across sppdomains.
33113         Mark some functions for use as icalls.
33114
33115 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
33116
33117         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
33118
33119         * reflection.h reflection.c: Allocate long living data using 
33120         GC_MALLOC_ATOMIC so the collector does not need to scan it.
33121
33122         * reflection.c: Double the allocation size in streams instead of
33123         increasing it, to prevent unneccesary copying on large assemblies.
33124         
33125         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
33126         creation if the assembly does not have the Run flag set.
33127
33128 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
33129
33130         * class.h: avoid the C++ keywords in header files (Jerome Laban
33131         spotted and fixed this).
33132
33133 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33134
33135         * object.c:
33136         (mono_unhandled_exception): fill in the arguments for the
33137         UnhandledException event. Only trigger that event for the default
33138         domain (as MS does).
33139
33140 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
33141
33142         * object.c: Improve typed allocation stuff based on suggestions from
33143         Paolo. Also turn it on if the GC library supports it.
33144
33145 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
33146
33147         * object.c object.h class.h: Added experimental typed allocation
33148         facility using the interfaces in gc_gcj.h.
33149
33150         * os/gc_wrapper.h: Added new include files.
33151         
33152 2003-04-03  Martin Baulig  <martin@ximian.com>
33153
33154         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
33155         which is not yet enabled by default.
33156
33157         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
33158         functions.
33159         (mono_gc_lock, mono_gc_unlock): New static functions.
33160
33161         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
33162         functions; stop/start the world for the garbage collector.  This
33163         is using the windows API; we need to complete the SuspendThread()/
33164         ResumeThread() implementation in the io-layer to make this work on Unix.
33165         (mono_gc_push_all_stacks): New public function; tells the garbage
33166         collector about the stack pointers from all managed threads.
33167
33168 2003-04-03  Martin Baulig  <martin@ximian.com>
33169
33170         * object.h (MonoThread): Added `gpointer stack_ptr'.
33171
33172         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
33173
33174 2003-04-03  Martin Baulig  <martin@ximian.com>
33175
33176         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
33177
33178 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
33179
33180         * reflection.c (typebuilder_setup_fields): Initialize field.first and
33181         field.last.
33182
33183 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
33184
33185         * loader.c (mono_lookup_internal_call): Report the corlib that is
33186         out of sync.
33187
33188 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
33189
33190         * icall.c (ves_icall_type_GetTypeCode): fixed check for
33191         System.DBNull (it's class not valuetype).
33192
33193 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
33194
33195         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
33196         if the array method was already assigned a token (fixes bug#40646).
33197
33198 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
33199
33200         * reflection.c (mono_reflection_get_type): Attempt type resolve even
33201         if no assembly is given.
33202
33203 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
33204
33205         * metadata.h: Added the new tables.
33206
33207         * row-indexes.h: Added definitions for new tables.
33208
33209         * metadata.c: Add schemas for new tables, and add support for
33210         computing the sizes of them.
33211
33212         * class.c: Update for handling the new type cases.
33213
33214 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
33215
33216         * metadata.h (MONO_TYPE_IS_VOID): new macro
33217
33218 2003-03-31  Martin Baulig  <martin@ximian.com>
33219
33220         * threads.h (MonoThreadCallbacks): Added `thread_created'.
33221
33222         * threads.c (mono_thread_new_init): Call `thread_created' in the
33223         mono_thread_callbacks.
33224
33225 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
33226
33227         * loader.h: added marshalbyrefobject_class to mono_defaults
33228         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
33229         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
33230           generation of output parameters.
33231           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
33232         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
33233           contextbound and the target object belongs to the context of the caller.
33234         * object.h: added context and unwrapped_server variables in MonoRealProxy.
33235         * object.c: Implemented support for interfaces and abstract classes
33236           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
33237           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
33238
33239 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
33240
33241         * class.h class.c (mono_class_is_subclass_of): New function.
33242         
33243         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
33244         routines for most common case (calls from ArrayList::ToArray).
33245
33246         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
33247         routine so programs which call Environment::Exit() can be profiled.
33248
33249         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
33250         Added MONO_ARCH_SAVE_REGS.
33251
33252         * icall.c (ves_icall_type_is_subtype_of): Use new function.
33253
33254 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
33255
33256         * blob.h: Add a couple of new MonoType types definitions.
33257
33258         * tabledefs.h: Add a couple of new call convs.
33259
33260 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
33261
33262         * reflection.h (MonoReflectionDynamicAssembly): track changes in
33263         the layout of the class.
33264
33265         * reflection.c (alloc_table): double the size on overflow to avoid
33266         unnecessary copying.
33267
33268         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
33269         avoid filling out metadata tables and blobs. Also set mb->ilgen to
33270         null so it can be garbage collected.
33271         
33272 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
33273
33274         * reflection.c (mono_reflection_get_type): Return the resolved type
33275         only if it is in the assembly we searched.
33276
33277         * reflection.c (ensure_runtime_vtable): Initialize method slots.
33278
33279         * class.c (mono_class_setup_vtable): Set the slot of the overriding
33280         method.
33281
33282 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33283
33284         * appdomain.c:
33285         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
33286         the right one is 'file:///blah', but MS allows it.
33287         * assembly.c:
33288         (mono_assembly_open): allow 'file://blah'
33289
33290         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
33291
33292 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
33293
33294         * socket-io.c: fixes bug #40310.
33295
33296 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
33297
33298         * reflection.c (mono_reflection_parse_type): handle deeply nested
33299         types correctly.
33300
33301         * reflection.c (mono_image_create_token): Use unique token values
33302         since they will be put into a hash table.
33303
33304         * class.c (mono_class_setup_vtable): If a method occurs in more than
33305         one place in the vtable, and it gets overriden, then change the
33306         other occurances too.
33307
33308         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
33309         object as return type.
33310
33311 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33312
33313         * icall.c: Deleted "ToString" implementation for double and float
33314         because they are full implemented in managed code.
33315
33316 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33317
33318         * reflection.c, reflection.h: implemented and exported functions
33319         to retrieve info about custom attributes.
33320
33321 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33322
33323         * appdomain.c: moved Uri handling to assembly.c
33324         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
33325         work when using a file Uri in *nix and windows.
33326
33327         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
33328         GetReferencedAssemblies.
33329
33330 2003-03-18  Dick Porter  <dick@ximian.com>
33331
33332         * icall.c: Rename a couple of internal calls
33333
33334         * threads.c: Set the thread state to Stopped when a thread exits.
33335         Fixes bug 39377.
33336
33337 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
33338
33339         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
33340         New icall.
33341
33342         * object.c (mono_class_vtable): fix warning.
33343
33344 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
33345
33346         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
33347
33348         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
33349         memory.
33350         (method_encode_clauses): Create exception info structures in the right
33351         order.
33352         (mono_reflection_setup_internal_class): Initialize supertypes field.
33353
33354         * class.c object.c: Handle interfaces which implement other interfaces 
33355         correctly.
33356
33357         * class.h class.c: Move the supertypes array initialization code into 
33358         a separate function so it can be used for dynamic types too. Also call
33359         it earlier, in mono_class_init(), since it can be used before the
33360         type is initialized.
33361
33362 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33363
33364         * Makefile.am:
33365         * assembly.c:
33366         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
33367
33368         * appdomain.c:
33369         * appdomain.h:
33370         * marshal.c:
33371         * object.c: remove warnings.
33372
33373 2003-03-13  Martin Baulig  <martin@ximian.com>
33374
33375         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
33376         (MonoDebugLexicalBlockEntry): New types.
33377
33378         * debug-mono-symfile.c
33379         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
33380
33381 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33382
33383         * process.c: ret can be any non-zero value accroding to MS doc.
33384
33385 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
33386
33387         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
33388         fixing a warning for a miss-used prototype, would have cause
33389         random memory corruption.
33390
33391 2003-03-07  Martin Baulig  <martin@ximian.com>
33392
33393         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
33394         getting really annoying ....
33395
33396 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
33397
33398         * reflection.c (fixup_method): added support for array methods.
33399
33400 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
33401
33402         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
33403         (pointed out by Michael Adams).
33404
33405 2003-03-04  Dick Porter  <dick@ximian.com>
33406
33407         * icall.c: Temporarily reverted the Double and Single ToString()
33408         change, because it broke nunit.
33409
33410 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
33411
33412         * object.h, threads.h: make include files compatible with C++
33413         (patch by Jerome Laban <jlaban@wanadoo.fr>).
33414
33415 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33416
33417         * icall.c: Erased ToString helper functions for Double and Single.
33418         Now, that implementations ar all in managed code (Double and Single
33419         Formatters).
33420
33421 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
33422
33423         * appdomain.c: Added method for initializing the default context of
33424         a domain. Added internal call for getting the default context.
33425         * appdomain.h: Added context variable in MonoDomain struct.
33426         * domain.c: mono_domain_set also sets the default context of the domain
33427         * icall.c: Mapped internal method InternalGetDefaultContext.
33428         * object.c: mono_object_get_virtual_method returns always a remoting
33429         wrapper if the object is a transparent proxy.
33430         mono_runtime_invoke_array: when creating an object by calling the
33431         constructor, if the created object is a proxy, then the constructor should
33432         be called using the a remoting wrapper.
33433
33434 2003-03-03  Dick Porter  <dick@ximian.com>
33435
33436         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
33437         variable so it compiles on solaris.  Problem spotted by
33438         Christopher Taylor <ct@cs.clemson.edu>
33439
33440 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33441
33442         * appdomain.c:
33443         (get_info_from_assembly_name): don't leak value.
33444
33445         * icall.c:
33446         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
33447         result.
33448
33449 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
33450
33451         * assembly.c: export mono_image_load_references ().
33452         * class.c: handle function pointers. mono_class_from_name() now
33453         supports nested type names directly.
33454
33455 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
33456
33457         * reflection.h reflection.c: Encode already created dynamic methods 
33458         and fields correctly as a DEF instead of a REF.
33459
33460         * reflection.c: Get rid of the force_ref argument to 
33461         mono_image_typedef_or_ref since it was wrong in the first place.
33462
33463         * string-icalls.c: add error checking to string constructors according
33464         to the MSDN docs.
33465
33466         * reflection.c: Emit types in the order their TypeBuilders were 
33467         created. Previously, a new table index was assigned to each type before
33468         the tables were emitted. This was wrong because the signature blob
33469         might already refer to a type by its original table index.
33470
33471 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
33472
33473         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
33474         change.
33475         
33476 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33477
33478         * Makefile.am: make assemblies dir have \ instead of / on windows.
33479
33480 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
33481
33482         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
33483         iterate over the NESTEDCLASS table using a linear search since the
33484         table is not guaranteed to be sorted by the secondary key.
33485
33486         * class.c (mono_class_create_from_typedef): fixed up call to
33487         mono_metadata_nesting_typedef.
33488         
33489 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
33490
33491         * marshal.c (mono_string_to_byvalstr): clear the memory as
33492         suggested by Jerome Laban <jlaban@wanadoo.fr>
33493
33494 2003-02-26  Dick Porter  <dick@ximian.com>
33495
33496         * process.c: Cope with padding in .rsrc blocks
33497
33498 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33499
33500         * metadata.h: reverted the filter_len change, it breaks reflection
33501         
33502 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
33503
33504         * metadata.h: added a new field to store the filter_len
33505         
33506
33507 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
33508
33509         * reflection.c: handle custom attributes for types and members
33510         created with Reflection.Emit (bug#38422).
33511
33512 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
33513
33514         * reflection.c: define RTSpecialName automatically for constructors for
33515         compatibility with MS.NET.
33516
33517         * reflection.c (mono_reflection_create_runtime_class): initialize
33518         nested_in field of dynamically created classes.
33519
33520 2003-02-22  Martin Baulig  <martin@ximian.com>
33521
33522         * debug-mono-symfile.h: Incremented version number.
33523
33524 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33525
33526         * object.h icall.c process.c: fix warnings.
33527
33528 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33529
33530         * appdomain.h appdomain.c:
33531         (mono_domain_try_type_resolve): split the 
33532         name_or_tb argument into a name and a tb argument.
33533         (mono_domain_has_type_resolve): new function to check whenever the
33534         application has registered a TypeResolve event handler.
33535         
33536         * icall.c reflection.h reflection.c: move the type resolve logic into
33537         mono_reflection_get_type () so it will be invoked when 
33538         Assembly::GetType () is called.
33539
33540         * reflection.c:
33541         (mono_reflection_get_type): renamed to get_type_internal.
33542         (mono_reflection_get_type): fixed type name generation so it works 
33543         for nested types too.
33544         (mono_reflection_get_type): call has_type_resolve () to avoid the 
33545         costly type name generation if there is no resolve event handler.
33546
33547 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33548
33549         * class.c, image.c: load exported types from file references.
33550
33551 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
33552
33553         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
33554           used to cache the managed methods used to create proxies and make 
33555           remote invocation of methods.
33556         * class.h: Added in MonoVTable a flag to indicate that a class needs 
33557           to be remotely created.
33558         * object.c: Modified the method mono_class_vtable(). It now initializes 
33559           the remote flag of the vtable. Modified mono_object_new_specific(), 
33560           so now it checks the remote flag.
33561         * icall.c: Added a couple of internal methods, one for enabling instance 
33562           creation interception for a type, and one for creating objects bypassing
33563           the remote check.
33564
33565 2003-02-18  Martin Baulig  <martin@ximian.com>
33566
33567         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
33568         New interncall to get a method's metadata token.
33569
33570         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
33571         New interncall for the debugger.
33572
33573 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
33574
33575         * class.c (mono_class_setup_vtable): allocate supertype array
33576
33577 2003-02-18  Martin Baulig  <martin@ximian.com>
33578
33579         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
33580
33581 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33582
33583         * reflection.c:
33584         (assembly_name_to_aname): jump over unknown properties (i've found
33585         something like: 'type, assembly, version=xxx, custom=null, public...',
33586         so now will ignore custom=null and still get the rest of the values).
33587
33588 2003-02-17  Dick Porter  <dick@ximian.com>
33589
33590         * threads.c: Have Thread.Start() wait for a semaphore to signal
33591         that the thread has set up all its local data.  This fixes bug
33592         34323, where Abort() raced the new thread's TLS data.
33593
33594         Also removes the handle_store() call from start_wrapper, because
33595         threads are now always created suspended and there is no longer a
33596         race between the parent and child threads to store the info.
33597
33598 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33599
33600         * image.c: explain the #- heap issue in a message, hopefully
33601         avoiding FAQs on mono-list.
33602
33603 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33604
33605         * icall.c:
33606         (GetEntryAssembly): if the domain has not invoked
33607         AppDomain.ExecuteAssembly yet, return the assembly of the default
33608         AppDomain.
33609
33610 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33611
33612         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33613
33614 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33615
33616         * metadata.c, reflection.c: simple speedup to type hash
33617         and equals code.
33618
33619 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33620
33621         * image.c, image.h, class.c, assembly.c: move module loading
33622         to MonoImage. When loading metadata, consider alignemnet from
33623         the start of metadata, not from the metadata address in memory.
33624
33625 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33626
33627         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33628         AssemblyBuilder objects. Factored out custom attribute creation into
33629         a separate function.
33630         (create_custom_attr): new function to create custom attributes.
33631
33632 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33633
33634         * Makefile.am: Got tired of typing the full pathname to pedump.
33635         Until there is another option, am installing this.
33636
33637 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33638
33639         * class.c (class_compute_field_layout): always set field->parent 
33640         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33641
33642 2003-02-11  Dick Porter  <dick@ximian.com>
33643
33644         * threads-types.h:
33645         * monitor.c: Rewrote Monitor, making lock much faster and
33646         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33647         creates them as needed.
33648
33649         * exception.c: Added SynchronizationLockException
33650
33651         * threads.c: Deleted old Monitor implementation.  The new one is
33652         in a new file.
33653
33654 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33655
33656         * class.c: handled TypedReference type code. Set the correct size for
33657         class data. Setup interface_offsets for interface classes, too.
33658
33659 2003-02-09  Martin Baulig  <martin@ximian.com>
33660
33661         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33662
33663 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33664
33665         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33666         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33667         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33668         * verify.c: check for code that runs after the end of the method.
33669
33670 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33671
33672         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33673         "System.Math::Round2".
33674         * sysmath.h: Added Floor, Round and Round2 definitions.
33675         * sysmath.c: Modified certain functions that were not 100% compliant
33676         with MS.NET (math precision) and added the implementation of Floor,
33677         Round and Round2.
33678
33679 2003-02-07  Martin Baulig  <martin@ximian.com>
33680
33681         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33682
33683 2003-02-07  Martin Baulig  <martin@ximian.com>
33684
33685         * debug-mono-symfile.c: Reflected latest symwriter changes.
33686         (mono_debug_create_mono_symbol_file): Removed.
33687         (mono_debug_open_mono_symbol_file): Take an argument which
33688         specifies whether to create a dynamic symbol file.
33689
33690 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33691
33692         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33693
33694 2003-02-05  Martin Baulig  <martin@ximian.com>
33695
33696         * reflection.c (mono_image_build_metadata): Make this public,
33697         protect it against being called multiple times, don't create
33698         resources and don't build the compressed metadata here.
33699         (mono_image_create_pefile): Do this here.
33700
33701         * icall.c
33702         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33703
33704 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33705
33706         * socket-io.c: fixed bug #36322.
33707
33708 2003-02-06  Piers Haken <piersh@friskit.com>
33709
33710         * appdomain.[ch]:
33711         * class.h:
33712         * debug-mono-symfile.c:
33713         * icall.c:
33714         * loader.c:
33715         * mono-config.c:
33716         * monosn.c:
33717         * reflection.c:
33718         * socket-io.c: warning cleanups
33719
33720 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33721
33722         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33723         function. works like remoting invoke, but does a check for the Proxy first.
33724
33725 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33726
33727         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33728
33729 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33730
33731         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33732         array of pointers.
33733         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33734         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33735
33736         * object.c (mono_store_remote_field_new): used by the new jit
33737         instead of mono_store_remote_field
33738         (mono_load_remote_field_new): used by the new jit
33739         instead of mono_load_remote_field
33740
33741 2003-02-05  Patrik Torstensson
33742
33743         * appdomain.c: changed unload to take the domain id instead
33744         of domain
33745         
33746         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33747
33748
33749 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33750
33751         * appdomain.c: don't look for assemblies in ApplicationBase if
33752         PrivateBinPathProbe is set.
33753
33754 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33755
33756         * object.c: make the first argument in main_args contain the absolute
33757         path to the assembly. Fixes bug #37511.
33758
33759 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33760
33761         * icall.c: get correct UTC offset for countries not using daylight
33762         time saving. Fixes bug #30030.
33763
33764 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33765
33766         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33767         and 1 are the family).
33768
33769 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33770
33771         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33772
33773         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33774
33775 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33776
33777         * reflection.c: added support for SignatureHelper tokens, which is
33778         needed by the Calli opcode.
33779
33780         * reflection.h: track changes to SignatureHelper class.
33781
33782         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33783
33784 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33785
33786         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33787
33788 2003-02-03  Patrik Torstensson
33789         * appdomain.[c|h], domain.c : 
33790          - Added support for getting a domain via domain id
33791          - Support for setting and getting domain from System.AppDomain 
33792            (used in cross appdomain channel)
33793          - Added support for get/set for a MonoAppContext on a thread 
33794            (Context class in System.Runtime.Remoting.Contexts),
33795          - Removed hack in Get/SetData and ExecuteAssembly.
33796         
33797         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33798         the managed world to get control when a proxy is created.
33799
33800         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33801         
33802 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33803
33804         * icall.c
33805         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33806         Populate the codebase field as well.
33807
33808 2003-02-02  Martin Baulig  <martin@ximian.com>
33809
33810         * debug-mono-symfile.c
33811         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33812         (mono_debug_symfile_add_method): Allow interncalls.
33813
33814 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33815
33816         * icall.c: throw parse exception if strtod fails or the string is empty.
33817
33818 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33819
33820         * marshal.c: handle object type separately from defined
33821         class types.
33822
33823 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33824
33825         * marshal.c: handle NATIVE_LPSTR for strings when it's
33826         explicitly specified.
33827
33828 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33829
33830         * reflection.c, reflection.h, icall.c: setup the reflection
33831         handle cache for ModuleBuilders and AssemblyBuilders.
33832
33833 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33834
33835         * reflection.c (reflection_methodbuilder_to_mono_method): set
33836         pinvoke flag
33837
33838 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33839
33840         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33841
33842 2003-01-29  Dick Porter  <dick@ximian.com>
33843
33844         * threads.c: No need for the fake_thread kludge now that Thread
33845         doesn't run a class constructor
33846         
33847 2003-01-29  Dick Porter  <dick@ximian.com>
33848
33849         * threads.c: Use g_direct_hash instead of the rather bogus
33850         g_int_hash
33851
33852 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33853
33854         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33855         (fix pinvoke12.exe)
33856         (mono_marshal_get_struct_to_ptr): generate valid IL code
33857         (mono_marshal_get_ptr_to_struct): generate valid IL code
33858         (*): correctly set sig->pinvoke, we need to memdup the signature
33859         to do that
33860
33861 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33862
33863         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33864         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33865
33866 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33867
33868         * profiler.c: provide more callers information.
33869
33870 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33871
33872         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33873
33874         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33875
33876         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33877
33878 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33879
33880         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33881         exception instead of going into an infinite loop on dates which it 
33882         can't yet handle.
33883
33884         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33885         out-of-range exception if needed.
33886
33887         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33888         an implementation for an interface method and to override an inherited
33889         method at the same time. 
33890         Imagine a scenario when a virtual method is used to override a
33891         virtual abstract method in a parent class, and this same method 
33892         provides an implementation for an method inherited from an interface. 
33893         In this case, the interface resolution code will set im->slot, which 
33894         means that the virtual method override pass will skip this method 
33895         which means a pointer to the abstract method inherited from the parent
33896         will remain in the vtable of this non-abstract class.
33897
33898         * class.c: (mono_class_setup_vtable): continue search for a real 
33899         method if only an abstract method is found.     
33900
33901 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33902
33903         * reflection.c: add size to encoding for ByValStr and ByValArray
33904         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33905
33906 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33907
33908         * class.c (mono_class_setup_vtable): pass the override info as an
33909         argument.
33910
33911         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33912         correctly.
33913         
33914         * reflection.c (ensure_runtime_vtable); add support for method 
33915         overrides.
33916         
33917 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33918
33919         * reflection.c (resolution_scope_from_image): Hack to work to work with
33920         dynamic assemblies.
33921
33922         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33923         added a 'force_ref' argument to force this function to allways return 
33924         a TypeRef. This is needed by mono_image_get_memberref_token ().
33925         
33926 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33927
33928         * reflection.c (mono_image_get_type_info): interfaces really don't have
33929         a parent.
33930
33931         * reflection.c (mono_image_basic_init): fill out missing fields of
33932         image structure.
33933
33934         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33935         dynamic assemblies. This is required so dynamic assemblies show up in
33936         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33937         Type::GetType() etc. This is consistent with MS behaviour.
33938
33939         * image.c image.h reflection.c: add newly created classes to the name 
33940         cache so mono_class_get () will find them.      
33941
33942 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33943
33944         First part of changes to get IKVM.NET running under mono.
33945         
33946         * appdomain.h, appdomain.c: added new function 
33947         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33948         This function will call AppDomain::DoTypeResolve to do the actual work.
33949
33950         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33951         moved existing code dealing with dynamic tokens to a new function 
33952         called mono_reflection_lookup_dynamic_token (). This function will 
33953         raise TypeResolve events when appropriate. Since reflection.c is not 
33954         part of libmetadata, a new hook function called 
33955         mono_lookup_dynamic_token() is added to class.c which will call this.
33956
33957         * assembly.h assembly.c: make the invoke_load_hook function public,
33958         so it can be called for dynamic assemblies.
33959
33960         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33961
33962         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33963         type isn't found.
33964
33965         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33966         MonoGHashTable, since it contains pointers to objects which the GC 
33967         needs to track.
33968
33969         * assembly.c (search_loaded): remove unused variable.
33970         
33971 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33972
33973         * object.c: fixed issue exposed by gcc-generated IL programs
33974         that use RVA data for pointers.
33975
33976 2003-01-25  Martin Baulig  <martin@ximian.com>
33977
33978         * threads.c (start_wrapper): Moved the initialization of
33979         `start_func' above the mono_new_thread_init() call to which we
33980         pass it as argument.
33981
33982 2003-01-24  Martin Baulig  <martin@ximian.com>
33983
33984         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33985         the MonoThread pointer.
33986
33987 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33988
33989         * icall.c: Rename `PowImpl' to Pow.
33990
33991 2003-01-23  Dick Porter  <dick@ximian.com>
33992
33993         * threads.c (start_wrapper): Create a Thread object if needed, so
33994         the Main() thread can do the class initialisation in a subthread
33995         that has been set up to allow managed code execution.
33996
33997         Pass the thread ID instead of the MonoThread pointer to the thread
33998         start and attach callbacks.  This change is required, because the
33999         jit thread start callback must be called _before_ the Thread
34000         object can be created.
34001         
34002         (mono_thread_init): Removed much object creation code that is no
34003         longer needed.  No managed code is called from here now.
34004
34005         * object.c (mono_runtime_exec_managed_code): Create a subthread
34006         for Main, and call back to the runtime to use it.
34007         Set the exit code when Main exits.
34008
34009         * gc.c: Make sure domain finalisation happens in a subthread.
34010         Re-enable threaded GC, fixing bug 31333 (again).
34011
34012         * environment.c: System.Environment internall calls (so far just
34013         ExitCode is here, the others are still in icall.c)
34014
34015         * appdomain.c (mono_runtime_cleanup): All threads running managed
34016         code should have finished before mono_runtime_cleanup() is
34017         reached, so no need to clean up threads.
34018
34019 2003-01-22  Martin Baulig  <martin@ximian.com>
34020
34021         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
34022         `gpointer func' arguments.      
34023         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
34024         but added `MonoThread *thread' argument.
34025         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
34026
34027         * threads.c (mono_new_thread_init): Added `gpointer func' argument
34028         and pass it to the mono_thread_start_cb callback.
34029         (mono_install_thread_callbacks): New public function to install a
34030         set of callbacks which are set by the debugger.
34031         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
34032
34033 2003-01-22  Martin Baulig  <martin@ximian.com>
34034
34035         * Makefile.am: Install debug-mono-symfile.h.
34036
34037 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
34038
34039         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
34040
34041 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
34042
34043         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
34044         * class.c (mono_ptr_class_get): correctly set access levels of pointers
34045         (mono_array_class_get): correctly set access levels of arrays
34046
34047 2003-01-20      Patrik Torstensson
34048         * image.h (MonoAssemblyName): changed major, minor, build, revision
34049         from signed to unsigned.
34050
34051 2003-01-20  sean kasun <skasun@azstarnet.com>
34052
34053         * reflection.c (load_cattr_value): Now this handles
34054         MONO_TYPE_SZARRAY.  Fixes bug #35629
34055
34056 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
34057
34058         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
34059         integer value
34060
34061 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34062
34063         * decimal.c: fixed bug #26056.
34064
34065 2003-01-17  Martin Baulig  <martin@ximian.com>
34066
34067         * gc.c: Raise an ExecutionEngineException instead of using g_error().
34068
34069 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34070
34071         * exception.[ch]:
34072         (mono_get_exception_type_initialization): new function.
34073
34074         * object.c: throw a TypeInitializationException when an exception is
34075         thrown invoking the class constructor.
34076
34077 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34078
34079         * reflection.c: fixed attribute reading.
34080
34081 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34082
34083         * icall.c:
34084         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
34085         provided, look for the type in the calling assembly and then in
34086         mscorlib; if the assembly name is provided, only try that one.
34087
34088 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
34089
34090         * object.c: register the vtable before there is a chance it's
34091         queried again recursively.
34092
34093 2003-01-13  Duncan Mak  <duncan@ximian.com>
34094
34095         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
34096         gc-internal.h. 
34097         
34098 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
34099
34100         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
34101
34102 2003-01-11  Martin Baulig  <martin@ximian.com>
34103
34104         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
34105         this to 20 for the release.
34106
34107 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
34108
34109         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
34110
34111         * loader.c (mono_method_get_marshal_info): bug fix
34112
34113         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
34114         structures with explicit layout
34115
34116 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
34117
34118         * profiler.c: made the output more readable (and sorted). 
34119         Added caller information for the allocation profiler.
34120
34121 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
34122
34123         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
34124
34125 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34126
34127         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
34128         to get value types.
34129         
34130 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
34131
34132         * object.c, profiler.h, profiler.c, profiler-private.h:
34133         Added object allocation profiler.
34134
34135 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
34136
34137         * reflection.h, reflection.c: handle global methods.
34138         Compress blob entries.
34139
34140 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
34141
34142         * marshal.c: fix compilation.
34143
34144 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
34145
34146         * loader.c (mono_method_get_marshal_info): impl.
34147
34148         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
34149
34150 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34151
34152         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
34153         for reference types.
34154
34155 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
34156
34157         * loader.c: fixed off by one error in loaded parameter names.
34158
34159 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
34160
34161         * marshal.c (mono_marshal_get_icall_wrapper): like
34162         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
34163         instead of a MonoMethod.
34164
34165 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34166
34167         * decimal.c: fixed bug #36537.
34168
34169 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
34170
34171         * marshal.c: throw a missing method exception if a
34172         P/Invoke method is not found.
34173
34174 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
34175
34176         * icall.c: allow a null this for constructors.
34177
34178 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
34179
34180         * icall.c: raise the proper exceptions if the arguments to the
34181         internal Invoke are incorrect.
34182
34183 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
34184
34185         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
34186
34187 2003-01-03  Martin Baulig  <martin@ximian.com>
34188
34189         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
34190
34191 2002-12-31  Martin Baulig  <martin@ximian.com>
34192
34193         * debug-mono-symfile.c: Completely rewrote the type section.
34194         Instead of using individual malloc()ed fields, we use one big
34195         continuous memory area and offsets into this area.
34196         See the comments in the source code for details.
34197
34198 2002-12-30  Martin Baulig  <martin@ximian.com>
34199
34200         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
34201
34202 2002-12-30  Martin Baulig  <martin@ximian.com>
34203
34204         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
34205         line number table in this data blob instead of using an external
34206         pointer.
34207
34208 2002-12-28  Martin Baulig  <martin@ximian.com>
34209
34210         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
34211
34212 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
34213
34214         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
34215         as a boxed return type.
34216
34217 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
34218
34219         * appdomain.c
34220         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
34221         g_build_filename to properly get separators on the filename created.
34222
34223         * object.h: Small change, introduce MonoMarshalByRefObject to
34224         track the layout of that structure in the C# universe as we make
34225         changes there.
34226
34227 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
34228
34229         * object.c: removed assert to allow static fields on interfaces.
34230         * loader.c: a TypeSpec may be used for any type, not just arrays.
34231
34232 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34233
34234         * class.c, class.h: added mono_class_array_element_size ().
34235         Ignore static methods in interfaces.
34236
34237 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34238
34239         * threads.c: fixed the build under cygwin.
34240
34241 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34242
34243         * reflection.c: handle nullref constants. Allocate keys for
34244         reflection handles with the GC.
34245
34246 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34247
34248         * threads.c, threads.h: added mono_thread_get_abort_signal()
34249         to get a suitable signal for thread abort.
34250
34251 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34252
34253         * metadata.c: fix handling of ExportedType table.
34254
34255 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34256
34257         * icall.c: added WriteWindowsDebugString internal call.
34258
34259 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34260
34261         * reflection.h: added fields to match C# implementation.
34262
34263 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34264
34265         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
34266
34267 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
34268
34269         * gc.h, gc-internal.h: Rename header for GC internal calls to
34270         gc-internal.h from gc.h as to not clash with Boehm GC having its
34271         header installed as <gc.h> in outside include paths.
34272         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
34273         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
34274
34275 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34276
34277         * icall.c: assign minor, build and revision in FillName.
34278
34279 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
34280
34281         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
34282         Added support for running code generated by Reflection.Emit.
34283
34284 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34285
34286         * appdomain.c: check for NULL argument in LoadFrom.
34287
34288 2002-12-10  Dick Porter  <dick@ximian.com>
34289
34290         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
34291
34292 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34293
34294         * appdomain.c: fix buglet when building exe file name.  Handle full
34295         assembly name (needed after latest changes to AssemblyName).
34296         * image.c:
34297         (mono_image_close): free some hashtables.
34298
34299 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
34300
34301         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
34302         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
34303         on some systems (redhat 7.3) 
34304
34305 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
34306
34307         * threads.c: delete the critical section of a sync block,
34308         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
34309
34310 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
34311
34312         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
34313
34314 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34315
34316         * appdomain.[ch]: handle the assembly preload event to try loading the
34317         assemblies using the paths we have in the current domain.
34318
34319         * assembly.[ch]: created an assembly preload hook that is called to try
34320         loading the assembly by other means that the ones provided here.
34321
34322         * domain.c: initialize the domain search path.
34323
34324         From now on, assemblies (TODO: except corlib and System) are loaded
34325         according to these rules when using mono_assembly_load ():
34326
34327                 1. It tries to load the assembly from the ApplicationBase
34328                 of the current domain appending .dll and .exe (TODO: have to
34329                 try loading from name/name.dll and name/name.exe).
34330
34331                 2. It tries the search path specified in PrivateBinPath for the
34332                 current domain (if any).
34333
34334                 3. Previous behavior.
34335
34336 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
34337
34338         * icall.c: implemented GetInterfaceMap() related icall.
34339         * domain.c, loader.h: load MethodInfo in mono_defaults.
34340
34341 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34342
34343         * gc.c: disable the finalizer thread for now, untill all the issues
34344         with it are resolved.
34345
34346 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34347
34348         * string-icalls.c: handle embedded nulls in string ctor when the
34349         length is specified.
34350
34351 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34352
34353         * class.c: look for explicit interface implementation in parent
34354         classes, too.
34355
34356 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
34357
34358         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
34359
34360 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34361
34362         * gc.c: protect handles with a critical section.
34363
34364 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34365
34366         * icall.c:
34367         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
34368         parameters. If no assembly specified, try getting the type from all
34369         the assemblies in the current domain, else, load the assembly and get
34370         the type from it.
34371
34372 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34373
34374         * marshal.c: applied patch from Aleksey Demakov that fixes
34375         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
34376
34377 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34378
34379         * icall.c: fixed get_location.
34380
34381 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
34382
34383         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
34384         declarations to make it work with older gcc. 
34385
34386         * loader.c (mono_get_method): set signature->pinvoke for native calls
34387
34388 2002-11-20  Dick Porter  <dick@ximian.com>
34389
34390         * threads.c (mono_thread_init): Set the main thread's handle
34391
34392 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34393
34394         * gc.c: allow compilation without GC support. Changed to match the
34395         mono coding style.
34396
34397 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34398
34399         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
34400
34401 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
34402
34403         * reflection.c: set a public key token on the core assemblies.
34404
34405 2002-11-18  Dick Porter  <dick@ximian.com>
34406
34407         * threads.c: Split out some thread initialisation so that other
34408         files can set the start callback function.
34409
34410         * gc.c: Run finalisers in a separate thread, to avoid stack
34411         overflow.  Fixes bug 31333.
34412
34413         * appdomain.c: Set up GC finalisation thread.
34414
34415         * reflection.c: 
34416         * object.c: 
34417         * domain.c: Use gc.h macros for GC_malloc
34418         
34419 2002-11-15  Dick Porter  <dick@ximian.com>
34420
34421         * threadpool.c: 
34422         * threads.c:
34423         * appdomain.c: Removed mono_runtime_init_with_attach(),
34424         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
34425         merging the extra parameter with the existing function.  Removed
34426         unneeded code in mono_thread_attach().
34427
34428 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
34429
34430         * image.c (mono_image_loaded_by_guid): a method to get loaded
34431         images by guid. 
34432         (load_metadata_ptrs): we store the guid as string.
34433
34434 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
34435
34436         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
34437
34438         * metadata.c (mono_guid_to_string): imported method form Zoltan
34439         Varga (slightly modified)
34440
34441         * assembly.c (mono_assembly_open): load precompiled code
34442
34443         * loader.h (MonoMethod): we store the method token for use in the
34444         aot compiler. 
34445
34446 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34447
34448         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
34449         the hook function called when an assembly is loaded.
34450         
34451         * domain.c: Modified file.
34452         (mono_domain_assembly_load): removed hash table insertion of assemblies.
34453
34454         Fixes bug #33196.
34455
34456 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
34457
34458         * reflection.c: Map PEFileKind to the value expected by the WinNT
34459         image loader. 
34460
34461 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34462
34463         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
34464         Read until the buffer is filled completely.
34465
34466 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34467
34468         * icall.c: implemented MonoType.InternalGetEvent ().
34469
34470 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34471
34472         * appdomain.c: implemented InitAppDomainSetup. Delayed
34473         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
34474         the entry_assembly.
34475
34476         * assembly.c: base_dir is now an absolute path ending with
34477         G_DIR_SEPARATOR.
34478
34479         * icall.c: modified get_location according to the above changes.
34480
34481         * object.c: init AppDomain.SetupInformation for the default domain after
34482         we have the entry assembly.
34483
34484         * domain.c: when unloading a domain, setup = NULL.
34485
34486 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
34487
34488         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
34489
34490 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
34491
34492         * object.h, object.c: introduced mono_object_get_virtual_method ()
34493         to lookup the method invoked on an object when a callvirt is done on
34494         a method.
34495         * icall.c: make MethodInfo::Invoke() always do a virtual call.
34496
34497 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34498
34499         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
34500         current domain when loaded an assembly and failed to load it.
34501
34502         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
34503
34504 2002-10-31  Dick Porter  <dick@ximian.com>
34505
34506         * icall.c: 
34507         * file-io.h: 
34508         * file-io.c: Return the error status in a parameter, as the
34509         GetLastError() value has long since been blown away if we try and
34510         look it up in a subsequent internal call invocation.  Delete the
34511         GetLastError() internal call, because it's useless.
34512
34513 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
34514
34515         * class.[ch]: added cast_class to fix bug 29517
34516
34517 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
34518
34519         * marshal.c: create valid IL code in the filter clause:
34520         the new JIT is less forgiving:-)
34521
34522 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34523
34524         * icall.c: removed get_property internal call.
34525
34526 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
34527
34528         * appdomain.h domain.c: Added an ID to appdomains.
34529         
34530         * threads.c threads.h icall.c: Implement icall
34531         Thread:GetDomainID(), and remove unused icall 
34532         CurrentThreadDomain_internal.
34533
34534 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34535
34536         * icall.c: Don't recurse through the base types in GetConstructor.
34537         Fixes bug #32063. 
34538
34539 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34540
34541         * mempool.h, mempool.c: added mono_mempool_empty() and
34542         mono_mempool_stats().
34543
34544 2002-10-23  Dick Porter  <dick@ximian.com>
34545
34546         * file-io.c: 
34547         * file-io.h: 
34548         * icall.c: Added MonoIO.GetFileType internal call
34549
34550 2002-10-17  Dick Porter  <dick@ximian.com>
34551
34552         * appdomain.c (mono_runtime_cleanup): Don't signal the async
34553         delegate semaphore before waiting for all threads to finish,
34554         because new threads can also call async delegates.  Fixes bug
34555         32004.
34556
34557         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
34558         of 3 seconds, in case another async job is queued.  (This part is
34559         needed because the bug fix reintroduced the 3s exit lag.)  This
34560         makes the mono_runtime_shutdown flag superfluous.
34561
34562 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34563
34564         * reflection.c: include ehader size in method section headers.
34565         Really check for suplicated modules entries.
34566
34567 2002-10-17  Martin Baulig  <martin@gnome.org>
34568
34569         * debug-mono-symfile.c: Added back support for locals.
34570
34571 2002-10-14  Martin Baulig  <martin@gnome.org>
34572
34573         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
34574         MONO_TYPE_VOID.
34575
34576 2002-10-14  Martin Baulig  <martin@gnome.org>
34577
34578         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
34579         mono_class_get() instead of looking in the class cache. 
34580
34581 2002-10-13  Martin Baulig  <martin@gnome.org>
34582
34583         * debug-mono-symfile.c: Set version number to 28, include the
34584         signature in method names.
34585
34586 2002-10-13  Martin Baulig  <martin@gnome.org>
34587
34588         * debug-mono-symfile.h: Set version number to 27.
34589
34590 2002-10-11  Martin Baulig  <martin@gnome.org>
34591
34592         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34593
34594 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34595
34596         * metadata.c, metadata.h: added helper function to allocate signatures.
34597
34598 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34599
34600         * icall.c: added internal call to get the location of machine.config.
34601
34602 2002-10-08  Martin Baulig  <martin@gnome.org>
34603
34604         * debug-mono-symfile.c: Ignore classes with a pending init for the
34605         moment.
34606
34607 2002-10-03  Dick Porter  <dick@ximian.com>
34608
34609         * threads.c: Freebsd pthread_t is a pointer
34610
34611 2002-10-03  Dick Porter  <dick@ximian.com>
34612
34613         * socket-io.c: Implemented GetHostName_internal
34614
34615 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34616
34617         * mono-config.c:
34618         (mono_config_parse_file): don't leak the text.
34619
34620 2002-10-02  Martin Baulig  <martin@gnome.org>
34621
34622         * debug-mono-symfile.c: Added support for methods.
34623
34624 2002-10-01  Martin Baulig  <martin@gnome.org>
34625
34626         * debug-mono-symfile.c: Don't emit methods and line numbers for
34627         the dynamic symbol file, just write the type table.  We can easily
34628         have an external helper program which creates a symbol file for an
34629         IL file.        
34630
34631 2002-10-01  Dick Porter  <dick@ximian.com>
34632
34633         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34634         Only add the handle to the cleanup array when we're about to
34635         launch the thread.  Bug 31425 deadlocked when the test was run on
34636         mono under w32.
34637
34638 2002-10-01  Martin Baulig  <martin@gnome.org>
34639
34640         * debug-mono-symfile.c: Added support for properties.
34641
34642 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34643
34644         * reflection.c: unaligned store fix from Mark Crichton
34645         <crichton@gimp.org>.
34646
34647 2002-09-27  Martin Baulig  <martin@gnome.org>
34648
34649         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34650         New interncall.
34651
34652 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34653
34654         * assembly.h, assembly.c: use a sane API to hook into the assembly
34655         loading process instead of a useless special-purpouse hack
34656         (ngen needs a hook, too, for example).
34657
34658 2002-09-27  Dick Porter  <dick@ximian.com>
34659
34660         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34661         io-layer can set up some process handle info.  Not needed on w32,
34662         but doesn't hurt either.
34663
34664         * process.c: Pass the program name in the second parameter to
34665         CreateProcess, so the path is searched.  Include the working
34666         directory. Implemented process name, process enumeration, and some
34667         process detail internal calls.
34668         
34669         * icall.c: Added internal calls for process lookup, and some
34670         process details
34671
34672 2002-09-26  Martin Baulig  <martin@gnome.org>
34673
34674         * assembly.c (mono_install_open_assembly_hook): New global
34675         function to install a function to be invoked each time a new
34676         assembly is loaded.
34677         (mono_assembly_open): Run this callback function if set.
34678
34679         * debug-mono-symfile.c: Put back line numbers for the dynamic
34680         symbol file and also record the .il file as source file.  This
34681         allows us to install the temporary symbol file as `file.dbg' just
34682         like a compiler-generated one.
34683
34684 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34685
34686         * Corrected typo in gc.c (BOHEM vs BOEHM).
34687
34688 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34689
34690         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34691         GetProperties. Also avoid calling g_slist_length in GetProperties and
34692         GetMethods.
34693
34694 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34695
34696         * reflection.c: avoid unaligned stores (bug spotted by
34697         Mark Crichton  <crichton@gimp.org>).
34698
34699 2002-09-25  Martin Baulig  <martin@gnome.org>
34700
34701         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34702         instead of guint64 for addresses and added prologue/epilogue info.
34703
34704 2002-09-25  Martin Baulig  <martin@gnome.org>
34705
34706         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34707         store line number info.  For the dynamic symbol file, we only need
34708         to provide the JIT generated dynamic line number info for the dynamic
34709         symbol file.
34710
34711 2002-09-25  Martin Baulig  <martin@gnome.org>
34712
34713         * debug-mono-symfile.h: Incremented version number.
34714
34715 2002-09-24  Martin Baulig  <martin@gnome.org>
34716
34717         * class.c (mono_debugger_class_init_func): New global function
34718         pointer variable.
34719         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34720         call it.
34721
34722         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34723         function.  This is called via the mono_debugger_class_init_func
34724         hook to add all types to the dynamic type table.
34725         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34726         from its metadata token.
34727
34728         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34729         New interncall for the debugger.
34730
34731 2002-09-24  Nick Drochak <ndrochak@gol.com>
34732
34733         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34734         before using it in case it is null.
34735         
34736 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34737
34738         * metadata.c: allow custom modifiers in local var signatures
34739         (bug spotted by Zoltan Varga).
34740
34741 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34742
34743         * class.c: deal with the <Module> class that may have a NULL vtable.
34744         Eliminate warnings.
34745
34746 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34747
34748         * image.c, image.h: more strong name helpers.
34749         * monosn.c: more work: convert pem keys to cryptoapi format.
34750
34751 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34752
34753         * string-icalls.c: speedup IndexOf.
34754
34755 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34756
34757         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34758
34759 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34760
34761         * icall.c: cleanup: use mono_object_domain ().
34762
34763 2002-09-23  Martin Baulig  <martin@gnome.org>
34764
34765         * debug-mono-symfile.c: Improved type support.
34766
34767 2002-09-22  Martin Baulig  <martin@gnome.org>
34768
34769         * debug-mono-symfile.c: Added support for reference types and strings.
34770
34771 2002-09-22  Martin Baulig  <martin@gnome.org>
34772
34773         * debug-mono-symfile.c: Started to work on the type table.
34774
34775 2002-09-21  Martin Baulig  <martin@gnome.org>
34776
34777         * debug-mono-symfile.c: Largely reworked the symbol table format.
34778         The symbol table is now incrementally updated each time a new
34779         method is added.  We're now also using our own magic and version
34780         so that you don't need to recompile all your classes if the
34781         dynamic table changes.
34782         (mono_debug_update_mono_symbol_file): Removed.
34783         (mono_debug_symfile_add_method): New function to add a method.
34784
34785 2002-09-21  Martin Baulig  <martin@gnome.org>
34786
34787         * icall.c
34788         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34789         New interncall.
34790
34791         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34792         New interncall to get a method from its metadata token.
34793
34794 2002-09-21  Martin Baulig  <martin@gnome.org>
34795
34796         * debug-mono-symfile.c: Create type table.
34797
34798 2002-09-20  Martin Baulig  <martin@gnome.org>
34799
34800         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34801
34802 2002-09-20  Martin Baulig  <martin@gnome.org>
34803
34804         * debug-mono-symfile.c: Provide information about params and locals.
34805
34806 2002-09-20  Martin Baulig  <martin@gnome.org>
34807
34808         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34809         New interncall.
34810
34811         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34812         interncall to get a method from its metadata token.
34813
34814 2002-09-20  Martin Baulig  <martin@gnome.org>
34815
34816         * debug-mono-symfile.c: Added a few checks for method->header
34817         being non-NULL.  This should never happen, but for the moment
34818         let's use a g_warning() rather than a g_assert().
34819
34820 2002-09-19  Mark Crichton  <crichton@gimp.org>
34821
34822         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34823         even if support for it isn't present.  Added an #ifdef to fix this.
34824
34825         * socket-io.c: Added checks back for Solaris support.
34826
34827 2002-09-19  Martin Baulig  <martin@gnome.org>
34828
34829         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34830         changes in the symbol file format.
34831
34832 2002-09-18  Martin Baulig  <martin@gnome.org>
34833
34834         * debug-mono-symfile.c: Set version number to 21.
34835
34836 2002-09-18  Dick Porter  <dick@ximian.com>
34837
34838         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34839         on netbsd.  Fixes bug 30051.
34840
34841 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34842
34843         * reflection.c:
34844         (set_version_from_string): little fix.
34845
34846 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34847
34848         * monosn.c, Makefile.am: added strong name utility.
34849         * reflection.h, reflection.c: implemented delayed signing,
34850         locale, version and hash id assembly attributes.
34851
34852 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34853
34854         * loader.c, metadata.c: load param attributes in signatures.
34855
34856 2002-09-16  Martin Baulig  <martin@gnome.org>
34857
34858         * debug-mono-symfile.c: Added string table with all method names.
34859
34860 2002-09-14  Martin Baulig  <martin@gnome.org>
34861
34862         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34863         fast method lookup.
34864
34865 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34866
34867         * reflection.c: record the public key token of referenced assemblies.
34868
34869 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34870
34871         * image.c, image.h: added functions to get the strong name and the
34872         public key of an assembly.
34873         * pedump.c: use them.
34874
34875 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34876
34877         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34878
34879 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34880
34881         * marshal.c (mono_marshal_get_managed_wrapper): Added
34882         MONO_TYPE_BOOLEAN 
34883
34884 2002-09-11  Martin Baulig  <martin@gnome.org>
34885
34886         * gc.c: Call GC_unregister_disappearing_link() on all links when
34887         finalizing them, this is necessary to aviod a crash in boehm's
34888         finalize handler.
34889
34890 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34891
34892         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34893         nick@chemlab.org.
34894
34895 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34896
34897         * icall.c: implemented MonoType::Module.
34898         * reflection.c, reflection.h: mono_module_get_object () from
34899         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34900
34901 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34902
34903         * icall.c: ignore overridden methods in GetMethods ().
34904         Fix for FieldInfo::SetValue().
34905         * object.c: handle float/double in runtime invoke.
34906
34907 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34908
34909         * object.c: allow a constructor to be called again on an object.
34910
34911 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34912
34913         * class.h, class.c: move field layout code to it's own function and
34914         export it. Get an interface id earlier. Move fields in MonoClass
34915         so they are more cache friendly and align the bitfields.
34916         * loader.c: temporary handle get_param_names() for a runtime method.
34917         * reflection.c, reflection.h: more code to handle runtime creation of
34918         types.
34919
34920 2002-09-09  Martin Baulig  <martin@gnome.org>
34921
34922         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34923         signature with the pinvoke field being set for the actual call.
34924
34925 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34926
34927         * icall.c: removed some unused icalls. Start of map of glib charsets
34928         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34929
34930 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34931
34932         * debug-helpers.c: break infinite loop (found and fixed by
34933         Holger Arnold <harnold@gmx.de>).
34934
34935 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34936
34937         * icall.c: target may be null in create_delegate.
34938
34939 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34940
34941         * marshal.c: handle a boolean return type.
34942
34943 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34944
34945         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34946
34947 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34948
34949         * gc.c: fix weakreferences.
34950
34951 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34952
34953         * icall.c: added icall to get default codepage.
34954
34955 2002-09-03  Dick Porter  <dick@ximian.com>
34956
34957         * threads.h: 
34958         * threads.c: Use MonoThread instead of MonoObject where
34959         apropriate.
34960
34961         Store running thread objects in a hash table, so that we have all
34962         the info to hand when waiting for them to finish
34963         (means we don't need OpenThread() any more, so mingw builds should
34964         be fully functional again.)
34965
34966         * verify.c:
34967         * object.h: Added thread ID to MonoThread
34968
34969 2002-09-03  Martin Baulig  <martin@gnome.org>
34970
34971         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34972
34973 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34974
34975         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34976
34977 2002-09-03  Martin Baulig  <martin@gnome.org>
34978
34979         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34980         argument to store the end address of the disassembled instruction.
34981
34982         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34983         here from debug-symfile.h.
34984         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34985         JIT into this struct.
34986         (MonoSymbolFile): Added `char *image_file' field.
34987         (MonoDebugGetMethodFunc): Removed.
34988         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34989         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34990         (mono_debug_find_method): New method.
34991
34992         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34993         create a full symbol file.
34994         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34995         and static symbol files.
34996         (mono_debug_find_method): The symbol file keeps an internal method hash,
34997         call this to get a MonoDebugMethodInfo from a MonoMethod.
34998
34999         * debug-symfile.[ch]: Removed.
35000
35001 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
35002
35003         * image.c (do_mono_image_open): Remove linker version check.
35004
35005 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
35006
35007         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
35008         wrappers for instance methods.
35009         
35010 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35011
35012         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
35013
35014 2002-08-28  Dick Porter  <dick@ximian.com>
35015
35016         * Makefile.am: Export HOST_CC for w32 builds
35017
35018 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35019
35020         * file-io.c process.c: MonoString are null terminated, no
35021         need for mono_string_to_utf16() anymore.
35022
35023 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35024
35025         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
35026
35027 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
35028
35029         * icall.c, reflection.h: speedup System.MonoType.
35030
35031 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35032
35033         * reflection.c: allow null as the value of a string argument in
35034         custom attributes constructors.
35035
35036 2002-08-27  Martin Baulig  <martin@gnome.org>
35037
35038         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
35039         `trampoline_address' field.
35040
35041 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
35042
35043         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
35044         check (fixes bug #29486) 
35045
35046 2002-08-27  Martin Baulig  <martin@gnome.org>
35047
35048         * debug-mono-symfile.c: Changed the file format in a way that allows us
35049         open it read-only and to use a specially malloced area for all the
35050         dynamic data.  We can now also generate a symbol file on-the-fly if we're
35051         debugging IL code and there is no MCS generated symbol file for it.
35052
35053 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35054
35055         * object.c: added a define for a good string and array
35056         creation speedup (not enabled by default because we need to deal with
35057         the synch stuff).
35058
35059 2002-08-26  Martin Baulig  <martin@gnome.org>
35060
35061         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
35062         function to create a dynamic symbol file.  This is used by the
35063         debugger to create a symbol file for IL code on-the-fly.
35064
35065 2002-08-26  Martin Baulig  <martin@gnome.org>
35066
35067         * loader.c (mono_lookup_pinvoke_call): Include the error message
35068         from g_module_error() in the error message.
35069
35070 2002-08-24  Martin Baulig  <martin@gnome.org>
35071
35072         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
35073         function to update the symbol file.  The symbol file is mmap()ed
35074         writable, but private.  This allows us to install the symbol file
35075         together with the assembly.
35076
35077 2002-08-24  Martin Baulig  <martin@gnome.org>
35078
35079         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
35080         but they can read the new symbol file format which mcs is now creating.
35081
35082         * debug-symfile.c (mono_debug_find_source_location): Moved to
35083         debug-mono-symfile.c; this is now operating on the new symbol file.
35084
35085 2002-08-23  Martin Baulig  <martin@gnome.org>
35086
35087         * debug-helpers.c (mono_method_desc_from_method): New function to get
35088         a MonoMethodDesc from a MonoMethod.
35089
35090 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35091
35092         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
35093         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
35094
35095 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096
35097         * string-icalls.[ch]: make helper methods static.
35098
35099 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35100
35101         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
35102         types to it and to SetValueInternal.
35103
35104         * object.c: Moved handle_enum label to its proper place. This was the
35105         f... bug! ;-)
35106
35107         This time i compiled mcs and gtk-sharp and they both work.
35108
35109 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35110
35111         * icall.c: reverted partially my previous patch until 
35112         object.c:set_value handles enums correcly.
35113
35114 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35115
35116         * icall.c:
35117         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
35118         (ves_icall_System_Environment_get_MachineName): removed warning when
35119         compiling under cygwin.
35120
35121 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35122
35123         * object.c: fixed field_get_value() for reference types.
35124
35125 2002-08-22  Dick Porter  <dick@ximian.com>
35126
35127         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
35128         Don't free a buffer while it's still needed.  Patch from Jonathan
35129         Liger <Jonathan.liger@wanadoo.fr>
35130
35131 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
35132
35133         * icall.c (ves_icall_System_Environment_get_Platform): Add new
35134         internal call.
35135
35136 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
35137
35138         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
35139         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
35140
35141         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
35142         we call unmanaged code which throws exceptions.
35143
35144 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35145
35146         * appdomain.h: added per-domain entry_assembly.
35147         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
35148         arguments.
35149         * icall.c: Assembly::GetEntryAssembly icall.
35150         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
35151         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
35152
35153 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35154
35155         * appdomain.h, gc.c: added mono_domain_finalize ().
35156
35157 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35158
35159         * object.c:
35160         (mono_print_unhandled_exception): changed g_warning by g_printerr
35161         because g_log has a 1024 characters limit (yeah, i got a big stack
35162         trace). Don't print exception name, that should be in ToString 
35163         returned string.
35164
35165 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35166
35167         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
35168         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
35169
35170 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35171
35172         * object.c:
35173         (mono_print_unhandled_exception): after previous commit, i realized
35174         that MS calls ToString on the exception. I changed this function to
35175         do that. This way we get stack_trace for free.
35176
35177 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35178
35179         * object.c:
35180         (mono_print_unhandled_exception): invoke Message property instead of
35181         getting 'message' field from Exception. Don't allocate memory for
35182         'trace' and 'message' if not needed.
35183
35184 2002-08-18  Dick Porter  <dick@ximian.com>
35185
35186         * unicode.c: Fix asserts to match Encoder.cs checks
35187
35188 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35189
35190         * marshal.c: fix unaligned store issue and a few wrong
35191         opcode argument types.
35192
35193 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35194
35195         * icall.c: added GetUninitializedObjectInternal internal call.
35196
35197 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
35198
35199         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
35200         to the right domain.
35201
35202 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
35203
35204         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
35205
35206         * class.c (class_compute_field_layout): set blittable to false for Strings
35207
35208         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
35209
35210 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35211
35212         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
35213         first chunk of code to create types at runtime. Code to
35214         handle ReflectedType/DeclaringType. Make reflection handles
35215         domain specific.
35216
35217 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35218
35219         * class.c: set correct name in arrays.
35220
35221 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
35222
35223         * appdomain.c (mono_domain_transfer_object): make it work with
35224         valuetypes. bug fixes.
35225
35226 2002-08-12  Dick Porter  <dick@ximian.com>
35227
35228         * object.h: Rename some parameters to avoid c++ keywords (Patch
35229         from Joseph Wenninger <kde@jowenn.at>)
35230
35231 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
35232
35233         * icall.c: added icall to implement Assembly.GetFile*.
35234
35235 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35236
35237         * reflection.h, reflection.c: code to embed managed resources.
35238
35239 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35240
35241         * class.c: move all the type size stuff into
35242         class_compute_field_layout().
35243
35244 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35245
35246         * class.c: ensure enums have always the correct instance size.
35247         * unicode.c: remove wrong assert.
35248
35249 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35250
35251         * assembly.c: fix mem corruption issue.
35252         * image.h, image.c: added mono_image_get_resource () to access
35253         managed resources.
35254         * icall.c: implemented Assembly.EntryPoint property and some
35255         Managed Resources related internalcalls.
35256
35257
35258 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35259
35260         * image.c, image.h: impemented mono_image_get_entry_point ().
35261         * appdomain.c: use mono_image_get_entry_point.
35262
35263 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35264
35265         * reflection.c: support the object type argument when loading
35266         custom attributes.
35267
35268 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
35269
35270         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
35271         String as return type.
35272
35273 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
35274
35275         * reflection.c: fix encoding of named args for custom attrs to match
35276         the ms implementation. Read them back when instantiating custom
35277         attributes.
35278
35279 2002-08-02  Radek Doulik  <rodo@ximian.com>
35280
35281         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
35282         by Dietmar as quick fix
35283         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
35284         16 as stack size, used on more places as quick fix before Dietmar
35285         will fix it properly
35286
35287 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
35288
35289         * object.h, object.c: added accessors for fields and properties.
35290
35291 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
35292
35293         * class.c, class.h: made mono_class_get_field_from_name ()
35294         loop on parent types.
35295         Added mono_class_get_property_from_name ().
35296
35297 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35298
35299         * class.c, class.h: move the code to setup the type vtable in its own
35300         function so that it can be reused also for types created at runtime.
35301         Eliminate the "class" identifier from the header file.
35302         * reflection.c: setup the vtable for enums so that we can create
35303         objects for use in SetConstant ().
35304
35305 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
35306
35307         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
35308         instead of the delegate itself as this pointer (bug #28383)
35309
35310 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
35311
35312         * marshal.c (mono_marshal_get_managed_wrapper): added return type
35313         conversions.
35314
35315 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35316
35317         * loader.c: don't set the pinvoke bit on icalls.
35318
35319 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
35320
35321         * debug-helpers.c (mono_method_full_name): only print a number to
35322         indicate wrapper type (so that the output is more readable in traces).
35323
35324 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
35325
35326         * class.c (mono_class_init): include method override patch from Paolo
35327
35328 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
35329
35330         * icall.c: fixed GetTypeCode().
35331
35332 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
35333
35334         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
35335         use real delegate invoke function to make it work with multicast
35336         delegates (fix bug# 28291).
35337
35338 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35339
35340         * object.c: load constant strings.
35341
35342 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35343
35344         * reflection.c: no magic numbers.
35345         * tabledefs.h: security action enum.
35346
35347 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35348
35349         * assembly.c: fix possible memory corruption.
35350
35351 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35352
35353         * reflection.h, reflection.c: added support for linking resources.
35354         * verify.c: check we have an updated corlib.
35355
35356 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
35357
35358         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
35359         string arrays.
35360         (mono_marshal_string_array): null terminate unmanaged string arrays.
35361         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
35362
35363 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35364
35365         * icall.c: Type.GetType () can now return also types from the
35366         calling assembly.
35367
35368 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35369
35370         * loader.h, loader.c: stack walking support.
35371         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
35372         GetCallingAssembly.
35373
35374 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
35375
35376         * marshal.c: added optimisations for blittable types 
35377
35378         * class.c (mono_array_class_get): do not set blittable attribute on arrays
35379         (mono_class_setup_mono_type): set blittable attribute for single
35380         and double.
35381
35382         * marshal.c (mono_string_utf8_to_builder): impl.
35383         (mono_string_builder_to_utf8): impl.
35384         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
35385
35386 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
35387
35388         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
35389         (mono_marshal_get_managed_wrapper): impl. byref types
35390
35391 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35392
35393         * icall.c:
35394         (search_method): don't display debug message. 
35395
35396 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35397
35398         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
35399
35400 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
35401
35402         * appdomain.c: set the missing filename when throwing exception.
35403
35404 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
35405
35406         * metadata.c (mono_type_size): code cleanup
35407         (mono_type_stack_size): removed some test code
35408
35409 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
35410
35411         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
35412         mono_get_exception_file_not_found now.
35413
35414         * exception.c (mono_exception_from_name_two_strings): New version
35415         that will call a constructor with two string arguments. 
35416         (mono_get_exception_file_not_found): New helper routine, used to
35417         report file-not-found errors.
35418
35419 2002-07-20  Dick Porter  <dick@ximian.com>
35420
35421         * process.h:
35422         * process.c: Pass file handles to CreateProcess
35423         
35424         * icall.c:
35425         * file-io.h:
35426         * file-io.c: Implemented CreatePipe
35427
35428 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35429
35430         * metadata.c (mono_get_param_info): set alignment for value types
35431
35432 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35433
35434         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
35435         Constify mono_domain_assembly_open().
35436         * loader.c: handle null namespace in icalls.
35437
35438 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
35439
35440         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
35441         (emit_str_to_ptr_conv): marshal object as structs
35442
35443         * metadata.c (mono_type_to_unmanaged): marshal object as structs
35444
35445         * marshal.c (mono_marshal_get_runtime_invoke): support value types
35446
35447 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
35448
35449         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
35450         (mono_marshal_get_native_wrapper): we an now return value types
35451
35452 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35453
35454         * verify.c: more checks implemented.
35455
35456 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
35457
35458         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
35459         (fix bug #27695)
35460         (mono_marshal_get_native_wrapper): allow byref arguments
35461         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
35462         impl. PtrToStringXXX methods
35463         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
35464         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
35465         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
35466         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
35467         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
35468
35469 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35470
35471         * reflection.c: fix buglet in parsing an assembly name.
35472
35473 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35474
35475         * marshal.c (emit_ptr_to_str_conv): first impl.
35476
35477 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35478
35479         * object.c, class.h: cache the vtable in the class as suggested by
35480         vargaz@freemail.hu (Zoltan Varga).
35481
35482 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35483
35484         * class.h, loader.c: added mono_field_from_token().
35485         * verify.c: first cut of type checking code.
35486
35487 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
35488
35489         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
35490
35491 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
35492
35493         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
35494         (fix bug #27782)
35495         (mono_marshal_get_remoting_invoke): impl.
35496         (mono_delegate_begin_invoke): impl.
35497         (mono_mb_emit_save_args): impl.
35498         (mono_delegate_end_invoke): impl.
35499         (mono_marshal_get_delegate_begin_invoke):
35500         (mono_marshal_get_delegate_end_invoke):
35501         (mono_marshal_get_delegate_invoke): generate a special name for
35502         those methods (including the signature) and associate them whith
35503         the delegate class. 
35504
35505 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
35506
35507         * reflection.[ch]: 
35508         (mono_reflection_type_from_name): now it has a MonoImage parameter
35509         which is used as the default image to search the type in. If the image
35510         is NULL or getting the type from it fails, it defaults to corlib.
35511
35512         * icall.c: changed 1 call to mono_reflection_type_from_name to match
35513         new parameter.
35514
35515 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35516
35517         * reflection.c: update the parameter table index.
35518
35519 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35520
35521         * domain.c: don't include the mark byte in the string hash.
35522
35523 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35524
35525         * icall.cs: icall for Type.GetTypeCode ().
35526         * verify: a couple of fixes and disabled local initialization checks.
35527
35528 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
35529
35530         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
35531
35532         * debug-helpers.c (mono_method_full_name): print the type of the
35533         runtime wrapper
35534
35535         * metadata.c (mono_signature_hash): a hash function for signatures
35536         (mono_signature_hash): better hash algorithm
35537
35538         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
35539
35540         * debug-helpers.c (mono_method_full_name): this can now generate
35541         method names with signatures
35542
35543         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
35544         method dont have this pointers.
35545
35546 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35547
35548         * reflection.c: fixup typebuilder tokens.
35549         * image.c: fix buglet.
35550         * marshal.h: remove whitespace.
35551         * metadata.h, metadata.c: reinstate code that was removed.
35552         * verify.c: handle catch directives and fix another couple of bugs.
35553
35554 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
35555
35556         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
35557         (mono_marshal_get_native_wrapper): make it comp. with the old code
35558         (mono_marshal_get_native_wrapper): support boolean
35559         (mono_marshal_get_managed_wrapper): support more types
35560
35561 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
35562
35563         * class.c (class_compute_field_layout): compute class->blittable attribute.
35564
35565 2002-07-09  Dick Porter  <dick@ximian.com>
35566
35567         * threads.c: Make the thread cleaning up cope with threads that
35568         call ExitThread()
35569
35570 2002-07-08  Radek Doulik  <rodo@ximian.com>
35571
35572         * reflection.c (method_encode_code): use non-translated values to
35573         compute finally_start, this fixes exception handling on ppc, yay!
35574
35575         * decimal.h (struct signscale): fix endianess
35576
35577 2002-07-07  Radek Doulik  <rodo@ximian.com>
35578
35579         * reflection.c: swap box_val and not val
35580
35581 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35582
35583         * reflection.c, reflection.h: handle full assembly info in type name.
35584         Handle Type arguments when loading custom attributes.
35585         * icall.c: updated to use new mono_reflection_type_from_name () method.
35586
35587 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35588
35589         * loader.c:
35590         (method_from_memberref): also print assembly name when method not found.
35591
35592 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35593
35594         * icall.c:
35595         (ves_icall_TypeGetProperties): fixed bug #27473. 
35596
35597 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35598
35599         * reflection.c: display image name and token when cannot find the
35600         .ctor for an attribute.
35601
35602 2002-07-05  Martin Baulig  <martin@gnome.org>
35603
35604         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35605
35606 2002-07-04  Dick Porter  <dick@ximian.com>
35607
35608         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35609         compile on mingw.  This will cause mingw builds to not wait for
35610         subthreads to terminate after the main thread does.  I've lodged a
35611         bug with the mingw developers for them to wrap OpenThread().
35612
35613 2002-07-03  Dick Porter  <dick@ximian.com>
35614
35615         * threads.c: Store thread IDs instead of handles, because
35616         GetCurrentThread() returns a pseudohandle and therefore stores
35617         useless values.  mono_thread_cleanup() continues checking the
35618         array of threads until it is empty, to cope with subthreads
35619         spawning new threads after the main thread has finished.
35620
35621         * profiler.h:
35622         * profiler.c:
35623         * profiler-private.h: Pass the thread ID to thread profiler
35624         functions, instead of a handle
35625
35626 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35627
35628         * verify.c: fixes to make it more usable.
35629         * pedump.c: added --verify code to verify IL code in an assembly.
35630
35631 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35632
35633         * reflection.c: turn errors into warnings to allow compiling corlib.
35634
35635 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35636
35637         * reflection.c: add special cases to compile corlib.
35638
35639 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35640
35641         * reflection.c: handle properties with only a set method.
35642
35643 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35644
35645         * opcodes.h: add enum with opcodes in opval order.
35646
35647 2002-07-01  Dick Porter  <dick@ximian.com>
35648         
35649         * object.h:
35650         * object.c (mono_runtime_run_main): Removed unneeded argument
35651
35652 2002-06-28  Martin Baulig  <martin@gnome.org>
35653
35654         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35655
35656 2002-06-27  Dick Porter  <dick@ximian.com>
35657
35658         * threads.c: Store the handle in both the parent thread and in the
35659         subthread, to minimise the time between starting a new thread and
35660         storing its ID.
35661
35662 2002-06-26  Dick Porter  <dick@ximian.com>
35663
35664         * appdomain.c (mono_runtime_cleanup): Close the socket library
35665         after all the threads have finished, not before
35666
35667 2002-06-26  Martin Baulig  <martin@gnome.org>
35668
35669         * debug-symfile.c (mono_debug_find_source_location): Added
35670         `guint32 *line_number' argument.  If it's not NULL, store the line number
35671         there and return the file name without the line number.
35672
35673 2002-06-25  Dick Porter  <dick@ximian.com>
35674
35675         * icall.c:
35676         * process.h:
35677         * process.c: Process forking and other support functions
35678
35679 2002-06-25  Dick Porter  <dick@ximian.com>
35680
35681         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35682         things dont happen when the image is closed.
35683         (mono_image_lookup_resource): Walk the resource section looking
35684         for a particular entry
35685
35686         * cil-coff.h: PE resource section decoding
35687
35688 2002-06-25  Dick Porter  <dick@ximian.com>
35689         
35690         * assembly.h:
35691         * assembly.c: 
35692         (mono_assembly_foreach): Accessor functions to walk the list of
35693         loaded assemblies
35694         (mono_assembly_set_main):
35695         (mono_assembly_get_main): Process methods need to know which
35696         assembly is the "main" one
35697
35698         * object.c (mono_runtime_run_main): Record the main assembly
35699
35700         * debug-helpers.c: Fix typo
35701
35702 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35703
35704         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35705         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35706
35707 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35708
35709         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35710
35711 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35712
35713         * image.c (do_mono_image_open): Initialize reference count,
35714         otherwise we leak the MonoImage.
35715
35716 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35717
35718         * reflection.c: small tweak to handle self-hosting.
35719
35720 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35721
35722         * reflection.c: fix type name parse code.
35723
35724 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35725
35726         * reflection.c: break out of the loop.
35727         * image.c: special case corlib.
35728
35729 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35730
35731         * reflection.c: add all the custom attrs at the end to ensure the
35732         ctors have been properly initialized when the attributes are defined
35733         in the current assembly.
35734
35735 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35736
35737         * reflection.c: handle correctly multiple-nested types.
35738
35739 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35740
35741         * row-indexes.h: fix typos.
35742         * reflection.c: adjust for typos and fix method_def_or_ref
35743         encoding in MethodImpl table.
35744
35745 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35746
35747         * reflection.c: fix entry point patching (thanks Serge!).
35748
35749 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35750
35751         * verify.c: add check for System.Exception
35752
35753 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35754
35755         * image.c, class.c: minifix for code just c&p'ed.
35756         * reflection.c: warning fix.
35757         * object.h, loader.h, domain.c: load also StringBuilder.
35758
35759 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35760
35761         * marshal.h, marshal.c: some support code to handle complex marshaling.
35762
35763 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35764
35765         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35766         Better signatures with vtable error dump.
35767
35768 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35769
35770         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35771
35772 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35773
35774         * icall.c (ves_icall_Type_GetField): impl.
35775
35776 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35777
35778         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35779         to retrieve a marshal description blob for a field or param.
35780
35781 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35782
35783         * reflection.h, reflection.c: change order of nested type emission
35784         to avoid table corruption. The NestedTypes table is sorted.
35785         * icall.c: change order of GetConstructor results to workaround mcs bug.
35786
35787 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35788
35789         * reflection.h, reflection.c: handle field and param marshal
35790         information.
35791
35792 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35793
35794         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35795
35796 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35797
35798         * reflection.c: fix call convention.
35799
35800 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35801
35802         * reflection.h, reflection.c: mono_image_get_memberref_token()
35803         takes a type instead of a class, now. Added
35804         mono_image_get_array_token() to create tokens for the special
35805         multi-dim array methods.
35806
35807 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35808
35809         * assembly.c: handle modules (no assembly table). Split
35810         loading references in its own function.
35811         * class.c: handle moduleref resolution scope.
35812         * image.c, image.h: cache module name in image.
35813
35814 2002-06-07  Martin Baulig  <martin@gnome.org>
35815
35816         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35817         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35818
35819 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35820
35821         * icall.c: more signature fixes that used uint instead of int.
35822
35823 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35824
35825         * reflection.c: fixed signature of field refs.
35826
35827 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35828
35829         * class.c, reflection.c: handle typerefs of nested types
35830         (both on read and when writing files).
35831
35832 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35833
35834         * icall.c: fix method signatures that tried to workaround the previous
35835         typo, d'oh!
35836
35837 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35838
35839         * debug-helpers.c: fix typo.
35840
35841 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35842
35843         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35844         rewrote the PE/COFF writing code (our programs are understood by the
35845         ms runtime, now).
35846
35847 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35848
35849         * gc.c, gc.h, icall.c: weakreference support.
35850
35851 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35852
35853         * Makefile.am, mono-config.c: use $(sysconfdir).
35854
35855 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35856
35857         * icall.c: changed default precision of Double.ToString() to 15.
35858         Fixed memory leak. Unified with Single.ToString.
35859
35860 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35861
35862         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35863
35864 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35865
35866         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35867         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35868         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35869         and myself.
35870
35871 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35872
35873         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35874
35875 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35876
35877         * reflection.c, socket-io.c: more compilation fixes.
35878
35879 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35880
35881         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35882         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35883         unicode.c: warning and compiler compatibility fixes.
35884
35885 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35886
35887         * class.h, metadata.c: fixed warnings/compilation errors.
35888
35889 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35890
35891         * Makefile.am, mono-config.c, mono-config.h: configuration file
35892         support routines.
35893         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35894         config file. Export methods to insert and lookup mappings.
35895
35896 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35897
35898         * reflection.c: handle types and boxed objects in custom attr
35899         constructors.
35900
35901 2002-05-30  Martin Baulig  <martin@gnome.org>
35902
35903         * debug-symfile.c
35904         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35905
35906 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35907
35908         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35909         to lookup the implmap row for a P/Invoke method.
35910         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35911         P/Invoke method from the runtime on an as needed basis.
35912
35913 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35914
35915         * metadata.c (mono_metadata_parse_signature): impl.
35916
35917 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35918
35919         * class.c: handle .pack directive.
35920
35921 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35922
35923         * object.c: initialize static fields with RVA data.
35924
35925 2002-05-25  Martin Baulig  <martin@gnome.org>
35926
35927         * debug-symfile.c
35928         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35929
35930 2002-05-24  Martin Baulig  <martin@gnome.org>
35931
35932         * debug-symfile.c
35933         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35934         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35935         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35936
35937 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35938
35939         * object.c: special case string ctros in invoke.
35940         * gc.c: silly whitespace changes.
35941
35942 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35943
35944         * threadpool.[ch]: impl. a threadpool that can
35945         be used by mint and mono.
35946
35947 2002-05-22  Martin Baulig  <martin@gnome.org>
35948
35949         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35950         The first argument is now a `MonoReflectionModuleBuilder *', the return
35951         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35952         `methods' field to get the method builder.  The `token' argument is the
35953         unfixed token.
35954
35955         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35956         invalid characters instead of g_assert_not_reached()ing.  This seems
35957         to be the behaviour of mscorlib.
35958
35959 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35960
35961         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35962         Hestilow to fix bug #25104
35963
35964 2002-05-21  Martin Baulig  <martin@gnome.org>
35965
35966         * debug-symfile.c (mono_debug_find_source_location): New function.
35967         Looks up an IL offset in the line number table and returns the source
35968         location as a string.
35969
35970 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35971
35972         * icall.c:
35973         (mono_double_ToStringImpl): changed %f by %g until we have something
35974         better.
35975
35976 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35977
35978         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35979         parameters first in C#.
35980
35981 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35982
35983         * icall.c, reflection.h: added icall to get info about an event.
35984
35985 2002-05-20  Radek Doulik  <rodo@ximian.com>
35986
35987         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35988         endian
35989         (mono_value_box): don't use memcpy for small sizes on
35990         architectures with unaligned access
35991
35992 2002-05-20  Martin Baulig  <martin@gnome.org>
35993
35994         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35995         if `tb->parent == NULL'.
35996         (mono_reflection_create_internal_class): New function.  This is
35997         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35998         for enum types.
35999
36000         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
36001         New interncall.
36002
36003 2002-05-19  Martin Baulig  <martin@gnome.org>
36004
36005         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
36006         argument to get the length, don't default to the array length.
36007
36008 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
36009
36010         * assembly.c (mono_assembly_setrootdir): New function used to
36011         override the MONO_ASSEMBLIES directory.
36012
36013 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36014
36015         * icall.c: ValueType_GetHashCode() initialize local var.
36016
36017 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36018
36019         * reflection.c: sort custom attributes table.
36020
36021 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
36022
36023         * reflection.c: support named args in custom attributes (write support).
36024
36025 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
36026
36027         * reflection.c: fix finally position calculation.
36028
36029 2002-05-15  Radek Doulik  <rodo@ximian.com>
36030
36031         * reflection.c: fixed endianess at many places
36032
36033         * icall.c (ves_icall_InitializeArray): comment out debug msg
36034
36035 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
36036
36037         * object.c (mono_unhandled_exception): new function to handle
36038         unhandled exceptions.
36039         (mono_unhandled_exception): call the UnhandledException event.
36040         (mono_runtime_delegate_invoke): impl.
36041
36042 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
36043
36044         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
36045         returns the RVA, not the direct pointer to the data. Handle the case
36046         when the class size is fixed.
36047
36048 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
36049
36050         * reflection.c: fix some endianess issues.
36051
36052 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
36053
36054         * object.c (mono_runtime_invoke): is now able to catch exceptions.
36055
36056         * threads.c (mono_thread_init): added a callback which is invoked
36057         at thread start.
36058
36059 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
36060         
36061         * icall.c: make GetHashCode return non-negative values.
36062
36063 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
36064
36065         * object.c, icall.c, gc.c: revert to address-based hashcode.
36066
36067 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
36068
36069         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
36070
36071 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
36072
36073         * icall.c, class.c: special case <Module>.
36074
36075 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
36076
36077         * icall.c: fix bug in GetNow().
36078
36079 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
36080
36081         * object.c (mono_runtime_class_init): make sure that we call all
36082         static class constructors.
36083
36084 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
36085
36086         * reflection.c: sort methodsemantics table.
36087
36088 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
36089
36090         * reflection.h, reflection.c: honour init locals setting.
36091
36092 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
36093
36094         * icall.c: copied Double ToStringImpl for Single ToStringImpl
36095
36096 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
36097
36098         * reflection.c: support ContructorBuilders in attribute blob creation.
36099
36100 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36101
36102         * reflection.c: some changes to build a binary that can be run
36103         directly in windows.
36104
36105 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
36106
36107         * loader.c: print a big message when an icall can't be found.
36108
36109 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36110
36111         * string-icalls.c: fix bug 24248.
36112
36113 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
36114
36115         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
36116         icall.c, reflection.h: separate assembly loading by pathname and by
36117         assembly name. Use the MONO_PATH env var to search for assemblies.
36118
36119 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
36120
36121         * assembly.c, image.h: add some support for assemblies
36122         with multiple modules.
36123         * class.c, class.h: export mono_class_from_typeref().
36124         * loader.c: remove duplicated code and use mono_class_from_typeref(),
36125         instead.
36126
36127 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
36128
36129         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
36130         documentation says (the ECMA one is correct).
36131
36132 2002-05-02  Dick Porter  <dick@ximian.com>
36133
36134         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
36135         Don't name the synchronisation mutex.
36136
36137 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
36138
36139         * rand.c
36140         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
36141         Make the prototypes match.
36142         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
36143         Same.
36144
36145         * icall.c
36146         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
36147         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
36148         all systems have tm.tm_zone, so use strftime() with %Z to print
36149         the timezone abreviation into a temp string.
36150
36151         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
36152         rather than mono_array_addr() on a MonoString on Big Endian
36153         machines.
36154
36155 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
36156
36157         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
36158         fix bug 24041
36159
36160 2002-04-30  Dick Porter  <dick@ximian.com>
36161
36162         * socket-io.c: Cope with SOCKET being an integer rather than a
36163         pointer now.
36164
36165         * threads.c: Added Thread_free_internal, to deal with thread
36166         handle cleanup.  Moved calls to handle_store() and handle_remove()
36167         to start_wrapper(), so each can only be called once.  Allocate
36168         synchronisation blocks with GC_malloc(), and use GC finalisation
36169         to close the handles.
36170
36171         * icall.c: added System.Threading.Thread::Thread_free_internal
36172
36173 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
36174
36175         * icall.c: support Environment.Exit, CommandLineArgs().
36176
36177 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
36178
36179         * object.c, object.h: added mono_runtime_run_main () and
36180         mono_runtime_get_main_args () for use in System.Environment.
36181
36182 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
36183
36184         * gc.c: fix thinko, enable actual finalization since the jit is now
36185         fixed.
36186
36187 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36188
36189         * gc.c, object.c: take into account that an object may be offset wrt the address
36190         returned by GC_malloc().
36191
36192 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
36193
36194         * image.c: handle files without entries in the assembly table (modules).
36195
36196 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
36197
36198         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
36199         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
36200         allowed to be null when it's System.Object class setup.
36201
36202 2002-04-27  Martin Baulig  <martin@gnome.org>
36203
36204         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
36205         if `tb->parent == NULL' rather than crashing.
36206
36207 2002-04-28  Nick Drochak  <ndrochak@gol.com>
36208
36209         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
36210         calling acos() where asin() should have been called.
36211
36212 2002-04-26  Martin Baulig  <martin@gnome.org>
36213
36214         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
36215         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
36216         there's a subdirectory called `System', but we don't want to read that
36217         subdirectory as an assembly.
36218
36219 2002-04-25  Martin Baulig  <martin@gnome.org>
36220
36221         * debug-symfile.c: Reflect latest MonoString changes.
36222
36223 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
36224
36225         * rand.c, rand.h: instance method icalls need to have an explicit
36226         this pointer as first argument in the C implementation.
36227
36228 2002-04-25  Nick Drochak <ndrochak@gol.com>
36229
36230         * icall.c: Fix typo in map for GetNonZeroBytes
36231
36232 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36233
36234         * string-icalls.c : String does now passes unit tests without any 
36235         errors, the following changes has been made:
36236         
36237         Implemented replace methods.
36238         Renaming of methods to (try) follow the standard.
36239         Fixed compare ordinal
36240         Made all memory allocated directly to function instead of via icall function.
36241         Small performance fix in is_in_array function
36242                         
36243  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
36244
36245         c (mono_string_Internal_ctor_charp_int_int):
36246         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
36247         sindex < 0, throw ArgumentOutOfRangeException instead of
36248         ArgumentNullException.
36249
36250         Added new check for length == 0, however
36251         I need to make it return String.Empty from the C code.
36252         
36253         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
36254         that calculate the length for us here.
36255         
36256         (mono_string_Internal_ctor_sbytep_int_int): Replaced
36257         mono_string_new_utf16 with mono_string_new, since value is utf8.
36258
36259 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36260
36261         * object.c: register the object for finalization if needed.
36262         Allocate one more char in the string for the terminating 0 char.
36263
36264 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
36265
36266         * class.c, class.h, image.c: check if a type implemenst a destructor.
36267         Use the proper key for array class lookups.
36268         * icall.c: register the icalls in the System.GC class.
36269         * gc.c, gc.h: GC-related functions and icalls.
36270
36271 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36272
36273         * icall.c:
36274         * socket-io.c:
36275         * unicode.c: free some strings gotten from mono_string_to_utf8 and
36276         changed a couple of free () by g_free ().
36277
36278         * decimal.c: one-liner in the comments for decimal2string ().
36279
36280 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36281
36282         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
36283
36284 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
36285
36286         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
36287         * object.c (mono_runtime_invoke_array) : handle null in params
36288
36289 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36290
36291         * string-icalls.c: fixed bug in split (one off bug)
36292
36293 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36294
36295         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
36296         * icalls.c: added String::Equals as internal method
36297
36298 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
36299
36300         * threads.c: fixed bug in the double interlocked functions
36301
36302 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
36303
36304         * threads.c: implemented all of the new interlocked icalls.
36305         * string-icalls.c: fix a bug in insert.
36306         * icalls.c: added the icalls for interlocked, removed old string functions.
36307         
36308 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36309
36310         * loader.c: fix off-by-one error when reading argument names.
36311
36312 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36313
36314         * profiler.c: win32 counter implementation (untested).
36315         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
36316         (the latter needs testing and more complete impl. from win32 folks).
36317
36318 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
36319
36320         * object.c: mono_array_new_full workaround mono_array_class_get
36321         problem.
36322
36323 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36324
36325         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
36326         * object.h (mono_string_chars): Changed casting type.
36327
36328 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36329
36330         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
36331                            method signatures to use gunichar2 instead of gint16.
36332
36333 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
36334
36335         * object.h, object.c: domain-specific versions of mono_object_new and
36336         mono_array_new.
36337
36338 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
36339
36340         * object.c: changed String layout
36341
36342         * string-icalls.c (mono_string_Internal_ctor_chara): added
36343         internal string constructors.
36344
36345 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
36346
36347         * threads.c: pass 'this' to the thread start routine.
36348
36349 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36350
36351         * string-icalls.c: fix IndexOf and LastIndexOf. Now
36352         InternalCompareStr don't call twice mono_string_cmp_char for the last
36353         character. Improved performance in mono_string_cmp_char.
36354
36355 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
36356
36357         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
36358         code into its own library: libmonoruntime.
36359
36360 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
36361
36362         * object.h, object.c: changed array format so that szarrays do not
36363         require a bounds structure.
36364         * icall.c, appdomain.c: support for new szarray format.
36365
36366 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
36367
36368         * metadata.c: compare also the retuns type when comparing signatures:
36369         we didn't do this as an optimization since really overloaded methods
36370         must differ also in the arguments, but this doesn't work with
36371         low-level IL code (or when using explicit conversion operators: see
36372         bug#23498 for an example).
36373
36374 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
36375
36376         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
36377
36378 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
36379
36380         * icall.c: make MonoType::GetElementType its own icall.
36381
36382 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
36383
36384         * icall.c: remove MonoMethod_get_Name().
36385         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
36386         object.
36387
36388 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36389
36390         * string-icalls.c: optimized a few methods.
36391
36392 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
36393
36394         * icall.c: added all new string internal calls
36395         * string-icalls.c: added, new string internal call implementation.
36396         * object.c: added mono_string_new_size for allocating a string a size
36397
36398 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
36399
36400         * object.c (mono_object_isinst): use the same code as in the
36401         optimized x86 version.
36402
36403 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
36404
36405         * profiler.c: TSC-based timer code (faster and more accurate).
36406         Not hooked up in configure, yet (set USE_X86TSC to 1).
36407
36408 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
36409
36410         * profiler.c, profiler.h: track time spent compiling methods.
36411         * threads.c: track thread creation/destruction.
36412
36413 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
36414
36415         * profiler.c, profiler.h, profiler-private.h: profiling interface
36416         and sample implementation. Moved here so that it can be used also by
36417         the jit.
36418
36419 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
36420
36421         * reflection.c, reflection.h: keep types and other handles separate in
36422         the hash tables for referred tokens. Add guid for modules.
36423
36424 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
36425
36426         * assembly.c: fix bugs found with valgrind.
36427         * metadata.h, metadata.c: added mono_metadata_guid_heap().
36428
36429 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
36430
36431         * threads: added icall support for getting current domain for
36432                    the thread.
36433  
36434 2002-04-13  Martin Baulig  <martin@gnome.org>
36435
36436         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
36437         (MonoDebugVarInfo): Added `index' field for register based addresses.
36438         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
36439         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
36440         `MonoDebugVarInfo *params' and `guint32 this_offset' with
36441         `MonoDebugVarInfo *this_var'.
36442
36443         * debug-symfile.c (relocate_variable): New static function to write
36444         a location description for a local variable or method parameter.
36445
36446 2002-04-12  Martin Baulig  <martin@gnome.org>
36447
36448         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
36449         stack offset and begin/end scope address of a local variable.
36450         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
36451         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
36452         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
36453
36454         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
36455         Added new relocation types for start/end scope of a local variable.
36456
36457 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
36458
36459         * object.h: add mono_object_domain() macro.
36460         * reflection.c: handle typespecs.
36461         * icall.c: MonoMethod::get_Name() implementation.
36462
36463 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36464
36465         * icall.c: String::GetHashCode() icall implementation.
36466
36467 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36468
36469         * icall.c: String::IndexOfAny icall.
36470         * object.c, object.h: make array->max_length more useful.
36471         Intrduced mono_object_class() and mono_string_length() macros.
36472
36473 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
36474
36475         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
36476         instead of g_unichar_isdigit.
36477
36478 2002-04-11  Nick Drochak  <ndrochak@gol.com>
36479
36480         * icall.c: Implement a simple Double.ToString().
36481
36482 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
36483
36484         * appdomain.h: only io-layer.h is supposed to be included.
36485         * icall.c: explicitly import environ. Fix warning.
36486
36487 2002-04-10  Nick Drochak  <ndrochak@gol.com>
36488
36489         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
36490                 return true even if it's not Daylight Savings time.
36491                 Only return false for the case where the function isn't
36492                 implemented for a plaform (read Windows).
36493
36494 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
36495
36496         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
36497         data with a mutex.
36498
36499 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
36500
36501         * mempool.c (mono_mempool_alloc): only use g_malloc when
36502         absolutely necessary.
36503
36504 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36505
36506         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
36507
36508         * class.c (mono_class_vtable): use domain mempool to allocate vtable
36509         (mono_class_proxy_vtable): use domain mempool
36510
36511 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
36512
36513         * appdomain.h, appdomain.c: split initialization that requires the
36514         execution engine support into mono_runtime_init().
36515
36516 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
36517
36518         * class.c (mono_class_init): don't include vtable inside MonoClass
36519         to save some memory, gather some statistics.
36520         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
36521
36522 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36523
36524         * icall.c: internalcall implementation for ValueType.Equals().
36525
36526 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
36527
36528         * object.c (mono_message_init): moved 
36529         (mono_runtime_exec_main): new arch. independent impl.
36530         (mono_runtime_invoke_array): new method - like
36531         mono_runtime_invoke, but you can pass an array of objects.
36532         (mono_remoting_invoke): new arch. independent impl.
36533         (mono_message_invoke): new arch. independent impl.
36534         (mono_runtime_class_init): new arch. independent impl.
36535         (mono_runtime_object_init): new arch. independent impl.
36536
36537 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36538
36539         * metadata.c, object.c, reflection.c: documented the exported
36540         functions.
36541
36542 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
36543
36544         * icall.c: simpler code to pass the assembly builder data to corlib.
36545         Implement GetNestedTypes() internalcall.
36546
36547 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36548
36549         * class.c: warn if a type can't be loaded.
36550
36551 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
36552
36553         * image.h: typedef MonoImageOpenStatus
36554         * types.h: removed unused file
36555         
36556 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
36557
36558         * icall.c: Enum_ToObject accepts enum value arguments.
36559
36560 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
36561
36562         * class.c: move initialization of properties, events and nested
36563         classes, so that they happen for interfaces, too.
36564
36565 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
36566
36567         * icall.c: cleanup some ugly casts in Array_SetValue*.
36568
36569 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36570
36571         * icall.c: the values array fro enums is of the correct type, now.
36572         Implement (correctly) getFullName instead of assQualifiedName for
36573         MonoType.
36574         * reflection.h, reflection.c: added mono_type_get_name ().
36575
36576 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36577
36578         * assembly.c, image.h: for each MonoImage, record from wich assembly
36579         it was loaded.
36580         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
36581         Make Type.Assembly work.
36582
36583 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
36584
36585         * debug-symfile.h: use char* instead of gpointer to avoid
36586         unnecessary casts.
36587
36588         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36589
36590         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36591         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36592
36593 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36594
36595         * icall.c (mono_message_init): impl. (code cleanup)
36596         (ves_icall_InternalExecute): impl. FieldGetter
36597
36598         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36599         defined we call all (non-static)methods through the vtable. 
36600
36601 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36602
36603         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36604         finalizer even though the memory is still referenced (and the chunk of
36605         memory is not freed).
36606
36607 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36608
36609         * assembly.c: fix brokeness.
36610
36611 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36612
36613         * class.c: kill some warnings. Check explicit interface method
36614         implementation also without considering the namespace.
36615         Load also literal strings in static class data.
36616
36617 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36618
36619         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36620         (default_assembly_name_resolver): Make the resolver take the
36621         "base" directory where the assembly was originally defined, so we
36622         can load DLLs that are in the same directory as the assembly that
36623         is being referenced.
36624
36625 2002-03-28  Dick Porter  <dick@ximian.com>
36626
36627         * file-io.h: 
36628         * file-io.c:
36629         * socket-io.c: 
36630         * unicode.h: 
36631         * unicode.c: Warning cleanups
36632
36633 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36634
36635         * object.h, reflection.h: use the correct type instead of MonoObject.
36636
36637 2002-03-28  Martin Baulig  <martin@gnome.org>
36638
36639         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36640         (mono_debug_update_symbol_file): Initialize classes if necessary.
36641
36642 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36643
36644         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36645         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36646
36647 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36648
36649         * assembly.h: fix function prototype.
36650         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36651         * mono-endian.h: use const cast.
36652
36653 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36654
36655         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36656
36657 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36658
36659         * loader.c: don't assert when a typeref can't be loaded, give
36660         a chance to the runtime to trow an exception instead.
36661         * loader.h: fix warning.
36662
36663 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36664
36665         * class.c (mono_class_proxy_vtable): added proxy support
36666
36667 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36668
36669         * icall.c: removed last of PAL calls, added System.Environment
36670         * file-io.h, file-io.c: MonoIO implementation
36671         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36672
36673 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36674
36675         * appdomain.c: do not use the byte marker in ldstr table lookup.
36676         * debug-helpers.c: allow two ':' to separate class and method name.
36677         * object.c: allocate arrays bounds with the GC, too.
36678         * verify: add a few more checks.
36679
36680 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36681
36682         * reflection.c: output also literal strings. Allocate parameter data
36683         with GC_malloc() (thanks, Martin, for catching this!).
36684
36685 2002-03-26  Martin Baulig  <martin@gnome.org>
36686
36687         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36688         include the `this' offset in the `param_offsets'.
36689
36690 2002-03-25  Martin Baulig  <martin@gnome.org>
36691
36692         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36693         mono_debug_get_class() function to get the classes. Added new
36694         relocation types for arrays and strings.
36695         (mono_debug_get_class): New static function to search in all
36696         referenced assemblies for a metadata token.
36697
36698         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36699
36700 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36701
36702         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36703         hold gc-allocated objects. Make the string heap a stream like the
36704         others. Removed duplicated code when writing stream info.
36705         Added asserts to catch possible buffer overflows. Set the sorted map
36706         for tables that need sorting. Added some documentation.
36707
36708 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36709
36710         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36711         for interned strings and vtables.
36712
36713 2002-03-24  Martin Baulig  <martin@gnome.org>
36714
36715         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36716         it in the array since it was created with g_slist_prepend().
36717
36718 2002-03-24  Martin Baulig  <martin@gnome.org>
36719
36720         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36721         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36722         (mono_debug_method_from_token): Renamed to
36723         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36724         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36725
36726         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36727         relocation types.
36728
36729         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36730
36731 2002-03-24  Martin Baulig  <martin@gnome.org>
36732
36733         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36734         (mono_debug_method_from_token): New func.
36735
36736         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36737         New interncall, calls mono_debug_local_type_from_signature().
36738         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36739         calls mono_debug_method_from_token().
36740
36741 2002-03-23  Martin Baulig  <martin@gnome.org>
36742
36743         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36744         specifies the number of bytes to be converted, not the array size.
36745         Return the number of chars, not the number of bytes.
36746         (ves_icall_iconv_get_chars): The `byteCount' argument
36747         specifies the number of bytes to be converted, not the array size.
36748
36749 2002-03-23  Martin Baulig  <martin@gnome.org>
36750
36751         * reflection.h (MonoReflectionSigHelper): New type.
36752
36753         * reflection.c (mono_reflection_sighelper_get_signature_local),
36754         (mono_reflection_sighelper_get_signature_local): New functions.
36755
36756         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36757         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36758         interncalls.
36759
36760 2002-03-23  Martin Baulig  <martin@gnome.org>
36761
36762         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36763         is_writeable is set.
36764         (mono_raw_buffer_update): New function to write the modified map
36765         back to disk.
36766
36767         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36768
36769         * debug-symfile.c (mono_debug_update_symbol_file): Call
36770         mono_raw_buffer_update() when done writing.
36771
36772 2002-03-23  Martin Baulig  <martin@gnome.org>
36773
36774         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36775
36776         * debug-symfile.c: Added support for arguments and local variables.
36777
36778 2002-03-23  Dick Porter  <dick@ximian.com>
36779
36780         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36781         protected by ifdefs, hence breaking the w32 build.
36782
36783 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36784
36785         * object.c: implement is_interned() the right way.
36786
36787 2002-03-21  Martin Baulig  <martin@gnome.org>
36788
36789         * debug-symfile.[ch]: New files to handle debugging information
36790         files. There's also support to dynamically update these symbol
36791         files to include machine dependent information.
36792
36793 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36794
36795         * threads.c (mono_thread_create): new function to create thread
36796         from C
36797
36798 2002-03-20  Martin Baulig  <martin@gnome.org>
36799
36800         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36801         method is a constructor.
36802         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36803         points to ves_icall_InternalInvoke().
36804
36805 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36806
36807         * file-io.c: Flush shouldn't throw exceptions.
36808
36809 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36810
36811         * file-io.c: FileStream flush support; FileSetLength now
36812         restores file pointer.
36813
36814 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36815
36816         * class.c: set image for pointer classes.
36817
36818 2002/03/19  Nick Drochak <ndrochak@gol.com>
36819
36820         * sysmath.c: Forgot one.
36821
36822 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36823
36824         * sysmath.c: Avoid redefining existing names.
36825
36826 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36827
36828         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36829         handled by runtime as icall rather than dllimport from libm.so
36830         * file-io.c, file-io.h: fixed handle argument type.
36831
36832 2002-03-18  Dick Porter  <dick@ximian.com>
36833
36834         * reflection.c (mono_image_get_type_info): rename interface to
36835         iface, because of "#define interface struct" on windows.
36836
36837 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36838
36839         * class.c, class.h: rename and export mono_ptr_class_get().
36840         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36841         * reflection.c, reflection.h, icall.c: better/saner type name
36842         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36843         method signatures.
36844
36845 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36846
36847         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36848
36849         * icall.c (ves_icall_InternalInvoke): impl.
36850
36851 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36852
36853         * reflection.c: output the interface map table, too.
36854
36855 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36856
36857         * class.c (class_compute_field_layout): separate computation of 
36858         static field layout
36859
36860 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36861
36862         * icall.c: added System.Buffer support.
36863         * file-io.c: moved file icalls from PAL to FileStream.
36864
36865 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36866
36867         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36868
36869 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36870
36871         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36872
36873 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36874
36875         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36876
36877 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36878
36879         * debug-helpers.{c,h}: moved here from monograph some useful functions
36880         to locate a method by name/signature in a class or image. Included
36881         also a small and flexible IL disassembler.
36882
36883 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36884
36885         * reflection.c: fixup tokens in methods with small header size, too.
36886
36887 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36888
36889         * object.c (mono_string_to_utf8): remove assert(!error), instead
36890         print a warning. 
36891
36892 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36893
36894         * icall.c: update to the new mono_Array_class_get interface.
36895
36896 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36897
36898         * appdomain.c, object.c: Boehm-GC enable.
36899         * icall.c: make get_data_chunk() support split data requests.
36900         Ensure a class is initialized in more cases. Return only the first
36901         property found in GetProperties() or the compiler gets confused. 
36902         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36903         * reflection.h, reflection.c: add fixup mechanism for field and method
36904         tokens. Initialize assembly->typeref in a single place. Output
36905         properties after events. Support custom attributes for events, too.
36906         Typo fix for paramter custom attrs.
36907
36908 2002-03-07  Martin Baulig  <martin@gnome.org>
36909
36910         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36911
36912 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36913
36914         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36915
36916 2002-03-06  Martin Baulig  <martin@gnome.org>
36917
36918         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36919         non-zero lower bounds. See testcases #F10-#F13.
36920
36921 2002-03-05  Martin Baulig  <martin@gnome.org>
36922
36923         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36924
36925         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36926         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36927         here.
36928         (ves_icall_System_Array_SetValue): Likewise.
36929         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36930         as argument and does the actual work. This function is used when copying a
36931         multi-dimensional array.
36932         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36933         now do all the widening conversions of value types.
36934         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36935
36936 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36937
36938         * class.c: remove some magic numbers and use the smbolic names,
36939         instead. Added init_events() to load event info at class init time.
36940         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36941         and mono_metadata_methods_from_event().
36942         * reflection.h, reflection.c: added support for writing out the evnets
36943         related information.
36944
36945 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36946
36947         * reflection.h, icall.c: use a different method (GetInterfaces)
36948         to gather interface info and add isbyref, isprimitive and
36949         ispointer to the ves_icall_get_type_info() return value.
36950
36951 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36952
36953         * class.h: stared adding support for events.
36954         * icall.c: split find_members implementation. Added debug icall to get
36955         the address of an object.
36956         * reflection.c: handle TypeBuilders in mono_type_get_object().
36957
36958 2002-03-01  Martin Baulig  <martin@gnome.org>
36959
36960         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36961         ArgumentOutOfRangeException(), not an ArgumentException().
36962         (ves_icall_System_Array_GetLowerBound): Likewise.
36963         (ves_icall_System_Array_GetValue): Improved argument checking.
36964         (ves_icall_System_Array_SetValue): Improved argument checking.
36965
36966 2002-03-01  Martin Baulig  <martin@gnome.org>
36967
36968         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36969         called with invalid arguments rather than just dying with g_assert().
36970         (ves_icall_System_Array_SetValue): Likewise.
36971         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36972         raise a NotImplementedException instead.
36973         (ves_icall_System_Array_GetLength): Added argument checking.
36974         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36975
36976 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36977
36978         * object.h (mono_assert): new macros mono_assert and
36979         mono_assert_not_reached
36980
36981 2002-02-28  Martin Baulig  <martin@gnome.org>
36982
36983         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36984         and "System::String::IsInterned" to "System::String::_IsInterned".
36985
36986 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36987
36988         * icall.c: remove hacks for typebuilder. Added icall to create a
36989         modified type from a tybebuilder.
36990         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36991         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36992         to create a backing MonoClass for a TypeBuilder.
36993
36994 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36995
36996         * class.c, class.h: more refactoring of class init.
36997         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36998
36999 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
37000
37001         * marshal.c, marshal.h: start of marshaling interface.
37002
37003 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
37004
37005         * icall.c: fix order in assembly qualified name icall.
37006
37007 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
37008
37009         * class.c: do not free str, since we store it in the hash table.
37010         * reflection.h: add label field to MonoILExceptionInfo.
37011         * reflection.c: handle references to more than one assembly. Handle
37012         case when there isn't a module created in the assembly.
37013
37014 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
37015
37016         * class.c: Fix typo. Start refactoring of class init code.
37017
37018 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
37019
37020         * appdomain.c: exit with 1 on error.
37021         * class.c: we already have the name in MonoClassField.
37022         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
37023         MonoStreamHeader instead of an offset of image->raw_metadata.
37024
37025 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
37026
37027         * appdomain.c (mono_init): Be even more descriptive about the error.
37028
37029 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
37030
37031         * appdomain.c: give the user an informative message when corlib can't
37032         be loaded.
37033
37034 2002-02-26  Martin Baulig  <martin@gnome.org>
37035
37036         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
37037         New icall to get the time zone data.
37038
37039 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
37040
37041         * reflection.c: set virtual and raw size of section correctly.
37042         * threads.c: transfer domain information to newly created threads.
37043
37044 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
37045
37046         * class.c: when instancing a class in a domain, load the default
37047         vaules for static fields from the constant table. Fix System.Enum to
37048         not be an enum.
37049         * icall.c: implement Object::GetType() internalcall. Implemented
37050         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
37051         Fixed checking of binding flags in find_members().
37052         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
37053         * reflection.c: handle enumerations when writing to the constant
37054         table. Use a different object cache for types.
37055
37056
37057 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
37058
37059         * object.c (mono_object_isinst): fix for arrays
37060
37061         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
37062
37063 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
37064
37065         * object.c: don't use mprotect ()  and fix intern pool hash table
37066         lookup for big endian systems.
37067
37068 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
37069
37070         * icall.c: change type_is_subtype_of () signature.
37071
37072 2002-02-21  Mark Crichton  <crichton@gimp.org>
37073
37074         * rand.c, rand.h: Added random number generator for
37075         System.Security.Cryptography classes.
37076
37077         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
37078
37079         * icall.c: Added System.Security.Cryptography calls.
37080
37081 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
37082
37083         * class.c, icall.c, metadata.c: better support for pointer types.
37084         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
37085         * reflection.c: Add support for getting custom attrs for properties
37086         and simplify some code.
37087
37088 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
37089
37090         * icall.c: change getToken () and add custom attribute GetBlob()helper
37091         method.
37092         * reflection.h: add custom attrs array to the reflection builder structures.
37093         * reflection.c: encode and emit custom attributes for all the relevant
37094         reflection objects. Cache fieldref and methodref tokens. Change
37095         mono_image_create_token() interface to take a MonoDynamicAssembly.
37096         More complete custom attributes decoder. Load custom attributes for
37097         Assembly, Field, Method and Constructor objects, too. Make the
37098         returned array an Attribute[] one, not object[]. Added
37099         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
37100         custom attribute constructor.
37101
37102 2002-02-20  Dick Porter  <dick@ximian.com>
37103
37104         * icall.c:
37105         * rawbuffer.c:
37106         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
37107         problem code out for now).
37108
37109 2002-02-19  Radek Doulik  <rodo@ximian.com>
37110
37111         * object.c (mono_ldstr): use hash table to avoid multiple swapping
37112
37113 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
37114
37115         * icall.c: register the GetCustomAttributes method.
37116         * object.c, object.h: add mono_string_new_len ().
37117         * reflection.h, reflection.c: added mono_runtime_invoke(),
37118         mono_install_runtime_invoke(). Added
37119         mono_reflection_get_custom_attrs () to load custom attributes and
37120         create the attribute objects.
37121
37122 2002-02-19  Dick Porter  <dick@ximian.com>
37123         * threads-dummy-types.c:
37124         * threads-dummy-types.h:
37125         * threads-dummy.c:
37126         * threads-dummy.h:
37127         * threads-pthread-types.c:
37128         * threads-pthread-types.h:
37129         * threads-pthread.c:
37130         * threads-pthread.h:  Deleted obsolete files
37131
37132 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
37133
37134         * class.c (mono_class_vtable): runtime init the class when we
37135         allocate static class data.
37136
37137         * icall.c (ves_icall_System_Array_SetValue): check for null values.
37138
37139         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
37140         and String - but we will need generic marshalling support in the
37141         future. 
37142         (mono_init): set the domain name in a ms compatible way
37143
37144         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
37145         String[].
37146
37147 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
37148
37149         * object.c (mono_array_clone): use alloca() instead of g_malloc  
37150         for sizes
37151
37152         * appdomain.c (mono_domain_unload): impl.
37153
37154 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
37155
37156         * appdomain.c, object.c: fix intern pool implementation.
37157         * class.c: fix alignment code.
37158
37159 2002-02-16  Radek Doulik  <rodo@ximian.com>
37160
37161         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
37162         and s2 > s1, just copy lower bytes to be compatible with little
37163         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
37164         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
37165
37166         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
37167         force big_endian to be 1 for big endian machines 
37168         (ves_icall_iconv_new_decoder): ditto
37169
37170 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
37171
37172         * socket-io.c (convert_sockopt_level_and_name): If the system
37173         doesn't define SOL_IP or SOL_TCP, get them by hand using
37174         getprotobyname() and caching the values (because this could be a
37175         slow operation).
37176         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
37177         Use the appropriate struct when the system does support it. Ie,
37178         not all systems have struct ip_mreqn so use struct ip_mreq when
37179         appropriate.
37180
37181 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
37182
37183         * reflection.c: handle finally clauses.
37184
37185 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
37186
37187         * socket-io.c: use g_snprintf() instead of snprintf.
37188
37189 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37190
37191         * reflection.c (mono_param_get_objects): Cast second argument to
37192         mono_method_get_param_names to a const char** to silence the
37193         compiler warning.
37194
37195         * appdomain.c (mono_domain_assembly_open): Put parens around the
37196         truth statement in the for-loop.
37197
37198         * unicode.c (iconv_convert): Got rid of a compiler warning about
37199         int i being unused when the system has a new iconv.
37200         (iconv_get_length): Same.
37201
37202         * image.c (load_class_names): Cast the second argument to
37203         g_hash_table_insert() to char* to hush compiler warnings about the
37204         arg being a const.
37205         (mono_image_open): Same here.
37206
37207         * socket-io.c: Don't conditionally include sys/filio.h or
37208         sys/sockio.h here anymore since we now get them from
37209         io-layer/io-layer.h
37210         (inet_pton): If the system doesn't support inet_aton, implement
37211         using inet_addr and also #define INADDR_NONE if it isn't defined
37212         by the system.
37213
37214 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
37215
37216         * metadata.c, metadata.h: added function to get packing and size info
37217         of a typedef.
37218         * reflection.h, reflection.c: handle field RVA data. Save info about
37219         the table layout if needed. Assign typedef indexes to all the types
37220         before dumping the info about them to avoid forward reference problems.
37221
37222 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
37223
37224         * socket-io.c (convert_sockopt_level_and_name): ifdef
37225         SO_ACCEPTCONN because it is not defined on my system (old debian)
37226
37227 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
37228
37229         * opcode.c: use stddef.h to get NULL.
37230
37231 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
37232
37233         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
37234         for FIONBIO, FIONREAD and SIOCATMARK.
37235         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
37236         define INADDR_NONE and besides, inet_addr() is deprecated and
37237         should not be used. Use inet_pton() instead - it also has the
37238         added bonus that it can easily handle IPv6 addresses as well.
37239         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
37240
37241 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
37242
37243         * decimal.c: remove _MSC_VER conditional.
37244
37245 2002-02-13  Dick Porter  <dick@ximian.com>
37246
37247         * socket-io.c: 
37248         * icall.c: Internal calls for Blocking, Select, Shutdown,
37249         GetSocketOption and SetSocketOption
37250
37251 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37252
37253         * assembly.cs: better resolver: use it instead of some kludgy
37254         code.
37255
37256 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
37257
37258         * reflection.c: the best way to speed-up the compiler is to avoid
37259         infinite loops.
37260
37261 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
37262
37263         * class.c (mono_class_vtable): changed the object layout
37264         (obj->vtable->class). 
37265         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
37266
37267 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
37268
37269         * assembly.c: look for assemblies in the assembly dir, too.
37270
37271 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37272
37273         * class.c: fix thinko in mono_class_from_type().
37274
37275 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
37276
37277         * exception.h, exception.c: added TypeLoadException.
37278         * object.h, object.c: added mono_array_clone ().
37279         * icall.c: handle throwOnError in AssemblyGetType().
37280         Added Array.Clone().
37281         * opcode.h, opcode.c: use a single value for the opcode val.
37282         Compile fix for non-gcc compilers.
37283
37284 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
37285
37286         * opcodes.c, opcodes.h: export interesting info about opcodes.
37287
37288 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
37289
37290         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
37291         icalls. 
37292
37293         * class.c (class_compute_field_layout): set element_class for enums
37294         (mono_class_create_from_typedef): set element_class for normal classes
37295
37296         * icall.c (ves_icall_System_Enum_get_value): impl.
37297
37298         * class.c (mono_class_create_from_typedef): do not set valuetype
37299         flag for System.ValueType and System.Enum
37300
37301 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
37302
37303         * unicode.c (iconv_convert): fix big endian problem.
37304
37305 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
37306
37307         * class.c: add asserts if we are ever going to scribble over memory.
37308         * socket-io.c: not all systems have AF_IRDA defined.
37309
37310 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
37311
37312         * class.c (class_compute_field_layout): do not consider static
37313         fields to compute alignment
37314
37315 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
37316
37317         * appdomain.c (mono_appdomain_get): impl.
37318         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
37319
37320 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
37321
37322         * icall.c: ignore "file://" prefix when loading an assembly.
37323
37324 2002-01-23  Dick Porter  <dick@ximian.com>
37325
37326         * socket-io.c:
37327         * icall.c:
37328         * Makefile.am: Added socket support
37329
37330 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37331
37332         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
37333         code back.  This should return the assemblies that are loaded by
37334         the runtime on behalf of an application domain. 
37335
37336         The current implementation is still broken, it just returns every
37337         assembly loaded, but until we get real applications domain this
37338         will do.
37339
37340 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
37341
37342         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
37343         AppDomain object.
37344
37345 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
37346
37347         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
37348         the mono_class_from_name lookup.
37349         (ves_icall_get_parameter_info): ditto.
37350         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
37351         method.
37352         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
37353
37354 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
37355
37356         * class.c: load also nested classes on class init.
37357         System.ValueType instance methods gets passed boxed
37358         values, unless methods in derived classed that get a pointer to the
37359         data.
37360         * icall.c: use better name parsing code in GetType().
37361         * image.c, image.h: add mono_image_loaded ().
37362         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
37363         * reflection.c, reflection.h: added mono_reflection_parse_type().
37364
37365 2002-01-22  Veronica De Santis <veron78@interfree.it>
37366
37367         * icall.c : Added mapping of internal calls for Manual and Auto reset events
37368         * threads.c : Added the implementation of internal calls for events
37369         * threads.h : Added prototypes of internal calls for events
37370         
37371 2002-01-21  Radek Doulik  <rodo@ximian.com>
37372
37373         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
37374
37375 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
37376
37377         * class.c (mono_class_init): set min_align to 1 (instead of 0)
37378         (mono_class_value_size): use min_align
37379
37380 2002-01-20  Dick Porter  <dick@ximian.com>
37381
37382         * threads.h:
37383         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
37384         so it compiles on w32.
37385
37386 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
37387
37388         * metadata.c (mono_type_stack_size): impl.
37389
37390         * class.c (mono_class_get_field): impl. memberref token
37391
37392 2002-01-16 Veronica De Santis <veron78@@interfree.it>
37393
37394         * icall.h : Added the internal calls mapping for CreateMutex_internal
37395                     and ReleaseMutex_internal.
37396         * threads.h : Added the prototype of mutexes internal calls.
37397         * threads.c : Added the implementations of mutexes internal calls.
37398
37399 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
37400
37401         * metaparse.h: removed unused file.
37402         * reflection.c, reflection.h: added stream_data_align () function 
37403         to align data in streams and keep stream aligned. Add support for
37404         exception support in method headers.
37405
37406 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
37407
37408         * unicode.c: make iconv_convert () return the number of bytess written
37409         in the output buffer.
37410
37411 2002-01-15  Dick Porter  <dick@ximian.com>
37412         * threads.c: Make the runtime's idea of infinite timeouts coincide
37413         with the class library's
37414
37415         Fix a particularly egregious bug in mono_thread_cleanup(). That
37416         code was so utterly bogus it must have been written on a Monday.
37417
37418 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
37419
37420         * reflection.h: add subtypes field to TypeBuilder.
37421         * reflection.c: encode constants for literal fields.
37422         Handle subtypes. Fix user string token (and add a zero byte)
37423         at the end.
37424         
37425 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
37426
37427         * class.c (mono_class_init): bug fix: assign slot numbers for
37428         abstract methods.
37429
37430 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
37431
37432         * reflection.c: don't try to output a code RVA for abstract methods.
37433         Small fixes for method header format. Output parameter info to the
37434         ParamDef table. Save method overriding info to MethodImpl table.
37435         Fix property support. Allow typedef.extends to be a type in the
37436         building assembly.
37437         * verify.c: fix off-by-one error.
37438
37439 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
37440
37441         * class.c: fix mono_class_from_mono_type () for szarray types.
37442         Remove unused cache check in mono_class_from_type_spec().
37443         * icall.c: *type_from_name () functions handle simple arrays and byref.
37444         * reflection.c: handle byref and szarray types. Handle methods without
37445         body (gets P/Invoke compilation working). Handle types and fields in
37446         get_token ().
37447         * reflection.h: add rank to MonoTypeInfo.
37448
37449 2002-01-10  Dick Porter  <dick@ximian.com>
37450
37451         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
37452         internal calls
37453
37454 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
37455
37456         * icall.c: initialize class in type_from_handle ().
37457         Loop also in parent classes for get_method ().
37458         * reflection.c: properly encode class and valuetype types.
37459         Start on encoding TypeBuilder types. Handle fieldrefs.
37460         Use correct length when registering a user string.
37461         Handle ConstructorBuilder and MonoMethod in get_token ().
37462         Make mono_type_get_object () aware of cached types.
37463         * object.c: back out change to mono_string_new ().
37464
37465 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
37466         * object.c: mono_string_new should return a NULL when the string 
37467         passed in is NULL -- not try to deference it.
37468         
37469 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
37470
37471         * icall.c: hack to make IsSubType work for TypeBuilders.
37472         * reflection.c: emit constructors before methods.
37473         Retrieve param names in mono_param_get_objects().
37474
37475 2002/01/05  Nick Drochak  <ndrochak@gol.com>
37476
37477         * Makefile.am: fix list of headers and sources so automake 1.5
37478         doesn't complain. Removed \# at end of list.
37479
37480 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
37481
37482         * reflection.c: get token for a method ref. Set return type of
37483         constructor to void.
37484         * loader.c: debug message.
37485         * class.c: typo fix.
37486
37487 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
37488
37489         * icall.c: fix array init with rank > 1. FindMembers
37490         loops in parent class as well.
37491         * image.c: do not insert nested types in name cache.
37492         * reflection.c: warning fix.
37493         * reflection.h: add override method (for interface impl).
37494
37495 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
37496
37497         * metadata.c: fix customattr decoding.
37498
37499 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
37500
37501         * rawbuffer.cs: Added native Win32 implementation, avoids using
37502         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
37503
37504 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
37505
37506         * class.c: make the low-level routines handle the cache.
37507
37508 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
37509
37510         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
37511
37512 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
37513
37514         * class.c: fix mono_array_element_size() for objects.
37515         * class.h, class.c: add properties to MonoClass and load them
37516         at init time.
37517         * icall.c: check with isinst() when assigning a value to an array
37518         instead of requiring the classes to match exactly.
37519         Implemented icall for System.Type::GetType().
37520         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
37521         enums. Handle bindingflags when looking for methods and fields.
37522         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
37523         and mono_metadata_methods_from_property().
37524         * reflection.h, reflection.c: added structures for propreties,
37525         parameters and enums. Implemented mono_property_get_object() and
37526         mono_param_get_objects().
37527
37528 2001-12-18  Dick Porter  <dick@ximian.com>
37529
37530         * file-io.c: Use mono_string_to_utf16() instead of
37531         mono_string_chars()
37532
37533         * object.c: Added mono_string_to_utf16(), which copies the non
37534         NULL-terminated MonoString into a new double-null-terminated
37535         buffer.
37536
37537 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
37538
37539         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
37540
37541 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
37542
37543         * file-io.c: raise exceptions if handle is invalid.
37544
37545 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
37546
37547         * assembly.c: yet another check for mscorlib.
37548         * class.c, class.h: load nesting info for classes.
37549         * icall.c: many new functions to support the Reflection classes.
37550         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
37551         * reflection.h, reflection.c: mono_image_create_token(),
37552         mono_assembly_get_object(), mono_type_get_object(),
37553         mono_method_get_object(), mono_field_get_object(): methods to return
37554         objects that parallel the C representation of assemblies, types,
37555         methods, fields.
37556
37557 2001-12-11  Dick Porter  <dick@ximian.com>
37558
37559         * icall.c:
37560         * file-io.c: Internal calls for file IO.
37561
37562 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
37563
37564         * tabledefs.h: missing FileAttributes.
37565         * verify.h, verify.c: use is_valid_string () to simplify and check for
37566         valid strings more correctly. Fix warnings and speeling.
37567         Check more tables: Filed, File, ModuleRef, StandAloneSig.
37568         Check code: branches, maxstack, method calls.
37569
37570 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
37571
37572         * object.c (mono_object_allocate): removed static, so that the jit
37573         can allocate value types.
37574
37575         * icall.c (ves_icall_System_DateTime_GetNow): impl.
37576
37577 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37578
37579         * class.c: init enum types right away and register the
37580         token->MonoClass map in mono_class_create_from_typedef ().
37581         * verify.h, verify.c: first cut of the verifier.
37582         * pedump.c: add --verify switch to verify metadata tables.
37583         * tabledefs.h: add some missing enums.
37584
37585 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
37586
37587         * class.c (mono_install_runtime_class_init): impl.
37588         (mono_class_init): renamed mono_class_metadata_init to
37589         mono_class_init, also removed the metadata_inited flag
37590
37591         * object.c (mono_object_isinst): use faster algorithm
37592
37593 2001-11-30  Radek Doulik  <rodo@ximian.com>
37594
37595         * mono-endian.h: reverted last change
37596         added function prototypes
37597
37598         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37599         add mono-endian.c back
37600
37601         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37602         for unaligned access, I've mistaked it with endianess. I am
37603         sorry.
37604         (mono_read16): fix reverted endianess
37605         (mono_read64): ditto
37606         (mono_read32): ditto
37607
37608 2001-11-30  Dick Porter  <dick@ximian.com>
37609
37610         * exception.c: Implement mono_exception_from_name()
37611
37612 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37613
37614         * metadata.h, metadata.c: remove params_size and locals_size and their
37615         calculation from the metadata code: they are only usefult to the
37616         interp.
37617
37618 2001-11-29  Radek Doulik  <rodo@ximian.com>
37619
37620         * object.c (mono_ldstr): swap bytes here, it's probably not the
37621         best place, but works for me now, I'll redo it once I know mono
37622         better, also note that I add PROT_WRITE and don't reset back, also
37623         note that it's only affects big endians, so x86 should be OK
37624
37625         * mono-endian.h (read16): use just glib macros for both endians
37626
37627         * mono-endian.c: removed as glib macros are used in in
37628         mono-endian.h so we don't need to care about endianess for read
37629         macros as glib does that for us already
37630
37631 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37632
37633         * class.h, class.h: take minimum alignment into consideration so
37634         that the fields of a class remain aligned also when in an array.
37635
37636 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37637
37638         * loader.h, loader.c: add mono_method_get_param_names().
37639         * class.c: 0-init class fields.
37640
37641 2001-11-26  Dick Porter  <dick@ximian.com>
37642
37643         * icall.c:
37644         * threads-types.h:
37645         * threads.c: New file that handles System.Threading on all platforms
37646
37647         * object.c: 
37648         * object.h: Remove the synchronisation struct from MonoObject,
37649         replace it with a pointer that gets initialised on demand
37650
37651         * Makefile.am: Replace all the system-specific threading code with
37652         a single file that uses the new wrapper library
37653
37654 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37655
37656         * class.c, class.h: add mono_install_trampoline() so that the runtime
37657         can register a function to create a trampoline: removes the ugly
37658         requirement that a runtime needed to export arch_create_jit_trampoline.
37659         * object.h, object.c: added mono_install_handler() so that the runtime
37660         can install an handler for exceptions generated in C code (with
37661         mono_raise_exception()). Added C struct for System.Delegate.
37662         * pedump.c: removed arch_create_jit_trampoline.
37663         * reflection.c: some cleanups to allow registering user strings and
37664         later getting a token for methodrefs and fieldrefs before the assembly
37665         is built.
37666         * row-indexes.h: updates and fixes from the new ECMA specs.
37667
37668 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37669
37670         * class.h, class.c: add enum_basetype field to MonoClass.
37671         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37672         to get index in the constant table reated to a field, param or
37673         property.
37674         * reflection.h, reflection.c: handle constructors. Set public-key and
37675         version number of the built assembly to 0.
37676         * row-indexes.h: update from new ECMA spec.
37677
37678 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37679
37680         * class.h, class.c: add a max_interface_id to MonoClass.
37681         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37682         since it's used to do that. Added mono_type_type_from_obj().
37683         Make GetType() return NULL instead of segfaulting if the type was not
37684         found. Handle simple arrays in assQualifiedName.
37685         * object.h: add a struct to represent an Exception.
37686         * reflection.c: output call convention in method signature.
37687         Add code to support P/Invoke methods and fixed offsets for fields.
37688
37689 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37690
37691         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37692         the value.
37693         * icall.c: use mono_array_addr instead of array->vector: fixes the
37694         reflection image writing.
37695         * reflection.c: init call convention byte to 0 in method signature.
37696         Encode the property signature. Don't output property-related methods
37697         twice. Really process the properties for a type (don't cast a field to
37698         a property, my mom always told me that).
37699         Fix 64 bit issues in pointer alignment in a different and more
37700         readable way.
37701
37702 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37703
37704         * loader.h: Removed type class from MonoDefaults, added monotype
37705
37706         * loader.c: Loaded MonoType, removed loading of Type
37707
37708         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37709         and fills in System.Type._impl with a RuntimeTypeHandle rather
37710         than the actual MonoClass *
37711
37712         (ves_icall_type_from_handle): change from type_class to
37713         monotype_class
37714
37715         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37716         implemented
37717
37718         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37719         implemented
37720
37721         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37722
37723         (ves_icall_System_Reflection_Assembly_GetType): implemented
37724
37725         (ves_icall_System_MonoType_assQualifiedName): implemented
37726
37727         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37728
37729 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37730
37731         * assembly.c (mono_assembly_open): Implement a cache for the
37732         assemblies. 
37733
37734         (mono_assembly_close): only destroy the assembly when the last
37735         reference is gone.
37736         
37737 2001-11-09  Dick Porter  <dick@ximian.com>
37738
37739         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37740
37741 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37742
37743         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37744
37745 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37746
37747         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37748         from Martin Weindel.
37749         * object.h: add mono_string_chars ().
37750
37751 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37752
37753         * reflection.c (build_compressed_metadata): Eliminates warnings
37754         and uses 64-bit clean code.
37755
37756         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37757         (mono_type_equal): Change signature to eliminate warnings.
37758
37759 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37760
37761         * icall.c, loader.c: remove the internalcall array constructors.
37762         Changes to match the new MonoArray structure.
37763         * object.h, object.c: an array object doesn't allocate an extra
37764         vector. Add mono_array_new_full () to create jagged arrays easily.
37765
37766 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37767
37768         * metadata.h, metadata.c: add mono_metadata_field_info () to
37769         retreive all the info about a field from vairous tables.
37770         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37771         * class.h, class.c: augment MonoClassField with more info.
37772         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37773         policy and load a field's RVA if needed.
37774
37775 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37776
37777         * class.c (mono_class_metadata_init): create a trampoline for all
37778         virtual functions instead of actually compiling them.
37779
37780 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37781
37782         * class.h, class.c: include name in MonoClassField.
37783         * class.c: fix fundamental type of System.Object and System.String.
37784         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37785         tokens in ldtoken.
37786         * icall.c: remove internalcalls for the Reflection stuff that is now
37787         done in C# code.
37788         * loader.c: mono_field_from_memberref () implementation.
37789         * mono-endian.c: thinko (s/struct/union/g).
37790         * object.c, object.h: make the mono_string_* prototypes actually use
37791         MonoString instead of MonoObject.
37792         * reflection.c, reflection.h: updates for changes in the reflection
37793         code in corlib: we use C structures that map to the actual C# classes.
37794         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37795         fat method header if needed and use the info from the ILGenerator for
37796         methods. Handle fields in types. Misc fixes.
37797
37798 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37799
37800         * class.c (mono_class_metadata_init): bug fix: always allocate
37801         space for static class data
37802
37803 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37804
37805         * class.c (mono_compute_relative_numbering): use relative
37806         numbering to support fast runtime type checks.
37807
37808 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37809
37810         * class.c (mono_class_create_from_typeref): added debugging output
37811         to print class name when MonoDummy is returned instead of real class
37812
37813 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37814
37815         * class.c (mono_class_metadata_init): interface offset table now
37816         contains pointers into the vtable - this is more efficient for the jit
37817
37818 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37819
37820         * class.c (mono_class_metadata_init): use a temporary vtable (the
37821         old algorithm only worked for the interpreter, but not for the jit)
37822
37823 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37824
37825         * loader.c (method_from_memberref): use mono_class_get to get the
37826         class of an array instead of using System.Array directly.
37827         (mono_get_method): also add MEMBERREF methods to the method cache
37828         which usefull for arrays.
37829
37830 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37831
37832         * pedump.c (arch_compile_method): added to compute vtable entry
37833
37834         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37835         number of interfaces.
37836         
37837         * class.h: merged MonoArrayClass into MonoClass
37838
37839         * class.c (mono_class_create_from_typedef): compute the vtable size and
37840         allocate space to include the vtable inside MonoClass
37841         (mono_class_metadata_init): initialize the vtable
37842
37843 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37844
37845         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37846         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37847         * image.c: endian fixes by Laurent Rioux.
37848         * object.h, object.c: rename MonoStringObject to MonoString and
37849         MonoArrayObject to MonoArray. Change some function names to conform to
37850         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37851         guint16* as first argument, so don't use char*.
37852         Provide macros to do the interesting things on arrays in a portable way.
37853         * threads-pthread.c: updates for the API changes and #include <sched.h>
37854         (required for sched_yield()).
37855         * icall.c: updates for the API changes above.
37856         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37857         platforms that need them.
37858
37859 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37860
37861         * class.c: set the correct type for all the fundamental
37862         type when loading the class.
37863
37864 2001-10-05  Dick Porter  <dick@ximian.com>
37865
37866         * threads-pthread.c (pthread_mutex_timedlock): Simple
37867         compatibility version for C libraries that lack this call.
37868
37869 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37870
37871         * class.c: MonoTypes stored in MonoClass are stored as
37872         fundamental MonoTypes when the class represents a
37873         fundamental type (System.Int32, ...).
37874         The TypeHandle return by ldtoken is a MonoType*.
37875         * icall.c: ves_icall_get_data_chunk () write out all the
37876         PE/COFF stuff. Implement ves_icall_define_method (),
37877         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37878         * image.c: properly skip unknown streams.
37879         * loader.h, loader.c: add type_class to mono_defaults.
37880         * metadata.c, metadata.h: export compute_size () as
37881         mono_metadata_compute_size () with a better interface.
37882         Typo and C&P fixes.
37883         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37884         * reflection.c, reflection.h: many cleanups, fixes, output method
37885         signatures and headers, typedef and typeref info, compress the metadata
37886         tables, output all the heap streams, cli header etc.
37887         * row-indexes.h: typo fixes.
37888
37889 2001-10-04  Dick Porter  <dick@ximian.com>
37890
37891         * object.h: Add a synchronisation mutex struct to MonoObject
37892
37893         * object.c (mono_new_object): Initialise the object
37894         synchronisation mutexes
37895
37896         * icall.c: System.Threading.Monitor internal calls
37897         
37898         * threads-pthread.h:
37899         * threads-pthread.c: System.Threading.Monitor internal calls
37900
37901         * threads-types.h: New file, includes the system-specific thread
37902         structures
37903         
37904         * threads-pthread-types.h:
37905         * threads-pthread-types.c: New files, handle pthread-specific
37906         synchronisation types
37907
37908         * threads-dummy-types.h: 
37909         * threads-dummy-types.c: New files of dummy support for
37910         thread-specific types
37911
37912         * metadata.c:
37913         * image.c:
37914         * pedump.c: include mono-endian.h not endian.h
37915         
37916         * Makefile.am: More threads files.
37917         Name mono-endian.h not endian.h
37918
37919 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37920
37921         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37922         stuff and implement a few more bits.
37923         * icall.c: a field needs to be dereferenced twice. Do not use the same
37924         name for two variables in the same scope.
37925         * image.c, image.h: cleanups.
37926
37927 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37928
37929         * class.c (mono_class_metadata_init): bug fix: compute the right size
37930
37931 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37932
37933         * icall.c: implemented some of the Reflection internalcalls.
37934         * image.c, image.h: start writing out the PE/COFF image.
37935         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37936         that does the reverse than decode_blob_size ().
37937         * object.c: use mono_metadata_encode_value (). Move here
37938         temporary implementation of mono_string_to_utf8 ().
37939         * rawbuffer.c: make malloc_map static.
37940
37941 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37942
37943         * metadata.c: fix type comparison for arrays.
37944         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37945         Added a couple of new classes to monodefaults.
37946         * icall.c: added a couple of Reflection-related internalcalls.
37947         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37948         Added a byval_arg MonoType to MonoClass.
37949
37950 2001-09-28  Dick Porter  <dick@ximian.com>
37951
37952         * icall.c:
37953         * threads-pthread.h: 
37954         * threads-pthread.c: Implemented internal calls for
37955         LocalDataStoreSlot operations.  Applied mutexes around all shared
37956         data.  Reworked the thread creation and Start() operations to
37957         avoid a race condition.
37958         
37959         * threads-dummy.h:
37960         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37961
37962 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37963
37964         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37965
37966 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37967
37968         * class.c, loader.c: warn and return NULL instead of erroring out.
37969         * icall.c: added System.AppDomain::getCurDomain().
37970         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37971
37972 2001-09-25  Dick Porter  <dick@ximian.com>
37973
37974         * threads-pthread.h:
37975         * threads-pthread.c: Implemented timed thread joining and added
37976         System.Threading.Thread::Join_internal internal call
37977
37978         * icall.c: Added System.Threading.Thread::Join_internal internal call
37979
37980         * threads-dummy.h:
37981         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37982
37983 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37984
37985         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37986         mono_string_intern () to implement the semantics of the ldstr opcode
37987         and the interning of System.Strings.
37988         * icall.c: provide hooks to make String::IsIntern and String::Intern
37989         internalcalls.
37990
37991 2001-09-23  Dick Porter  <dick@ximian.com>
37992
37993         * threads-dummy.c: 
37994         * threads-dummy.h: New files of dummy threading routines
37995
37996         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37997         support code based on system specifics
37998
37999         Rename PTHREAD_LIBS to THREAD_LIBS
38000         
38001 2001-09-23  Dick Porter  <dick@ximian.com>
38002
38003         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
38004         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
38005         internal calls.
38006         (mono_thread_init): Set up a Thread object instance to return when
38007         the main thread calls Thread.CurrentThread
38008         (mono_thread_cleanup): Wait for all subthreads to exit
38009
38010         * icall.c: New internal calls for System.Threading.Thread::Sleep
38011         (including Schedule) and CurrentThread
38012
38013         * threads.h: New file, to insulate thread-specific stuff from the
38014         rest of the code
38015
38016 2001-09-21  Dick Porter  <dick@ximian.com>
38017
38018         * threads-pthread.h: 
38019         * threads-pthread.c: New file, for handling pthreads-style
38020         threading support.  Start() now starts a new thread and executes
38021         the ThreadStart delegate instance.
38022
38023         * icall.c: Added the internalcall for
38024         System.Threading.Thread::Start_internal
38025
38026         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
38027
38028 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
38029
38030         * loader.c: work around the different signatures for delegates
38031         constructors csc generates in compiled code vs the ones compiled in mscorlib.
38032
38033 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
38034
38035         * class.h, class.c: add mono_class_get_field_from_name ().
38036         * *: Fix C comments and other ANSI C issues.
38037
38038 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
38039
38040         * endian.h, assembly.c: fix some endianness issues.
38041
38042 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
38043
38044         * loader.h, load.c: add delegate_class to mono_defaults.
38045         Handle runtime provided methods in mono_get_method ().
38046
38047 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
38048
38049         * loader.c (mono_get_method): use pinvoke for internal call
38050
38051         * icall.c: use pinvoke for internal call
38052
38053         * loader.c (method_from_memberref): set the method name
38054
38055 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
38056
38057         * metadata.c: help the compiler generate better code for
38058         mono_class_from_mono_type ().
38059
38060 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
38061
38062         * class.c (mono_class_metadata_init): delayed computing of the
38063         class size to mono_class_metadata_init ()
38064
38065 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
38066
38067         * class.c, class.h: add an interfaces member to MonoClass.
38068         * image.c, image.h: add assembly_name field to MonoImage
38069         from the assembly table.
38070         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
38071
38072 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
38073
38074         * class.c: Handle Array in mono_class_from_mono_type ().
38075         * metadata.c, pedump.c: some endian fixes.
38076
38077 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
38078
38079         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
38080         * metadata.c: fix small problem introduced with the latest commit.
38081
38082 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
38083
38084         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
38085         We don't need a MonoMetadata pointer anymore to compare signatures in
38086         mono_metadata_signature_equal (), update callers.
38087         Reduced memory usage an number of allocations for MonoMethodHeader and
38088         MonoMethodSignature.
38089
38090 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
38091
38092         * metadata.c: added compare for szarray.
38093
38094 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
38095
38096         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
38097         and add a couple more types to it and mono_defaults. Give an hint on
38098         classes that need implementing in our corlib and are referenced
38099         in mscorlib.
38100
38101 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
38102
38103         * class.h, class.c: keep track if a class is also an Enum.
38104         * loader.c: Implement a couple more types for use in libffi
38105         marshalling. Gives better diagnostics when failing to dlopen
38106         a library. Set method->klass for P/Invoke methods, too.
38107
38108 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
38109
38110         * class.c, class.h: add a MonoType this_arg to MonoClass that
38111         represents a pointer to an object of the class' type that
38112         can be used by the interpreter and later the type cache.
38113         Add best guess alignment info for valuetype objects.
38114
38115 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
38116
38117         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
38118         into MonoType: one less level of indirection and allocation and
38119         simplifies quite a bit of code. Added cache for MonoTypes that are
38120         used frequently, so that we don't need to allocate them all the time.
38121
38122 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
38123
38124         * class.c (mono_class_create_from_typedef): System.Enum is also a
38125         value type, although it does not derive from System.ValueType
38126         (maybe a bug in the ms compiler?)
38127
38128         * metadata.c (mono_type_size): return the right size for value types
38129
38130         * loader.c (mono_get_method): only initialize method header if not abstract
38131
38132         * class.c (mono_class_from_mono_type): use mono_default values. 
38133
38134 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
38135
38136         * *: use MonoClass pointers instead of <type_tokens>
38137         
38138         * class.h: new flag: metadata_inited.
38139
38140         * class.c (mono_class_metadata_init): impl.
38141         (mono_class_instance_size): impl.
38142         (mono_class_data_size): impl.
38143
38144 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
38145
38146         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
38147         MonoClass now has the name and name_space fields. 
38148         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
38149         mono_get_method () takes and optional MonoClass as argument.
38150         Removed mono_typedef_from_name() and added mono_class_token_from_name()
38151         instead that takes advantage of a map from class names to typedef
38152         tokens in MonoImage.
38153
38154 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
38155
38156         * metadata.c: zero is not a valid alignment boundary.
38157         Merge MONO_TYPE_VOID in default decoding code.
38158
38159 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
38160
38161         * image.h: merged MonoMetadata into MonoImage
38162
38163         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
38164         identify the type of elements.
38165
38166 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
38167
38168         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
38169         * cil-coff.h: split MonoMSDOSHeader and add size info.
38170         * image.c: add some consistency checks.
38171         * metadata.c: fix row size computation: one programmer
38172         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
38173         add explanation for the locator routine.
38174         Fix decoding of size in method header.
38175         
38176 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
38177
38178         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
38179         (g_concat_dir_and_file): Bring g_concat_dir_and_file
38180         function from gnome-libs.  This uses the right path separator
38181         based on the OS, and also works around a bug in some systems where
38182         a double slash is not allowed. 
38183         (default_assembly_name_resolver): Use g_concat_dir_and_file
38184         (mono_assembly_open): ditto.
38185
38186 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
38187
38188         * metadata.c (mono_metadata_signature_equal): impl.
38189
38190         * *: void is now a realy MonoType (instead of using NULL)
38191         
38192         * metadata.c (do_mono_metadata_parse_type): use
38193         mono_metadata_parse_type to parse void value.
38194
38195 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
38196
38197         * metadata.c, metadata.h: in the signature and method header store
38198         only the space required for holding the loca vars and incoming arguments.
38199
38200 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
38201
38202         * metadata.c (do_mono_metadata_parse_type): treat void like any
38203         other type (instead of assigning NULL);
38204
38205 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
38206
38207         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
38208
38209 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
38210
38211         * image.c (do_mono_image_open): added a cache for arrays.
38212
38213 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38214
38215         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
38216         decode a single column from a row in a metadata table and changes
38217         to take advantage of it in the typedef locator (gives a nice speed up).
38218         Store offset info for function params.
38219
38220 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
38221
38222         * image.h (MONO_IMAGE_IS_CORLIB): removed 
38223
38224 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
38225
38226         * assembly.c: how could mono_assembly_close () had ever worked?
38227         * metadata.c, metadata.h: provide offset info for local vars.
38228         Implement mono_type_size () to take care of alignment as well
38229         as size (it was mono_field_type_size in cli/class.c before).
38230
38231 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
38232
38233         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
38234
38235         * assembly.h (CORLIB_NAME): set to corlib.dll
38236
38237         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
38238
38239 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
38240
38241         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
38242         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
38243         tokentype.h: massive namespace cleanup.
38244
38245 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
38246
38247         * metadata.h, metadata.c: decode exception clauses when parsing method header.
38248
38249 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
38250
38251         * metadata.c (mono_metadata_free_type): added check for type !=
38252         NULL (void) before calling mono_metadata_free_type()
38253
38254 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
38255
38256         * metadata.h, row_indexes.h: added header with enumerations to use
38257         to index in the columns from tables in metadata and to decode coded
38258         tokens: we should start using this instead of embedding magic numbers
38259         all over the code.
38260
38261 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
38262
38263         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
38264         Move metadata_t info from cli_image_info_t to MonoImage, where
38265         it's easily accessible. Changed all the uses accordingly.
38266         Added the method and class caches to MonoImage.
38267         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
38268         and mono_metadata_decode_value () signature to be more consistent
38269         with the other parse functions (and simplify code). Taken advantage
38270         of zero-length array allocation with GCC. Removed reduntant (and
38271         wrong) MonoFieldType struct and use MonoParam instead. Changed
38272         mono_metadata_parse_field_type () to use common code for parsing.
38273         Added mono_metadata_typedef_from_field () and
38274         mono_metadata_typedef_from_method () to lookup a typedef index from a
38275         field or method token.
38276         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
38277
38278 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
38279
38280         * metadata.c (mono_metadata_parse_field_type): Implement. 
38281         (do_mono_metadata_parse_type): Split engine from
38282         mono_metadata_parse_type, so that we can create smaller structures
38283         for things that just have one pointer to the MonoType (look at
38284         the MonoFieldType)
38285
38286 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
38287
38288         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
38289         as Jan Gray found out, it is incorrect. 
38290
38291 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
38292
38293         * assembly.c: Implement asssembly loading.  This loads an image
38294         and loads all the referenced assemblies.  Come to think of it, we
38295         could always do lazy loading of the assemblies. 
38296
38297         * image.c (mono_image_open): Keep loaded images in a hashtable.
38298
38299         * image.h (MonoImage): Add reference count.
38300
38301 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
38302
38303         * assembly.c (mono_assembly_open): Keep track of the file name in
38304         case the assembly has no ASSEMBLY table.
38305
38306         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
38307         from get.c here.
38308
38309 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
38310
38311         * metadata.c, metadata.h: decode local vars in method header
38312         parse function. Change callers accordingly.
38313
38314 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
38315
38316         * metadata.h, cil-coff.h: protect against multiple inclusion.
38317         Added some new structures to hold information decoded from metadata:
38318         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
38319         and relevant decoding/free functions.
38320         * metadata.c: implement decoding functions. Add warning for out of bounds
38321         index in mono_metadata_locate(). Implement mono_get_method () to retreive
38322         all the info about a method signature and invocation. Remove check on
38323         uninitialized local var in parse_mh() and fix memory leak.
38324
38325 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
38326
38327         * metadata.h: More macros.
38328
38329         * tokentype.h: New file.
38330
38331 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
38332
38333         * assembly.c: added a consistency check and initialize
38334         some structures with g_new0().
38335         * metadata.c: fixed a couple more bugs in table size computation
38336         and add other checks for out-of bound access to metadata.
38337
38338 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
38339
38340         * metatada.c: fix bugs computing table sizes. Spew a
38341         warning when index in string heap is out of bounds.
38342
38343 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
38344
38345         * metadata.h: Add a couple of macros to manipulate tokens. 
38346
38347 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
38348
38349         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
38350         cli_section_tables).
38351
38352 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
38353
38354         * metadata.c (mono_metadata_user_string): New function, provides
38355         access to the UserString heap. 
38356
38357 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
38358
38359         * metadata.c: Add inline documentation.
38360
38361 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
38362
38363         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
38364         files. 
38365
38366 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
38367
38368         * typeattr.h: New file, TypeAttribute flags. 
38369
38370 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
38371
38372         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
38373         mono_assembly_ensure_section): Section loading code.
38374         (load_section_tables): Load the sections.
38375
38376         * mono/metadata/metadata.c (mono_metadata_locate_token,
38377         mono_metadata_locate): Functions to locate the information
38378         definition given a token or a table and an index.
38379         (mono_metadata_compute_table_bases): New.
38380         (compute_size): New function to compute the sizes of the various
38381         tables.
38382
38383         * mono/metadata/metadata.h: Finish listing the different index
38384         types. 
38385
38386         * mono/metadata/pedump.c: Improve to dump new information.
38387
38388 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
38389
38390         * mono/metadata/metadata.c: Entered all the tables matching
38391         Beta2. 
38392
38393         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2