2010-06-26 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-06-26  Zoltan Varga  <vargaz@gmail.com>
2
3         * gc.c (mono_gc_init): Move the GC disabled check to *-gc.c.
4
5 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
6
7         * null-gc.c boehm-gc.c: Define the mono_gc_ pthread wrapper functions for these
8         GCs too.
9
10         * *-gc.c (mono_gc_wbarrier_value_copy_bitmap): Implement this for all GCs.
11
12         * sgen-gc.c (mono_gc_is_moving): New function returning whenever this GC can move
13         objects.
14
15         * *-gc.c (mono_gc_set_desktop_mode): New function setting up the GC to work in
16         desktop mode.
17
18 2010-06-25  Zoltan Varga  <vargaz@gmail.com>
19
20         * *-gc.c (mono_gc_get_description): New function returning a human readable
21         description of the current GC.
22
23 2010-06-24  Miguel de Icaza  <miguel@novell.com>
24
25         * mono-hash.c: Moved here from mono/utils as this file is
26         GC-aware, and the utils directory is not.
27
28 2010-06-23  Miguel de Icaza  <miguel@novell.com>
29
30         * Makefile.am: Add support for building a sgen-aware versions of
31         the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la,
32         they share all the components of the default, but use a differen
33         set of CFLAGS to enable SGEN instead.
34
35         Put the BOEHM defines in the CFLAGS definition. 
36
37         * domain-internals.h (MonoJitInfo): this structure used to have
38         different sizes depending on the GC that was configured (Boehm vs
39         SGen).   I have removed this difference for the sake of avoiding
40         the complexity of dealing with the mono/arch directory requiring
41         GC-specific changes to their Makefiles.
42
43 2010-06-23  Mark Probst  <mark.probst@gmail.com>
44
45         * sgen-gc.c, sgen-los.c, sgen-marksweep.c: Fix warnings.
46
47 2010-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
48
49         * metadata.c (mono_metadata_type_hash): Don't hash
50         the type kind for dynamic types since it can change.
51
52 2010-06-22 Geoff Norton  <gnorton@novell.com>
53
54         * sgen-os-mach.c: We cannot call malloc from the gc, so we need to use
55         alloca instead to prevent a deadlock.
56
57 2010-06-22  Geoff Norton  <gnorton@novell.com>
58
59         * domain.c: Allow gettings the tls key, since we need it for
60         cross thread tls poking in sgen-mach
61         * sgen-gc.(c|h), gc-internal.h: Rework sgen into having some functions
62         in external files for platform specific STW support.
63         * sgen-os-mach.c: Add a new mach kernel backend implementation of STW.
64         * sgen-os-posix.c: Move the existing posix signal based STW here.
65
66 2010-06-21  Zoltan Varga  <vargaz@gmail.com>
67
68         * marshal.c (mono_array_to_lparray): Allow MONO_TYPE_PTR. Fixes #615952.
69
70 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
71
72         * object-internals.h: Map new PropertyBuilder fields.
73
74         * reflection.c (property_encode_signature): Emit an instance
75         signature if property's callconv is hasthis.
76
77         * appdomain.c: Bump corlib version.
78
79 2010-06-20  Jb Evain  <jbevain@novell.com>
80
81         * metadata-verify.c: do not consider the assembly invalid if it
82         doesn't have a #Blob stream as resource assemblies don't
83         necessarily have one.
84
85 2010-06-17  Geoff Norton  <gnorton@novell.com>
86
87         * sgen-archdep.h: sgen support for arm linux and darwin.
88
89 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
90
91         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
92         has a faulty header.
93
94 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
95
96         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
97         way to mono_gc_wbarrier_value_copy but takes a bitmap that
98         indicates which slots need a write barrier.
99
100 2010-06-14  Jonathan Pryor <jpryor@novell.com>
101
102         * Makefile.am (EXTRA_DIST): Add runtime.h.
103
104 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
105
106         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
107
108 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
109
110         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
111         IMT slot which is passed to callbacks.get_imt_trampoline.
112
113 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
114
115         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
116         imt trampoline per imt slot when using LLVM.
117
118 2010-06-10  Jonathan Pryor <jpryor@novell.com>
119
120         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
121           runtime.c:mono_runtime_shutdown().
122         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
123           AppDomain.ProcessExit event in all AppDomains.
124
125 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
126
127         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
128         done by the caller.
129
130 2010-06-05  Mark Probst  <mark.probst@gmail.com>
131
132         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
133         up freeing.
134
135 2010-06-05  Mark Probst  <mark.probst@gmail.com>
136
137         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
138         segments of memory at once, to reduce the number of mmap/munmap
139         calls.
140
141 2010-06-05  Mark Probst  <mark.probst@gmail.com>
142
143         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
144         allocations and distinguish between normal, degraded and pinned
145         allocations.
146
147 2010-06-05  Mark Probst  <mark.probst@gmail.com>
148
149         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
150         allocations count toward major collections and trigger major
151         collections from degraded allocations if appropriate.
152
153 2010-06-05  Mark Probst  <mark.probst@gmail.com>
154
155         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
156
157 2010-06-05  Mark Probst  <mark.probst@gmail.com>
158
159         * sgen-gc.c: Enable mark&sweep again.
160
161 2010-06-05  Mark Probst  <mark.probst@gmail.com>
162
163         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
164
165 2010-06-05  Mark Probst  <mark.probst@gmail.com>
166
167         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
168         major heap allowance for minor collections, instead of two
169         separate ones for small and large objects.  This reduces the
170         number of major collections.
171
172 2010-06-04  Marek Habersack  <mhabersack@novell.com>
173
174         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
175         the BFLAGS_IgnoreCase is raised
176
177 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
178
179         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
180         all information in a single structure. Return information about scopes as well.
181
182         * mono-debug.c (mono_debug_lookup_locals): Ditto.
183
184 2010-06-02  Geoff Norton  <gnorton@novell.com>
185
186         * appdomain.c: If we are running with IOMAP we might
187         have been provided a string that isn't case-aware for our file-
188         system, so we need to use io-portability to check if the file 
189         exists, rather than a simple glib test.
190
191         Fixes #608849
192
193 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
194
195         * verify.c (verify_generic_parameters): Verify if
196         there are not loops in constraints.
197
198 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
199
200         * verify.c (is_compatible_boxed_valuetype): Constaints
201         must be recursively checked if one generic argument
202         has a constraint on another.
203
204         Fixes #610625.
205
206 2010-05-31  Miguel de Icaza  <miguel@novell.com>
207
208         * console-unix.c (terminal_get_dimensions): Fix my previous
209         botched commit and return the actual value obtained from the ioctl.
210
211 2010-05-29  Mark Probst  <mark.probst@gmail.com>
212
213         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
214         references so that we don't have to do the cache-cold fetch of the
215         class in copy_object_no_checks().
216
217 2010-05-29  Robert Jordan  <robertj@gmx.net>
218
219         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
220         mono_marshal_string_to_utf16_copy () to avoid memory allocation
221         mismatches under Windows. Fixes pinvoke2:test_0_asany.
222
223 2010-05-28  Mark Probst  <mark.probst@gmail.com>
224
225         * sgen-gc.c: Change default nursery size to 4MB, because it
226         improves performance on many applications and benchmarks.
227
228 2010-05-28  Mark Probst  <mark.probst@gmail.com>
229
230         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
231         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
232         the GC descriptor by one bit, and don't encode the size for value
233         types not containing references.  Also get rid of
234         DESC_TYPE_STRING.
235
236 2010-05-28  Mark Probst  <mark.probst@gmail.com>
237
238         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
239         other than for remset processing.
240
241 2010-05-28  Mark Probst  <mark.probst@gmail.com>
242
243         * sgen-gc.c: More and better remset consistency checks.
244
245 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
246
247         * sgen-gc.c: Add a note about the int[] trick to avoid some
248         memset.
249
250 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
251
252         * sgen-gc.c (sort_addresses): Use heap sort since it has better
253         performance.
254
255         This helps programs with lots of threads or thread with big stacks
256         since the bottleneck the pin queue can get quite big.
257
258 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
259
260         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
261         a separate function called setup_fragment.
262
263         * sgen-gc.c (search_fragment_for_size_range): Variant of
264         search_fragment_for_size that does search for a secondary smaller
265         size.
266
267         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
268         for tlab allocation so small fragments are used.
269
270         This patch uses small fragments for tlab allocation when possible in order
271         to improve nursery utilization. With a fixed size tlab this patch is not very
272         usefull but once size gets dynamically adjusted, this will be invaluable.
273
274         Performance under pystone 500k is unchanged. Nursery utilization improves by
275         3.5% and 18 more fragments are used per minor GC.
276
277         Performance under modified binary-tree is unchanged. Nursery utilization
278         improves by 0.5% and 3 more fragments are used per minor GC.
279
280         These numbers make sense since as more pinning happens, more fragments are
281         created and so are the chances of having a bunch of small ones.
282
283 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
284         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
285         the current fragment when allocating a TLAB.
286
287         Reduces number of pystone 500k minor collections by 7%.
288
289 2010-05-25  Martin Baulig  <martin@ximian.com>
290
291         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
292
293         * debug-mono-symfile.c: Release memory from symfiles that were
294         loaded from memory.
295
296 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
297
298         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
299         during shutdown.
300
301 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
302
303         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
304         target class and remove some dead code.
305
306 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
307
308         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
309         the MonoTypes inside method headers can be freed when the header is freed.
310
311 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
312
313         * threadpool.c: Fix the DISABLE_SOCKETS build.
314
315 2010-05-19 Martin Baulig  <martin@novell.com>
316
317         Fix #604911.
318
319         * threads.c (wait_for_tids_or_state_change): Use an
320         alertable WaitForMultipleObjectsEx().
321         (wait_for_tids): Likewise.
322
323 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
324
325         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
326         icall.
327
328         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
329         gc tracked memory.
330
331         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
332         argument from a gchandle.
333
334         * marshal.c: Get rid of the delegate_target_locations hash table.
335
336         Fixes #605295.
337
338 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
339
340         * sgen-gc.c: Use _fast variants for string and array length.
341
342 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
343
344         * sgen-gc.c: Fix counters to be 64 bits.
345
346         * sgen-gc.c (dump_heap): Fix formating strings.
347
348 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
349
350         * sgen-gc.c (global_remset_location_was_not_added): New
351         function that implements a 2 element LRU cache for just
352         added remsets. It is used to avoid adding duplicate ones.
353
354         * sgen-gc.c (add_to_global_remset): Check cache before
355         adding new entry.
356
357         * sgen-gc.c (scan_from_remsets): Don't process global remsets
358         that fail the cache test.
359
360         * sgen-gc.c (scan_from_remsets): Simplify the global remset
361         loop removing one condtion that is not possible.
362
363         A 2 element LRU cache was chosen by profiling IronPython 2.6
364         pytones with 1M passes and corlib compilation.
365
366         For the ipy test duplication was originally 940.92, measured
367         by "Store remsets" divided by "Unique store remsets".
368
369         With a 2-element LRU, duplication went to 1.007. Without the
370         check in scan_from_remsets 1.438.
371
372         With a 16-elements LRU, duplication reduction was negligibe.
373         A single element cache was basically of no use.
374
375         With corlib compilation duplication went from  1.4 to 1.02.
376
377         Performance results is a 20% time decrease for ipy and 2%
378         with corlib.
379 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
380
381         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
382
383 2010-05-15  Geoff Norton  <gnorton@novell.com>
384
385         * mono-debug.c: Fix a leak of the global table on shutdown.
386
387 2010-05-15  Geoff Norton  <gnorton@novell.com>
388
389         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
390         to clean up MonoDebugSourceLocation's.
391
392 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
393
394         * class.c (mono_class_create_from_typedef): Fail a class
395         if there is a loop with its parent.
396
397         Fixes #598239.
398
399 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
400
401         * loader.c (mono_loader_set_error_type_load): Convert
402         a g_warninig to mono_trace_warning.
403
404 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
405
406         * class.c (mono_class_get_full): Release strings on failure
407         to avoid leaking them.
408
409 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
410
411         * class.c (mono_class_create_from_typedef): Only return
412         the class if no exceptions were detected.
413
414         * class.c (mono_class_create_from_typedef): Don't remove
415         broken classes from class_cache. Just set failure and
416         bail out.
417
418         This fixes a memory a memory leak where resolving the same
419         broken class multiple times resulted in a memory leak.
420
421         The right behavior would be to actually return the class
422         a let the caller figure it out.
423
424 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
425
426         * mono-ptr-array.h: Add mono_ptr_array_sort.
427
428         * reflection.c (mono_image_build_metadata): Replace that ugly
429         qsort call with mono_ptr_array_sort.
430
431 2010-05-13  Mark Probst  <mark.probst@gmail.com>
432
433         * sgen-gc.c: Switch to the copying major collector, because
434         Mark&Sweep is still buggy.
435
436 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
437
438         * reflection.c (mono_image_build_metadata): Don't put managed
439         references on non-tracked memory.
440
441 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
442
443         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
444
445 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
446
447         * icall.c: Switch to mono-ptr-array.h.
448
449 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
450
451         * Makefile.am: Add mono-ptr-array.h.
452
453         * mono-ptr-array.h: New header that implements
454         a GC tracked equivalent of g_ptr_array. 
455
456 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
457
458         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
459         method to avoid initializing the class.
460
461         Fixes #605115.
462
463 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
464
465         * icall.c (ves_icall_System_MonoType_getFullName): It
466         doesn't require to init the class.
467
468 2010-05-11  Miguel de Icaza  <miguel@novell.com>
469
470         * console-unix.c: Signal handlers now save and restore errno.   We
471         have never had a bug report about this, ioctl does change errno. 
472
473         Hide the unused method.   
474
475         Remove internal declarations from public headers.
476
477         Document what the signal handler is doing
478
479 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
480
481         * sgen-gc.c (clear_unreachable_ephemerons): Clear
482         unreachable keys with a tombstone.
483
484         * sgen-gc.c (mark_ephemerons_in_range): Ignore
485         tombstone keys.
486
487 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
488
489         * icall-def.h:
490         * gc-internals.h:
491         * gc.c: New GC:get_ephemeron_tombstone.
492
493 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
494
495         * appdomain.c (create_exceptions): Rename to
496         create_domain_objects. Create the ephemeron tombstone object.
497
498         * domains-internals.h (MonoDomain): Add new field for the
499         ephemeron tombstone.
500
501         * domain.c (mono_domain_free): Set ephemeron_tombstone to
502         NULL.
503
504 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
505
506         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
507         and dislinks must be processed before LOS since they
508         could end up with pointers to memory returned to the
509         OS.
510
511 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
512
513         * class.c (mono_class_alloc): New helper function to centralize memory allocation
514         for classes, allocates either from the image mempool or from the heap.
515
516         * class.c: Use mono_class_alloc to allocate memory owned by classes.
517
518         * metadata.c (free_generic_class_dependents): Free more items belonging to
519         generic classes.
520
521 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
522
523         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
524         as well. Fixes #604054.
525
526 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
527
528         * metadata-verify.c: MS doesn't mind duplicates in the
529         typeref table. Move it to full verification.
530
531         Fixes #600508.
532
533 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
534
535         * image.c (do_mono_image_load): Report verification
536         errors when loading an image fails.
537
538 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
539
540         * reflection.c (mono_type_get_object): Remove chunk of code
541         no longer in use.
542
543 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
544
545         * icall-def.h
546         * icall.c: Delete some unused icalls.
547
548 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
549
550         * appdomain.c (mono_domain_has_type_resolve): Check for
551         NULL domain objects to make pedump happy.
552
553         * object.c (mono_field_get_value): Assert on NULL object.
554         It's the caller resposibility to check for this.
555
556         * object.c (mono_field_get_value_object): Ditto.
557
558         Fixes #601384.
559
560 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
561
562         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
563         checks can avoid doing a mono_class_init.
564
565         * icall.c: Remove mono_class_init from a bunch of icalls that
566         don't need it.
567
568         Hopefully we're now lazy enough to fix most victims of #601431.
569
570 2010-05-07  Mark Probst  <mark.probst@gmail.com>
571
572         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
573
574 2010-05-07  Mark Probst  <mark.probst@gmail.com>
575
576         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
577
578 2010-05-07  Marek Habersack  <mhabersack@novell.com>
579
580         * culture-info-tables.h: updated to include en-TT culture. Fixes
581         bug #594035
582
583 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
584
585         Move mono_class_init from mono_type_get_object to icalls.
586         This causes massive memory savings for Assembly::GetTypes () and
587         make it fail a lot less due to missing dependencies.
588
589         This is a conservative, naive change as it doesn't remove some
590         mono_class_init from places that might not need them. Carefull
591         review of those should follow.
592
593         * reflection.c (mono_type_get_object): Don't mono_class_init the
594         returning type.
595
596         * reflection.c:
597         * cominterop.c:
598         * icall.c:
599         * marshal.c: Call mono_class_init in functions receiving a MonoType
600         object.
601
602         First step into fixing #601431.
603
604 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
605
606         * gc-internal.h: Add new functions required for ephemeron support.
607
608         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
609
610         * icall-def.h: Add GC::register_ephemeron_array.
611
612         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
613         under sgen. Its fields must not be marked.
614
615         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
616
617         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
618         handling finalizable objects. Clean dead ones after all finalizable
619         handling.
620
621         * sgen-gc.c (dump_heap): Add new kind of internal memory.
622
623         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
624         arrays from the dead domain.
625
626         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
627
628         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
629         whose keys are reachable.
630
631         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
632         list of live ephemeron arrays.
633
634 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
635
636         * class.c (mono_class_layout_fields): Don't perform alignment
637         if align is zero.
638
639         * class.c (mono_class_layout_fields): Init field related information
640         to sane defaults.
641
642 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
643
644         * verify.c (mono_verifier_verify_class): Verify the constraint
645         of generic type definitions.
646
647 2010-05-04  Mark Probst  <mark.probst@gmail.com>
648
649         * sgen-marksweep.c: Simplify free list maintenance in sweep.
650
651 2010-05-02  Mark Probst  <mark.probst@gmail.com>
652
653         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
654         major_do_collection() across the two major collectors.
655
656 2010-05-02  Mark Probst  <mark.probst@gmail.com>
657
658         * sgen-gc.c: Add heavy statistics counter for re-added global
659         remsets.
660
661 2010-05-02  Mark Probst  <mark.probst@gmail.com>
662
663         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
664         get rid of a division in critical code.
665
666 2010-04-29  Mark Probst  <mark.probst@gmail.com>
667
668         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
669         blocks for objects without references in mark&sweep, to improve
670         performance.
671
672 2010-04-28  Mark Probst  <mark.probst@gmail.com>
673
674         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
675         statistics up-to-date.
676
677 2010-04-27  Mark Probst  <mark.probst@gmail.com>
678
679         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
680         heap-dump for mark&sweep.
681
682 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
683
684         * loader.c (mono_method_get_header): Move the is_inflated case before the
685         wrapper case, as a method can be both.
686
687 2010-04-27  Mark Probst  <mark.probst@gmail.com>
688
689         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
690         separate pass to scan pinned and large object but use the gray
691         queue like for regular objects.
692
693 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
694
695         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
696         string.h for memmove.
697
698         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
699         ipaddress_to_struct_in6_addr() is only needed when
700         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
701
702 2010-04-25  Mark Probst  <mark.probst@gmail.com>
703
704         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
705         separate copy_object functions for major vs nursery.  Allows us to
706         get rid of a few checks and the start and end parameters for many
707         functions.
708
709 2010-04-25  Mark Probst  <mark.probst@gmail.com>
710
711         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
712         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
713         collector.
714
715 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
716
717         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
718         calling setup_mono_type () since the nested parent could recursively reference
719         the nested class using generic constraints. Fixes #599469.
720
721 2010-04-24  Mark Probst  <mark.probst@gmail.com>
722
723         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
724         abstraction.
725
726 2010-04-24  Mark Probst  <mark.probst@gmail.com>
727
728         * sgen-gc.c: Remove more unneeded code.
729
730 2010-04-24  Mark Probst  <mark.probst@gmail.com>
731
732         * sgen-gc.c: Disable managed allocator and wbarrier when the
733         binary protocol is enabled.
734
735 2010-04-24  Mark Probst  <mark.probst@gmail.com>
736
737         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
738
739 2010-04-24  Mark Probst  <mark.probst@gmail.com>
740
741         * sgen-gc.c: Remove a few commented out and unneeded bits.
742
743 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
744
745         * threadpool.c: patch from Robert Nagy that fixes a nullref and
746         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
747
748 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
749
750         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
751         types.
752
753         Fixes #331126
754
755 2010-04-21  Mark Probst  <mark.probst@gmail.com>
756
757         * sgen-gc.c: Turn off semi-precise stack mark.
758
759 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
760
761         * reflection.c (mono_custom_attrs_from_index): Use right function
762         to free 'list' (i.e. g_list_free) if the verifier fails.
763
764 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
765
766                 * verify.c: Handle the case where mono_type_get_underlying_type_any
767                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
768                 and MONO_TYPE_VALUETYPE in those case.
769
770                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
771
772                 Hopefully Fixes #564253.
773
774 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
775
776         * domain-internals.h: made threadpool_jobs volatile.
777         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
778         all local jobs.
779         * threadpool.c:
780                 -When two threads try to initialize the socket IO pool,
781                 the second one waits until the intialization is finished
782                 instead of continuing right away.
783                 -Add checks for domain unload: no items added in this case.
784                 -Only measure the time every 10 elements added to the queue.
785                 This is an experiment since linux x86 gettimeofday() sucks.
786                 -Create new thread if there are none waiting for work items.
787                 -There was a missing decrement of the busy threads.
788                 -Make sure the local queue is cleaned up before exiting the
789                 thread when the program ends.
790
791 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
792
793         * reflection.c (mono_type_get_object): Normalize generics types
794         as to how managed code expect them to be. A generic instance over
795         the GTD arguments must have the same mirror as the GTD itself.
796
797         Fixes #473289.
798
799 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
800
801         * locales.c: Implement support for DISABLE_NORMALIZATION.
802
803 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
804
805         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
806         since it is not a MonoMethod.
807
808 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
809
810         * icall-def.h: Add get_RequiresElevatedPermissions icall to
811         System.Security.SecurityManager - used only by Moonlight
812         * security-core-clr.c|h: Add Elevated Trust/Permission support
813         for CoreCLR / Moonlight
814
815 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
816
817         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
818         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
819
820 2010-04-16  Marek Habersack  <mhabersack@novell.com>
821
822         * mono-perfcounters.c: added code for the "Mono
823         Memory/Total Physical Memory" performance counter.
824
825         * mono-perfcounters-def.h: added definition of the "Mono
826         Memory/Total Physical Memory" performance counter.
827
828 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
829
830         * class.c (mono_class_get_method_by_index): Return NULL
831         on type load failures.
832
833 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
834
835         * class.c (mono_class_from_typeref): Check if the supplied
836         image has an assembly bound to it.
837
838         Fixes #567884.
839
840 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
841
842         * loader.c (mono_method_get_signature_full): Use new function
843         inflate_generic_signature_checked to check for errors.
844
845         Fixes #560839.
846
847 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
848
849         * loader.c (inflate_generic_signature): Add _checked variant
850         and move this function to use it.
851
852 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
853
854         * class.c (mono_class_setup_vtable_general): Use error checking
855         version of mono_class_inflate_generic_method_full.
856
857         Fixes #596975.
858
859 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
860
861         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
862         error handling passing MonoError around.
863
864         Fixes #560336.
865
866 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
867
868         * socket-io.c: make GetHostByName ("") work on windows.
869         Fixes bug #456723.
870
871 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
872
873         * object-internals.h:
874         * threads.c: use a spin lock when accesing the per-thread appdomain
875         list.
876
877 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
878
879         * threads.c: no need to take the threads lock in push/pop appdomain.
880
881 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
882
883         * reflection.c (_mono_reflection_parse_type): MS supports
884         non-assembly-qualified types in a generic type parameter list
885         when enclosed in '[]' (which signals that they should be a fqn).
886
887         This breaks ECMA specs for how type names are encoded in cattr
888         blobs but F# does it.
889
890         Fixes #576342.
891
892 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
893
894         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
895         for instance methods/ctors.
896
897         Fixes #422113.
898
899 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
900
901         * reflection.c: Use the new verifier support for checking
902         custom attributes.
903
904         Fixes #595306.
905
906 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
907
908         * metadata-verify.c: Implement structural verification
909         of custom attributes. This check requires access to the
910         loader since to resolve the size of an enum we have to
911         look it up.
912         We don't check if named argumenments are encoded in a
913         compatible fashion to their underlying field/prop.
914         Maybe we should?
915
916         * verify-internals.h: Add two new cattr verification API.
917
918 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
919
920         * metadata-verify.c (decode_signature_header): Fix signature.
921
922 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
923
924         * verify.c (mono_verifier_is_enabled_for_method): Handle
925         assembly less images.
926
927         * verify.c (mono_verifier_is_class_full_trust): Ditto.
928
929 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
930
931         * loader.c (mono_method_signature_checked): Properly
932         init MonoError.
933
934         * loader.c (mono_method_signature): It's the calee
935         resposibility to init the error object.
936
937 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
938
939         * metadata-verify.c (decode_signature_header): Do proper
940         overflow checking.
941
942 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
943
944         * reflection.c: maintain the invariants required by
945         mono_class_layout_fields() also in typebuilder_setup_fields ().
946
947 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
948
949         * security-core-clr.c: Call mono_class_setup_methods in 
950         get_default_ctor before checking klass->methods. Fix typo in
951         comment
952
953 2010-04-10  Jb Evain  <jbevain@novell.com>
954
955         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
956         add .net 4.0 RTM version.
957
958 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
959
960         * reflection.c (resolve_object): Properly inflate generic
961         methods when a context is supplied.
962
963         Fixes #591226.
964
965 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
966
967         * verify.c (mono_method_verify): A switch op don't empty
968         the stack for the next one. Fixes a bug when running fsi
969         under --verify-all.
970
971 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
972
973         * metadata-verify.c (is_valid_standalonesig_blob): Accept
974         fields as valid standalone sig too. F# does generate them.
975
976         * metadata-verify.c (verify_typedef_table_full): Ignore
977         what <module> extends.
978
979 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
980
981         * verify.c (do_invoke_method): It's ok to do use call with
982         virtual, non-final methods if their class is sealed.
983
984 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
985
986         * icall.c (ves_icall_MonoField_GetValueInternal): This function
987         is a near identical copy of mono_field_get_value_object. So simply
988         call it.
989
990         * object.c (mono_field_get_value_object): Handle literal fields
991         on open generic classes.
992
993         Fixes #594942.
994
995 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
996
997         * reflection.c (mono_reflection_create_runtime_class): Setup
998         parent/supertype information again since it can be changed
999         without notice.
1000
1001 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1002
1003         * verify.c (verify_type_compatibility_full): Properly handle
1004         stores between arrays of primitives.
1005
1006         Fixes the verifier side of #555950.
1007
1008 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
1009
1010         class.c (mono_bounded_array_class_get): Properly init
1011         cast_class to take the fact that uint[] and int[] can be
1012         casted between each other.
1013
1014         Fixes #555950.
1015
1016 2010-04-07  Geoff Norton  <gnorton@novell.com>
1017
1018         * domain.c: Avoid a deadlock on osx.  Fixes #565765
1019
1020 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1021
1022         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
1023         builders. Fixes #594464.
1024
1025 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1026
1027         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
1028         waiting for all threads to suspend, as those threads can't be suspended.
1029
1030 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
1031
1032         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
1033         to avoid crashes on newly created threads.
1034
1035 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1036
1037         * file-io.c: reset the MonoIOStat structure in case of error.
1038         Fixes bug #582667.
1039
1040 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
1041
1042         * class.c (print_implemented_interfaces): Print proper type name.
1043
1044         * class.c (mono_class_setup_vtable): Don't try that hard to produce
1045         the override map for generic instances since it later ignored.
1046
1047         * class.c (mono_class_implement_interface_slow): Don't break for
1048         dynamic generic instances.
1049
1050         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
1051
1052         * reflection.c (mono_reflection_method_get_handle): New method that
1053         resolves a method handle.
1054
1055         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
1056         case when we override methods from a dynamic generic instance interface.
1057
1058         Fixes #575941.
1059
1060 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1061
1062         * threadpool.c: don't attempt to close the pipe when it has not been
1063         created.
1064
1065 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
1066
1067         * threadpool.c: if there are no waiting threads, try to start a new
1068         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1069         No need to use InterlockedCompareExchange to read volatile variables.
1070
1071 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1072
1073         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1074         and reference types that point to the same class.
1075
1076         Fixes #565598.
1077
1078 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1079
1080         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1081         when verifying compatibility between a generic instance and a generic
1082         parameter.
1083
1084         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1085
1086         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1087         name.
1088
1089         Fixes #587849.
1090
1091 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1092
1093         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1094
1095 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1096
1097         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1098
1099 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1100
1101         * process.c: when cross-compiling with MinGW, force GetProcessId
1102         lookup using GetProcAddress.
1103
1104 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1105
1106         * sgen-gc.c: parse_environment_string_extract_number() must be
1107         static.
1108
1109 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1110
1111         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1112         gray_object_dequeue(), to make sure they're inlined.
1113
1114 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1115
1116         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1117         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1118
1119 2010-04-02  Jb Evain  <jbevain@novell.com>
1120
1121         * exception.c: remove dead code.
1122
1123 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1124
1125         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1126         with mono-gc.h.
1127
1128 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1129
1130         * sgen-gc.c: Make the nursery size adjustable by the
1131         MONO_GC_PARAMS environment variable.
1132
1133         Code is contributed under MIT/X11 license.
1134
1135 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1136
1137         * threadpool.c: threadpool threads wait is alertable.
1138         Fixes bug #592964.
1139         Reduced the stack size of the *poll_wait thread.
1140
1141 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1142
1143         * exception.c|metadata-internals.h: Add new mono_get_exception_
1144         field_access_msg and mono_get_exception_method_access_msg 
1145         functions that accept a const char* parameter to provide more 
1146         details when the exception is thrown.
1147         * security-core-clr.c|h: Rework code to allow logging exceptions
1148         (export MONO_LOG_MASK="security") and to supply more details in
1149         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1150         mono_security_core_clr_is_field_access_allowed and 
1151         mono_security_core_clr_is_call_allowed to return an exception,
1152         with messages and logging, that can be emitted by method-to-ir.c
1153
1154 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1155
1156         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1157         pinned object.
1158
1159 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1160
1161         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1162         the assembly name is not well formed utf8. Fixes #567882.
1163
1164 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1165
1166         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1167         the generic parameters from the builder. Fixes #473298.
1168
1169 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1170
1171         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1172
1173         * marshal.c (emit_marshal_boolean): Eliminate possible
1174         uninitialized local warning. 
1175
1176 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1177
1178         * class.c (mono_class_init): Postpone coreclr inheritance check
1179         until the end of the initialization (so we can check up the 
1180         default ctor manually for the core-clr inheritance rules).
1181         * security-core-clr.c: Add the missing (undocumented) checks on
1182         default constructors when verifying inheritance rules.
1183
1184 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1185
1186         * domain-internals.h (MonoJitExceptionInfo): Add new field
1187         handler_end to the data union. To be used to point the end
1188         of a finally block.
1189
1190 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1191
1192         * reflection.c: Add support for new v4 type
1193         System.Reflection.MonoModule that is the concrete version
1194         of Module which is abstract unver v4.
1195
1196 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1197
1198         * class.c (mono_class_init): Don't set class failure after
1199         inited = 1 is set. It must be done before.
1200
1201 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1202
1203         * mono-config.c: Add support for OS "haiku"
1204         * ChangeLog: Fix UTF-8 encoding
1205
1206         Code is contributed under MIT/X11 license.
1207
1208 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1209
1210         * console-unix.c: fixed include logic for sys/ioctl.h.
1211
1212 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1213
1214         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1215         systems.
1216
1217 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1218
1219         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1220         unfinished/broken typebuilders.
1221
1222 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1223
1224         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1225         for the minor section allowance.
1226
1227 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1228
1229         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1230         "NoOptimization".
1231
1232 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1233
1234         * sgen-gc.c: Count bytes allocated with heavy statistics.
1235
1236 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1237
1238         * sgen-gc.c: More detailed time statistics.
1239
1240 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1241
1242         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1243         fix the user defined mark interface to pass a pointer
1244         to the object location and not the object itself.
1245
1246 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1247
1248         * reflection.c (mono_method_body_get_object): Release
1249         the method header before the call to CACHE_OBJECT since
1250         this is a macro that returns.
1251
1252 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1253
1254         * class.c (inflate_generic_type): mono_metadata_type_dup
1255         already dupes array information, the g_memdup was just
1256         leaking memory.
1257
1258 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1259
1260         * verify.c: Add stack_peek function. Fix CEE_DUP
1261         to not read from invalid memory if push did expand
1262         the stack.
1263
1264 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1265
1266         * verify.c: Remove old table verification code that has
1267         been superseeded by the new metadata verifier.
1268
1269         * verify.h: Remove mono_image_verify_tables from the public
1270         API.
1271
1272         * pedump.c: Fix for removed bits.
1273
1274 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1275
1276         * verify.c: Allocate stack slows lazily to reduce stack usage
1277         in case of methods with huge stacks. Reduces memory consumption
1278         for mcs yyparse from 459Mb to 1.8Mb.
1279
1280 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1281
1282         * threadpool.c: don't try executing items from domains being
1283         unloaded. Fixes appdomain-async-invoke test.
1284
1285 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1286
1287         * threadpool.c: spin while the threadpool initializes.
1288         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1289         down, don't do anything.
1290
1291 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1292
1293         * threads.c (mono_thread_create_internal): Set the GC type of the
1294         threads_starting_up hash table.
1295
1296 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1297
1298         * threadpool.c: reset 'state' to avoid returning non-null when the
1299         event type is not found.
1300
1301 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1302
1303         * sgen-gc.c: make copy_object () take the address of the
1304         slot holding the reference. This allows saving memory stores
1305         when not needed and it allows keeping track of oldspace->nursery
1306         references for the card table code.
1307
1308 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1309
1310         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1311
1312         Code is contributed under MIT/X11 license.
1313
1314 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1315
1316         * object.c, threads.c, threads-types.h, threads.h: make the
1317         managed thread local storage references precisely tracked.
1318
1319 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1320
1321         * threadpool.[ch]: reworked the threadpool:
1322                 -Threadpool threads use a work-stealing queue. Adding a work
1323                 item from a threadpool thread will queue it in the thread
1324                 local queue without locking (in most cases).
1325                 -epoll events are coalesced before being added to the IO
1326                 queue.
1327                 -Dynamically change the number of active threads
1328                 -Changed the global queue to be more GC friendly
1329
1330         * class-internals.h: add 2 new performance counters for the number of
1331         threads in the threadpool and the IO threadpool.
1332
1333         * object-internals.h: new field in MonoAsyncResult.
1334         * icall-def.h: new internal call for queueing work items.
1335
1336         * Makefile.am: add 2 new files.
1337
1338         * appdomain.c: bump up corlib version.
1339
1340         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1341
1342         * mono-perfcounters-def.h:
1343         * mono-perfcounters.c: added 2 new performance counters.
1344
1345 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1346
1347         * sgen-gc.c: More FIXME/TODO updates.
1348
1349 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1350
1351         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1352         function mono_gc_invoke_with_gc_lock() which invokes a function
1353         with the guarantee that no collection will occur during its execution.
1354
1355 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1356
1357         * sgen-gc.c: Update a few comments.
1358
1359 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1360
1361         * reflection.c: Add support for new v4 type
1362         System.Reflection.MonoAssembly that is the concrete version
1363         of Assembly which is abstract unver v4.
1364
1365 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1366
1367         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1368         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1369
1370         Expose a few macros that are needed for SR but not SRE to the
1371         world (previous inside the SRE ifdef)
1372
1373 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1374
1375         * sgen-gc.c (gc_register_current_thread): We need
1376         stack_start_limit as well in the non-attribute pthread case.
1377
1378 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1379
1380         * threads.c: Fix windows build.
1381
1382 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1383
1384         * thread-types.h: Add mono_thread_resume_interruption.
1385
1386         * threads.c: Add mono_thread_resume_interruption, this
1387         function should be called after the last protected handler
1388         found at interruption time has finished.
1389
1390 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1391
1392         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1393         Check MonoInternalThread's ::state instead of ::abort_exc
1394         since the later can be lazily created.
1395
1396         This is specially problematic when running a finally block
1397         under AbortRequested state. ResetAbort must work, but the
1398         abort_exc object has not been created because interruption
1399         has not began.
1400
1401 2010-03-22  Geoff Norton  <gnorton@novell.com>
1402
1403         * locales.c: Its possible for CFStringGetCStringPtr
1404         to return null and not convert encodings.  Use
1405         CFStringGetCString instead.
1406
1407 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1408
1409         * class-internals.h, class.c, object.c: introduce compressed
1410         interface bitmaps (for now only under small config): this saves
1411         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1412         startups.
1413
1414 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1415
1416         * mono-debug.c: don't try to get the method header, it causes a
1417         deadlock and it is not used for anything anymore.
1418
1419 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1420
1421         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1422         broken by the last change.
1423
1424 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1425
1426         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1427         SOCK_RDM.
1428         
1429         Code is contributed under MIT/X11 license.
1430
1431 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1432
1433         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1434         nursery.
1435
1436         Code is contributed under MIT/X11 license.
1437
1438 2010-03-19  Martin Baulig  <martin@ximian.com>
1439
1440         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1441         dummy field, containing an empty string.
1442         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1443
1444
1445 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1446
1447         * class.c: setup_interface_offsets() refactor to not call
1448         mono_class_get_implemented_interfaces () more times than needed and
1449         to reduce the runtime memory requirements to be O(num_interfaces)
1450         instead of O(max_interface_id).
1451
1452 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1453
1454         * mono-mlist.[ch]: add mono_mlist_set_next ().
1455
1456 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1457
1458         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1459         associated changes to support holes in the protected range of a
1460         try block.
1461
1462         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1463         retrieves the holes table from a given MonoJitInfo.
1464
1465 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1466
1467         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1468         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1469         hide the contents of the MonoString and MonoArray structs from the
1470         public API. Change the accessor macros to accessors functions where
1471         needed. Adjusted the array API to allow for pointer-sized lengths and
1472         starting positions, so 64 bit arrays can be optionally provided in an
1473         API compatible way if needed on 64 bit systems.
1474
1475 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1476
1477         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1478         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1479
1480 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1481
1482         * class-internals.h: remove the method header from MonoMethod since
1483         from now on it will be transient. We have a header pointer for method
1484         wrappers, since in that case we need to keep track of it. For this
1485         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1486         structs now. The same happens with MonoMethodInflated.
1487         * class.c: reset the sre_method flag for inflated method structures:
1488         this makes the code that cares look at the header in the MonoMethodInflated
1489         structure.
1490         * loader.c: lookup the method header in the appropriate field now that
1491         it is removed from MonoMethod.
1492         * metadata-internals.h: add a flag to the method header to know if it
1493         can be freed inside mono_metadata_free_mh ().
1494         * method-builder.c: updates after moving the header field from
1495         MonoMethod to MonoMethodWrapper.
1496         * reflection.c: MonoMethods generated from Reflection.Emit use
1497         MonoMethodWrapper structs if they need a method header now (later take
1498         advantage of this and remove all the current unsafe uses of method_aux_hash).
1499         * metadata.c: make method header parsing not leak when verification
1500         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1501         These changes save a few hundred KB of runtime memory in a mcs
1502         bootstrap or a monodevelop startup.
1503
1504 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1505
1506         * verify.c: Improve error message.
1507
1508 2010-03-12  Jb Evain  <jbevain@novell.com>
1509
1510         * reflection.c (add_exported_type): populate the exported
1511         table with the type's nested type.
1512
1513 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1514
1515         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1516         can't read parentheses.
1517
1518 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1519
1520         * threads.c (thread_cleanup): Add a guard to dereferencing
1521         "thread" to avoid an unlikely race condition.
1522
1523 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1524
1525         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1526         instead of an empty string.
1527
1528 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1529
1530         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1531         convert to a boolean, recent gcc versions compile this differently.
1532
1533 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1534
1535        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1536        inlined.
1537
1538 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1539
1540         * sgen-gc.c (STRING_SIZE): Off by one.
1541
1542 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1543
1544         * sgen-archdep.h: Fix the signal context register access for
1545         AMD64.
1546
1547 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1548
1549         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1550
1551 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1552
1553         * verify.c: Store the initial basic block returned by mono_basic_block_split
1554         so we can release the whole list and not just the first one.
1555
1556 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1557
1558         * verify.c, debug-helpers.c, profiler.c, loader.c,
1559         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1560         MonoMethodHeader a transient entity.
1561
1562 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1563
1564         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1565         uncontrolled growth of the gray stack.
1566
1567         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1568         added items are removed first, improving cache locality. Avoid freeing queue
1569         segments in the fast path, use the list of segments as the free list, truncate
1570         it to its max size at the start of collection.
1571
1572 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1573
1574         * metadata-internals.h: more memory savings, both with small config and without.
1575
1576
1577 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1578
1579         * appdomain.c, domain-internals.h, domain.c, object.c:
1580         make class_vtable_hash into an array to reduce memory usage.
1581
1582 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1583
1584         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1585         object-internals.h, object.c, reflection.c, threadpool.c:
1586         reduce resource usage when the small config is selected.
1587         In particular, up to 64K of methods/fields/properties/events
1588         are allowed and "other" methods in events are ignored.
1589
1590 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1591
1592         * threads.c: reduce resource usage when compiled for a small config.
1593
1594 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1595
1596         * sgen-gc.c: Also collect number of degraded-alloced objects with
1597         heavy statistics.
1598
1599 2010-03-04  Geoff Norton  <gnorton@novell.com>
1600
1601         * assembly.c: Only support OSX bundling if the bundle is 
1602         actually detectable.
1603
1604 2010-03-04  Geoff Norton  <gnorton@novell.com>
1605
1606         * loader.c: The marshal specs are freed at the end of the call
1607         but it explicitly frees the strings as well as the container,
1608         so we need to dup them too to avoid referencing free'd memory.
1609
1610 2010-03-04  Geoff Norton  <gnorton@novell.com>
1611
1612         * icall-def.h:
1613         * icall.c: Add a new private internal icall to construct
1614         an object from its type without running the ctor.
1615
1616 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1617
1618         * profiler.c: allow multiple profiler engines to be loaded
1619         at the same time.
1620
1621 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1622
1623         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1624         profiler event to track object moves.
1625
1626 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1627
1628         * object.c, profiler.c, profiler.h, string-icalls.c:
1629         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1630
1631 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1632
1633         * decimal.c (mono_double2decimal): Add support for reducing the
1634         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1635         expected.
1636
1637 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1638
1639         * icall-def.h:
1640         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1641
1642 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1643
1644         * mono-config.c (mono_config_parse_assembly_bindings): added -
1645         parses assembly binding redirections from appdomain's config
1646         file.
1647
1648         * metadata-internals.h: added definition of a new function -
1649         mono_config_parse_assembly_bindings - to support parsing assembly
1650         binding redirections defined in appdomain's config file.
1651
1652         * domain-internals.h: added two new fields to _MonoDomain - a list
1653         of assembly bindings and a flag to parse the config file only
1654         once.
1655
1656         * assembly.c (assembly_binding_maps_name): empty culture name and
1657         NULL culture name are considered equal.
1658         (mono_assembly_apply_binding): added support for domain specific
1659         assembly binding redirections, read from the appdomain's
1660         configuration file. Fixes bug #580185
1661
1662 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1663
1664         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1665         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1666         support.
1667
1668 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1669
1670         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1671         from this function. The new function receive the parent token instead of a type.
1672
1673         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1674         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1675         typebuilders. This make it possible to properly encode generic type builders since
1676         their unmanaged type don't have generics data while unfinished.
1677
1678         Fixes #583655.
1679
1680 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1681
1682         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1683         writing binary log files (can be enabled by #define'ing
1684         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1685         bugs in longer running programs.
1686
1687 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1688
1689         * metadata.c: added some API documentation.
1690
1691 2010-03-01  Robert Jordan  <robertj@gmx.net>
1692
1693         * filewatcher.h: Include glib.h to fix the MSVC build.
1694
1695 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1696
1697         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1698         a GC handle instead. This is a bit slower to access, but avoids burdening the
1699         GC with 100s of individual roots.
1700
1701         * reflection.c (mono_class_get_ref_info):
1702         (mono_class_set_ref_info):
1703         (mono_class_free_ref_info): New internal helper fuctions.
1704
1705         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1706         of accessing klass->reflection_info directly.
1707
1708         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1709         words.
1710
1711         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1712         the previous array.
1713
1714 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1715
1716         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1717         needs an indirection.
1718
1719 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1720
1721         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1722         so all generic sharing code is in one place.
1723
1724         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1725         we don't call setup_interface_offsets () for unfinished types.
1726
1727 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1728
1729         * class.c (mono_class_generic_sharing_enabled): Move this to
1730         generic-sharing.c.
1731
1732         * image.c: Add an unload hook which is called before an image is unloaded.
1733
1734         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1735         metadata.c having to depend on generic sharing.
1736
1737 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1738
1739         * class.c: reduce size of ridiculously large cache.
1740
1741 2010-02-26  Martin Baulig  <martin@ximian.com>
1742
1743         * mono-debug.h
1744         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1745
1746         * threads.c (mono_thread_internal_reset_abort): New method; resets
1747         the abort, but doesn't throw any exception if no abort was requested.
1748
1749 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1750
1751         * class.c (get_implicit_generic_array_interfaces): Call
1752         mono_class_setup_interface_offsets () before accessing
1753         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1754         some reason.
1755
1756 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1757
1758         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1759         icall internal.
1760
1761 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1762
1763         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1764         direct access to the MonoType fields.
1765
1766 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1767
1768         * threads.h: Move some internal functions which were added to this header by
1769         mistake to threads-types.h.
1770
1771         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1772
1773 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1774
1775         * class-internals.h, class.h, object.h: make MonoRemoteClass
1776         and mono_remote_class() internal.
1777
1778 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1779
1780         * metadata-internals.h, class-internals.h, metadata.h: make the
1781         MonoType guts internal as well.
1782
1783 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1784
1785         * reflection.h: the MonoTypeNameParse guts are internal now.
1786         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1787         are internal now, provide accessors as needed.
1788         * metadata.h, metadata-internals.h: the MonoMethodSignature
1789         guts are internal now.
1790         * Makefile.am: mempool.h is an internal header now.
1791         * *.h, *.c: remove glib.h usage from the public headers.
1792
1793 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1794
1795         * culture-info-table.h : regenerated.
1796
1797 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1798
1799         * metadata.c: Add mono_method_get_header_summary which returns minimal
1800         information about the header of a method. This is the information used
1801         by the inline oracle to reject methods.
1802
1803         This method doesn't decode local variables and doesn't cache it's result,
1804         so it should cause a minimal reduction in memory usage.
1805
1806         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1807         mono_method_get_header_summary.
1808
1809 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1810
1811         * threads.c (mono_thread_exit): Make sure that the main thread is
1812         non-null before dereferencing it.
1813
1814 2010-02-21  Geoff Norton  <gnorton@novell.com>
1815
1816         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1817         locale.
1818         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1819         before falling back to the posix lookup.
1820
1821 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1822
1823         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1824         the DONT_MANAGE flag set.
1825
1826 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1827
1828         * domain.c: Remove old v1 version strings. Let the runtime
1829         default to 2.0 instead of failing because it can't find a
1830         working 1.0 instalation.
1831
1832 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1833
1834         * domain.c: Add v4 RC version string.
1835
1836 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1837
1838         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1839         of overflow checking function.
1840
1841 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1842
1843         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1844         generic methods.
1845
1846         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1847         cases for ParameterInfo.
1848
1849         Fixes #579493.
1850
1851 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1852
1853         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1854         have has_cctor set. Fixes #575946.
1855
1856 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1857
1858         * appdomain.c: display a warning if the parsing the config file
1859         produces any error.
1860         Skip the BOM in UTF-8 files.
1861         Copy the AppDomainSetup before setting the privateBinPath so that the
1862         correct configuration file is read.
1863
1864 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1865
1866         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1867         vtable trampoline per vtable slot index. Not used yet.
1868
1869 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1870
1871         * icall-def.h:
1872         * icall.c: add internal call that returns the system page size.
1873
1874 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1875
1876         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1877         'int' for system classes.
1878
1879 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1880
1881         * icall.c, icall-def.h: new icall to check for sufficient
1882         stack space.
1883
1884 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1885
1886         * reflection.c (ensure_complete_type): Check that reflection_info
1887         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1888
1889 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1890
1891         * attrdefs.h:
1892         * tabledefs.h: Add NoOptimization flag.
1893
1894 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1895
1896         * sgen-gc.c: Don't consider it a missing remset if the target
1897         object is pinned - we might have done the store but not added the
1898         remset yet.
1899
1900 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1901
1902         * sgen-gc.c: When checking for missing remsets, don't assert on
1903         the first one, but print them all and then assert.
1904
1905 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1906
1907         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1908
1909 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1910
1911         * console-unix.c: On OSX Control-Y is assigned to
1912         VDSUSP (non-Posix), the
1913         suspend-program-next-time-it-tries-to-read-input command (this is
1914         different than C-z, which suspends immediately).
1915
1916         Do the same thing that bash does and ignore this setting,
1917         making our repl/getline support pasting.
1918
1919 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1920
1921         * sgen-gc.c: Simple plausibility check for scan_starts.
1922
1923 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1924
1925         * sgen-gc.c: Round up when calculating the number of scan starts.
1926
1927 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1928
1929         * reflection.c: Export mono_get_object_from_blob.
1930
1931         * object-internals.h: Ditto.
1932
1933         * icall.c: New icall property_info_get_default_value to get the default
1934         value of a property. Since using this is not common, no caching is done.
1935
1936         * icall-def.h: Add new icall.
1937
1938 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1939
1940         * class.c: Add mono_class_get_property_default_value.
1941
1942         * class-internal.h: Export mono_class_get_property_default_value.
1943
1944 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1945
1946         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1947
1948 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1949
1950         * sgen-gc.c: introduced critical regions to allow some lockless
1951         operations and increase scalability.
1952
1953 2010-02-10  Geoff Norton  <gnorton@novell.com>
1954
1955         * reflection.c: Support building with DISABLE_REFLECTION
1956
1957 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1958
1959         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1960         Closes bug #566057.
1961
1962         * exception.c: fix typo in comment.
1963
1964 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1965
1966         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1967         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1968
1969         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1970
1971         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1972         the internal API.
1973
1974         Fixes #574434.
1975
1976 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1977
1978         * threads.c: Removed two assertions that were too strict.  Added a
1979         clarifying comment.  Fixes #577090.
1980
1981 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1982
1983         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1984         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1985
1986         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1987
1988         * verify.c (mono_type_get_stack_name): Fix a warning.
1989
1990 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1991
1992         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1993         mono_marshal_wrapper_info_from_wrapper.
1994
1995         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1996         mono_marshal_method_set_wrapper_data, and export.
1997
1998         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1999         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
2000         by calling mono_marshal_get_wrapper_info ().
2001
2002         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
2003         small objects which does no size checks.
2004
2005 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
2006
2007         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
2008
2009 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2010
2011         * verify.c (mono_method_verify): Use the new basic block formation pass
2012         to avoid verifying dead basic blocks. This is the same behavior as the
2013         runtime MS verifier.
2014
2015 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
2016
2017         * mono-basic-block.c:
2018         * mono-basic-block.h: New implementation of a basic block formation pass.
2019         The formation pass does static liveness analysis as well to detect dead
2020         basic blocks.
2021
2022 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
2023
2024         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
2025         'this' argument in icalls.
2026
2027 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
2028
2029         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
2030
2031 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2032
2033         * object.c, domain.c: When using SGen, we must register
2034         vtable->type as a root if it's not a MonoType, because then it
2035         wasn't pin-alloced.
2036
2037 2010-02-01  Mark Probst  <mark.probst@gmail.com>
2038
2039         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
2040         at the start of nursery collections, because we might have had
2041         degraded allocations which changed next_data.
2042
2043 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
2044
2045         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
2046         custom attr so this function works in cross-compiling mode.
2047
2048 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
2049
2050         * class.c (make_generic_param_class): Initialize interface offsets since we
2051         set klass->inited. Fixes #574819.
2052
2053 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
2054
2055         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
2056         calling the JIT domain cleanup hook.
2057
2058 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2059
2060         * pedump.c (main): Properly set the verifier mode when running the metadata
2061         verifier.
2062
2063 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
2064
2065         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
2066         overlapping fields now that we're called before has_references is set.
2067
2068         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2069         method. Otherwise all sort of weird stuff happens.
2070
2071 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2072
2073         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2074         Fixes #572874.
2075
2076 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2077
2078         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2079         Fixes #573322.
2080
2081 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2082
2083         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2084         pin_staging_area_index is greater than 0.
2085
2086 2010-01-22 Miguel de Icaza (miguel@novell.com)
2087
2088         * loader.c: Since we do nothing with the error returned, pass NULL
2089         to ignore the error.
2090
2091 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2092
2093         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2094         happened before starting to encode the actual fields. This avoid ciclic
2095         dependencies and eventual crashes.
2096
2097         Fixes #572660.
2098
2099 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2100
2101         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2102         atomic and remove the half-constructed hack in SGen.
2103
2104 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2105
2106         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2107         has a recursive reference to itself.
2108
2109         Fixes #571863.
2110
2111 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2112
2113         * loader.c (mono_method_signature): Fix error message.
2114
2115 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2116
2117         * sgen-gc.c: Reuse to-space sections between nursery collections.
2118
2119 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2120
2121         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2122         from the current assembly or mscorlib. Fixes bug #322957.
2123
2124 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2125
2126         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2127         get_wrapper_target_class.
2128
2129 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2130
2131         * sgen-gc.c: Fix warnings.
2132
2133 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2134
2135         * verify.c (store_local): Better error message.
2136
2137 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2138
2139         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2140         arguments.
2141
2142 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2143
2144         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2145         function is generics variance aware.
2146
2147 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2148
2149         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2150         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2151
2152 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2153
2154         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2155           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2156
2157         Code is contributed under MIT/X11 license.
2158
2159 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2160
2161         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2162         on a GTD.
2163
2164 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2165
2166         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2167         return a point to a wrapper specific info structure describing the wrapper.
2168         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2169  
2170 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2171  
2172         * sgen-gc.c: Make minor collection section allowance adaptive,
2173         depending on the amount of memory reclaimed in the last major
2174         collection.  If more memory was reclaimed (i.e. more garbage
2175         produced), do the next collection earlier.
2176
2177 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2178
2179         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2180         to itself.
2181
2182         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2183         the token as parameter.
2184
2185         * verify-internals.h: Ditto.
2186
2187         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2188
2189         Fixes #571460.
2190
2191 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2192
2193         * sgen-gc.c: Make store_remset_buffer_index long.
2194
2195 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2196
2197         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2198
2199         Fixes #569579.
2200
2201 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2202
2203         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2204         off precise marking if it is available.
2205         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2206
2207 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2208
2209         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2210
2211         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2212         pinned objects.
2213
2214         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2215         to the array allocator.
2216
2217 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2218
2219         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2220         result of mono_compile_method (), it already includes an ftnptr.
2221
2222 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2223
2224         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2225
2226 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2227
2228         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2229         hash value which doesn't depend on glib/eglib versions.
2230         (mono_metadata_type_hash): Use it.
2231
2232         * object.c (mono_method_get_imt_slot): Ditto.
2233
2234 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2235
2236         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2237         independently of the GTD.
2238
2239         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2240
2241         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2242         to the upper limit since instance_size includes this amount.
2243
2244         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2245
2246         Fixes #569544.
2247
2248 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2249
2250         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2251         with static methods.
2252
2253         * object.c (build_imt_slots): Avoid asserting when static methods are
2254         encountered in an interface.
2255
2256 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2257
2258         * sgen-gc.c (to_space_expand): Fix assertion.
2259
2260 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2261
2262         * string-icalls.c: missing declaration fixes.
2263         * sgen-gc.c: portability fixes.
2264
2265 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2266
2267         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2268
2269         * class.c:
2270         * cominterop.c:
2271         * icall.c:
2272         * object.c: 
2273         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2274
2275 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2276
2277         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2278         it can fail loading the type.
2279
2280         * class.c: Add mono_class_inflate_generic_class_checked.
2281
2282         * class.c:
2283         * verify.c:
2284         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2285
2286 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2287
2288         * loader.c (mono_method_signature_checked): New internal function taking an
2289         MonoError argument.
2290
2291         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2292         Fixes build on rh 7.3.
2293
2294 2010-01-10  Aaron Bockover  <abockover@novell.com>
2295
2296         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2297         at runtime in the same way as on Windows, which yields a relocatable
2298         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2299         of the running mono process.
2300
2301         On TARGET_ARM, fallback () will always be executed.
2302
2303 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2304
2305         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2306
2307 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2308
2309         * class.c (mono_class_is_assignable_from_slow): Support variant
2310         generic delegates.
2311
2312         * class.c (mono_class_implement_interface_slow): Support types with
2313         variant generic arguments.
2314
2315 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2316
2317         * verify.c: Remove some code duplication.
2318
2319 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2320
2321         * object.c: Update docs.
2322
2323 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2324
2325         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2326
2327         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2328         fallback trampoline as well.
2329
2330         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2331         out argument that is set to TRUE if the match was direct. 
2332
2333         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2334
2335         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2336
2337 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2338
2339         * class.c: Add mono_class_interface_offset_with_variance function that does same
2340         as mono_class_interface_offset but takes variance into account.
2341
2342         * class-internal.h: Export mono_class_interface_offset_with_variance.
2343
2344         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2345
2346 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2347
2348         * object.c:
2349         * icall.c:
2350         * class.c: Add some FIXME for due to variant generic arguments.
2351
2352         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2353         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2354         the bitfield check fails.
2355
2356 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2357
2358         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2359         to be easier to read and fix bugs in the case a non generic type implements a variant
2360         interface.
2361
2362         * class.c (mono_class_has_variant_generic_params): Make non static.
2363
2364         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2365         the private API.
2366
2367 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2368
2369         * assembly.c: fix MONO_PATH debug output.
2370
2371 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2372
2373         * culture-info-table.h : regenerated.
2374
2375 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2376
2377         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2378         types that are meant to not have a parent.
2379
2380 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2381
2382         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2383         from the image mempool, so it is not leaked.
2384
2385 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2388
2389 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2390
2391         * verify.c (verify_valuetype_layout_with_target): Fix case
2392         that can lead to infinite recursion. Fix bug #567861
2393
2394 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2395
2396         * pedump.c: Run code verifier even if image verification fails
2397         due to a failed type we. This allows more errors to be shown.
2398
2399 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2400
2401         * class.c (count_virtual_methods): Remove the assert and now
2402         fail properly.
2403         
2404         * class.c (setup_interface_offsets): This can fail now.
2405
2406         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2407         errors. Check setup_interface_offsets errors.
2408
2409         * class.c (setup_interface_offsets): Simplify the return error logic
2410         and remove class_init_ok.
2411
2412         Fixes #560327.
2413
2414 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2415
2416         * class.c (mono_class_init): Do class verification at the beginning. Add
2417         some asserts to avoid tripping into invalid memory.
2418
2419         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2420         g_error and a decent message.
2421
2422         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2423
2424         Fixes #567548.
2425
2426 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2427
2428         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2429         as inline functions instead of defining them in mempool.c.
2430
2431         * metadata-internals.h (MonoImageSet): New structure representing a set of
2432         MonoImages, which own a collection of generic instances.
2433
2434         * metadata.c: Get rid of the global generic caches, instead assign each generic
2435         instance to the image set which consists of all the images referenced by the
2436         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2437         the memory used by generic instances to be allocated from a per image-set mempool
2438         later.
2439
2440 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2441
2442         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2443
2444 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2445
2446         * appdomain.c (zero_static_data): Fix a warning.
2447
2448         * locales.c (construct_culture_from_specific_name): Applied patch from
2449         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2450         not found. Fixes #567900.
2451
2452 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2453
2454         * loader.c (mono_method_get_signature_full): Remove two asserts.
2455         Return NULL instead so that the verifier can handle both cases 
2456         gracefully.
2457
2458 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2459
2460         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2461         so we can properly fail types instead of crashing.
2462
2463         Fixes #567676.
2464
2465 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2466
2467         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2468         generic method.
2469
2470 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2471
2472         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2473
2474 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2475
2476         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2477         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2478         we can't remove it from it since we don't hold the lock.
2479         (mon_new): Free the orphaned events here when a mon structure is added to the
2480         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2481         this down.
2482
2483 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2484
2485         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2486         as max stack might be zero.
2487
2488         Fixes #562320.
2489
2490 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2491
2492         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2493
2494         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2495         instances if the GTD did.
2496
2497         * class.c (mono_class_setup_properties): Ditto.
2498
2499         * class.c (mono_class_setup_events): Ditto.
2500
2501         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2502
2503         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2504         error setting.
2505
2506         * class.c (mono_class_init): Fail if GTD did.
2507
2508         * cominterop.c:
2509         * generic-sharing.c:
2510         * icall.c:
2511         * loader.c:
2512         * object.c:
2513         * verify.c: Properly handle failure of mono_class_setup_methods.
2514
2515 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2516
2517         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2518         mono_class_inflate_generic_method_full internal.
2519
2520         * class.c (inflate_generic_context): Now takes a MonoError argument.
2521
2522         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2523         errors.
2524
2525 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2526
2527         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2528         they cannot be patched. Partly fixes #564408.
2529
2530 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2531
2532         * metadata-internals.h, reflection.c: Use the
2533         MonoDynamicImage.handleref hash table only with unmanaged keys,
2534         and add a managed hash table handleref_managed for managed keys.
2535
2536 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2537
2538         * sgen-gc.c: Unset to-space bumper between collections.  It might
2539         become invalid due to degraded allocations.
2540
2541 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2542
2543         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2544         with the one from the original method.
2545
2546         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2547         compatibility.
2548
2549         * verify-internals.h: Add new function to the internal API.
2550
2551 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2552
2553         * culture-info-tables.h: regenerated it to include the Georgian culture.
2554
2555 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2556
2557         * sgen-gc.c: Include mono/utils/memcheck.h.
2558
2559         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2560         instead of the current domain, since the two might not match if this is called
2561         from the debugger.
2562
2563         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2564         domain which created this assembly.
2565
2566 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2567
2568         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2569
2570 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2571
2572         * sgen-gc.c: Managed implementation of the specialized generic
2573         store write barrier.
2574
2575 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2576
2577         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2578         A private virtual newslot method is used to implement an interface method without exposing
2579         it to users. When querying for public instance methods, such method would hide a public one
2580         on a parent type.
2581
2582         Fixes #564379.
2583
2584 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2585
2586         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2587         conventions.
2588
2589 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2590
2591         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2592
2593 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2594
2595         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2596         as they are no longer used.
2597         
2598          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2599
2600         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2601
2602 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2603
2604         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2605         if the owner class has not been finished before returning reflection_info.      
2606
2607         Fixes #565127.
2608
2609 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2610
2611         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2612         param doesn't have custom attributes. Fixes #565117.
2613
2614         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2615         #565120.
2616
2617 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2618
2619         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2620
2621 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2622
2623         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2624         same amount done by a core-clr enabled runtime.
2625
2626 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2627
2628         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2629         the target files is reset to writable by owner and readable by
2630         everyone else to prevent problems when updating shadow copies of
2631         files whose source is read-only. Fixes bug #556884
2632
2633 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2634
2635         * class.c (mono_generic_class_get_class): Allocate the generic
2636         class via malloc again, so that it can be freed when any one of
2637         the images of its constituent types is closed.
2638
2639         * metadata.c: When closing an image, don't free generic insts and
2640         generic classes right away, but put them into a list for later
2641         freeing.
2642
2643         * image.c, metadata-internals.h: Store the free list and in the
2644         second pass of closing an image, free it.
2645
2646 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2647
2648         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2649
2650         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2651         types in type_hash.
2652
2653         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2654
2655 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2656
2657         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2658         user type.
2659
2660         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2661         is used.
2662
2663 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2664
2665         * verify.c (mono_method_verify): The Unused opcodes produce an
2666         InvalidProgramException on .NET
2667
2668 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2669
2670         * loader.c (mono_method_get_header): Move assert after the verifier
2671         has been called on the method header.
2672
2673 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2674
2675         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2676
2677         * appdomain.c: Bump corlib version.
2678
2679 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2680
2681         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2682         types as well since otherwise generic instances would not return UT as arguments but
2683         their undelying system type.
2684
2685         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2686         to reflect the fact that they can have now multiple different types.
2687
2688         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2689
2690         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2691
2692         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2693
2694         * reflection.c (mono_reflection_register_with_runtime): Init super types
2695         if the image is not dynamic.
2696
2697         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2698         check if the generic type definition is a TypeBuilder.
2699
2700         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2701         doesn't belong to a dynamic image, skip initialization.
2702
2703         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2704         base definition is not a dynamic type.
2705
2706 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2707
2708         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2709         mono_profiler_string_allocation
2710
2711         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2712         if string profiling is enabled, call
2713         mono_profiler_string_allocation
2714
2715         * profiler.h: added two MonoProfileFlags -
2716         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2717         installation functions for the hooks below.
2718
2719         * profiler-private.h, profiler.c: added two hooks:
2720         mono_profiler_string_allocation called whenever a string is
2721         allocated by InternalAllocateStr and mono_profiler_iomap called
2722         whenever IOMAP code performs an adjustement on a file path.
2723
2724 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2725
2726         * boehm-gc.c: fixed race condition while getting the target of a
2727         disappearing link (bug #522233).
2728
2729 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2730
2731         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2732         the error.
2733
2734 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2735
2736         * reflection.c: Add mono_reflection_register_with_runtime icall to
2737         allow a MonoGenericClass to register itself as the managed mirror of
2738         a given generic instance.
2739         This is a temporary workaround until all MGC instantiation happens in
2740         managed code.
2741
2742         * object-internals.h: Ditto.
2743
2744         * icall-def.h: Ditto.
2745
2746 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2747
2748         * sgen-gc.c (find_in_remsets): Also search the generic store
2749         remsets.
2750
2751 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2752
2753         * sgen-gc.c: Don't access class names in debugging code when
2754         unloading a domain, because they might not be valid anymore.
2755
2756 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2757
2758         * domain.c, domain-internals.h: New function mono_domain_unset().
2759
2760         * appdomain.c (unload_thread_main): Detach the thread again at the
2761         end.
2762
2763         * threads.c: When a thread exists or is detached, unset its domain
2764         so that it's NULL when, for example, a pthread destructor runs.
2765
2766         * sgen-gc.c: Assert that there is no domain set after a thread is
2767         done.
2768
2769 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2770
2771         * class.c (mono_generic_class_get_class),
2772         metadata.c (free_generic_class): Allocate generic MonoClass's from
2773         the image mempool, not via malloc.  The problem with malloc is
2774         that when unloading a domain those classes are freed before
2775         clearing the heap and SGen needs the classes.  Rewriting the
2776         unloading code to do the free later would be more work and there's
2777         no point in using malloc anyway.
2778
2779 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2780
2781         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2782         before returning.
2783
2784 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2785
2786         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2787         user string blobs.
2788
2789         * verify-internals.h: Add new function to the internal API.
2790
2791         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2792         check if it's a valid string.
2793
2794         * object.c (mono_ldstr): Ditto.
2795
2796         Fixes #561943.
2797
2798 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2799
2800         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2801         from a method before returning it. This is the expected behavior.
2802
2803 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2804
2805         * reflection.c (inflate_method): Handle the case of a regular system type.
2806
2807 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2808
2809         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2810         gathering code.
2811
2812         * mempool.c, mempool-internals.h: New function
2813         mono_mempool_get_bytes_allocated().
2814
2815         * Makefile.am: sgen-pinning-stats.c added.
2816
2817 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2818
2819         * sgen-gc.c (create_allocator): Only use the fast path if the
2820         object size is within the small object size limit.
2821
2822 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2823
2824         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2825         possibly adding padding to sizeof (GCMemSection).
2826
2827 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2828
2829         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2830         reference is not in the nursery.
2831
2832 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2833
2834         * class.c (mono_class_from_typeref): Bounds check idx against the 
2835         assemblyref table.
2836
2837 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2838
2839         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2840         through the potential roots, then sort the results and find the
2841         pinned objects from there.
2842
2843         * Makefile.am: sgen-pinning.c added.
2844
2845 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2846
2847         * sgen-gc.c: Record generic stores in specialized remset buffers.
2848
2849 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2850
2851         * sgen-gc.c: Make pinned chunks the same size as major heap
2852         sections, and align them as well, so that we can check whether an
2853         object is in a pinned chunk or a major section in constant time.
2854
2855 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2856
2857         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2858
2859 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2860
2861         * sgen-gc.c: Make all major heap sections the same size (currently
2862         128k) and allocate them on aligned addresses.  Small heap sections
2863         give us better granularity with pinned objects - we can free up
2864         much more memory.
2865
2866 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2867
2868         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2869         output removed.
2870
2871 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2872
2873         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2874
2875         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2876         names in addition to the runtime generated one.
2877
2878         * mono/metadata/image.h: Add a function to take the real name of the assembly
2879         image.
2880
2881         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2882         use it instead of the runtime generated one.
2883
2884         Code is contributed under MIT/X11 license.
2885
2886 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2887
2888         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2889         before the other checks to prevent problems if the DateTime class is blittable.
2890         Hopefully fixes #559600.
2891
2892 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2893
2894         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2895         returns the largest string length that will not be put into the
2896         LOS.
2897
2898         * sgen-gc.c, gc-internal.h: New function that returns the largest
2899         object size that will not be put into the LOS.
2900
2901         * appdomain.c: Bump corlib version.
2902
2903 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2906
2907         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2908
2909 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2910
2911         * reflection.c (inflate_method): Fix signature.
2912
2913         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2914         in managed code.
2915
2916 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2917
2918         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2919
2920 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2921
2922         * sgen-gc.c: Abstract to-space handling.
2923
2924 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2925
2926         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2927
2928         Fixes #559906.
2929
2930 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2931
2932         * sgen-gc.c: Only add references from outside the nursery to
2933         within the nursery to the global remset list.
2934
2935 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2936
2937         * appdomain.c (create_exceptions): Set the domain temporarily if
2938         necessary to avoid cross-domain references.
2939
2940 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2941
2942         * verify.c (get_stack_type): Return that the type is invalid instead of
2943         asserting.
2944
2945         * verify.c (mono_method_verify): Verify that all locals and arguments
2946         have valid stack types.
2947
2948         Fixes #559913.
2949
2950 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2951
2952         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2953         bounds checking overflow aware.
2954
2955         Fixes #559910.
2956
2957 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2958
2959         * verify.c (do_invoke_method): Check for invalid method signatures.
2960
2961         Fixes #553450.
2962
2963 2009-12-02  Jb Evain  <jbevain@novell.com>
2964
2965         * appdomain.c (MONO_CORLIB_VERSION): bump.
2966         * icall-def.h (get_base_definition): renamed to get_base_method
2967         and add a boolean argument indicating we want the original
2968         method definition, or the immediate base method.
2969         * icall.c: apply the get_base_definition to get_base_method change.
2970
2971 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2972
2973         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2974
2975         Fixes #558042.
2976
2977 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2978
2979         * class.c: remove asserts for invalid type token in
2980         mono_class_name_from_token(), mono_assembly_name_from_token() and
2981         mono_class_create_from_typedef () (fixes bug #553318).
2982
2983 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2984
2985         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2986         incorrect assemblies (bug #553322).
2987
2988 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2989
2990         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2991
2992         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2993
2994         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2995
2996         * class.c (inflate_generic_context): Ditto.
2997
2998         * loader.c (method_from_methodspec): Ditto.
2999
3000         Fixes #558230.
3001
3002 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3003
3004         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
3005
3006         * class.c (mono_class_create_from_typespec): Ditto.
3007
3008         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
3009
3010         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
3011
3012         Fixes #558184.
3013
3014 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
3015
3016         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
3017
3018         * verify.c (verify_delegate_compatibility): Ditto.
3019
3020         * verify.c (do_newobj): Ditto.
3021
3022         Fixes #558046.
3023
3024 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3025
3026         * sgen-gc.c: Use a gray queue instead of requiring that gray
3027         objects are in a contiguous region.
3028
3029         * sgen-gray.c: The gray queue implementation.
3030
3031         * Makefile.am: sgen-gray.c added.
3032
3033 2009-12-02  Mark Probst  <mark.probst@gmail.com>
3034
3035         * appdomain.c: When unloading a domain, zero its static data and
3036         perform a minor collection when using SGen.  That will get rid of
3037         all the remsets pointing into that domain's static data.
3038
3039         * sgen-gc.c: Allow remsets into static data.  By doing this we
3040         need less checks so we're more efficient.
3041
3042 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3043
3044         * verify.c (mono_method_verify): Check for catch clauses with broken
3045         types.
3046
3047         Fixes #558465.
3048
3049 2009-12-01  Jb Evain  <jbevain@novell.com>
3050
3051         * class.c (make_generic_param_class): set the namespace of
3052         the generic parameter class from its owner, if available.
3053
3054 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3055
3056         * verify.c (code_bounds_check): Do proper overflow checking.
3057
3058         * verify.c (mono_method_verify): The number of switch entries is
3059         an unsigned int. Properly bounds check it.
3060
3061         Fixes #558594.
3062
3063 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3064
3065         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
3066         mono_metadata_method_has_param_attrs which only checks if a given param
3067         list has a non zero flags entry.
3068
3069         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3070         to inform how many params should we expect to decode.
3071
3072         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3073         as it's faster than mono_metadata_get_param_attrs.
3074
3075         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3076         add mono_metadata_method_has_param_attrs.
3077
3078 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3079
3080         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3081         failures.
3082
3083         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3084         is -1 but its class is broken.
3085
3086         Fixes #558522.
3087
3088 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3089
3090         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3091         for parameter overflow.
3092
3093         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3094         of mono_metadata_get_param_attrs.
3095
3096         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3097         API.
3098
3099         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3100
3101 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3102
3103         * class.c (mono_class_setup_fields): Check for fields with broken types.
3104
3105         Fixes #558741.
3106
3107 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3108
3109         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3110         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3111         its TypeBuilder::CreateType ().
3112
3113         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3114         if not needed.
3115
3116         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3117         to make setup_interface_offsets happy.
3118
3119         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3120         compilation now works.
3121
3122 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3123
3124         * appdomain.c (create_exceptions): New helper function extracted from
3125         mono_runtime_init () to precreate objects used during exception handling.
3126         (mono_runtime_init): Call it.
3127         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3128
3129 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3130
3131         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3132         compilation until the proper one is found.
3133
3134 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3135
3136         * class.c (mono_class_setup_vtable_general): Cache the result of
3137         get_virtual_methods () since it can be slow because of the metadata
3138         optimization.
3139
3140         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3141         from a MonoValueHashTable for now, since the later is based on an earlier
3142         version of hpj's internal probing code and seems to have serious collision
3143         issues.
3144
3145         * loader.c (mono_get_method_full): Update after the change above.
3146
3147 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3148
3149         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3150
3151 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3152
3153         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3154         the GTD instead of the DGC instead of crashing.
3155
3156         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3157         required. Inflate fields if needed.
3158
3159         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3160         finished. Renamed.
3161
3162 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3163
3164         * class.c (check_interface_method_override): Check for NULL signatures and fail
3165         the type.
3166
3167         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3168
3169         Fixes #553428.
3170
3171 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3172
3173         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3174         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3175
3176 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3177
3178         * loader.c (field_from_memberref): Resolve the class first then the field
3179         signature. Remove a lot of duplicated code and make sure we don't pass valid
3180         values to mono_loader_set_error_field_load.
3181
3182         Fixes #553306.
3183
3184 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3185
3186         * class.c (inflate_generic_type): Change code to use new signature of
3187         mono_error_set_bad_image.
3188
3189         Fixes #558124.
3190
3191 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3192
3193         * verify.c (mono_method_verify): Don't free ctx.params items if 
3194         we aborted while inflating the ctx.locals. Complete previous fix
3195
3196 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3197
3198         * verify.c (mono_method_verify): Use the uninflated type name, 
3199         when the inflated is null, to report errors. Also take care when
3200         freeing, not to free everything since, in case of an error, some
3201         stuff would be copies (i.e. not allocated by the function itself)
3202         Fix bug #558145
3203
3204 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3205
3206         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3207         or overflow. The caller must have done this check explicitly. This guard us
3208         from accessing invalid memory.
3209
3210         * verify.c (do_push_static_field): Check for stack overflow.
3211
3212         Fixes #553333.
3213
3214 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3215
3216         * loader.c (find_method_in_class): Don't crash if the signature cannot
3217         be resolved.
3218
3219         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3220         of asserting for the case of invalid params.
3221
3222         Fixes #553304.
3223
3224 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3225
3226         * image.c (mono_image_load_module): Fix crash when a bad assembly
3227         has no module at all (fix bug #553412) and also replace the 
3228         g_assert with a return NULL (documented return value for failure)
3229
3230 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3231
3232         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3233
3234 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3235
3236         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3237         file attribute to managed code and avoid doing the mask/attribute
3238         checks here. 
3239
3240 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3241
3242         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3243         the managed world.
3244
3245         * icall-def.h: New entry points.
3246         
3247 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3248
3249         * process.c: Don't put references to managed objects into a
3250         g_ptr_array.
3251
3252 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3253
3254         * class.c (can_access_internals): Allow CoreCLR to participate in
3255         allowing (or not) [InternalsVisibleTo] between assemblies.
3256         * security-core-clr.c|h: Make sure that only trusted code (a 
3257         superset of platform code) can access the internals of platform
3258         code.
3259
3260 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3261
3262         * reflection.c: use the correct base class to get the virtual method
3263         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3264
3265 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3266
3267         * security-core-clr.c (get_caller_no_reflection_related): 
3268         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3269         it's still reflection and must be filtered correctly.
3270
3271 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3272
3273         * object.c (compute_class_bitmap): Fix for large bitmaps.
3274
3275 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3276
3277         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3278
3279         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3280         koush@koushikdutta.com). Disable GC_no_dls on android.
3281
3282 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3283
3284         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3285         tlab_next points outside the TLAB because the allocator was
3286         interrupted.
3287
3288 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3289
3290         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3291
3292 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3293
3294         * object-internals.h: Change signature for mono_string_to_utf8_image.
3295
3296         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3297         argument.
3298
3299         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3300         exceptions due to mono_string_to_utf8.
3301
3302 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3303
3304         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3305
3306         * object.c (mono_remote_class): Make sure all resources are released before
3307         raising an exception.
3308
3309         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3310
3311 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3312
3313         * mono-perfcounters.c (network_get_impl): Change variable initialization
3314         ordering to fix potential memory leak in case of exceptions.
3315
3316         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3317         encoded strings.
3318         
3319 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3320
3321         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3322         variable initialization ordering to fix potential memory leak in case
3323         of exceptions.
3324
3325 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3326
3327         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3328         needed.
3329
3330 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3331
3332         * appdomain.c: Fix shadow path code to better deal with exceptions.
3333
3334 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3335
3336         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3337         exception in the middle of the runtime code.
3338
3339 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3340
3341         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3342         leak memory with broken envvar value.
3343
3344 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3345
3346         * reflection.c (mono_reflection_setup_internal_class): Because
3347         nested classes are not added to the name cache, we must put them
3348         in the reflection_info_unregister_classes list.
3349
3350 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3351
3352         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3353         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3354         platform (trusted) code. Instead we return a TypeLoadException to
3355         be thrown later. This is the exception thrown by Silverlight 2 if
3356         a type, inside application (user) code is marked with [ComImport]
3357
3358 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3359
3360         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3361         mono_is_debugger_attached () too.
3362
3363         * mono-debug.c (mono_is_debugger_attached): New helper function.
3364         (mono_set_is_debugger_attached): Ditto.
3365
3366 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3367
3368         * object-internals.h: Add mono_string_to_utf8_checked.
3369
3370         * object.c: Implement mono_string_to_utf8_checked.
3371
3372 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3373
3374         * class.c: Add missing check for load errors after every
3375         call to mono_class_setup_fields
3376
3377         Fixes #552282.
3378
3379 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3380
3381         metadata-verify.c (verify_tables_schema): Fix the error message.
3382
3383 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3384
3385         * metadata.c: Change event table schema to use TDOR for event type
3386         as this is what it's meant to be.
3387
3388         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3389         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3390         entry.
3391
3392         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3393         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3394         rows in MONO_TABLE_GENERICPARAM.
3395
3396         Fixes #552289.
3397
3398 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3399
3400         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3401         insertion.
3402
3403         * reflection.c (mono_reflection_setup_internal_class): Avoid
3404         registering a gc root the same MonoClass multiple times.
3405         Don't register nested types on the global scope as they should
3406         not be available there.
3407
3408 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3409
3410         * culture-info-tables.h: regenerated.
3411
3412 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3413
3414         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3415
3416 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3417
3418         * string-icalls.c|h: Remove string internal calls that are not 
3419         used anymore by the class libraries.
3420         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3421         which is not used in the class librairies.
3422         * icall-def.h: Update tables.
3423
3424 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * class.h: Move mono_class_inflate_generic_type_checked...
3427
3428         * class-internals.h: to here and make it internal. We don't want to
3429         further expose MonoGenericContext. 
3430
3431 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3432
3433         * verify.c (mono_method_verify): Improve error message.
3434
3435 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3436
3437         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3438         the token is already properly encoded. Fixs 4.0 build.
3439
3440 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3441
3442         * locales.c (construct_number_format): Check if the number index is
3443         valid before trying to use it, if not, just return.
3444         
3445 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3446
3447         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3448         since that loses the abort state. Fixes #539394.
3449
3450 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3451
3452         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3453         explicit this argument to the call signature.
3454         (mono_marshal_get_icall_wrapper): Ditto.
3455
3456 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3457
3458         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3459         to indicate which assembly to use when resolving a custom-mod.
3460
3461         Fixes handling of volatile fields used across assemblies as reported in #551513.
3462
3463 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3464
3465         * loader.c: Improve error messages.
3466
3467 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3468
3469         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3470         of interfaces. Fixes IKVM.
3471
3472         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3473
3474 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3475
3476         * verify.c (verifier_inflate_type): Return the inflated type on success.
3477
3478 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3479
3480         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3481
3482         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3483
3484         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3485
3486         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3487         flag set.
3488
3489         * profiler.c: Add new profiler callbacks for runtime invoke.
3490
3491         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3492
3493 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3494
3495         * sgen-gc.c: Keep track of the reason for a major collection and
3496         write it to the heap-dump file.
3497
3498 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3499
3500         * threads.c: refactor the code that initializes the
3501         thread_start_args into a reusable function and use this in the two
3502         methods that start up threads.
3503
3504 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3505
3506         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3507         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3508
3509 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3510
3511         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3512         Until now, we only had the per-cpu(core) counters.
3513
3514 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3515
3516         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3517         mono_gc_get_suspend_signal(), which returns the suspend signal
3518         number used by the GC.
3519
3520 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3521
3522         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3523
3524         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3525         signalling start_notify.
3526
3527 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3528
3529         * appdomain.c: do not test the st_mode field for shadow-copies.
3530         Fixes bug #545276.
3531
3532 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3533
3534         * threadpool.[ch]: added hooks for thread start/finish and item
3535         processing begin/end. For monotouch use only.
3536
3537 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3538
3539         * threads.c (mono_thread_get_name): New helper function.
3540
3541         * reflection.c (resolve_object): Set handle_class for strings too.
3542         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3543         a cattr blob into a set of arrays and structures without creating the custom
3544         attributes themselves.
3545         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3546
3547         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3548
3549         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3550         function.
3551
3552 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3553
3554         * verify.c: Replace calls to mono_class_inflate_generic_type with
3555         mono_class_inflate_generic_type_checked. Fixes #480005.
3556
3557 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3558
3559         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3560         object since not all paths lead to callees initing it.
3561
3562 2009-10-23  Alp Toker  <alp@nuanti.com>
3563
3564         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3565         header and should not be shipped:
3566
3567         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3568         which is specific to the mono build. Not going to work.
3569
3570 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3571
3572         * security-manager.c: Report if core-clr is active from
3573         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3574         to allow Moonlight BCL to behave appropriately (both in browser
3575         and outside, e.g. smcs)
3576
3577 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3578
3579         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3580         Fixes bug #549108.
3581
3582 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3583
3584         * class.c: fix typo.
3585
3586 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3587
3588         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3589         a MonoError parameter.
3590
3591         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3592         version that can does proper error handling.
3593
3594         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3595
3596         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3597
3598         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3599
3600 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3601
3602         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3603         NO_UNALIGNED_ACCESS is defined.
3604
3605 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3606
3607         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3608         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3609         Fixes #549173.
3610
3611 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3612
3613         * sgen-gc.c: Shorten sections whenever possible.
3614
3615 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3616
3617         * sgen-gc.c: Use our portable semaphore #defines.
3618
3619 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3620
3621         * sgen-gc.c: A debug option for dumping the heap layout to a file
3622         after each collection.
3623
3624 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3625
3626         * sgen-gc.c: Make managed write barriers atomic via
3627         thread-restarts.
3628
3629 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3630
3631         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3632         methods. Fixes #543021.
3633
3634 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3635
3636         * socket-io.[ch]: fix VS build.
3637
3638 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3639
3640         * icall-def.h:
3641         * socket-io.[ch]: implemented SendFile.
3642
3643 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3644
3645         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3646         before the interfaces to avoid crashes later if class initialization fails.
3647         Fixes #548417.
3648
3649         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3650         Fixes #548276.
3651
3652 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3653
3654         * domain.c: Bump 4.0 version.
3655
3656 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3657
3658         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3659         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3660         check since 'pubkey' can't be NULL at this stage
3661         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3662         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3663         initialization of 'iter'
3664
3665 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3666
3667         * cominterop.c : Search the interface parts of vtable to find 
3668           method matches.  Fixes 547030.
3669
3670         Code is contributed under MIT/X11 license.
3671
3672 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3673
3674         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3675         multiple targets. Fixes bug #574426.
3676
3677 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3678
3679         * profiler.h: Put here the definition of
3680         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3681         (and fix the build...).
3682
3683 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3684
3685         * profiler.c, profiler.h, profiler-private.h:
3686         Added support for different ways of getting call chains in stat mode.
3687
3688 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3689
3690         * object.c, object-internals.h: New function for computing the
3691         size of an array, factored out of mono_array_new_full().  Use
3692         SGen's functions for allocating arrays and vectors.
3693
3694         * sgen-gc.c, gc-internal.h: Special functions for allocating
3695         arrays and vectors without race conditions.  A managed array
3696         allocator method.
3697
3698         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3699
3700 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3701
3702         * object.c, object.h, icall.c: Write barriers do the copying now,
3703         as well, so no need for an additional memcpy.
3704
3705         * sgen-gc.c: Lock when storing remsets.  Do the memory
3706         copying/moving in the write barriers.
3707
3708         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3709
3710         * reflection.c: Added an assert.
3711
3712 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3713
3714         * threads.c, process.c: A few missing write barriers.
3715
3716 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3717
3718         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3719         network performance counters for bytes sent per second, bytes
3720         received per second, and bytes total per second.
3721
3722         Code is contributed under MIT/X11 license.
3723
3724 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3725
3726         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3727         Fix warning.
3728
3729 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3730
3731         * threads.c, object-internals.h, object.c: Move code for
3732         transferring an object to a different domain (via
3733         serialization/remoting) to object.c.
3734
3735         * object.c (call_unhandled_exception_delegate): If the exception
3736         is in a different domain than the delegate, transfer the exception
3737         to that domain.
3738
3739 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3740
3741         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3742         Fixes #322934.
3743
3744 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3745
3746         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3747
3748 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3749
3750         * object.c (mono_method_return_message_restore): Handle the case
3751         where the argument is an instance of a generic type.  Fixes
3752         #544446.
3753
3754 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3755
3756         * object.c (set_value): Write barrier fix - we must pass the
3757         count, not the size.
3758
3759 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3760
3761         * domain.c (mono_init_internal): Print a useful error message when encountering
3762         an old mscorlib, instead of crashing. Fixes #544307.
3763
3764 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3765
3766         * appdomain.c (copy_app_domain_setup): Fix a warning.
3767
3768         * debug-helpers.c (dis_one): Ditto.
3769
3770 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3771
3772         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3773         into the new domain, instead of referencing the original one.
3774
3775         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3776         non-static.
3777
3778         * appdomain.c: Corlib version bump.
3779
3780 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3781
3782         * threadpool.c: one more...
3783
3784 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3785
3786         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3787         threads to die because we're shutting down. delgate5.exe works again.
3788
3789 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3790
3791         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3792           ccw_interface_hash table when a ccw is finalized.
3793
3794         Code is contributed under MIT/X11 license.
3795
3796 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3797
3798         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3799         domain and image unloading into two steps.  We must do this
3800         because clearing the domain in SGen requires the class metadata to
3801         be intact, but we need to free the mono_g_hash_tables in case a
3802         collection occurs during domain unloading and the roots would trip
3803         up the GC.
3804
3805 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3806
3807         * object-internals.h: Remove serialized culture fields from
3808         MonoInternalThread.
3809
3810         * icall-def.h, thread-types.h, threads.c: Remove serialized
3811         culture icalls.
3812
3813         * appdomain.c: Corlib version bump.
3814
3815 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3816
3817         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3818         Fixes #543133.
3819
3820 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3821
3822         * sgen-gc.c: Try to shorten the new section after a major
3823         allocation to avoid ever-growing sections.
3824
3825 2009-10-13  Martin Baulig  <martin@ximian.com>
3826
3827         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3828         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3829         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3830         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3831
3832         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3833
3834 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3835
3836         * threadpool.c: fixed the order in which 'completed' and the wait
3837         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3838         No need to use the wait_handle field of ASyncCall. Make sure the
3839         threadpool is active when adding a job or queueing an idle thread.
3840
3841 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3842
3843         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3844
3845         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3846         when using --compile-all.
3847
3848 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3849
3850         * metadata.c (free_generic_class): Unregister the field_objects
3851         roots if we're using SGen.
3852
3853 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3854
3855         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3856         for GenericParamTableEntry.gparam.
3857
3858 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3859
3860         * marshal.c: don't create the handle when calling. It is created later
3861         if needed.
3862
3863 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3864
3865         * sgen-gc.c: Warning fixes.
3866
3867 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3868
3869         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3870         whole heap for cross-domain references before each collection.
3871
3872         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3873         object.
3874
3875         * threadpool-internals.h, threadpool.c: New function
3876         mono_thread_pool_is_queue_array() for checking whether a given
3877         array is used as a (cross-domain) queue by the thread pool code.
3878
3879 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3880
3881         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3882         searches the whole heap for objects containing a specific
3883         reference.  Only for debugging.
3884
3885 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3886
3887         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3888
3889         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3890         byte arrays between domains.
3891
3892 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3893
3894         * threadpool.c:
3895         * class-internals.h:
3896         * mono-perfcounters-def.h:
3897         * mono-perfcounters.c:
3898         -There is a list of idle threads
3899         -Each of those idle threads wait on their own WaitHandle instead
3900         of all of them using the same semaphore. When a new work item is
3901         added, the job is assigned directly to an idle thread or a newly
3902         created one if possible and then the handle for that thread is
3903         signaled. Compare that to the current approach where all the
3904         threads in the pool compete to dequeue a job from the same
3905         queue.
3906         -New struct ThreadPool that brings together the bunch of static
3907         variable for each threadpool (IO and regular).
3908         -New performance counters: # of items added and its rate per
3909         threadpool. The rate will be used later, perhaps together with
3910         other perf. counters, to decide when idle threads should exit.
3911
3912 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3913
3914         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3915         Fix typo on Windows build.      
3916         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3917         
3918         Code is contributed under MIT/X11 license.
3919
3920 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3921
3922         * object-internals.h: The Thread class is split up into Thread and
3923         InternalThread now.  We have exactly one InternalThread per
3924         thread, and at most one Thread per appdomain per thread.  Most
3925         data is stored in InternalThread.  All InternalThread objects live
3926         in the root domain.
3927
3928         * class-internals.h: Add internal_thread_class to MonoDefaults.
3929
3930         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3931         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3932         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3933         resulting from the split of the Thread class.
3934
3935         * gc-internal.h: Prototype for new function for checking whether a
3936         thread is the finalizer thread.
3937
3938         * appdomain.c: Corlib version bump.
3939
3940 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3941
3942         * appdomain.c|h: Add a mono_domain_try_unload method which is
3943         equivalent to mono_domain_unload, except that it returns an exception
3944         instead of throwing it. Make mono_domain_unload use the
3945         mono_domain_try_unload method to avoid code-duplication.
3946
3947 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3948
3949         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3950         a problem.
3951
3952 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3953
3954         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3955         aborting when a conversion is not implemented.
3956
3957 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3958
3959         * verify.c: when comparing culture strings, use g_ascii_strcmp
3960
3961         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3962         when comparing public key tokens to use memcmp on 16 bytes.   I do
3963         not believe this ever worked as advertised in the past.
3964
3965         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3966         which would have always failed earlier.
3967
3968 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3969
3970         * gc.c: Raise a NullArgumentException if the object passed is
3971         null.
3972
3973 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3974
3975         * image.c (mono_image_close): Atomically decrement the reference count and
3976         remove the image from the hash tables, to prevent another thread from seeing a
3977         dying MonoImage. Fixes #541194.
3978
3979 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3980
3981         * threadpool.c: actually use the minimum number of 'completion ports'
3982         (for us is just a potential worker thread).
3983
3984 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3985
3986         * threadpool.c: remove ares_htable. It does not make sense any more
3987         since the same objects are now stored in GC-tracked arrays while they are
3988         in the queue.
3989
3990 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3991
3992         * threadpool.c: increase the minimum length of the queues to 128.
3993         Remove warning.
3994
3995 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3996
3997         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3998         return the modified signature used by string ctors.
3999
4000 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
4001
4002         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
4003         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
4004         method, to be used by full-aot.
4005
4006 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
4007
4008         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
4009         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
4010         be known to be good.
4011
4012         * class.c (mono_class_init): Fail array types if their element type fails initialization
4013         as well.
4014
4015         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
4016         initialization, additionally we request the element_type vtable to be initialized as well.
4017
4018         This is fine and should not increase the working set in any meaningful way since it's reasonable
4019         to assume       that most code will create an array and eventually populate it, which will require the
4020         type's vtable to be initialized.
4021
4022         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
4023
4024 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
4025
4026         * normalization-tables.h : regenerated.
4027
4028 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
4029
4030         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
4031         a leb128 encoding can take up to 5 bytes.
4032
4033 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4034
4035         * class.c (verify_class_overrides): Remove useless argument.
4036
4037         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
4038         before interface enumeration as this is no longer required.
4039
4040 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
4041
4042         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
4043         used under mono_class_init context. This functions avoid any code path that
4044         calls mono_class_init, which leads it to be slow as some things like the interface
4045         bitmap are not available.
4046
4047         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
4048         of it's own broken version. Fixes the verifier part of #538588.
4049
4050         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
4051         API.
4052
4053 2009-09-15  Mark Probst  <mark.probst@gmail.com>
4054
4055         * class.c (mono_class_init): Always set an exception in a class if
4056         vtable setup fails.  Fixes #538577.
4057
4058         * generic-sharing.c: Raise an exception if mono_class_vtable()
4059         returns NULL.
4060
4061 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
4062
4063         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
4064         methods of vtypes, as they could be incorrectly shared with static methods
4065         taking an IntPtr argument.
4066
4067 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4068
4069         * domain.c:
4070         * object.c:
4071         * class-internals.h: renamed waithandle_class to
4072         manualresetevent_class.
4073         * marshal.c: propagate the exception if a remoting BeginInvoke call
4074         fails.
4075
4076 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4077
4078         * object.c: Properly handle vtable failures.
4079
4080 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4081
4082         * socket-io.c: Assert on vtable failure.
4083
4084         * mono-mlist.c: Assert on vtable failure.
4085
4086 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4087
4088         * marshal.c: Assert on vtable failure.
4089
4090 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4091
4092         * icall.c: Properly handle vtable failures.
4093
4094 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4095
4096         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4097
4098 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4099
4100         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4101
4102         * console-unix.c (do_console_cancel_event): Same.
4103
4104 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4105
4106         * class-internals.h: Add mono_class_vtable_full function that allows control
4107         if an exception should be raised or not.
4108
4109         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4110         to do what its documentation say, that is to return NULL and set exception_type on
4111         failure.
4112
4113         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4114         and change the code to honor it.
4115
4116 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4117
4118         * verify.c: Fix typo in error message.
4119
4120 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4121
4122         * security-core-clr.c: Fix default_platform_check so it can run
4123         the runtime coreclr tests (without an infinite recursion when
4124         throwing an exception).
4125
4126 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4127
4128         object.c (mono_delegate_ctor_with_method): Guard against null method.
4129
4130 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4131
4132         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4133         that should be replaced with error handling later.
4134
4135 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4136
4137         * marshal.c (mono_delegate_end_invoke): Fix warning.
4138
4139 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4140
4141         * loader.c (mono_field_from_token): Properly handle invalid
4142         dynamic tokens.
4143
4144 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4145
4146         * pedump.c (verify_image_file): Skip types that can't be
4147         decoded.
4148
4149 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4150
4151         * verify.c: Look for recursive valuetypes only against the
4152         type been initialized as this is a lot simpler and works.
4153
4154 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4155
4156         * verify.c: Ensure that fields are properly loaded before
4157         checking them.
4158
4159 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4160
4161         * object.c (mono_object_get_virtual_method) : Call 
4162           mono_cominterop_get_invoke if the object is a COM object.
4163
4164         Code is contributed under MIT/X11 license.
4165
4166 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4167
4168         * verify.c: Check for recursive valuetype definitions.
4169
4170 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4171
4172         Use inheritance-aware interface offsets. Inherited types use the same offsets
4173         of their parents. This reduce offset duplication in case more than one type in
4174         the inheritance tree explicitly implements the same interface.
4175
4176         This also removes a source of vtable bubbles found in #532409. An abstract type
4177         isn't required to provide abstract methods to all interfaces it implements, which
4178         resulted in a bubble with the previous scheme as the child would get a non-full
4179         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4180         should be fixed.
4181
4182         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4183         it's expected to not cause any significant increase beyond that.
4184
4185         * class.c (setup_interface_offsets): Compute super class iface offsets
4186         first to force sharing.
4187
4188         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4189         dumping only the relevant ones.
4190
4191         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4192         methods a new slot regardless if they belong to an interface or not. This allows
4193         an inherited type to override the iface method separately from the class one.
4194
4195 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4196
4197         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4198         applications that take less than 2s to execute.
4199         Bug #524984 fixed.
4200
4201 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4202
4203         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4204
4205         * object.c (mono_get_runtime_callbacks): New helper function to return
4206         the runtime callbacks.
4207
4208         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4209         mono_get_runtime_build_info () as the display name.
4210         
4211 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4212
4213         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4214         argument, since NEWARR expects a native int. Fixes #481559.
4215
4216 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4217
4218         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4219         against broken SRE methods.
4220
4221 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4222
4223         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4224         a NULL variable. Abort early on failure.
4225
4226 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4227
4228         * class.c (can_access_type): Fail visibility test for non nested
4229         types with nested visibility.
4230
4231 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4232
4233         * assembly.c (parse_public_key): Avoid allocating (and not 
4234         freeing) the public key array when it's not requested by the 
4235         caller.
4236         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4237         ves_icall_System_Threading_Thread_Thread_internal): Free 
4238         allocated memory on error.
4239
4240 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4241
4242         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4243
4244 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4245
4246         * class.c (mono_class_setup_fields): Remove duplicated local variable
4247         named gklass.
4248         Rename gklass to gtd to reflect the fact that it points to the generic
4249         type definition.
4250         Remove the duplicated call to mono_class_setup_fields on gtd and move
4251         the error check to the beginning.
4252
4253 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4254
4255         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4256         Remove cruft of the previous patch.
4257
4258 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4259
4260         * metadata-verify.c (verify_method_table): Check for abstract + final.
4261         Fixes #534175.
4262
4263 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4264
4265         * verify.c (verify_class_fields): Check for duplicate fields.
4266
4267 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4268
4269         * metadata-verify.c: Verify the typeref table for duplicates.
4270
4271 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4272
4273         This reverts r140936 and properly handles interfaces with static methods. The
4274         right fix is to ensure vtables without bubles which is an easier to verify
4275         constraint. We should avoid such special cases as of the reverted patch as those
4276         only make the runtime more brittle.
4277
4278         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4279         static methods on interfaces.
4280
4281         * class.c (setup_interface_offsets): Use the number of virtual methods when
4282         calculating interface offsets instead of the number of methods. This way we
4283         avoid bubles on the layout.
4284
4285 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4286
4287         * metadata-verify.c (verify_metadata_header): Some very smart
4288         obfuscators like to add extra stream headers. Ignore them.
4289
4290 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4291
4292         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4293         methods correctly.
4294
4295 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4296
4297         * metadata-verify.c: Verify for duplicated types.
4298
4299 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4300
4301         * metadata-verify.c (verify_typedef_table): Verify for nested types
4302         without an entry on the nested class table.
4303
4304 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4305
4306         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4307         <tom_hindle@sil.org>. Add locking around hash table accesses.
4308
4309 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4310
4311         * verify.c (mono_verifier_verify_class): Verify all interface if
4312         really are interfaces. Fixes #534184.
4313
4314 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4315
4316         * pedump.c: Initialize all types during metadata validation so we report
4317         errors only detected as part of class initialization.
4318
4319 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4320
4321         * metadata-verify.c (verify_method_table): PInvoke requires method to
4322         be static. Fixes #534189
4323
4324 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4325
4326         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4327         being NULL.
4328
4329 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4330
4331         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4332         for holes or bad methods. Fixes #525314.
4333
4334 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4335
4336         * class.c (setup_interface_offsets): Don't allocate slot
4337         for the same interface multiple times. This creates bubbles
4338         that waster space and make vtable verification harder.
4339
4340         The same interface get a slot multiple times since we need
4341         to get the closure of all implemented interfaces, which means
4342         the same interface is reported multiple times.
4343
4344 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4345
4346         * verify.c (mono_verifier_verify_class): Don't check the fields
4347         of generic instances since the context on which they got expanded
4348         might lead to false positives.
4349
4350         Such thing happens when a generic type is inflated in the context
4351         of a generic method and the inflated type of a field turns into a
4352         generic method argument, which causes the checking code to think
4353         it's an invalid class when it's not.
4354
4355 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4356
4357         * verify.c (mono_type_is_valid_in_context): Verify if type
4358         is NULL and remove duplicate test.
4359
4360 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4361
4362         * verify.c (mono_verifier_verify_class): Check fields for
4363         invalid generic arguments.
4364
4365 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4366
4367         * class.c (verify_class_overrides): Verify if for static
4368         and non virtual methods.
4369
4370 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4371
4372         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4373         Check for errors after retrieving the vtable.
4374
4375 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4376
4377         * class.c (mono_class_setup_vtable_general): Verify
4378         if method overrides are valid before processing them.
4379
4380 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4381
4382         * marshal.c (mono_array_to_lparray): Fix minimal build with
4383         cominterop disabled.
4384
4385         * marshal.c (mono_free_lparray): Same.
4386
4387 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4388
4389         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4390         the hash function for the ares_htable.
4391
4392 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4393
4394         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4395         bit for assembly flags. MS is ok with it but there is no spec anywhere
4396         on its mean
4397
4398 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4399
4400         * class.c (mono_class_create_from_typedef): Emit profiler events
4401         in all cases.
4402
4403 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4404
4405         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4406         Release memory on failure.
4407
4408 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4409
4410         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4411         to the internal API.
4412
4413         * metadata.c (get_constraints): Use a single-linked table as we don't
4414         traverse it backward. Fail and return FALSE if only of the contraint types
4415         is not found.
4416
4417         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4418         to mono_metadata_load_generic_param_constraints except for having a return value.
4419         This has to be done since the later is part of the public API.
4420
4421         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4422         and fail the type.
4423
4424         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4425         and fail the method.
4426
4427 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4428
4429         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4430         with MS broken behavior of emmitting EH section sizes without the
4431         header size added.
4432
4433 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4434
4435         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4436         memory until we're sure that we'll need it. This avoids leaking for
4437         broken types or duplicated instantiation.
4438
4439 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4440
4441         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4442         mistake.
4443
4444 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4445
4446         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4447         and expected size calculation.
4448
4449 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4450
4451         * class.c (mono_class_get_field_idx): Add fixme for broken
4452         behavior for types with multiple fields with the same name.
4453         I would rather fix it, but have no idea on how to generate
4454         such artifact for testing.
4455
4456 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4457
4458         * verify.c (verifier_load_field): We should allow references to
4459         fields to be made using the generic type definition. It's up to
4460         the loader system to fail invalid ops.
4461
4462         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4463         are invalid.
4464
4465 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4466
4467         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4468
4469         * metadata-internals.h: Fix declaration of 
4470         mono_metadata_interfaces_from_typedef_full.
4471
4472         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4473         heap_alloc_result parameter that controls if the result should be
4474         g_malloc'd.
4475
4476         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4477         array be g_malloc'd and properly document this public API function.
4478
4479 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4480
4481         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4482         remove METHOD_HEADER_TINY_FORMAT1.
4483
4484         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4485
4486         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4487
4488         Both spec and MS uses only 2 bits to enumerate the kind of header.
4489         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4490         is superfluous, only used for tiny headers with odd code lengths.
4491
4492         This change also make sure that mono doesn't wronly interpret bit 2
4493         of fat header flags, which is currently reserved.
4494
4495 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4496
4497         * metadata.c (do_mono_metadata_parse_type): Do error
4498         checking for element types. Don't abort if presented
4499         with a broken type kind.
4500
4501 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4502
4503         * metadata.c (mono_metadata_parse_method_signature_full):
4504         Gracefully fail bad vararg signatures.
4505
4506 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4507
4508         * profiler.c:
4509         * class.c: Fix warnings for uninitialized variables.
4510
4511 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4512
4513         * icall.c: Fix _NSGetEnviron method declaration warning.
4514
4515 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4516
4517         * icall.c:
4518         * reflection.c: Make bitwise checks explicit.
4519
4520 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4521
4522         * debug-helpers.c:
4523         * marshal.c: Fix printf warnings.
4524
4525 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4526
4527         * reflection.c (encode_cattr_value): Fix a warning.
4528
4529 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4530
4531         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4532         of array bounds.
4533
4534 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4535
4536         * loader.c (mono_method_signature): Don't assert on broken
4537         signature. Print a more useful error message.
4538
4539 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4540
4541         * loader.c (mono_method_get_marshal_info): Assert if
4542         signature is invalid. Bounds check stores to the
4543         mspecs array;
4544
4545 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4546
4547         * loader.c (field_from_memberref): Fix warning.
4548
4549 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4550
4551         * loader.c (mono_method_get_param_names): Check if signature
4552         is null. Don't store beyond the size of the name array.
4553
4554 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4555
4556         * loader.c (mono_get_method_constrained): Check if signature
4557         is null.
4558
4559 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4560
4561         * loader.c (mono_loader_set_error_bad_image): Improve
4562         error messages.
4563
4564 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4565
4566         * loader.c (mono_get_method_full): Convert an assertion
4567         into a loader error.
4568
4569 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4570
4571         * class-internals.h, class.c: Better naming and documentation.
4572
4573 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4574
4575         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4576         obj is NULL.
4577
4578 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4579
4580         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4581         parsing fails.
4582
4583 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4584
4585         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4586         errors with no class set.
4587
4588         * loader.c (field_from_memberref): If the field signature is of the wrong
4589         type fail with a MissingFieldException instead of a BadImageException as
4590         this is the behavior observed on MS. 
4591
4592 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4593
4594         * loader.c (field_from_memberref): Don't crash if either the field
4595         signature or the typespec class are invalid.
4596
4597 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4598
4599         * verify.c (verifier_load_field): Don't allow field related
4600         ops to reference fields on generic type definition.
4601
4602 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4603
4604         * metadata-verify.c: Add new warning level for errors specified
4605         by ECMA 335 but that MS ignores.
4606
4607         * metadata-verify.c (verify_method_table): Make compiler controled
4608         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4609         this check is safe because the end result will only be some visibility
4610         exceptions been thrown.
4611
4612 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4613
4614         * verify.c (get_boxable_mono_type): Don't allow the
4615         use of the generic type definition on boxed type positions.
4616
4617         Fixes #531237.
4618
4619 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4620
4621         * threadpool.c: Make sure no cross-domain references remain in
4622         ares_htable or the arrays that are thrown away when resizing.
4623
4624 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4625
4626         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4627         list of classes for which we have to unregister reflection_info
4628         with the GC and which are not in the namespace cache.
4629
4630         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4631         the class to the list.
4632
4633 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4634
4635         * domain.c (mono_domain_free): Unregister the GC roots in
4636         MonoDomain.
4637
4638 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4639
4640         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4641
4642 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4643
4644         * class.c: Add mono_class_get_field_from_name_full which does
4645         the same as mono_class_get_field_from_name but does check field
4646         signature as well.
4647
4648         * class-internals.h: Export mono_class_get_field_from_name_full as
4649         part of the internal API.
4650
4651         * loader.c (field_from_memberref): Search fields by name and signature
4652         as it's valid to have two fields with same name but different types.
4653
4654         Fixes #528055.
4655
4656 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4657
4658         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4659
4660         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4661
4662         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4663         System.Type.
4664
4665 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4666
4667         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4668
4669         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4670
4671 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4672
4673         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4674         to sgen-scan-object.h, which can be included and parameterized via
4675         macros.
4676
4677         * Makefile.am: sgen-scan-object.h added.
4678
4679 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4680
4681         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4682
4683 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4684
4685         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4686         before clearing a domain in the GC.
4687
4688 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4689
4690         * exception.c (mono_exception_from_name_domain): Actually create
4691         the exception in the specified domain.
4692
4693         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4694         OutOfMemoryException a bit later so that the domain is inialized
4695         "enough" that it works.
4696
4697 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4698
4699         * threads.c (thread_cleanup): Clean up the cached_culture_info
4700         array to prevent cross-domain references.
4701
4702 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4703
4704         * metadata.c: more documentation for MonoType accessors.
4705
4706 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4707
4708         Fix incorrect size definitions where the tail array isn't a list
4709         of pointers
4710         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4711         define size.
4712         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4713         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4714         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4715
4716 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4717
4718         * reflection.h:
4719         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4720
4721 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4722
4723         * metadata.c:
4724         * loader.c:
4725         * metadata-internals.h:
4726         * method-builder.c:
4727         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4728
4729 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4730
4731         * cominterop.c:
4732         * metadata.c:
4733         * metadata.h:
4734         * loader.c:
4735         * marshal.c:
4736         * reflection.c: #define for sizeof in MonoType and
4737         MonoMethodSignature.
4738
4739 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4740
4741         * domain.c:
4742         * domain-internals.h: add and use #define's instead of sizeof()
4743         for MonoJitInfo and MonoJitInfoTable.
4744
4745 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4746
4747         * object.c:
4748         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4749
4750 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4751
4752         * metadata.c:
4753         * metadata.h:
4754         * object.c:
4755         * class-internals.h:
4756         * generic-sharing.c:
4757         * marshal.c: use a #define instead of sizeof() for a few
4758         structures that use a zero-length array.
4759
4760 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4761
4762         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4763         to handle inflated generic methods.
4764
4765         * appdomain.c: Bump corlib version.
4766
4767         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4768         instances.
4769
4770         * reflection.c (fixup_method): Same
4771
4772         * reflection.c (resolve_object): Same.
4773
4774         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4775         g_error and a decent message.
4776
4777 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4778
4779         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4780         from the object because it could not yet be available globally
4781         (it happens if the profiler tries to create a gchandle on the
4782         MonoThread object of a thread that is still registering itself
4783         with the runtime).
4784
4785 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4786
4787         * reflection.c (mono_generic_class_get_object): Initialized the
4788         managed type arguments array.
4789
4790         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4791
4792         * appdomain.c: Bump corlib version.
4793
4794 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4795
4796         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4797         #527902.
4798
4799 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4800
4801         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4802         Avoid a crash if synch_cs is not set.
4803         
4804         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4805         Handle the case when the handle is 0.
4806
4807         * appdomain.c: Bump corlib version.
4808
4809 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4810
4811         * reflection.c (mono_type_get_object): Fix a warning.
4812
4813 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4814
4815         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4816         descriptor here.  We assume it's already been computed.
4817
4818         * generic-sharing.c (instantiate_other_info): Compute the GC
4819         descriptor for info type MONO_RGCTX_INFO_KLASS.
4820
4821 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4822
4823         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4824         type, so don't use MONO_OBJECT_SETREF to set a field.
4825
4826 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4827
4828         * gc.c: We were missing one case where invoking a finalizer would
4829         not reset the domain.  Also, in the finalizer thread loop, assert
4830         that we're in the root domain.
4831
4832 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4833
4834         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4835         if the type is not an array.
4836
4837 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4838
4839         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4840         method bound to the declaring type of the method. Raise an exception
4841         if the type is not a generic param.
4842
4843 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4844
4845         * class.c (print_unimplemented_interface_method_info): Print the
4846         full type name.
4847
4848         * class.c (mono_class_setup_vtable_general): When dealing with a
4849         generic instance first check if the generic type definition is
4850         not broken.
4851
4852 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4853
4854         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4855
4856         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4857
4858         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4859
4860         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4861
4862         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4863
4864         Code is contributed under MIT/X11 license
4865
4866 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4867
4868         * verify.c: Fix naming of stelem and ldelem.
4869
4870 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4871
4872         * generic-sharing.c: Replace the templates lock with the loader
4873         lock because of very hard to resolve deadlock issues.
4874
4875 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4876
4877         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4878         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4879         directly. Fixes #525338.
4880
4881         * class.c (mono_class_get_vtable_size): New helper function.
4882
4883         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4884         the field belongs to the type. Fixes #525733.
4885
4886 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4887
4888         * sgen-gc.c: When we stop a thread and its stack top is not within
4889         its allocated stack (because it's in an altstack signal handler),
4890         restart it and stop it again, until it is.
4891
4892 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4893
4894         * sgen-gc.c: Take a thread's stack top and registers from the
4895         sigcontext in the suspend signal handler.
4896
4897         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4898         stuff to sgen-archdep.h.
4899
4900         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4901         caller, because have code in sgen-archdep.h to acquire that data.
4902
4903 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4904
4905         * profiler.c, profiler.h, profiler-private.h:
4906         Added support for keeping track of code chunks and buffers.
4907
4908 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4909
4910         * metadata-verify.c: Fix endianness problems on decoding functions.
4911         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4912
4913 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4914
4915         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4916         schema for vectors and one dimension SZARRAY.
4917
4918 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4919
4920         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4921         schema for vectors and one dimension SZARRAY.
4922
4923 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4924
4925         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4926         Interlocked.(Compare)Exchange with object arguments, which invoke
4927         write barriers.
4928
4929 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4930
4931         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4932         passed invalid arguments.   Fixes another crasher in the
4933         Silverlight test suite.
4934
4935         * class.c (mono_class_array_element_size): Return 0 for the size
4936         of the class;  This fixes the crasher exposed by :
4937
4938         typeof (void).MakeArrayType ();
4939
4940         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4941         if there is no method to dereference.    Put all the code that
4942         depends on this inside the if (method) block.
4943
4944         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4945         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4946
4947         With this change, we pass the test.
4948         
4949         * reflection.c (mono_reflection_sighelper_get_signature_local):
4950         Only dereference the assembly if it has been set.    Fixes a
4951         crasher exposed by #525328
4952
4953 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4954
4955         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4956         don't perform the store in mono_gc_wbarrier_generic_nostore().
4957         Remove the second argument (value), which is not needed.
4958
4959 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4960
4961         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4962         the build.
4963
4964         * boehm-gc.c: Ditto.
4965         
4966 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4967
4968         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4969         not perform the store itself.  Introduce
4970         mono_gc_wbarrier_generic_nostore(), which is the same as
4971         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4972         store.
4973
4974 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4975
4976         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4977         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4978         we still need the memcpy().
4979
4980 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4981
4982         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4983         so that big arrays are handled correctly.  Always use
4984         safe_object_get_size() to calculate array object sizes, which
4985         takes bounds into account.
4986
4987 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4988
4989         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4990         GC descriptor is computed before we use it.
4991
4992 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4993
4994         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4995         write barrier if necessary.
4996
4997 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4998
4999         * icall-def.h, icall.c, thread-types.h: New separate icall for
5000         VolatileWrite(object&,object) that uses a write barrier.
5001
5002         * console-unix.c, file-io.c, icall.c, threads.c: Use write
5003         barriers in icalls which write to "ref" or "out" arguments.
5004
5005 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
5006
5007         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
5008         handler in a separate icall, to reduce the size of the wrappers.
5009
5010 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5011
5012         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
5013
5014 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5015
5016         * metadata-verify.c (parse_field): Allow byref field.
5017
5018         * metadata-verify.c (parse_locals_signature): Allow byref locals.
5019
5020         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
5021
5022 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
5023
5024         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
5025         Fixes #522784.
5026
5027 2009-07-20  Robert Jordan  <robertj@gmx.net>
5028
5029         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
5030         Fix invalid IL in valuetype handling (STOBJ must push the
5031         corresponding class). Fixes bug #523149.
5032
5033         Code is contributed under MIT/X11 license.
5034
5035 2009-07-20  Geoff Norton  <gnorton@novell.com>
5036
5037         * gc.c: Use proper semaphores where available on posix and darwin.
5038
5039 2009-07-19  Geoff Norton  <gnorton@novell.com>
5040
5041         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
5042
5043 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
5044
5045         * refletion.c (is_sre_usertype): Change name to is_usertype and
5046         invert it's result so it returns true if the type is an user type
5047         and not the opposite.
5048
5049         * reflection.c (is_*_type): Change all of those to use new macro
5050         check_corlib_type_cached that cached the type lookup so we don't
5051         need to do string comparisons all the type. Changed the signature
5052         to take a MonoClass instead.
5053
5054         * reflection.c: Change mono_image_create_token and resolve_object
5055         to use is_sre_* functions.
5056
5057 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5058
5059         * sgen-gc.c: Check for writes to the stack in the managed
5060         wbarrier as well.
5061
5062 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5063
5064         * sgen-gc.c: When a thread is unregistered, don't free its remsets
5065         but put them on a list which is processed with the other thread's
5066         remsets.
5067
5068 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5069
5070         * sgen-gc.c: Fix and enable the internal allocator instead of
5071         using malloc/free (which causes deadlocks).
5072
5073 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5074
5075         * refletion.c: Fix builds with SRE disabled by adding a minimal
5076         implementation of mono_reflection_type_get_handle.
5077
5078 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5079
5080         * refletion.c: Make mono_reflection_type_get_handle non static.
5081
5082         * object-internals.h: Export mono_reflection_type_get_handle.
5083
5084         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5085         unmanaged handle using mono_reflection_type_get_handle.
5086
5087 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5088
5089         * refletion.c: Replace all reads of MonoReflectionType::type with
5090         calls to mono_reflection_type_get_handle. Only the functions that
5091         deal with constructing TypeBuilder::type have not been changed
5092         because they have to deal with NULL values.
5093
5094         This is a first step into supporting reflection types that don't
5095         map directly into their unmanaged counterpart.
5096
5097 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         * metadata-verify.c (parse_locals_signature): Don't complain
5100         on signature with zero locals since MS generates it and doesn't
5101         bother with.
5102
5103 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5104
5105         * reflection.c (mono_image_get_array_token): Resolve return
5106         type using mono_reflection_type_get_handle.
5107
5108         * reflection.c (mono_image_get_array_token): Resolve array method
5109         parent type using mono_reflection_type_get_handle.
5110
5111 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5112
5113         * reflection.c (mono_image_basic_init): Applied patch from
5114         <Dax@daxxfiles.net>. Set the public key token from the assembly
5115         builder. Fixes #518909.
5116
5117         * appdomain.c: Bump corlib version.
5118
5119 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5120
5121         * class.c (mono_class_needs_cctor_run): Make this return false if
5122         the class has no cctor.
5123
5124 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5125
5126         * sgen-gc.c: When the minor GC needs to allocate a new section,
5127         invoke the major GC afterwards.
5128
5129 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5130
5131         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5132           Applying the window_style field to the SHELLEXECUTEINFO struct.
5133
5134         Code is contributed under MIT/X11 license.
5135
5136 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5137
5138         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5139         locking earlier.  Fix it in the managed allocator by making sure
5140         that no thread is stopped there before the GC runs.  If we do stop
5141         a thread there, we restart it and let it run a but, until it stops
5142         somewhere else.
5143
5144         * gc-internal.h, gc.c: Function for getting the IP from a signal
5145         context via a function registered by mini.
5146
5147 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5148
5149         * object-internals.h (MonoIntPtr): New structure describing a boxed
5150         IntPtr.
5151
5152         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5153         returns. Fixes #519953.
5154
5155         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5156
5157 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5158
5159         * class-internals.h, generic-sharing.c: New RGCTX info type for
5160         getting a remoting invoke with check wrapper.
5161
5162 2009-07-07  Geoff Norton  <gnorton@novell.com>
5163
5164         * icall-def.h: Fix the enable-minimal build.
5165
5166 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5167
5168         * object-internals.h: Add MonoReflectionDerivedType.
5169
5170         * reflection.c: Implement support for PointerType.
5171         Fixed tons of warnings.
5172
5173 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5174
5175         * object-internals.h: Add MonoReflectionByRefType.
5176
5177         * reflection.c: Implement support for ByRefType.
5178
5179 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5180
5181         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5182
5183         * object-internals.h: Add MonoReflectionArrayType and
5184         mono_reflection_create_unmanaged_type.
5185
5186         * reflection.c: Implement support for ArrayType.
5187
5188 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5189
5190         * metadata-verify.c (is_valid_method_header): Parse EH block
5191         flags correctly.
5192
5193 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5194
5195         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5196         processing the disappearing links, and process disappearing links
5197         in a loop until no new objects are copied.
5198
5199 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5200
5201         * object.c (handle_enum): Invoke the write barrier when copying
5202         value type instances.
5203
5204         * sgen-gc.c: Register remsets for unmanaged write barriers only
5205         when the address written to is actually on the heap.  This makes
5206         set_value() in object.c work without requiring that the result be
5207         on the heap.
5208
5209 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5210
5211         The runtime wrappers are all bound to a given type that must
5212         exist in the same image. For regular images we use the <Module>
5213         type, which is required to exist for all images.
5214
5215         The <Module> type can't be used for dynamic images because it
5216         might not exist at the time the wrapper is required, so we create
5217         a synthetic type to use instead.
5218
5219         The current code works because of the 2 stage setup of MonoClass,
5220         but once this is gone it will no longer work.
5221
5222         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5223
5224         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5225
5226         * object-internals.h: Export mono_image_set_wrappers_type icall
5227         as part of the internal API.
5228
5229         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5230         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5231
5232         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5233         image wrappers_type to the provided value.
5234
5235 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5236
5237         * appdomain.c (deregister_reflection_info_roots): No need
5238         to use the image lock here.
5239
5240 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5241
5242         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5243
5244 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5245
5246         * threads.c: Store the thread start argument in a hash table instead of
5247         registering it as a root, as libgc doesn't support unregistering roots
5248         under windows, leading to 'too many root sets' errors when many threads
5249         are created.
5250
5251         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5252         shutdown, they can still be referenced by the other dying objects.
5253         Fixes #514506.
5254
5255 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5256
5257         * socket-io.c: DontLinger does not allow LingerOptions.
5258
5259 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5260
5261         * metadata-verify.c: The spec doesn't mention that it's possible to add
5262         custom attribute to a generic parameter. Fixed.
5263
5264 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5265
5266         * class.c (inflate_generic_type): Don't crash while trying to output a message
5267         on why we're aborting.
5268
5269 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5270
5271         * socket-io.c: DontLinger can take an int or a boolean too.
5272
5273 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5274
5275         * gc.c: check for a null argument to SuppressFinalize () and
5276         ReRegisterForFinalize ().
5277
5278 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5279
5280         * loader.c (method_from_methodspec): Call into the verifier to check
5281         the signature.
5282
5283         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5284
5285         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5286         part of the internal API.
5287
5288 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5289
5290         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5291         the signature.
5292
5293         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5294
5295         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5296         part of the internal API.
5297
5298 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5299
5300         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5301         the signature.
5302
5303         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5304         blob verification.
5305
5306         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5307         part of the internal API.
5308
5309 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5310
5311         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5312         when doing basic verification. 
5313
5314         This check must be done since the runtime peeks into signatures in much
5315         more places than it does decoding so it makes sense to ensure that all
5316         pointers to blob objects are well formed.
5317
5318 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5319
5320         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5321         Use proper overflow dectection. Fix usage of it.
5322
5323 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5324
5325         * loader.c (field_from_memberref): Call into the verifier to check
5326         the signature.
5327
5328         * loader.c (mono_method_get_signature_full): Same.
5329
5330         * loader.c (method_from_memberref): Same.
5331
5332         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5333
5334         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5335         part of the internal API.
5336
5337 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5338
5339         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5340         or unloaded, still return an AsyncResult, but don't add it to the
5341         threadpool.
5342
5343 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5344
5345         * threads.c: fix missing colon when DEBUG is defined.
5346
5347 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5348
5349         * threadpool.c: Don't add new calls to a threadpool if the domain
5350         of the call is unloading or unloaded.  When dequeuing a job, null
5351         the reference in the queue.
5352
5353 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5354
5355         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5356         generation if an object was moved.
5357
5358 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5359
5360         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5361           parameters of type SAFEARRAY[VARIANT].
5362
5363         * reflection.c (encode_marshal_blob): Properly generate element type
5364           (SafeArraySubType marshal attribute option).
5365
5366         Code is contributed under MIT/X11 license.
5367
5368 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5369
5370         * reflection.c: in mono_method_clear_object () really ensure all the
5371         objects are removed.
5372
5373 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5374
5375         * loader.c (mono_method_signature): Call into the verifier to check
5376         the method signature.
5377
5378         * metadata-verify.c (verify_method_table): Move signature verification
5379         to verify_method_table_full.
5380
5381         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5382
5383         * verify-internals.h: Export mono_verifier_verify_method_signature as
5384         part of the internal API.
5385
5386 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5387
5388         * loader.c (mono_method_get_header): Call into the verifier to
5389         check the method header.
5390
5391         * metadata-verify.c: Add mono_verifier_verify_method_header.
5392
5393         * verify-internals.h: Export mono_verifier_verify_method_header as
5394         part of the internal API.
5395
5396 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5397
5398         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5399         check the field signature. Replace an assert with an explicit check.
5400
5401         * class.c (mono_class_setup_fields): Call into the verifier to check
5402         the field signature.
5403
5404         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5405
5406         * verify-internals.h: Export mono_verifier_verify_field_signature as
5407         part of the internal API.
5408
5409 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5410
5411         * class.c (mono_class_find_enum_basetype): Simplify this function
5412         by moving code outside of the loop and not decoding static fields.
5413
5414 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5415
5416         * metadata-verify.c (verify_typedef_table): Check the extends
5417         token here. Move to here a flags check from verify_typedef_table_full.
5418
5419 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5420
5421         * metadata-verify.c (is_valid_method_header): Fix a warning.
5422
5423         * metadata-internals.h (MonoImage): Remove the unused 
5424         static_rgctx_invoke_wrapper_cache.
5425
5426         * image.c marshal.c: Ditto.
5427
5428 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5429
5430         * image.c (do_mono_image_load): Enable table data verification.
5431
5432 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5433
5434         * metadata-verify.c (is_valid_constant): Fix nullref check.
5435
5436 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5437
5438         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5439
5440 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5441
5442         * sgen-gc.c: Managed allocation with pthreads TLS.
5443
5444         * threads.c, threads-types.h: Functions for the JIT to tell the
5445         runtime whether it supports the MONO_TLS opcode.
5446
5447 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5448
5449         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5450         without methods.
5451
5452 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5453
5454         * metadata-verify.c (is_valid_constant): Fix the string length check.
5455         Use safe overflow checking. Add decent error messages.
5456
5457 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5458
5459         * metadata-verify.c: Move remaininh blob checks to the offline
5460         verification path.
5461
5462 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5463
5464         * metadata-verify.c: Move more blob checks to the offline verification
5465         path.
5466
5467 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5468
5469         * object-internals.h : Adding interrupt_on_stop field.
5470
5471         * threads.c (mono_thread_request_interruption) : On Windows exit the
5472           thread if interrupt_on_stop is set.
5473
5474         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5475          Removing old interrupt logic and setting the interrupt_on_stop for the
5476          thread when calling accept.
5477
5478         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5479          setting the interrupt_on_stop for the thread when calling accept.
5480
5481         Contributed under MIT/X11 license.
5482
5483 2009-06-20  Martin Baulig  <martin@ximian.com>
5484
5485         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5486
5487 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5488
5489         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5490         running in no-exec mode.
5491
5492 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5493
5494         * metadata-verify.c (verify_method_table): Move header
5495         checking to verify_method_table_full.
5496
5497         * metata-verify.c (mono_verifier_verify_full_table_data):
5498         Call verify_method_table_full.
5499
5500 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5501
5502         * metadata-verify.c (verify_field_table): Move signature
5503         checking to verify_field_table_full.
5504
5505         * metata-verify.c (mono_verifier_verify_full_table_data):
5506         Call verify_field_table_full.
5507
5508 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5509
5510         * metadata-verify.c (verify_typedef_table): Move remaining
5511         stuff to verify_typedef_table_full.
5512
5513 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5514
5515         * metadata-verify.c: Kill is_corlib from VerifyContext.
5516         It is only used by the offline mode.
5517         So we better remove it from the runtime path.
5518
5519 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5520
5521         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5522         function that perform the offline metadata verification steps.
5523
5524         * metadata-verify.c (verify_typedef_table): Move some checks to
5525         verify_typedef_table_full and make it been called by new function
5526         mono_verifier_verify_full_table_data.
5527
5528         * pedump.c: Call mono_verifier_verify_full_table_data.
5529
5530         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5531         part of the internal API.
5532
5533 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5534
5535         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5536         check.
5537
5538         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5539         flags bits. SupportLastError was confused as bit 7 instead of 6.
5540
5541         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5542         to check against the module ref table instead of module.
5543
5544         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5545
5546         * pedump.c: Call mono_image_load_names.
5547
5548 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5549
5550         * image.c: Extract mono_image_load_names from do_mono_image_load.
5551
5552         * metadata-internals.h: Export mono_image_load_names as part of
5553         the internal API.
5554         
5555 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5556
5557         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5558         first, as it could reference data in the other caches.
5559
5560 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5561
5562         * metadata-verify.c: Finished with method header verification.
5563
5564 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5565
5566         * metadata-verify.c: Added more header verification code.
5567         Now only EH clauses are missing.
5568
5569 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5570
5571         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5572         for return values.
5573
5574 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5575
5576         * metadata-verify.c: Initial method header verification.
5577
5578 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5579
5580         * metadata-verify.c (verify_import_table): The IAT contents
5581         might end been patched by the windows DL when running with
5582         coree enabled.
5583
5584 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5585
5586         * class.c (mono_class_from_typeref): If the enclosing type is not
5587         found return null instead of crashing. Fixes #508487.
5588
5589 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5590
5591         * normalization-tables.h : updated to the latest unicode charcter
5592           data.
5593         * appdomain.c : bump corlib version.
5594
5595 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5596
5597         * class.c (mono_class_from_name): Fix support for assembly references
5598         in the EXPORTEDTYPE table. Fixes #511704.
5599
5600 2009-06-13  Geoff Norton  <gnorton@novell.com>
5601
5602         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5603         assembly in the target domain.
5604
5605 2009-06-12  Robert Jordan  <robertj@gmx.net>
5606
5607         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5608         because "this" of the managed signature has become an
5609         ordinary parameter in the unmanaged signature.
5610
5611 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5612
5613         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5614         field for owner-less generic containers.
5615
5616         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5617         image field of the owner-less generic containers created here.
5618
5619         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5620         contain is ownerless until the caller sets its owner.
5621
5622         * metadata.c (type_in_image): Handle owner-less generic containers
5623         correctly.
5624         
5625 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5626
5627         * image.c (mono_image_close): Support debug_assembly_unload for
5628         dynamic images too.
5629
5630 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5631
5632         * class.c: Fix some typos in comments.
5633
5634 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5635
5636         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5637
5638         * threads.c (mono_thread_execute_interruption): Avoid creating the
5639         abort exception object while holding the synch_cs lock.
5640
5641 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5642
5643         * metadata-verify.c: Verify basic cattr content.
5644
5645 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5646
5647         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5648         nested types.
5649         
5650         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5651         support for nested types. Fixes #511704.
5652
5653 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5654
5655         * metadata-verify.c: Verify methodspec signatures.
5656
5657 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5658
5659         * metadata-verify.c: Verify typespec signatures.
5660
5661 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5662
5663         * metadata.c (free_inflated_method): Call 
5664         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5665
5666 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5667
5668         * mono-config.c: Small change to report the PPC64/ILP32 model.
5669
5670 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5671
5672         * metadata-verify.c (parse_type): Check szarray.
5673
5674 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5675
5676         * metadata-verify.c (parse_type): Check fnptr.
5677
5678 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5679
5680         * metadata-verify.c (parse_type): Check generic instances.
5681
5682 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5683
5684         * metadata-verify.c (parse_type): Check array shape.
5685
5686 2009-06-05  Robert Jordan  <robertj@gmx.net>
5687
5688         * class.c (mono_class_create_from_typedef): Check only for
5689         mscorlib's System.Array.
5690
5691 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5692
5693         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5694         and generic params. 
5695
5696         * metadata-verify.c (parse_field): Check the signature.
5697
5698 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5699
5700         * metadata-verify.c: Implement locals signature check.
5701
5702 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5703
5704         * domain.c: Add .NET 4.0 Beta 1 version.
5705
5706 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5707
5708         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5709           For QueryInterface on CCWs consider the base class
5710           interfaces as well.
5711
5712         Code is contributed under MIT/X11 license.
5713
5714 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5715
5716         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5717
5718         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5719         used.
5720
5721         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5722         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5723
5724         * generic-sharing.c (inflate_other_data): Ditto.
5725         
5726 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5727
5728         * metadata-verify.c: Implement property signature check.
5729
5730 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5731
5732         * sgen-gc.h: Register saving support for PPC.
5733
5734 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5735
5736         * sgen-gc.c: Fixed a pthread TLS screwup.
5737
5738 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5739
5740         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5741         supported.
5742
5743 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5744
5745         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5746         keyword is not supported.
5747
5748 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5749
5750         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5751         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5752         the inflated method is freed. Fixes #508389.
5753
5754         The code is contributed under the MIT/X11 license.
5755         
5756 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5757
5758         * marshal.c (get_wrapper_target_class): New helper function.
5759         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5760         the <Module> class of the image. Fixes #509049.
5761
5762 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5763
5764         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5765         Check if the thread was interrupted and proccess it straight away.
5766         Makes abortion much more responsive.
5767
5768 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5769
5770         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5771         MonoThread::interruption_requested to match it's counterpart.
5772
5773         Fixes a hang in abort-stress-1 on a 2 core x86.
5774
5775         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5776         Fix warning.
5777
5778 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5779
5780         Change MonoImage::name_cache to be protected by the image lock
5781         instead of the loader lock.
5782
5783         * appdomain.c (deregister_reflection_info_roots): Protect access
5784         to name_cache.
5785
5786         * class.c (mono_image_init_name_cache): Change from the loader lock
5787         to the image lock. Check if the cache wasn't already created.
5788
5789         * class.c: Change from the loader to the image lock.
5790
5791         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5792         the code to hold the image lock while iterating over name_cache and
5793         not go into mono_array_new holding it.
5794
5795         * metadata-internals.h: Add a comment about this change.
5796
5797 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5798
5799         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5800         Under the 2.0 profile raise the loader error.
5801
5802         Fixes #508532.
5803
5804 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5805
5806         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5807         of ldind opcode for generic instances so we don't fail for direct wrappers.
5808         This only affect direct calls.
5809
5810 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5811
5812         * reflection.c (create_dynamic_mono_image): Fix warnings.
5813
5814         * generic-sharing.c (other_info_equal): Ditto.
5815         
5816 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5817
5818         * metadata-verify.c: Implement field signature check.
5819
5820 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5821
5822         * metadata-verify.c: Implement standalone signature check.
5823
5824 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5825
5826         * metadata-verify.c: Implement methodref signature check.
5827
5828 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5829
5830         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5831         callbacks supplied by the runtime.
5832
5833         * object.c (mono_install_callbacks): New internal function to install
5834         the callbacks.
5835
5836         * object.c (mono_create_ftnptr): Move the implementation of this to
5837         mini/.
5838
5839         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5840
5841 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5842
5843         * metadata-verify.c (parse_return_type): Proper byref check.
5844         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5845         generic signatures and method params.
5846
5847 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5848
5849         * metadata-verify.c (decode_signature_header): Fix bounds check.
5850
5851         * metadata-verify.c (parse_custom_mods): Check custom mods.
5852
5853         * metadata-verify.c (parse_type): Do initial basic verification
5854         of valid values.
5855         
5856         * metadata-verify.c (is_valid_method_signature): Parse the generic
5857         param count.
5858
5859 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5860
5861         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5862         discarded based on their most specific definition so we set the method_slots
5863         array before checking if the method is acceptable or not.
5864
5865         Fixes #506757.
5866
5867 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5868
5869         * icall.c: Free the old array when resizing a mono_ptr_array.
5870
5871 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5872
5873         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5874         for the hashes whose keys are managed objects.
5875
5876 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5877
5878         * object-internals.h, threads.c: Set the execution context on
5879         thread start here, not in corlib.
5880
5881         * appdomain.c: Bump corlib version.
5882
5883 2009-05-27  Martin Baulig  <martin@ximian.com>
5884
5885         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5886         if `_mono_debug_using_mono_debugger' is set to make things work
5887         properly when embedding Mono.
5888
5889 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5890
5891         * class.c (mono_class_setup_fields): Don't mark simd types as having
5892         16 bytes alignment as the whole runtime doesn't support.
5893
5894 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5895
5896         * metadata-verify.c (safe_read): Use endian safe read macros.
5897
5898 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5899
5900         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5901         it is read-only when using full aot.
5902
5903 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5904
5905         * metadata-verify.c (is_valid_method_signature): Verify parts
5906         of the return type. Provide an error message in case of failure.
5907
5908 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5909
5910         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5911
5912 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5913
5914         * metadata-verify.c: Include the size prefix in the bounds check.
5915
5916 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5917
5918         * icall.c: Remove warnings.
5919
5920         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5921         prevent auto-detection based on GCC defines.
5922
5923         Add PS3
5924
5925         * metadata-verify.c: Do not include signal.h
5926
5927         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5928         messages.  Not sure why the g_assert_not_reached is not enough to
5929         quiet the compiler.
5930         
5931
5932         * appdomain.c: Remove code that is not used when
5933         DISABLE_SHADOW_COPY is set.
5934
5935         * image.c: use g_getenv
5936
5937 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5938
5939         * reflection.c: Remove code that it not used with
5940         DISABLE_REFLECTION_EMIT is defined.
5941
5942 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5943
5944         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5945         invoke wrappers.
5946
5947 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5948
5949         * socket-io.c
5950         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5951         the ifdef here and instead put that on io-layer
5952
5953 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5954
5955         * metadata-verify.c: Verify the generic param constraint table.
5956
5957 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5958
5959         * metadata-verify.c (verify_generic_param_table): Fix
5960         thinko on the valid flags bits for generic params.
5961
5962 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5963
5964         * metadata-verify.c: Verify the methodspec table.
5965
5966 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5967
5968         * metadata-verify.c: Verify the generic param table.
5969
5970 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5971
5972         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5973
5974 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5975
5976         * sgen-gc.c: Use generation enum more consistently and use the
5977         correct generation in mono_gc_register_for_finalization().
5978
5979 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5980
5981         * metadata-verify.c: Verify the nested class table.
5982
5983 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5984
5985         * metadata-verify.c: Verify the manifest resource table.
5986
5987 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5988
5989         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5990
5991 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5992
5993         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5994         wrappers, this is now done in the JIT.
5995         
5996         * class.c (mono_set_generic_sharing_supported): New internal function.
5997         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5998
5999 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6000
6001         * metadata-verify.c: Verify the exported type table.
6002
6003 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6004
6005         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
6006
6007 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6008
6009         * metadata-verify.c: Verify the file table.
6010
6011 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6012
6013         * metadata-verify.c (verify_assembly_table): Fix an error message.
6014
6015         * metadata-verify.c: Verify the assemblyref table.
6016
6017 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
6018
6019         * metadata-verify.c (verify_assembly_table): Fix the valid
6020         bits mask for flags.
6021
6022 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
6023
6024         * debug-helpers.c (mono_method_full_name): Print generic parameters of
6025         generic methods as well.
6026
6027 2009-05-15  Geoff Norton  <gnorton@novell.com>
6028
6029         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
6030         use-case and is significantly more performant than the wapi layer.
6031
6032 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6033
6034         * metadata-verify.c: Verify the assembly table.
6035
6036 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6037
6038         * metadata-verify.c: Fix rows limit check.
6039
6040 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6041
6042         * metadata-verify.c: Verify the fieldrva table.
6043
6044 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6045
6046         * sgen.c: Speed up weak links and finalizers by grouping them by
6047         generation.
6048
6049 2009-05-13  Mark Probst  <mark.probst@gmail.com>
6050
6051         * marshal.c (delegate_hash_table_add): When overwriting an entry,
6052         free the old GCHandle (only applies to SGen).
6053
6054 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
6055
6056         * loader.c (mono_get_method_from_token): Avoid the expensive call to
6057         mono_metadata_load_generic_params () for non-generic methods.
6058
6059 2009-05-12  Mark Probst  <mark.probst@gmail.com>
6060
6061         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
6062         New function for returning a monitor's weak link if it has one.
6063
6064         * sgen-gc.c: Remove an object's monitor's weak link (if it has
6065         one) when clearing a domain.  These can still be around because
6066         the object might not have been collected.
6067
6068 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6069
6070         * gc.c: Fix a warning.
6071
6072 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6073
6074         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6075         prevous wait that resulted in a deadlock on Windows when initializing
6076         the runtime form DllMain. Also results in improved startup time.
6077         (finalizer_thread): Get rid of thread_started_event.
6078         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6079         resulting MonoThread.
6080
6081         Contributed under MIT/X11 license.
6082
6083 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6084
6085         * metadata-verify.c: Verify the implmap table.
6086         Don't require that #US and #Strings be present.
6087
6088 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6089
6090         * security-core-clr.c: Delegate checks are done at creation time,
6091         not a invocation time. Fix exception for Telerik Silverlight demo
6092
6093 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6094
6095         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6096         case for the Thread class.
6097
6098         * threads.c: Do clean-up of abort exception/state in
6099         thread_cleanup() instead of Thread.free_internal().  Also clean up
6100         current_appcontext.  The reason we have to do that is because
6101         those references might point into another domain and if that
6102         domain is unloaded before the thread is finalized, they point to
6103         invalid data.
6104
6105 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6106
6107         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6108         stub signatures.
6109         
6110         Contributed unter MIT/X11 license.
6111
6112 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6113
6114         * verify.c, metadata-verifier.c: Add support for disabling the
6115         verifier in some builds.
6116
6117         [ Sorry, my previous commit accidentally commited some work in
6118         progress ]
6119
6120 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6121
6122         * class.c (mono_class_setup_fields): Set class->field.first for
6123         generic instances.
6124
6125 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6126
6127         * metadata-verify.c: Verify the typespec table.
6128
6129 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6130
6131         * metadata-verify.c: Verify the module table.
6132
6133 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6134
6135         * metadata-verify.c: Verify the methodimpl table.
6136
6137 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6138
6139         * metadata-verify.c: Verify the property table.
6140
6141 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6142
6143         * debug-helpers.c (mono_method_desc_match): Add support for generic
6144         glob patterns.
6145
6146 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6147
6148         * metadata-verify.c: Verify the propertymap table.
6149
6150 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6151
6152         * metadata-verify.c: Verify the event table.
6153
6154         * metadata-verify.c (search_sorted_table): Fix offset
6155         calculation.
6156
6157 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6158
6159         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6160
6161 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6162
6163         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6164         because mono_delegate_free_ftnptr() needs it.
6165
6166 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6167
6168         * metadata-verify.c: Verify the eventmap table.
6169
6170 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6171
6172         * metadata-verify.c: Verify the standalonesig table.
6173
6174 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6175
6176         * metadata-verify.c: Verify the field layout table.
6177
6178 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6179
6180         * class.c (mono_type_get_name_recurse): Don't crash
6181         for ownerless generic params.
6182
6183         * debug-helpers.c (mono_type_get_desc): Correct the format
6184         for ownerless generic params.
6185
6186 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6187
6188         * metadata-verify.c: Verify the class layout table.
6189
6190 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6191
6192         * metadata-verify.c: Verify the decl security table.
6193
6194 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6195
6196         * domain.c (mono_domain_set_internal_with_options): Don't do
6197         anything if the old domain is the same as the old one.  Fixes
6198         #499326.
6199
6200 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6201
6202         * appdomain.c: Deregister the reflection_info roots when unloading
6203         a domain.
6204
6205         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6206         memory allocated by a domain and frees its disappearing links.
6207
6208         * boehm-gc.c, null-gc.c: Empty implementation of
6209         mono_gc_clear_domain().
6210
6211 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6212
6213         * appdomain.c (clear_cached_vtable): Free the static fields memory
6214         block.
6215
6216 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6217
6218         * gc.c: Set the correct domain when invoking finalizers.
6219
6220         * appdomain.c: Set the correct domain when creating threads.
6221
6222 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6223
6224         * sgen-gc.c: Fix skip size for vectors.
6225
6226 2009-05-03  Martin Baulig  <martin@ximian.com>
6227
6228         * mono-debug-debugger.c
6229         (mono_debugger_check_breakpoints): Check class init handlers even
6230         if we don't have any method load handers.
6231
6232 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6233
6234         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6235         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6236
6237 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6238
6239         * metadata-verify.c: Verify the field marshal table.
6240
6241 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6242
6243         * metadata-verify.c: Verify the custom attribute table.
6244
6245 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6246
6247         * metadata-verify.c: Verify the constant table.
6248
6249 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6250
6251         * metadata-verify.c: Verify the memberef table.
6252
6253 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6254
6255         * metadata-verify.c (get_coded_index_token): Remove
6256         dead argument.
6257
6258 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6259
6260         * metadata-verify.c: Verify the interfaceimpl table.
6261
6262 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6263
6264         * verify.c: Improve error message.
6265
6266         * debug-helpers.c (mono_type_get_desc): Harden the code that
6267         deals with VAR and MVAR.
6268
6269 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6270
6271         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6272         part of #498692.
6273
6274 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6275
6276         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6277         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6278
6279 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6280
6281         * security-core-clr.c: Avoid redundant checks for platform code, 
6282         e.g. check for method and for class (very common) and check
6283         for class and outer class (less common)...
6284
6285 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6286
6287         * reflection.c: Avoid returning random cattrs for synthetic methods.
6288         Fixes #498545.
6289
6290 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6291
6292         * assembly.c: assemblies in the GAC should never be shadow-copied.
6293
6294 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6295
6296         * domain.c, domain-internals.h: Disable
6297         track_resurrection_{objects,handles}_hash in MonoDomain if using
6298         SGen.
6299
6300 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6301
6302         * metadata-verify.c: Verify the param table.
6303
6304 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6307         MethodList.
6308
6309         * metadata-verify.c (verify_method_table): Proper check the ParamList
6310         field.
6311
6312 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6313
6314         * metadata-verify.c (verify_method_table): Check for runtime
6315         implemented functions such as delegate .ctors. Remove spurious
6316         printf.
6317         
6318 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6319
6320         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6321
6322 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6323
6324         Don't allocate MonoGenericInfo for ownerless generic params.
6325         * class-internals.h (MonoGenericParam::info): Move field to ...
6326         (MonoGenericParamFull): ... this.  New struct.
6327         (MonoGenericContainer::type_params): Change type to
6328         MonoGenericParamFull.
6329         (MonoGenericParam, MonoGenericContainer): Update accessors.
6330         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6331         'info' field for ownerless generic param.
6332         (mono_metadata_load_generic_params): Update to changes.
6333         * reflection.c (mono_reflection_create_generic_class): Likewise.
6334         (reflection_methodbuilder_to_mono_method): Likewise.
6335         (mono_reflection_initialize_generic_parameter): Likewise.
6336
6337 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6338
6339         Don't use MonoGenericParamInfo for ownerless generic params.
6340         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6341         use ParamInfo class at all.
6342         (mono_class_from_generic_parameter): Use them.
6343         (make_generic_param_class): Fix a couple of instances where 'pinfo
6344         == NULL' wasn't handle.
6345
6346 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6347
6348         * class.c (make_generic_param_class): Carve out of ...
6349         (mono_class_from_generic_parameter): ... here.
6350
6351 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6352
6353         Simplify mono_class_from_generic_parameter
6354         * class-internals.h (MonoGenericParamInfo::token): New field.
6355         * metadata.c (mono_metadata_load_generic_params): Initialize it
6356         from metadata.
6357         * class.c (mono_class_from_generic_parameter): Use it instead of
6358         searching through metadata.
6359
6360 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6361
6362         * metadata-verify.c: Add verification of the method table.
6363
6364 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6365
6366         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6367         Delegate::Invoke optimization.
6368
6369 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6370
6371         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6372         string returned by get_shadow_assembly_location_base.
6373
6374         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6375         about caller's ownership.
6376
6377 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6378
6379         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6380         reflection memory on domain unload.
6381
6382         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6383         reflection cleanup code do it.
6384
6385         * domain-internals.h: Add mono_reflection_cleanup_domain.
6386
6387         This fixes a memory leak for managed mirrors of reflection objects
6388         on domain unload. 
6389
6390 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6391
6392         * metadata-verify.c: Implement more verification of the field table.
6393
6394 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6395
6396         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6397         doesn't try to parse the input assembly, which can be broken.
6398
6399 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6400
6401         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6402         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6403         by using the lowest bit in the link to store whether the link is
6404         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6405
6406 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6407
6408         * Makefile.am: Split the console support in platform specific code
6409         and put together a framework for making this easy in the future so
6410         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6411
6412 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6413
6414         * pedump.c: Fix a warning.
6415
6416 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6417
6418         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6419         mono_class_from_mono_type to avoid bad interactions with the dual representation
6420         of the generic type definition.
6421
6422 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6423
6424         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6425         get the MonoClass for the call context type as it might be a generic
6426         instance.
6427
6428         Fixes #491483.
6429
6430 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6431
6432         * object-internals.h: The Thread object has no execution_context
6433         member anymore.
6434
6435         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6436         the execution context.
6437
6438         * appdomain.c: Bump corlib version.
6439
6440 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6441
6442         * verify.c (do_newobj): Improve error message.
6443
6444 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6445
6446         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6447         is nested in the filter block.
6448
6449         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6450         block is not fully nested.
6451
6452         Fixes #495656.
6453
6454 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6455
6456         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6457         not MonoType to check for equality of valuetypes as the generic type
6458         definition allows for two different encodings: the generic type definition
6459         class or a generic instance over the GTD arguments.
6460
6461         Fixes #496175.
6462
6463 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6464
6465         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6466
6467         * verify.c (do_initobj): Improve error message.
6468
6469 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6470
6471         * metadata-verify.c: Enable pe verification as the issue with #496453
6472         is that the authenticode data directory have a different unspecified
6473         format. Ignore it for now.
6474
6475         * pedump.c: Run the metadata verifier together with the IL verifier.
6476
6477         Fixes ##496453.
6478
6479 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6480
6481         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6482
6483 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6484
6485         * class.c (can_access_type): Check visibility against
6486         the element type for pointers and arrays.
6487
6488         Fixes #496150.
6489
6490 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6491
6492         * metadata-verify.c: Fix cli and table verification to use information
6493         from the MonoImage. A lot of duplicated code got killed.
6494
6495 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6496
6497
6498         This patch starts to integrate the metadata verifier with the runtime code.
6499
6500         This patch causes major regression in functionality for the metadata verifier
6501         as cli and table verification are disabled since they require to be ported to
6502         use MonoImage information.
6503
6504         * image.c (do_mono_image_load): Split the code in this function
6505         into mono_image_load_pe_data and mono_image_load_cli_data.
6506         Add     care_about_pecoff parameter to not load pecoff data.
6507         Call into the metadata verifier for pecoff and cli verification.
6508
6509         * image.c (mono_image_open_raw): New function that doesn't perform
6510         any parsing of the image contents.
6511         
6512         The reason for the 3 new functions is to give pedump better control
6513         into the interaction with the verifier.
6514
6515         * metadata-internals.h: Add new functions from image.c as part of the
6516         internal mono API.
6517
6518         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6519         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6520         to make those functions work together with the runtime.
6521
6522         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6523         true if the image needs to be verified.
6524
6525         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6526
6527         * pedump.c: Use new metadata verifier API.
6528
6529 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6530
6531         * object.c (mono_install_vtable_trampoline): Make this receive a
6532         trampoline creation function instead of trampoline, allowing the JIT
6533         to use a different trampoline for each vtable.
6534
6535 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6536
6537         * object.c (mono_raise_exception): Don't reset the thread abort
6538         exception state here.
6539
6540 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6541
6542         * icall-def.h: New icall for getting the thread abort exception
6543         state for a thread.
6544
6545         * object.c, thread.c, object-internals.h: A thread's abort
6546         exception state is now a GC handle.  To get the object it stands
6547         for, we must move it into the current app domain, if it's
6548         different than the one where it originated from.
6549
6550         * appdomain.c: Bump corlib version.
6551
6552         * domain.c, domain-internals.h: New function for setting the
6553         domain and migrate the thread abort exception or not.
6554
6555 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6556
6557         * metadata-verify.c: Add initial verification of the
6558         field table.
6559
6560 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6561
6562         * metadata-verify.c: Add a macro to conditionally enable
6563         dumping of verification information. Add  make_coded_token
6564         and search_sorted_table to enable search sorted tables
6565         by a given coded token.
6566
6567 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6568
6569         * metadata-verify.c: Add array mapping from table index
6570         to description offset. Add get_col_offset and get_col_size
6571         functions.
6572
6573 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6574
6575         * metadata-verify.c: Add remaining table descriptions offsets.
6576         Add remaining coded index descriptions.
6577
6578 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6579
6580         * metadata-verify.c: Fixed constant table description.
6581         Fixed calculation of HasCustomAttribute coded index size.
6582         Fixed calculation of size for many table indexes. 
6583
6584 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6585
6586         * pedump.c (dump_metadata): Dump table offset instead
6587         of useless pointer in memory.
6588
6589 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6590
6591         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6592
6593 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6594
6595         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6596         a missing of for interface types.
6597
6598 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6599
6600         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6601         the code is commented.
6602
6603         * metadata-verify.c (verify_resources_table): Remove spurious printf
6604         and don't fail if there are unmanaged resources. Gmcs generates a useless
6605         one     for all assemblies - I bet it's some MS compatibility junk.
6606
6607 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6608
6609         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6610
6611         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6612
6613         * verify-internals.h: Same.
6614
6615         * pedump.c: Fix for mono_image_verify new signature.
6616
6617 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6618
6619         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6620         flags combinations.
6621
6622 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6623
6624         * metadata-verify.c (verify_module_table): Ignore the generation field.
6625
6626 2009-04-15  Martin Baulig  <martin@ximian.com>
6627
6628         * debug-mono-symfile.c
6629         (mono_debug_symfile_lookup_location): Don't print a warning for
6630         unknown extended opcodes if they're within 0x40 and 0x7f.
6631
6632 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6633
6634         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6635         invoke signatures returning an enum. Fixes #494847.
6636
6637 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6638
6639         * metadata-verify.c: Initial code to verify the typedef table.
6640
6641 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6642
6643         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6644         with non empty stack happens before the beginning of a try block.
6645
6646         Fixes #494812.
6647
6648 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6649
6650         * metadata-verify.c: Verify typename and typenamespace fields of
6651         the typeref table.
6652
6653 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6654
6655         * metadata-verify.c: Initial code to verify the typeref table.
6656
6657 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6658
6659         * verify.c (verify_delegate_compatibility): Fix error message.
6660
6661 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6662
6663         * security-core-clr.c: Fix typo
6664
6665 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6666
6667         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6668         a MonoGHashTable to keep its values alive.
6669         (emit_marshal_boolean): Fix a warning.
6670
6671 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6672
6673         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6674         not have any interface configured for IPv4/IPv6.
6675
6676 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6677
6678         * assembly.c: fix typo in error message.
6679
6680 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6681
6682         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6683         allocating the location holding the this argument to prevent
6684         'too many root sets' errors.
6685
6686         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6687         to mark fields as special static.
6688         (mono_field_static_get_value): Handle special static fields.
6689         (mono_field_static_set_value): Ditto.
6690
6691         * class-internals.h (struct _MonoClassField): Document this.
6692
6693 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6694
6695         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6696           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6697           case.  This will handle when managed code returns null to native code.
6698
6699         Code is contributed under MIT/X11 license.
6700
6701 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6702
6703         * object.c (build_imt_slots): Changing a free to a g_free to match
6704           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6705
6706         Code is contributed under MIT/X11 license.
6707
6708 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6709
6710         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6711           the correct TRUE value is passed through the marshaling layer.
6712
6713         Code is contributed under MIT/X11 license.
6714
6715 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6716
6717         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6718         correctly. Fixes #492330.
6719         
6720         * marshal.c: Fix the embedding of object pointers into JITted code in
6721         the native-to-managed wrappers by allocating some GC tracked memory, and
6722         embedding the address of that.
6723
6724 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6725
6726         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6727         pointers into the vtable.
6728
6729 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6730
6731         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6732
6733         * verify.c (verify_ldftn_delegate): Improve error message.
6734
6735 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6736
6737         * reflection.c (my_mono_class_from_mono_type): Remove.
6738
6739 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6740
6741         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6742         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6743         and constraints fields into ...
6744         (MonoGenericParamInfo): ... this.
6745         (mono_generic_param_info, mono_generic_container_get_param_info):
6746         New accessors.
6747         * class.c, debug-helpers.c, icall.c: Update to changes.
6748         * metadata.c, reflection.c, verify.c: Likewise.
6749
6750 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6751
6752         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6753
6754         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6755         
6756         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6757         booleans with sbytes.
6758
6759 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6760
6761         * class.c (can_access_instantiation): Verify accesibility of element types
6762         for arrays and pointers.
6763
6764         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6765
6766         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6767
6768         Fixes #493068.
6769
6770 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6771
6772         * verify.c (do_invoke_method): Improve error messages.
6773
6774 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6775
6776         * verify.c:  Fixing the MSVC build.
6777
6778         Code is contributed under MIT/X11 license.
6779
6780 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6781
6782         * security-core-clr.c: Simplify get_reflection_caller not to call
6783         mono_method_get_last_managed (another stack walk) and adjust the
6784         callers to handle a (should not happen) NULL return value.
6785
6786 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6787
6788         Add accessors to some MonoGenericParam fields
6789         * class-internals.h (mono_generic_param_owner): New accessor.
6790         (mono_generic_param_num): Likewise.
6791         (mono_type_get_generic_param_owner): New helper.
6792         (mono_type_get_generic_param_num): New helper.
6793         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6794
6795 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6796
6797         * class-internals.h (mono_generic_container_get_param): New wrapper.
6798         * class.c, icall.c, metadata.c, verify.c: Use it.
6799
6800 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6801
6802         Fix gtest-252.cs
6803         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6804         the standard case/loop.  In particular, don't complain about
6805         references to generic type definitions.
6806
6807 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6808
6809         * debug-helpers.c (dis_one): Decode string arguments.
6810
6811 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6812
6813         * pedump.c (dump_verify_info): Dump type name correctly.
6814
6815 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6816
6817         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6818         are larger than code size.
6819
6820         This can happen in valid code if the try/catch block is not followed by any instruction
6821         and do a backward branch on the leave instruction.
6822
6823         Fixes #492494.
6824
6825 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6826
6827         * security-core-clr.c: Fix typo while comparing second method names
6828         in can_avoid_corlib_reflection_delegate_optimization
6829
6830 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6831
6832         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6833
6834         Fixes #487738.
6835
6836 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6837
6838         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6839         a MVAR using a class context.
6840
6841         Fixes #490335.
6842
6843 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6844
6845         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6846
6847         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6848
6849         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6850         functions supplied by the JIT for the SGEN GC.
6851
6852         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6853         
6854 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6855
6856         monitor.c (mono_monitor_try_enter_internal):
6857         Added calls to profile monitor contentions.
6858         Also duplicated a small piece of code (the "get the monitor" logic)
6859         from the fast path to the slow path, and changed the relevant goto
6860         statements, so that monitor acquisition events can be emitted from the
6861         slow path (this is by Paolo Molaro).
6862
6863 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6864
6865         * profiler.c, profiler.h, profiler-private.h:
6866         Added support for profiling monitor contentions.
6867
6868 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6869
6870         * metadata-verify.c: Verify the modules table.
6871
6872 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6873
6874         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6875         using the context of the method been verifier and not of the method been called.
6876
6877         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6878         safely inflate generic types. 
6879
6880 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6881
6882         * security-core-clr.c: Change the strategy for checking the 
6883         "reflection using delegates optimization" to avoid unneeded 
6884         attributes in multiple class libraries.
6885
6886 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6887
6888         * sgen-gc.c: Remove object element in the disappearing link struct
6889         by storing the object pointer in the link.
6890
6891 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6892
6893         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6894
6895 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6896
6897         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6898
6899         * verify.c (mono_method_verify): Do proper bounds checking of exception
6900         clause ranges.
6901
6902 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6903
6904         * loader.c (mono_field_from_token): Don't crash if the field parent could
6905         not be decoded.
6906
6907 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6908
6909         * sgen-gc.c: Execute critical finalizers after ordinary
6910         finalizers.
6911
6912         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6913         mono_defaults.
6914
6915 2009-03-31 Jb Evain <jbevain@novell.com>
6916
6917         * verify.c (do_ldstr): don't check if a string is in the user strings
6918         heap if the current image is dynamic.
6919
6920 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6921
6922         * sgen-gc.c: Wait until the last finalizer has executed when
6923         returning from WaitForPendingFinalizers.
6924
6925 2009-03-31  Martin Baulig  <martin@ximian.com>
6926
6927         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6928         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6929         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6930         (mono_debugger_event_create_appdomain): New function.
6931         (mono_debugger_event_unload_appdomain): New function.
6932
6933         * appdomain.c (mono_domain_create_appdomain_internal): Call
6934         mono_debugger_event_create_appdomain().
6935
6936 2009-03-31  Martin Baulig  <martin@ximian.com>
6937
6938         * mono-debug-debugger.c
6939         (mono_debugger_register_class_init_callback): Also register the
6940         class init callback if the class is already initialized to make
6941         things work with shadow copied assemblies.
6942
6943 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6944
6945         * security-core-clr.c
6946         (mono_security_core_clr_ensure_reflection_access_field): Let 
6947         critical code access the field (just like we do for methods). Use
6948         check_field_access helper.
6949         (mono_security_core_clr_ensure_reflection_access_method): Use 
6950         check_field_access helper.
6951
6952 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6953
6954         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6955         call the run-finalize function directly.
6956
6957         * gc.c, gc-internal.h: Make run_finalize() non-static.
6958
6959 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6960
6961         * sgen-gc.c: Use a separate struct for disappearing links.
6962
6963 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6964
6965         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6966         * MaxIOVectorLength enabled, just ignore them.
6967         Fixes bug #349688.
6968
6969 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6970
6971         * metadata-verify.c: Fix eglib build.
6972
6973 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6974
6975         * threads-types.h: Fix the win32 build.
6976
6977 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6978
6979         * class.c: move coreclr inheritance/override checks to 
6980         security-core.clr.c
6981         * security-core.clr.c|h: add code from class.c with additional
6982         documentation. Fix override check when the method is not critical.
6983
6984 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6985
6986         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6987         (match_class): Ditto.
6988
6989 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6990
6991         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6992
6993         * metadata-verify.c: Implement table layout row size calculation. Verify
6994         the total size of the tables.
6995
6996 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6997
6998         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6999
7000 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7001
7002         * appdomain.c:
7003         * console-io.[ch]: added new mono_console_init() to make sure that
7004         file descriptors 0, 1 and 2 are opened.
7005         Bug #489019 fixed.
7006
7007 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
7008
7009         * appdomain.h: Export a new callback type and a new function to
7010         set this callback. This allow a mono host to provide it's own
7011         definition for "platform code".
7012         * metadata-internals.h: Add a core_clr_platform_code flag on 
7013         _MonoImage to (cache and) know if it is representing platform 
7014         code.
7015         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
7016         on platform code images.
7017         * security-core-clr.c|h 
7018         (mono_security_set_core_clr_platform_callback): Allow the host
7019         to provide it's own platform check definition.
7020         (mono_security_core_clr_determine_platform_image): Detect if an 
7021         image is platform code (using the specified callback).
7022         (mono_security_core_clr_is_platform_image): Return cached value 
7023         for platform code.
7024
7025 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
7026
7027         * threads.c (mono_create_thread): New helper function to wrap CreateThread
7028         which has different parameter types for the 'tid' argument in windows and
7029         the io-layer.
7030
7031         * appdomain.c attach.c threads.c: Use the new helper.
7032
7033 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7034
7035         * metadata-verify.c: Verify valid table bits.
7036
7037 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
7038
7039         * metadata-verify.c (verify_metadata_header): Store size in the size field.
7040
7041         * metadata-verify.c: Add initial table schema verification.
7042
7043 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7044
7045         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
7046         obtain the refclass argument needed by mono_param_get_objects (). Fixes
7047         #488383.
7048
7049         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
7050
7051         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
7052
7053 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
7054
7055         * security-core-clr.c: Add/update documentation
7056
7057 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
7058
7059         * marshal.c (emit_marshal_object): Generate code to throw an exception
7060         instead of throwing it. Fixes #488670.
7061
7062 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
7063
7064         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
7065         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
7066         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
7067         and add a call to mono_security_core_clr_ensure_delegate_creation
7068         to do the extra checks required by CoreCLR.
7069         * security-core-clr.c|h: Add function to check delegate creation,
7070         both in the binding and accessibility, under CoreCLR.
7071
7072 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7073
7074         * reflection.c (mono_reflection_create_dynamic_method): when 
7075         coreclr is enabled make sure that every resolved object are
7076         checked (e.g. field and method access).
7077         * security-core-clr.c|h: Add function to check objects resolved
7078         when a dynamic method is created.
7079
7080 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7081
7082         * metadata-verify.c: Cache directory rva translations.
7083
7084         * metadata-verify.c: Add cli-header and streams verification.
7085
7086 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7087
7088         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7089         the wrong offset (8 instead of 6).
7090
7091 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7092
7093         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7094         methods, return the native function address itself. Fixes
7095         #487758.
7096
7097 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7098
7099         * console-io.c: some of the values for control characters might not be
7100         present.
7101
7102 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7103
7104         * exception.c|h: Add helpers to create [Field|Method]AccessException
7105         * icall.c: Add required coreclr check calls for field reflection.
7106         Move the existing (method) check logic into security-core-clr.c
7107         * security-core-clr.c: Add functions to check if the access of a
7108         field or method is allowed when reflecting under coreclr. This is
7109         mostly done using a stack walk to find the "real" caller: i.e. the
7110         code that is calling the reflection
7111
7112 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7113
7114         * gc-internal.h: Change location of gc_wrapper.h
7115
7116 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7117
7118         * class.c: Simplification to coreclr checks for overrides that
7119         makes it easier to set breakpoints.
7120
7121 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7122
7123         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7124         mono_security_core_clr_method_level): Avoid potential 
7125         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7126         user/application code) and make it easier to set breakpoints
7127
7128 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7129
7130         * metadata-verify.c: Reject cli header tables that mono don't handle.
7131
7132 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7133
7134         * pedump.c: Fix CLI header dumping.
7135
7136 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7137
7138         * metadata-verify.c: More CLI header verification.
7139
7140 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7141
7142         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7143
7144 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7145
7146         * metadata-verify.c: Initial verification of the CLI header.
7147
7148 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7149
7150         * metadata-verify.c (verify_resources_table): Fix verification of zero
7151         sized resource section and id entries count.
7152
7153 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7154
7155         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7156
7157 2009-03-17  Jb Evain  <jbevain@novell.com>
7158
7159         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7160
7161 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7162
7163         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7164         (mono_gc_make_descr_for_array): Ditto.
7165
7166 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7167
7168         * verify.c (mono_verifier_is_class_full_trust): Add support for
7169         CoreCLR security mode where trusted assemblies are defined as
7170         "platform code".
7171
7172 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7173
7174         * metadata-verify.c: Add minimal PECOFF resource verification.
7175
7176 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7177
7178         * metadata-verify.c: Be less restrictive with some coff fields.
7179
7180 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7181
7182         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7183         params as boxed values on stack. Fixes #485706.
7184
7185 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7186
7187         * console-io.c: the termios values may vary in different flavors of unix.
7188
7189 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7190
7191         * console-io.[ch]: return the entire set of control characters when
7192         initializing the terminal.
7193         * appdomain.c: bump corlib version.
7194
7195 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7196
7197         * mono-perfcounters.c: added support for in-process custom
7198         performance counters.
7199
7200 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7201
7202         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7203
7204 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7205
7206         * metadata-verify.c: Verify the data pointed by the import table. 
7207
7208 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7209
7210         * metadata-verify.c (load_data_directories): Store data
7211         directory contents.
7212
7213         * metadata-verify.c: Verify the import table. 
7214
7215 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7216
7217         * metadata-verify.c: Verify data directories.
7218
7219 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7220
7221         * metadata-verify.c: Check section header flags.
7222
7223 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7224
7225         * appdomain.c: if the assembly name is a shadow-copied file, return
7226         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7227         in mono_make_shadow_copy.
7228         * icall.c: if the assembly name is a shadow-copied file, replace it
7229         with the original assembly path.
7230
7231         Bug #484244 fixed. NUnit tests for corlib can be run without
7232         --noshadow now.
7233
7234 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7235
7236         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7237         entries when the table is reallocated.
7238
7239         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7240         mono_gc_alloc_fixed () since it contains GC refs.
7241
7242 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7243
7244         * reflection.c (ensure_complete_type): New helper function to call
7245         type resolve handlers for unfinished dynamic types.
7246         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7247
7248 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7249
7250         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7251         #483247.
7252
7253 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7254
7255         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7256
7257 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7258
7259         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7260         between GCHandles of type WeakTrackResurrection and the objects they
7261         point to.
7262
7263         * gc.c: Partly implement the sematics of GCHandles of type 
7264         WeakTrackResurrection: these handles should only be cleared after the
7265         finalizer of the object they are pointing to has ran.
7266
7267 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7268
7269         * icall.c: Partially revert r126631 because using the jump
7270         trampolines for generic shared methods makes it superfluous.
7271
7272 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7273
7274         * threads.c (handle_store): Create the 'threads' hash table with the proper
7275         MONO_HASH_VALUE_GC type.
7276
7277 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7278
7279         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7280         FIRST_GC_TRACKED.
7281
7282         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7283         and LAST_GC_TRACKED as a GC root.
7284
7285         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7286
7287         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7288         the static data even if it consists of 1 reference.
7289
7290         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7291         if there is a GC descriptor.
7292
7293         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7294         instead of through the GC since they contain no object references.
7295
7296 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7297
7298         * generic-sharing.c (instantiate_other_info): Always return a jump
7299         trampoline for method code.
7300
7301 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7302
7303         * culture-info-tables.h: generated to include the en-tt culture.
7304
7305 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7306
7307         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7308         capture the thread context.
7309
7310         * object.c (mono_async_result_new): Cache the invoke wrappers to
7311         ExecutionContext::Capture.
7312
7313 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7314
7315         * marshal.h: Add a prototype for what mono_compile_method returns
7316         for invoke wrappers.
7317
7318         * gc.c: Use the new prototype declaration.
7319
7320 2009-03-04  Geoff Norton  <gnorton@novell.com>
7321
7322         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7323         * gc-internal.h:
7324         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7325
7326 2009-03-04  Martin Baulig  <martin@ximian.com>
7327
7328         * mono-debug.h
7329         (mono_debugger_runtime_invoke): Removed.
7330
7331         * mono-debug-debugger.c
7332         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7333
7334 2009-03-02  Martin Baulig  <martin@ximian.com>
7335
7336         * mono-debug.h
7337         (mono_debugger_unhandled_exception): Removed.
7338         (mono_debugger_handle_exception): Removed.
7339         (mono_debugger_throw_exception): Removed.
7340
7341         * mono-debug.c
7342         (mono_debug_debugger_version): Bump to 5.
7343
7344         * mono-debug-debugger.c: Moved the exception handling code to
7345         ../mini/debug-mini.c
7346
7347 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7348
7349         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7350         finalize_objects_hash.
7351
7352         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7353         
7354         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7355         field.
7356
7357         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7358         cache.
7359
7360         * image.c (mono_image_close): Free it.
7361         
7362         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7363         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7364         on the this argument.
7365
7366         * gc.c (run_finalize): Optimize the calling of the finalizers.
7367
7368 2009-03-03  Martin Baulig  <martin@ximian.com>
7369
7370         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7371         of the `MonoGenericInst' changes.
7372
7373 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7374
7375         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7376         mono_array_class_get_cached to reduce locking contention. Extract
7377         a domain var.
7378
7379         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7380         intermediary managed arrays. Use caching version of mono_array_new
7381         to allocate the result array.
7382
7383         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7384
7385         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7386
7387         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7388         to reduce locking contention.
7389
7390 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7391                 
7392         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7393         thunk builder code for the non-interface case.
7394
7395 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7396
7397         * object.c (get_generic_virtual_entries): New helper function to collect
7398         the virtual generic method instances which need to be added to an IMT
7399         thunk.
7400         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7401         Instead of creating a new IMT thunk, reset the vtable slot to the
7402         trampoline, the thunk will be created the next time the trampoline is called.
7403         (build_imt_slots): Add support for virtual generic methods in interfaces by
7404         adding to the IMT thunk all the methods registered using 
7405         mono_method_add_generic_virtual_invocation ().
7406
7407         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7408         (struct _MonoIMTCheckItem): Ditto.
7409
7410         * object.c (mono_method_add_generic_virtual_invocation): Take a
7411         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7412         the IMT thunk to include all items.
7413         
7414         * object.c (mono_class_create_runtime_vtable): Add a missing
7415         mono_loader_unlock ().
7416
7417 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7418
7419         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7420
7421         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7422
7423 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7424
7425         * object-internals.h: Rename _MonoReflectionEvent to
7426         MonoReflectionMonoEvent so it reflects the right managed type.
7427         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7428
7429         * icall.c:
7430         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7431         type.
7432
7433 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7434
7435         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7436         intermediary managed arrays. Use caching version of mono_array_new
7437         to allocate the result array.
7438
7439 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7440
7441         * reflection.c: Use cached version of mono_array_new alongside
7442         the mono_reflection_get_custom_attrs_by_type call path.
7443
7444 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7445
7446         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7447         intermediary managed arrays. Use caching version of mono_array_new
7448         to allocate the result array.
7449
7450         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7451
7452 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7453
7454         * icall.c: Add small implementation of a growable stack bound array.
7455
7456         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7457
7458         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7459         intermediary managed arrays. Use caching version of mono_array_new
7460         to allocate the result array.
7461
7462 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7463
7464         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7465         helps Enum::CompareTo to be implemented without reboxing all enums
7466         to their underlying type.
7467 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7468
7469         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7470         since it acquires a global lock leading to scalability problems.
7471
7472         * profiler.c: Make the stat profiler work with multiple appdomains, this
7473         currently only works when no appdomains are unloaded.
7474
7475 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7476
7477         * appdomain.c: make the check to avoid copying when the assembly is
7478         already shadow copied actually work.
7479
7480 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7481
7482         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7483
7484         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7485         changes to the managed side.
7486
7487 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7488
7489         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7490         classes + a separate lock for it, as it is used frequently at runtime, not
7491         just during metadata loading/JIT compilation.
7492
7493         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7494         for szarrays.
7495         
7496         * object-internals.h (mono_class_from_name_cached): New macro to cache
7497         the results of the lookup locally without having to declare a static
7498         variable to hold it.
7499         (mono_class_get_field_from_name_cached): Ditto.
7500         (mono_array_class_get_cached): Ditto.
7501
7502         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7503         the new macros.
7504         
7505         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7506         slower search in metadata.
7507
7508         * pedump.c: Fix a warning.
7509
7510 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7511
7512         * reflection.c (encode_locals): Add checks for user types.
7513         (method_encode_clauses): Ditto.
7514         (method_encode_code): Ditto.
7515         (mono_image_create_token): Ditto.
7516
7517         * object-internals.h: Change the type of more fields from MonoReflectionType*
7518         to MonoObject*.
7519
7520 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7521
7522         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7523         the a thread does not suspend within 100ms.
7524
7525         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7526         in addition to StopRequested as well.
7527
7528         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7529
7530         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7531         search the method_hash before inserting a new entry, to avoid crashes when
7532         the same method is inserted multiple times, causing the old 
7533         MonoDebugMethodInfo structure to be freed by the value dtor function.
7534
7535 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7536
7537         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7538         SO_EXLUSIVEADDRUSE where available.
7539
7540 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7541
7542         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7543         runtime invoke wrappers, this time it is string ctor wrappers, which
7544         pass a dummy string as 'this' instead of their obj argument. Fixes
7545         #478473.
7546
7547 2009-02-21  Jb Evain  <jbevain@novell.com>
7548
7549         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7550         only get create_culture once.
7551
7552 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7553
7554         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7555         check before the locking.
7556         
7557         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7558         (mono_reflection_create_runtime_class): Ditto.
7559         (mono_reflection_sighelper_get_signature_local): Ditto.
7560         (mono_reflection_sighelper_get_signature_field): Ditto.
7561
7562         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7563         is a System.MonoType object or similar.
7564         (monotype_cast): New helper function to cast a MonoObject to a 
7565         MonoReflectionType object.
7566
7567         * object-internals.h: Change MonoReflectionType* members in structures to
7568         MonoObject* members to force the usage of the monotype_cast () function.
7569
7570         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7571         structures/arrays. This causes us to assert instead of crashing when 
7572         instances of user defined subclasses of System.Type are encountered.
7573
7574 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7575
7576         * cil-coff.h:
7577         * icall-def.h:
7578         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7579         win32 resource loaded from a PE file.
7580
7581         * image.c: fix mono_image_lookup_resource.
7582
7583 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7584
7585         * icall-def.h:
7586         * threads-types.h:
7587         * threads.c: added internal call for WaitHandle.SignalAndWait.
7588
7589 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7590
7591         * cominterop.c : Adding cominterop_type_from_handle and 
7592           registering it as an icall.  Replacing all references
7593           to type_from_handle.
7594
7595         Code is contributed under MIT/X11 license.
7596
7597 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7598
7599         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7600
7601         * appdomain.c: Call the tracer init function.
7602
7603         * domain-internals.h: Enable the tracer for the domain locks.
7604
7605         * image.c: Enable the tracer for image locks.
7606
7607         * loader.c: Enable the trace for the loader lock.
7608
7609         * lock-tracer.h:
7610         * lock-tracer.c: Initial implementation of the lock trace utility.
7611         The tracer requires a compile time define to be enabled and a env var
7612         to be enabled at runtime.
7613
7614 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7615
7616         * domain.c (mono_domain_code_foreach): Improve documentation.
7617
7618 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7619
7620         * appdomain.c:
7621         * generic-sharing.c:
7622         * object.c:
7623         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7624         comes first.
7625
7626 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7627
7628         * domain.c: Add mono_domain_code_* functions that perform locking
7629         around the domain codeman.
7630
7631         * domain-internals.h: Export those functions.
7632
7633         * object.c: Use new functions instead of acquiring the domain lock.
7634
7635 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7636
7637         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7638         delegate. Fixes #477396.
7639
7640 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7641
7642         * reflection.c (create_custom_attr): Get rid of alloca.
7643
7644 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7645
7646         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7647           Adding exception handling for all CCW calls.
7648
7649         Code is contributed under MIT/X11 license.
7650
7651 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7652
7653         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7654
7655         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7656         native->managed marshalling code. Fixes #476247.
7657
7658 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7659
7660         * class.c (mono_class_get_vtable_entry): Move the addition of
7661         static rgctx invoke wrappers for vtable methods here, this simplifies
7662         a lot of code and causes fewer rgctx wrappers to be created.
7663
7664         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7665         name of the statistics to begin with an uppercase.
7666
7667 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7668
7669         * reflection.c: Revert previous change as it breaks the build.
7670         
7671 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7672
7673         * verify.c: Properly handle SZARRAY element type.
7674
7675         Fixes #474271.
7676
7677 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7678
7679         * reflection.c (mono_image_create_method_token): Correctly encode
7680         MethodDef MemberRefParent token.
7681
7682         Fixes #472845.
7683
7684 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7685
7686         * image.c (mono_image_close): Delete the critical section before
7687         freeing the memory holding it.
7688
7689 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7690
7691         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7692         Fixes #476257.
7693
7694 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7695
7696         * pedump.c (main): Call mono_marshal_init so pedump
7697         doesn't crash.
7698
7699 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7700
7701         * loader.c (method_from_memberref): Properly fix #474271 and
7702         don't break the runtime bad.
7703
7704 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7705
7706         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7707         (mono_domain_alloc0): Ditto.
7708
7709 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7710
7711         * loader.c (method_from_memberref): Don't abort if the array
7712         method is not found. A regular loader failure is more informative
7713         and correct.
7714
7715         Fixes #474271.
7716
7717 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7718
7719         *loader.c: Guard MonoImage::method_cache/methodref_cache
7720         using the image lock instead of the loader lock.
7721
7722         * metadata.h: Add comments about which fields are protected by
7723         the image lock.
7724
7725 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7726
7727         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7728
7729         * generic-sharing.c (mono_method_construct_object_context): Remove the
7730         wrapper_type == NONE assert, it is not needed.
7731
7732 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7733
7734         * reflection.c (clear_cached_object): New helper function.
7735         (mono_method_clear_object): New function to clear the cached reflection
7736         objects for a dynamic method.
7737
7738         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7739         Partly fixes # 463323.
7740         
7741 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7742
7743         * class.c:
7744         * loader.c:
7745         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7746
7747 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7748
7749         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7750         take the image lock instead of the loader lock.
7751
7752         * metadata-internals.h: Export new functions.
7753
7754 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7755
7756         * domain.c (app_config_parse): Remove another use of stat that is
7757         not necessary as g_file_get_contents already does the presence
7758         check. 
7759
7760 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7761
7762         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7763
7764         * marshal.c: Move the bstr handling code to cominterop.c.
7765
7766         * marshal.c: Remove some COM interop code missed previously.
7767
7768 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7769
7770         More Paolo patches from the Wii port:
7771         
7772         * security.c: Remove ves_icall_System_Environment_get_UserName
7773         from here.
7774
7775         * icall.c: And put ves_icall_System_Environment_get_UserName
7776         here. 
7777
7778         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7779         redundant call to stat that was only used to test for the file
7780         existence.   Patch from Paolo.
7781
7782         * gc.c (run_finalize): If COM is disabled, do not link in
7783         mono_marshal_free_ccw.
7784
7785         * generic-sharing.c: Use alloca.h here as well.
7786
7787 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7788
7789         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7790
7791 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7792
7793         * cominterop.c cominterop.h: New files.
7794
7795         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7796         function/typedefs which are needed by cominterop.c global.
7797
7798 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7799
7800         * generic-sharing.c: Don't take the loader lock to guard image
7801         mempool allocs.
7802
7803 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7804
7805         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7806         called without the loader lock which is required to guard MonoImage:tokens.
7807
7808 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7809
7810         * class.c:
7811         * metadata.c:
7812         * method-builder.c:
7813         * marshal.c:
7814         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7815
7816 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7817
7818         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7819         Rework the code to use regular mono_image_alloc/0.
7820
7821         * loader.c: Rework the code to use regular mono_image_alloc/0.
7822
7823         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7824
7825 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7826
7827         * object-internals.h : Fixing a typo in the 
7828           MonoReflectionComVisibleAttribute struct.
7829
7830         * marshal.c (cominterop_com_visible): Check the implemented 
7831           interfaces for ComImport.
7832
7833         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7834           assume that bools should be treated as VARIANTBOOLs.
7835
7836         * marshal.c (emit_marshal_boolean): Adding cases for 
7837           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7838
7839         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7840           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7841
7842         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7843           should be treated as VARIANTBOOLs.    
7844
7845         Code is contributed under MIT/X11 license.
7846
7847 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7848
7849         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7850         allocation with the image lock.
7851
7852 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7853
7854         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7855         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7856
7857         * object.c: Add mono_string_to_utf8_image.
7858
7859         * object-internals.h: Export mono_string_to_utf8_image.
7860
7861         * reflection.c: Rework all explicit references to the the image mempool to go thought
7862         the mono_image_alloc set of functions.
7863
7864 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7865
7866         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7867         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7868         and generics-sharing.c.
7869
7870         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7871         as first argument. Note that this function remains broken as it doesn't perform locking around the
7872         mempool allocation.
7873
7874         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7875
7876         * image.c: Add g_slist_append_image.
7877
7878         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7879         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7880
7881         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7882         Fix all related code to do the same.
7883
7884         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7885
7886         * metadata-internals.h: Fix the signatures.
7887
7888 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7889
7890         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7891         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7892         and similar to work using MonoImage.
7893
7894         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7895         MonoMemPool.
7896
7897         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7898
7899         * class.c (mono_metadata_signature_deep_dup): Same.
7900
7901         * class.c (inflate_generic_type): Same.
7902
7903         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7904
7905         * metadata.c (mono_metadata_signature_dup_full): Same.
7906
7907         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7908         mono_metadata_signature_dup_full.
7909
7910         * metadata.c (mono_metadata_type_dup): Same.
7911
7912         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7913
7914         * reflection.c: Same.
7915
7916         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7917
7918         * metadata-internals.h: Fix the signatures.
7919
7920         * class-internals.h: Same.
7921
7922 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7923
7924         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7925         and use mono_image_alloc set of functions instead. 
7926
7927         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7928         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7929         of a MonoMemPool.
7930
7931         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7932
7933         * class.c (g_list_prepend_mempool): Removed.
7934
7935         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7936
7937         * image.c: Add g_list_prepend_image.
7938
7939         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7940
7941         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7942
7943
7944 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7945
7946         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7947         mono_image_unlock.
7948
7949         * image.c (mono_image_init): Init the lock field.
7950  
7951         * image.c (mono_image_init): Cleanup the lock field.
7952
7953         * image.c: Add mono_image_(un)lock functions.
7954
7955 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7956
7957         * class.c, class-internals.h: mono_method_get_context_general()
7958         combines the functionality of mono_method_get_context() and
7959         mini_method_get_context().
7960
7961         * generic-sharing.c, domain-internals.h:
7962         mono_method_construct_object_context() and
7963         mono_domain_lookup_shared_generic() moved from mini.
7964
7965         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7966         method doesn't have the correct instantiation because it's shared
7967         generic code.  Fixes #473999.
7968
7969 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7970
7971         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7972
7973         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7974         
7975 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7976
7977         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7978
7979         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7980
7981         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7982         and recheck the cache for dups after it.
7983
7984         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7985
7986         Fixes one of the deadlocks found in #473150.
7987
7988 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7989
7990         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7991           For Win32, add additional break conditions for accept.
7992
7993         Code is contributed under MIT/X11 license.
7994
7995 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7996
7997         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7998         lazily initialize the native wrapper cache.
7999         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
8000         cache, since they are different from the normal wrappers.
8001
8002         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
8003
8004         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
8005         AOT compiled native wrappers.
8006
8007 2009-02-09  Geoff Norton  <gnorton@novell.com>
8008
8009         * appdomain.h:
8010         * security-core-clr.c: Allow enabling core-clr from the embedding
8011         API.
8012
8013 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8014
8015         * socket-io.c: when requesting all the local ips, if there are no
8016         interfaces up and running, MS returns 127.0.0.1.
8017
8018 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8019
8020         * mono-perfcounters-def.h: processor time is an inverse time.
8021         Fixes bug #468625.
8022
8023 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8024
8025         * socket-io.c: an empty host name returns the list of local IPs.
8026         Fixes bug #386637 part 1/2.
8027
8028 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
8029
8030         * verify.c (mono_class_interface_implements_interface): Call
8031         mono_class_setup_interfaces ().
8032         (merge_stacks): Ditto.
8033
8034 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8035
8036         * class.c (mono_class_setup_interfaces): New function to lazily initalize
8037         klass->interfaces.
8038         (mono_generic_class_get_class): Don't initalize klass->interfaces.
8039         (mono_generic_class_get_class): Ditto.
8040
8041 2009-02-06  U-QUACK\miguel  <miguel@quack>
8042
8043         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
8044         they live in security.c
8045
8046         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
8047         another bit from Paolo's code.
8048
8049 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
8050
8051         * object.c (build_imt_slots): Add a small optimization to avoid inflating
8052         methods which will be discarded by add_imt_builder_entry ().
8053
8054         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
8055         need to be boxed.
8056
8057         * loader.c: Add a statistics for the size of the memberref signature cache.
8058         
8059         * loader.c (find_cached_memberref_sig): New helper function.
8060         (cache_memberref_sig): Ditto.
8061
8062         * loader.c: Cache the result of parsing memberref signatures, since otherwise
8063         they will be parsed again for every generic instantiation, leading to unbounded
8064         memory growth.
8065
8066 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8067
8068         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8069         parameters of generic methods.
8070
8071         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8072         after the original method is copied to the inflated method.
8073         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8074
8075         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8076         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8077
8078         * class.c metadata.c: Update after the changes above.
8079
8080 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8081
8082         * metadata-verify.c: Simplified error handling and added
8083         section table validation.
8084
8085 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8086
8087         * class-internals.h (MonoClassExt): New structure containing rarely used
8088         fields of MonoClass.
8089         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8090         through a new 'ext' field.
8091
8092         * class.c (mono_class_alloc_ext): New helper function to allocate 
8093         class->ext.
8094
8095         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8096
8097 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8098
8099         * object.c (mono_object_get_virtual_method): Properly inflate
8100         generic methods.  Fixes #472692.
8101
8102 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8103
8104         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8105         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8106         for the parent type, the created type must be ready to be used on a generic
8107         instantiation.
8108         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8109         we won't have duplicated entries in generic_inst_cache.
8110
8111         Fixes #469553.
8112
8113 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8114
8115         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8116         replace with plain BSD per the comments on the bug MONO77637.
8117
8118 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8119
8120         * class.c (mono_class_get_generic_class): New accessor function.
8121         (mono_class_get_generic_container): Ditto.
8122
8123         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8124         fields, similar to the ones in MonoMethod.
8125
8126         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8127         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8128
8129         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8130         
8131         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8132         the same information as element_class->byval_arg.
8133
8134         * class.c reflection.c: Remove references to class->byval_arg.
8135
8136         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8137         klass->enum_basetype directly.
8138
8139         * verify.c metadata.c object.c icall.c reflection.c: Use 
8140         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8141         directly.
8142
8143 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8144
8145         * icall-def.h: Remove internal calls for sockets when
8146         DISABLE_SOCKET is defined, file system writing features when the
8147         OS only support reading and not writing data and Policy support if
8148         the Policy is disabled.
8149         
8150         * image.c (do_mono_image_open): Apply Paolo's patches for using
8151         mono_file_map_ APIs here.
8152
8153         * assembly.c: Add support for platforms to avoid prefix
8154         auto-detection. 
8155
8156 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8157
8158         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8159         warning.
8160
8161         * class.c (mono_class_inflate_generic_class): New helper function.
8162
8163         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8164         statistics for inflated methods/classes.
8165
8166         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8167
8168         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8169         the call is made from Delegate.CreateDelegate () for the invoke method of
8170         a delegate.
8171
8172         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8173
8174         * metadata.c (mono_metadata_signature_size): New helper function.
8175
8176         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8177         generic instances.
8178
8179         * metadata.c (inflated_method_in_image): Avoid calling 
8180         mono_method_signature () if the method does not already have a signature.
8181
8182 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8183
8184         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8185         valuetype is compatible with target type, check by inheritance as a
8186         VT is not really compatible with System.ValueType, for example.
8187
8188         * verify.c (do_invoke_method): Improve error message.
8189
8190         * verify.c (do_box_value): If boxing a nullable, use the type argument
8191         on stack instead.
8192
8193         * verify.c (do_newobj): Improve error message.  
8194
8195         Fixes #469549.
8196
8197 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8198
8199         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8200
8201 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8202
8203         * generic-sharing.c: Don't hold domain lock when calling
8204         instantiate_other_info().  Fixes #471958.
8205
8206         * domain-internals.h, loader.c: Describe locking policy of domain
8207         lock vs loader lock.
8208
8209 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8210
8211         * verify.c (mono_delegate_signature_equal): Make it possible to check
8212         first-arg-bound delegates to static method.
8213
8214         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8215         static methods with the first arg bound.
8216
8217         Fixes #469529.
8218
8219 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8220
8221         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8222         errors.
8223
8224         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8225         under strict mode. Any type, when boxed can be seen as a reference type.
8226
8227         Fixes #469528.
8228
8229 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8230
8231         * object.h: The lower bound of an array is a signed integer value.
8232         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8233         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8234
8235         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8236         calculate the upper bound.
8237         
8238         Fixes #471252.
8239
8240 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8241
8242         From Paolo's work, refactored, cleared up:
8243         
8244         * threadpool.c, icall.c: ifdef code that requires a working socket
8245         stack.
8246
8247         * metadata.c (mono_metadata_field_info): Do not attempt to return
8248         a value from a function declared as void.
8249
8250         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8251         from the console stack.
8252
8253         * assembly.c: use strrchr instead of rindex.
8254
8255         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8256         alloca.h on systems that have it.
8257
8258         * environment.c: Avoid code that uses stuff from
8259         HAVE_SYS_UTSNAME_H
8260         
8261         * appdomain.c: Include sys/time.h.
8262
8263         * console-io.c: include sys/ioctl.h if it is available.
8264
8265 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8266
8267         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8268
8269         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8270         the method builder.
8271
8272         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8273         after it was created and cached, as the later is not thread safe.
8274         
8275 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8276
8277         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8278         called while the debugging module is not initialized. Fixes #471669.
8279
8280 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8281
8282         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8283
8284         Fixes #471255.
8285
8286 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8287
8288         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8289         loader lock is not taken while the templates lock is held.  Fixes
8290         #471089.
8291
8292 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8293
8294         * metadata.c (type_in_image): Added a check to fix a monodis
8295         crash.
8296
8297 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8298
8299         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8300         nullable arguments.
8301
8302         * object.c (mono_runtime_invoke_array): Ditto.
8303         
8304         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8305         freeing wrappers of dynamic methods.
8306
8307         * loader.c (mono_free_method): Call it. Fixes #463323.
8308         
8309         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8310         methods taking vtype/byref arguments, to fix yet another bug caused by
8311         the sharing of runtime invoke wrappers. Partly fixes #471259.
8312
8313 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8314
8315         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8316         <first file in file table>:1 when the IL offset does not have an associated
8317         line number.
8318
8319 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8320
8321         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8322         variable info for a method.
8323
8324         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8325         
8326 2009-01-30  Jb Evain  <jbevain@novell.com>
8327
8328         * pedump.c: reuse code from monodis to make sure pedump honors
8329         MONO_PATH, which is needed to verify net_2_1 assemblies.
8330
8331 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8332
8333         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8334         there is no line number info.
8335
8336 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8337
8338         Avoid some MonoType allocations
8339         * reflection.c (mono_reflection_initialize_generic_parameter):
8340         Reuse MonoType from param->pklass rather than allocating one.
8341         (mono_dynamic_image_free): Update to changes.
8342
8343 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8344
8345         Rearrange some code to improve consistency
8346         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8347         (mono_reflection_initialize_generic_parameter): ... here.
8348
8349 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8350
8351         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8352         with type constraints as an experiment.
8353
8354         * boehm-gc.c (on_gc_notification): Update mono_stats.
8355
8356 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8357
8358         Avoid some allocations
8359         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8360         pointer to tail array to avoid extra allocation.
8361         * metadata.c (free_generic_inst): Update to changes.
8362         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8363         on-stack struct.
8364
8365 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8366
8367         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8368         return TRUE if the two type objects are the same.
8369
8370 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8371
8372         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8373         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8374         klass->min_align, since klass->min_align contains the managed alignment,
8375         while the native alignment can be different, like for longs on x86.
8376         Fixes #469135.
8377
8378         * class-internals.h (MonoMarshalType): Add a min_align field.
8379
8380 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8381
8382         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8383         the 1.0 format.
8384
8385 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8386
8387         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8388         some comments about the usage of the used_regs field.
8389
8390         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8391         Fixes #469217.
8392
8393 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8394
8395         * appdomain.c: return NULL instead of throwing FileNotFoundException
8396         when LoadAssembly() fails.
8397
8398 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8399
8400         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8401         image if the owner is NULL.  Fixes the AOT failures.
8402
8403 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8404
8405         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8406         MonoGenericParam structure using memset so the image field is initialized
8407         as well.
8408
8409 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8410
8411         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8412         a plain store.
8413
8414 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8415
8416         * class.c (mono_class_setup_vtable_general): In the generic instance
8417         optimization, set method->slot for abstract virtual methods. Fixes part of
8418         #467834.
8419
8420 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8421
8422         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8423         which signals that the unloading has started but all appdomain services must
8424         remain operational.
8425
8426         * appdomain.c (mono_domain_unload): The initial state for unloading now
8427         is unloading_start and we switch to unloading after the managed call to
8428         AppDomain::DomainUnload has finished.
8429
8430         The new unloading state has to be created because managed code in the
8431         DomainUnload event can depend on things like the threadpool still working.
8432         The domain must remain fully functional while the event executes.
8433
8434         This shown as an issue due to Process::WaitForExit, which waits for
8435         async reads of stdout and stderr to complete. Since those are processed
8436         in the threadpool the code deadlocks because the DomainUnload callback 
8437         waits for the async read finished event, which should have been set by a
8438         threadpool job but has been discarded due to the domain been in unload
8439         state.
8440
8441 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8442
8443         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8444         image must match.
8445
8446 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8447
8448         * reflection.c (resolve_object): For fields, inflate the class and
8449         then get the field in the inflated class.
8450
8451 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8452
8453         * object-internals.h (struct _MonoException): Added a comment
8454         explaining the new use of trace_ips.
8455
8456 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8457
8458         * generic-sharing.c (inflate_other_data): Inflate array methods
8459         correctly.
8460
8461         * loader.c, class-internals.h: Rename search_in_array_class() to
8462         mono_method_search_in_array_class() and make it non-static.
8463
8464 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8465
8466         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8467         Hopefully fixes #458168.
8468
8469 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8470
8471         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8472         as it is performed elsewhere.
8473
8474         Code is contributed under MIT/X11 license
8475
8476 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8477
8478         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8479         requests queued.
8480         * object.c (mono_raise_exception): Increment the exceptions total
8481         counter when an exception is thrown.
8482         * class-internals.h: Add a location for storing the total number of
8483         asp.net requests served.
8484         * mono-perfcounters.c: Implement update support for asp.net counters
8485         from the class libraries. Implement read support for asp.net counters
8486         and exceptions total counter.
8487
8488 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8489
8490         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8491         accessing klass->methods. Fixes #467385.
8492
8493 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8494
8495         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8496         for byval arguments without an [Out] attribute. Fixes #467212.
8497
8498         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8499         Fix compilation under android.
8500         
8501         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8502         processed, scan them directly after they are copied, to achieve better locality
8503         and cache usage.
8504
8505         * socket-io.c: Applied patch from Koushik Dutta
8506         (koush@koushikdutta.com). Disable IPV6 when running under android.
8507
8508 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8509
8510         * icall.c (ves_icall_InternalExecute): Add write barriers.
8511
8512         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8513         the GC code.
8514
8515         * sgen-gc.c: Implement write barriers in IL code.
8516
8517 2009-01-17  Geoff Norton  <gnorton@novell.com>
8518
8519         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8520
8521 2009-01-17  Geoff Norton  <gnorton@novell.com>
8522
8523         * image.c: When unloading the image->references table, there can be gaps
8524         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8525         when unloading an appdomain.
8526
8527 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8528
8529         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8530         speed up ptr-in-nursery checks.
8531
8532         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8533         threads_lock () to prevent deadlocks.
8534
8535         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8536         does not need to be scanned during minor collections, since writes to it
8537         must use write barriers.
8538
8539 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8540
8541         * metadata-verify.c: Add pe nt header verification.
8542         
8543 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8544
8545         * gc.c: Fix a few warnings when using SGEN.
8546
8547 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8548
8549         * metadata-verify.c: Add pe optional header verification.
8550
8551 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8552
8553         * sgen-gc.c: Add support for user defined marker functions, used by
8554         MonoGHashTable to avoid registering a GC root for every hash node.
8555
8556 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8557
8558         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8559         non-pinned roots into separate hashes to avoid having to traverse them
8560         in functions which are only interested in one kind.
8561
8562 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8563
8564         * metadata-verify.c: Add pe header machine field verification.
8565         
8566 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8567
8568         * metadata-verify.c: Add pe header size verification.
8569
8570 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8571
8572         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8573         using the GC, they don't contain references.
8574
8575         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8576
8577 2009-01-13  Geoff Norton  <gnorton@novell.com>
8578
8579         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8580         AppDomains created on the native side can be cleaned up on the native side.
8581
8582 2009-01-13  Geoff Norton  <gnorton@novell.com>
8583
8584         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8585         as well as the managed api.
8586
8587 2009-01-13  Geoff Norton  <gnorton@novell.com>
8588
8589         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8590         with a MonoAppDomain initialized against it.
8591
8592 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8593
8594         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8595         
8596         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8597
8598         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8599         into the wrapper caches. Fixes #465700.
8600
8601         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8602         method builder.
8603         (mono_mb_create_method): Set the clauses from the method builder.
8604
8605 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8606
8607         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8608         Patch from Makoto Kishimoto.
8609
8610 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8611
8612         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8613         encoding them as ROOT_DESC_COMPLEX.
8614         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8615
8616 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8617
8618         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8619         no longer point to the nursery.
8620
8621         * sgen-gc.c: Add a few comments/FIXMEs.
8622         
8623         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8624
8625         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8626         initialization of the various _method variables thread safe. Fixes
8627         #465377.
8628
8629 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8630
8631         * domain.c, domain-internals.h: Remove the shared_generics_hash
8632         and its lookup functions.
8633
8634 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8635
8636         * socket-io.c:  Fixing the MSVC build. 
8637
8638         Code is contributed under MIT/X11 license.
8639
8640 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8641
8642         * metadata-verify.c: Add pe header watermark verification.
8643
8644 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8645
8646         * metadata-verify.c: Add lfanew verification.
8647
8648 2009-01-12  Jb Evain  <jbevain@novell.com>
8649
8650         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8651         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8652
8653 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8654
8655         * socket-io.c: Fix the build.
8656
8657         * environment.c: Fix an #ifdef.
8658
8659 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8660
8661         * threadpool.c (async_invoke_thread): Handle the wait function returning
8662         WAIT_IO_COMPLETION as well.
8663         (async_invoke_io_thread): Ditto.
8664
8665 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8666
8667         * threads.c: Fixing the Windows build.
8668
8669         Code is contributed under MIT/X11 license.
8670
8671 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8672  
8673         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8674         interrupt a wait.
8675         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8676         the thread to wait again.
8677
8678 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8679
8680         * metadata-verify.c: Initial skeleton of the metadata verifier.
8681
8682         * pedump.c: Add support for the metadata verifier.
8683
8684         * verify-internal.h: Export the whole assembly metadata verifier function.
8685
8686 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8687
8688         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8689
8690 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8691
8692         * Makefile.am: Upgrade dtrace-prelink.sh location.
8693
8694 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8695
8696         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8697         well. Otherwise the shutdown deadlock that happens on unix will can happen
8698         as well.
8699         If the main thread code finishes too fast it's possible that the finalizer
8700         thread won't have executed yet, won't record itself as the finalizer thread
8701         and the shutdown sequence will wait on it forever.
8702
8703 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8704
8705         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8706         with MSVC.
8707
8708 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8709
8710         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8711         Robert Jordan for pointing this out.
8712
8713 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8714
8715         * icall.c
8716         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8717         ves_icall_System_IO_DriveInfo_GetDriveType.
8718
8719 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8720
8721         * icall.c: Wrap calls to mono_strtod in CriticalSection
8722         invocations when using eglib, to work around #464316.
8723
8724 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8725
8726         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8727         return value of GetCurrentDirectory to never access unitialized memory.
8728
8729 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8730
8731         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8732         return value of GetCurrentDirectory and expand the buffer if needed.
8733
8734         Fixes #459094.
8735
8736 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8737
8738         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8739           Adding a call to mono_init_com_types.
8740
8741         Code is contributed under MIT/X11 license.
8742
8743 2009-01-07  Geoff Norton  <gnorton@novell.com>
8744
8745         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8746         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8747         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8748         be the value of the ip buffer.
8749
8750 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8751
8752         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8753         interfaces_packed here.
8754
8755         Fixes part of #463294.
8756
8757 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8758
8759         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8760
8761         Fixes part of #463294.
8762
8763 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8764
8765         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8766         is a boxed complex as well.
8767
8768         Fixes part of #463294.
8769
8770 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8771
8772         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8773         control if a methodspec should be created for the generic method definition from external assemblies.
8774         Caching of methodspec is done using the handleref hash table.
8775
8776         Fixes #462592.
8777
8778 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8779
8780         * loader.c (find_method): When searching the interfaces of a class
8781         check the transitive closure of implemented interfaces.
8782
8783         Fixes #463303.
8784
8785 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8786
8787         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8788         
8789 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8790
8791         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8792         interfaces calculation to fill_valuetype_array_derived_types.
8793
8794         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8795         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8796         for example.
8797
8798         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8799         interfaces for valuetypes if needed.    
8800
8801         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8802         for their basetype as well. Types are array expanded if rank is > 0.
8803
8804         Fixes #400716.
8805
8806 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8807
8808         * socket-io.h : Changing the signature of
8809           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8810           the blocking state.
8811
8812         * icall-def.h :  Changing the signature of
8813           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8814
8815         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8816           For Windows only.  Avoid blocking when calling accept by
8817           querying for a connection via select.  The loop also queries
8818           the thread state every 1000 micro seconds for the thread
8819           stop state.  This will avoid the process hanging on shutdown
8820           when using a TcpChannel that is never connected to.
8821
8822         Code is contributed under MIT/X11 license.
8823
8824 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8825
8826         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8827
8828 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8829
8830         * class.c (get_implicit_generic_array_interfaces): Extract common
8831         code to a helper function making it a lot easier on the eyes.
8832
8833 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8834
8835         * class.c (get_implicit_generic_array_interfaces): If the internal
8836         enumerator is an interface inflate System.Object instead of itself.
8837
8838         Fixes #461261.
8839
8840 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8841
8842         * object.c (mono_runtime_invoke_array): Don't assert with
8843         byref nullable types.
8844
8845         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8846         byref nullables we unbox the object and store it on the
8847         stack. 
8848         We can't use the boxed object since it is the T of Nullable<T>
8849         and the boxed representation of a nullable it's underlying type
8850         or null.
8851         We could cheat and create a boxed nullable and use the same
8852         machinery of other byref VTs but this feels like a hack and
8853         using the stack has the bonus of reducing heap pressure.
8854
8855         Fixes #461941.
8856
8857 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8858
8859         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8860         return value.
8861
8862         Fixes #461867.
8863
8864 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8865
8866         * icall-def.h : Adding an internal call definition for 
8867           System.Environment.internalBroadcastSettingChange.
8868
8869         * icall.c : Adding a Windows only implementation to broadcast a 
8870           WM_SETTINGCHANGE when an environment variable has changed.
8871
8872         Code is contributed under MIT/X11 license.
8873
8874 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8875
8876         * class.c, class-internals.h: Made
8877         mono_class_has_parent_and_ignore_generics() non-static.
8878
8879 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8880
8881         * image.c: deal with the mmap failing when loading an image.
8882
8883 2008-12-17  Geoff Norton  <gnorton@novell.com>
8884
8885         * threadpool.c: Ensure that the io_queue_lock is initialized
8886         in all circumstances, as we always attempt to cleanup against it.
8887
8888 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8889
8890         * icall.c (ves_icall_System_Environment_get_Platform): For
8891         compatibility reasons for existing client code we will keep
8892         returning 4 for a while.   
8893
8894         For how long will depend on the documentation being updated, and
8895         for us to give client code a chance to be updated.
8896
8897         This reverts the original decison on #433108 since we did not
8898         catch roughly 33 instances of the broken code in our own source
8899         code base, we did not catch failures on the buildbots, and QA did
8900         not bring this as a problem.
8901
8902         Only today I found some customer's code breaking due to our own
8903         class libraries not being fully updated and tracked it down to
8904         this change.  I am reverting it because if we could not even get
8905         our story straight in our own code base, how can we hope that our
8906         end user code be fixed?
8907
8908         As of this morning, our Wiki page that documents how to detect
8909         Unix had not been fixed.    
8910
8911 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8912
8913         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8914
8915         * class.c (mono_class_get_fields): Handle loading errors.
8916
8917 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8918
8919         * 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.
8920         
8921 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8922
8923         * mono-perfcounters.c: avoid warning.
8924
8925 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8926
8927         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8928         make sure all interfaces have MonoClass::interface_id set.
8929
8930         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8931         method table is property set.
8932
8933 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8934
8935         * class.c: New function mono_class_setup_interface_id that setup
8936         MonoClass::interface_id if needed.
8937
8938         * class-internals.h: Export new function.
8939
8940 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8941
8942         * class.c: Add code to sanity check the vtable after setup_vtable_general
8943         has done it's work.
8944
8945 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8946
8947         * icall.c: make Assembly.GetExecutingAssembly work properly when
8948         reflection is used to invoke the method.
8949         Bug #321781 fixed.
8950
8951 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8952
8953         * metadata/generic-sharing.c: Look for constraints in all type
8954         arguments, not just the first one.
8955
8956 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8957
8958         * appdomain.c: return the correct CodeBase for an Assembly instance
8959         that was loaded from the shadow-copy directories.
8960         Bug #458190 fixed.
8961
8962 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8963
8964         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8965
8966         * sgen-gc.c (check_object): New debugging helper function.
8967
8968         * object.c: Fix calls to mono_value_copy_array ().
8969
8970 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8971
8972         * class.c (mono_class_setup_fields): If working on an inflated class
8973         first check if the generic definition did init with success.
8974
8975         Fixes #445361.
8976
8977 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8978
8979         pedump.c (main): Fix a warning.
8980
8981 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8982
8983         * object-internals.h : Adding a definition for 
8984           MonoReflectionComVisibleAttribute.
8985
8986         * marshal.c (cominterop_com_visible) :  Method added to check the 
8987           ComVisible attribute of a class.
8988
8989         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8990           cominterop_raise_hr_exception added to consolidate common code 
8991           to raise hr exceptions.
8992
8993         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8994           if a managed class should support IDispatch.
8995
8996         * marshal.c 
8997           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8998           Added additional checks for managed object when getting 
8999           an IDispatch interface.
9000
9001         Code is contributed under MIT/X11 license.
9002
9003 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
9004
9005         pedump.c (main): Handle mono_get_method () returning NULL. 
9006
9007 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9008
9009         * marshal.h: Fix a warning.
9010
9011 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
9012
9013         * marshal.c : Adding cominterop_release_all_rcws to release all
9014           runtime callable wrappers held by the runtime.
9015
9016         * marshal.h : Adding declaration for cominterop_release_all_rcws.
9017           
9018         Code is contributed under MIT/X11 license.
9019
9020 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
9021
9022         * metadata.c (mono_image_alloc_lock): New helper function.
9023         (mono_image_alloc0_lock): Ditto.
9024
9025         * metadata.c: Use the alloc_lock () helper functions for allocating
9026         memory from the image mempool.
9027
9028 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
9029
9030         * class.c (mono_class_from_generic_parameter): Document it's
9031         locking behavior. Fix double checked locking here, we stored in
9032         param->pklass a partially initialized MonoClass and no membar was used.
9033
9034 2008-12-05  Marek Habersack  <mhabersack@novell.com>
9035
9036         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
9037         (3) functions are present in the C library use them to do the
9038         job. If they are absent, make sure that the sum of int_part and
9039         dec_part is rounded before returning. This is necessary due to the
9040         division of dec_part by the power of 10 before the final addition
9041         is performed - if the result is not rounded in some cases it will
9042         yield invalid results.
9043
9044 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
9045
9046         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
9047         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
9048         instruction instead of a pointer constant.
9049
9050 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
9051
9052         * loader.c (mono_method_get_header): Do most of the work outside the
9053         loader lock, to avoid assembly load hook deadlocks.
9054
9055         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
9056         (mono_metadata_parse_type_full): Ditto.
9057
9058 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
9059
9060         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
9061         Make the stack depth fixed. Ensure proper argument passing to the backtrace
9062         funtions. Finally, use a lock to produce well ordered output.
9063
9064         The lock looks silly, as all calls to the corlib mempool should be guarded
9065         with the loader lock, but for some reason this fact doesn't help. 
9066
9067         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9068
9069 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9070
9071         * socket-io.c: 64 bit big-endian fixes.
9072
9073 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9074
9075         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9076         targets that require strict compatibility between the types.
9077
9078         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9079         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9080         Kill the strict argument and create a new one valuetype_must_be_boxed.
9081
9082         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9083         state that all valuetypes must be boxed.
9084
9085         Fixes #448560.
9086
9087 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9088
9089         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9090         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9091
9092         Contributed under MIT/X11 license.
9093
9094 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9095
9096         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9097         the inflate_generic_type machinery should handle it.
9098
9099         This avoids a crash when the field's flags is zero and it's type is
9100         a primitive.
9101         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9102         is zero and will return one of the cached built-in primitive types. Since
9103         those types live in read-only memory, the code that copies it crashes.  
9104
9105 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9106
9107         * object.c: Don't put function descriptors into generalized IMT
9108         thunks.
9109
9110 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9111
9112         * class.c: Enable generic code sharing on PPC64.
9113
9114 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9115
9116         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9117         from mini/mini.c.
9118
9119         * generic-sharing.c: Allocate the method template slists from the
9120         image mempool so it doesn't leak.
9121
9122 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9123
9124         * class.c (generic_array_methods): Release the linked list.
9125
9126 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9127
9128         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9129         invocation to g_utf16_to_utf8().
9130
9131 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9132
9133         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9134         arguments on big endian archs.
9135
9136 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9137
9138         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9139         the type name (test added in corlib).
9140
9141 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9142
9143         * pedump.c: initialize perf. counters. Fixes a segv.
9144
9145 2008-11-25  Martin Baulig  <martin@ximian.com>
9146
9147         * mono-debug-debugger.c
9148         (mono_debugger_runtime_invoke): Return the exception object if an
9149         exception was thrown.  Visual Studio displays the exception object
9150         in the locals window.
9151
9152 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9153
9154         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9155         ftnptr.
9156
9157 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9158
9159         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9160         MONO_TYPE_U are sizeof (gpointer), too.
9161
9162 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9163
9164         * marshal.c (mono_type_native_stack_size): Fixed size and
9165         alignment for reference types.
9166
9167 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9168
9169         * class.c (mono_class_generic_sharing_enabled): Disable generic
9170         code sharing for PPC64.
9171
9172 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9173
9174         * icall.c (mono_method_get_equivalent_method): Make sure
9175         method->klass->methods is inited before looping over it.
9176
9177 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9178
9179         * object.c: when calling ExecuteAssembly in a newly created domain,
9180         the configuration file and application base are already set up.
9181         Bug #446353 take 2 fixed.
9182
9183 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9184
9185         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9186         Fixes #444715. Fix a warning.
9187
9188 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9189
9190         * appdomain.c: write the full path of the assembly to the .ini file
9191         created when "shadow-copying"
9192         Bug #446353 fixed.
9193
9194 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9195
9196         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9197         if signature==FALSE.
9198
9199 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9200
9201         * marshal.h : Fix the cygwin build.
9202            marshal.c:12442: undefined reference to `_IID_IMarshal'
9203           
9204         Code is contributed under MIT/X11 license.
9205
9206 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9207
9208         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9209           free threaded marshaler when QueryInterface is called on a COM callable
9210           wrapper requesting the IMarshal interface.
9211           
9212         Code is contributed under MIT/X11 license.
9213
9214 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9215
9216         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9217
9218         * reflection.c (mono_type_get_object): Special case the very common
9219         void type.
9220
9221         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9222         hold typeof(void).
9223
9224 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9225
9226         * process.h : Adding method declaration for
9227           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9228           
9229         * process.c : Adding implementation for
9230           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9231           
9232         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9233           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9234
9235         Code is contributed under MIT/X11 license.
9236
9237 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9238
9239         * appdomain.c (unload_thread_main): Clean up threadpool by
9240         calling mono_thread_pool_remove_domain_jobs.
9241
9242         * domain-internals.h (struct _MonoDomain): Add new fields to
9243         help coordinate the cleanup of the threadpool.
9244
9245         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9246         that cleans up the threadpool of all jobs associated with an appdomain.
9247         It does that by cleaning up the queues and making sure all active
9248         threads are accounted.
9249
9250         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9251         unloaded or in the process of. Take this is such way that there is
9252         no race condition between another thread starting the unload and the
9253         current thread acknowledging it.
9254
9255         * threadpool.c (async_invoke_thread): Same.
9256
9257         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9258         firing the new thread.
9259
9260         * threadpool.c (start_tpthread): Same.
9261
9262         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9263
9264         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9265
9266 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9267
9268         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9269         Add support for DuplicateHandle.
9270         
9271         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9272         Add support for DuplicateHandle.
9273         
9274         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9275         Add support for DuplicateHandle.
9276
9277         Code is contributed under MIT/X11 license.
9278
9279 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9280
9281         * class-internals.h: Make min_align into a whole byte.
9282
9283         * class.c: Set min_align for SIMD types to 16.
9284
9285 2008-11-05  Geoff Norton  <gnorton@novell.com>
9286
9287         * attach.c: Default the attacher to enabled for all cases including
9288         embedded.
9289
9290 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9291
9292         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9293         change r117650.
9294
9295 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9296
9297         * monitor.c, monitor.h: New function for querying offsets of
9298         members of MonoThreadsSync.
9299
9300 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9301
9302         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9303         to speed up this function and to avoid the boundless memory growth caused by
9304         the signature_dup () calls.
9305
9306 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9307
9308         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9309         wrapper.
9310
9311         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9312         by 1 bit.
9313
9314         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9315
9316 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9317
9318         * appdomain.c:
9319         * domain-internals.h: made mono_set_private_bin_path_from_config()
9320         "internal".
9321         * object.c: call the above function after setting the configuration
9322         file path for the root domain.
9323         Fixes bug #314478.
9324
9325 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9326
9327         * assembly.c: when the assembly is loaded from an absolute path, end
9328         basedir with a directory separator.
9329         Bug #440781 fixed.
9330
9331 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9332
9333         * monitor.c (mono_monitor_get_fast_enter_method): If
9334         CompareExchange is not available, don't create the fastpath
9335         instead of asserting.  (The method is missing in the 1.1 profile.)
9336
9337 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9338
9339         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9340
9341         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9342         Monitor.Exit IL fastpaths.
9343
9344 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9345
9346         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9347
9348 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9349
9350         * class.c (mono_class_create_from_typedef): Added Vector2l.
9351
9352 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9353
9354         * class.c (mono_class_create_from_typedef): Added Vector2d.
9355
9356 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9357
9358         * appdomain.c: translate \ into / for cache_path.
9359         * domain-internals.h: new mono_is_shadow_copy_enabled().
9360         * icall.c: (fill_reflection_assembly_name) do the same path
9361         manipulations that get_code_base does.
9362         (get_code_base) use mono_is_shadow_copy_enabled.
9363
9364 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9365
9366         * appdomain.c: shadow-copied assemblies go to CachePath +
9367         ApplicationName when both are set. DynamicBase has nothing to do with
9368         shadow copies.
9369         Bug #406877 fixed.
9370
9371 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9372
9373         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9374         STANDALONESIG table.
9375
9376         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9377         standalone signatures.
9378
9379         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9380         comparison code: instead of comparing the signatures using a custom
9381         equals function, transform them to a common signature and compare that. This
9382         works better with AOT.
9383
9384 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9385
9386         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9387
9388         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9389         call for generic instances.
9390         (mono_class_setup_properties): Call setup_properties () before accessing
9391         gklass->properties.
9392
9393         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9394         over the virtual methods of a class using metadata if possible, avoiding the
9395         creation of MonoMethod's for non-virtual methods.
9396         
9397         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9398         get_virtual_methods () to iterate over the virtual methods of classes.
9399
9400 2008-10-25  Martin Baulig  <martin@ximian.com>
9401
9402         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9403
9404 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9405
9406         * class.c (mono_class_create_from_typedef): Added Vector4i.
9407
9408 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9409
9410         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9411         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9412         special-casing applies to eliminate the call completely.
9413
9414 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9415
9416         * class.c (mono_class_create_from_typedef): Added Vector8s.
9417
9418 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9419
9420         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9421
9422 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9423
9424         * icall.c: get rid of annoying warning.
9425
9426 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9427
9428         * threadpool.c: in 1.x, if you change the background status of the
9429         threadpool thread, it's not reset.
9430         Remove unnecessary calls to SetState.
9431
9432 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9433
9434         * threadpool.c: asynchronously create a set of idle threads upon first
9435         use of the threadpool. SetMinThreads will now start the appropriate
9436         number of idle threads if they are not already running. The default is
9437         1 threadpool thread per CPU. Increased the maximum number of threads
9438         per CPU to 10.
9439
9440 2008-10-22  Martin Baulig  <martin@ximian.com>
9441
9442         Revert r116521 from Zoltan, it breaks the debugger:
9443
9444         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9445         over the virtual methods of a class using metadata if possible, avoiding the
9446         creation of MonoMethod's for non-virtual methods.
9447         
9448         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9449         get_virtual_methods () to iterate over the virtual methods of classes.
9450
9451 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9452
9453         * threads.c: when creating a threadpool thread, set its state to
9454         'background'.
9455         * threadpool.c: reset the background state of a threadpool thread
9456         after finishing each work item
9457         Bug #437888 fixed.
9458
9459 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9460
9461         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9462         
9463         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9464         generic instances which works by inflating the methods in the container
9465         class's vtable.
9466
9467         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9468         variant which doesn't make a copy if no inflation was done.
9469         (mono_class_setup_fields): Use it.
9470
9471         * metadata.c (mono_metadata_get_shared_type): New helper function to
9472         return a shared instance of a given MonoType.
9473
9474         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9475         a copy of most non-generic types.
9476
9477 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9478
9479         * threadpool.c: remove one more GetSystemInfo () call.
9480
9481 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9482
9483         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9484         use the code in mono-proclib.h to get processor information.
9485
9486 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9487
9488         * appdomain.c: fixed the logic that determines whether assemblies in a
9489         directory are "shadow-copied" or not. Bug #433483 fixed.
9490
9491 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9492
9493         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9494         warning.
9495
9496 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9497
9498         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9499         returning a vtype.
9500
9501         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9502         reflection.c: Use mono_field_get_name () for accessing a field's name.
9503
9504         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9505         class.c
9506
9507         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9508         field.
9509
9510         * loader.c (find_method_in_class): Reenable the metadata optimization by
9511         not using it for generic instances.
9512
9513         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9514         data/def_type fields from MonoClassField into a separate structure.
9515         (struct MonoClassField): Remove data/def_type fields.
9516         (struct _MonoClass): Add a 'field_def_values' array to store the default
9517         values/RVA for fields.
9518
9519         * class.c reflection.c: Update after the changes.
9520         
9521         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9522         for accessing field->data.
9523
9524         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9525
9526         * loader.c (find_method_in_class): Revert the last change for now as
9527         it breaks Mono.C5 unit tests.
9528
9529         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9530         'field_generic_types' and 'field_objects' which contain the information
9531         previously stored in MonoInflatedField.
9532         (MonoInflatedField): Delete.
9533         (struct _MonoClassField): Delete 'generic_info' field.
9534
9535         * reflection.c: Store the information which was previously in 
9536         field->generic_info in MonoDynamicGenericClass instead.
9537
9538         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9539         MonoClassField changes.
9540
9541 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9542
9543         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9544         store the value inside the data array of the MonoMethodWrapper.
9545         This saves memory, is faster and fixes the lifetime issues (methods
9546         were never removed from the hash previously). May also fix bug#436996.
9547
9548 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9549
9550         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9551         generic instances, compute the type from the generic definition instead of
9552         looking in field->generic_info.
9553
9554         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9555         for inflated fields, the only user was get_fieldref_token () which no
9556         longer needs it.
9557
9558         * class.c (mono_class_init): Revert the last change as it seems to cause
9559         crashes.
9560
9561         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9562         bytes on 64 bit platforms.
9563
9564         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9565         
9566         * object.c (mono_class_create_runtime_vtable): Don't initalize
9567         field->data/field->def_type here, it is done lazily by 
9568         mono_class_get_field_default_value ().
9569
9570         * icall.c (ves_icall_get_enum_info): Call 
9571         mono_class_get_field_default_value () instead of directly accessing
9572         field->data and field->def_type.
9573
9574         * object.c (get_default_field_value): Ditto.
9575
9576         * class.c (mono_field_get_data): Ditto.
9577         
9578         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9579         call for generic instances.
9580
9581         * loader.c (find_method_in_class): If klass != from_class, then inflate
9582         the method with the context of from_class, since the caller assumes this.
9583
9584 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9585
9586         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9587         for accessing method->slot.
9588
9589 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9590
9591         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9592
9593 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9594
9595         * class.c (mono_method_get_vtable_index): Use
9596         mono_method_get_vtable_slot () for accessing method->slot.
9597
9598         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9599         accessing klass->methods.
9600
9601         * class.c (mono_method_get_vtable_slot): New helper function.
9602         (mono_class_get_vtable_entry): Ditto.
9603         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9604         accessing method->slot.
9605
9606         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9607         method to get_inflated_method ().
9608
9609         * class.c (mono_class_get_inflated_method): New helper method to obtain
9610         a method of an inflated class without calling setup_methods ().
9611         (mono_class_get_cctor): Use get_inflated_method.
9612
9613         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9614         
9615         * marshal.c image.c: Lazily create all the marshal caches.
9616
9617         * image.c (mono_image_init): Move initialization of runtime_invoke
9618         caches to marshal.c.
9619
9620         * marshal.c (get_cache): New helper function to lazily initialize a 
9621         wrapper cache.
9622         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9623
9624         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9625
9626 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9627
9628         * loader.c: fixed check for interface type.
9629
9630 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9631
9632         * appdomain.c: check for NULL setup before it's referenced.
9633
9634 p
9635 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9636
9637         * class.c: remove the unused old vtable setup code.
9638
9639 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9640
9641         * class.c: don't depend on interface order in
9642         setup_interface_offsets (bug #435777).
9643         * reflection.c: sort the InterfaceImpl table (patch from
9644         Jb Evain  <jbevain@novell.com>).
9645
9646 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9647
9648         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9649         the low level assemblies lock.
9650
9651 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9652
9653         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9654         object.c, reflection.c, socket-io.c, threads.c: introduced
9655         mono_framework_version () to return the major framewrok version,
9656         changed the code that was using more complex patterns to use it.
9657         Return the correct value for PlatformID for OSX.
9658
9659 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9660
9661         * icall-def.h, process.h, process.c: added an icall to get info about
9662         processes using mono-proclib.
9663
9664 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9665
9666         * mono-perfcounters.c: use the mono-proclib functions to
9667         access process information.
9668
9669 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9670
9671         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9672         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9673         reflection.c: remove rawbuffer usage: mmap support is more sanely
9674         provided by utils/mono-mmap.
9675
9676 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9677
9678         * gc.c: use posix semaphores when possible so that
9679         mono_gc_finalize_notify() is signal safe.
9680
9681 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9682
9683         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9684         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9685         be #ifdef-ed out, the linker will remove the rest.
9686
9687         * marshal.c: Implement DISABLE_COM.
9688
9689         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9690
9691 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9692
9693         * locales.c (string_invariant_compare_char): Optimization: do not
9694         call g_unichar_type unless we actually need the information.
9695
9696 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9697
9698         * object.c, class-internals.h: Also create remoting trampolines
9699         for generic methods.  Pass the domain to the remoting trampoline
9700         creation function, too.
9701
9702 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9703
9704         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9705
9706 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9707
9708         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9709         Vector4ui.
9710
9711 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9712
9713         * assembly.c:
9714         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9715
9716 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9717
9718         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9719         for the least possible amount of time (extending the fix in r113458).
9720
9721 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9722
9723         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9724
9725 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9726
9727         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9728         as possible simd intrinsic types.
9729         Optimized the test to check for the common prefix first.
9730
9731 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9732
9733         * class.c: back out part of a broken optimization committed on
9734         May 23th (bug #433908).
9735
9736 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9737
9738         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9739         Win32.  Should fix #432388 for most cases until we have the new
9740         profiler on Win32.
9741
9742 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9743
9744         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9745         instead of using inst->id so the hash is stable for AOT.
9746
9747 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9748
9749         * appdomain.c:
9750         * icall.c: create a .ini file for shadow-copied assemblies that
9751         contains the location of the original assembly. Use this to return the
9752         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9753         Also fix the number of '/' for windows when returning the CodeBase.
9754         Fixes bug #430920.
9755
9756 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9757
9758         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9759
9760         Code is contributed under MIT/X11 license.
9761
9762 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9763
9764         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9765           if if the class vtable needs initialized.
9766
9767         Code is contributed under MIT/X11 license.
9768
9769 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9770
9771         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9772           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9773           STRING->BSTR, and CLASS->INTERFACE.
9774
9775         Code is contributed under MIT/X11 license.
9776
9777 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9778
9779         * sysmath.h: changed the declaration of the
9780         ves_icall_System_Math_Round2 icall by adding an extra
9781         away_from_zero parameter.
9782
9783         * sysmath.c (ves_icall_System_Math_Round2): added support for
9784         away from zero rounding. The icall now takes an extra boolean
9785         parameter to signal that away from zero operation is requested.
9786
9787 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9788
9789         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9790         the delegate klass so it can work with full-aot.
9791         (mono_marshal_get_delegate_end_invoke): Ditto.
9792         (mono_marshal_get_delegate_invoke): Ditto.
9793
9794 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9795
9796         * gc.c, attach.h, attach.c: remove a bad pattern:
9797         add_finalizer_callback () is not implemented correctly, it can't
9798         without adding more overhead to the finalizer loop and it's not
9799         even needed, since we know exactly what we need to call, so there is
9800         no need to do so through an expensive function pointer.
9801
9802 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9803
9804         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9805         for the no-gc case.
9806         * attach.c (mono_attach_init): Remove the #ifdef.
9807
9808 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9809
9810         * attach.c (mono_attach_init): Don't use
9811         mono_gc_add_finalizer_thread_callback when compiling without GC.
9812         Fixes #432306.
9813         
9814         Code is contributed under MIT/X11 license.
9815
9816 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9817
9818         * class.c (mono_class_create_from_typedef): Remove the 
9819         #ifndef DISABLE_SIMD stuff.
9820
9821 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9822
9823         * class-internals.h (MonoClass): Added simd_type bit field.
9824
9825         * class.c (mono_class_create_from_typedef): Check if type is a simd
9826         intrinsic.
9827
9828 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9829
9830         * object.c (mono_method_add_generic_virtual_invocation): Only add
9831         instantiations to the thunk whose count is at least as large as
9832         the threshold.
9833
9834 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9835
9836         * icall.c: changed the Type of the exception thrown when trying to
9837         invoke a constructor on an abstract class. Part of the fix for bug
9838         #324185.
9839
9840 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9841
9842         * class.c, class-internals.h (mono_method_get_vtable_index): New
9843         function which returns the index into the vtable and properly
9844         handles inflated virtual generic methods.
9845
9846 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9847
9848         * object.c, domain.c, object-internals.h, domain-internals.h:
9849         Generalize IMT thunk machinery to also handle thunks for virtual
9850         generic method invokes.  When a virtual generic method is invoked
9851         more than a number of times we insert it into the thunk so that it
9852         can be called without lookup in unmanaged code.
9853
9854         * generic-sharing.c, class-internals.h: Fetching a
9855         MonoGenericInst* for a method from an (M)RGCTX.
9856
9857 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9858
9859         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9860         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9861         marshalling. Fixes #431304.
9862
9863 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9864
9865         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9866           handle when ref is specified without In or Out.
9867
9868         Code is contributed under MIT/X11 license.
9869
9870 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9871
9872         * loader.c (mono_get_method_constrained): Don't expand method with
9873         the class's context, because it's already a method of that class.
9874
9875 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9876
9877         * attach.c : should be correct build fix.
9878
9879 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9880
9881         * attach.c: Fix the previous change.
9882
9883 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9884
9885         * attach.c : quick w32 build fix.
9886
9887 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9888
9889         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9890         crashes MonoDevelop: #430455.
9891
9892 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9893
9894         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9895         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9896
9897         * domain.c: Remove initialization/cleanup of the removed fields.
9898
9899 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9900
9901         * class.c (mono_class_generic_sharing_enabled): Enable generic
9902         code sharing for PPC.
9903
9904 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9905
9906         * attach.c : Fixing the Windows builds.
9907
9908         Code is contributed under MIT/X11 license.
9909
9910 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9911
9912         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9913         the default generic sharing mode to 'all'.
9914
9915 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9916
9917         * generic-sharing.c, class-internals.h: New function for checking
9918         whether a method needs a static RGCTX invoke wrapper.  A few
9919         funtions moved from mini/generic-sharing.c.
9920
9921         * icall.c: New function used.
9922
9923 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9924
9925         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9926         Static RGCTX invoke wrapping applies to value type methods, too.
9927
9928         * class.c (mono_class_setup_vtable_general): In generic-shared
9929         value types, wrap methods with a static RGCTX invoke wrapper.
9930
9931 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9932
9933         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9934         osx build.
9935
9936 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9937
9938         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9939         register a callback which is called when the finalizer thread is woken
9940         up.
9941         (finalizer_thread): Call the callback if it exists.
9942
9943         * attach.h attach.c: New files, implementing the attach mechanism.
9944
9945         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9946         
9947         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9948         by the previous change.
9949
9950 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9951
9952         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9953         loader.c, marshal.c, metadata-internals.h, metadata.c,
9954         method-builder.c, object.c, reflection.c: introduced specific functions
9955         to allocate from the domain and image mempools and cleaned up most of
9956         the code to use them (still missing a few in reflection.c).
9957         Keep the loader bytes counter updated.
9958
9959 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9960
9961         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9962         loader-related counters.
9963
9964 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9965
9966         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9967         added more MS-compatible counters.
9968
9969 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9970
9971         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9972         class->blittable. Fixes #428217.
9973
9974 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9975
9976         * reflection.c (mono_image_get_field_on_inst_token): Call 
9977         field_encode_signature () since that handles custom modifiers too.
9978         Fixes #424663.
9979
9980 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9981
9982         * reflection.c (add_custom_modifiers): New helper function to merge custom
9983         modifiers stored in objects to a MonoType.
9984         (fieldref_encode_signature): Encode custom modifiers.
9985         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9986         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9987
9988 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9989
9990         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9991         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9992         64-bit IL only images because imports are not resolved for IL only images.
9993         Special thanks to Bill Holmes for finding this bug and testing the patch.
9994         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9995
9996         Contributed under MIT/X11 license.
9997
9998 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9999
10000         * mono-config.c (dllmap_start): Add support for the bits keyword
10001         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
10002
10003 2008-09-19  Mark Probst  <mark.probst@gmail.com>
10004
10005         * reflection.c (inflate_mono_method): When the class the method is
10006         to be inflated for is itself not inflated, just return the method.
10007
10008 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
10009
10010         * mono-perfcounters.c: use more user friendly process instance names.
10011
10012 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
10013
10014         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
10015           handle "[in] ref" and "[in][out] ref" cases.
10016
10017         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
10018           to mono_mb_create_method.  This was causing problems calling native to
10019           managed passing Variants by value.
10020
10021         Code is contributed under MIT/X11 license.
10022
10023 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
10024
10025         * class.c (can_access_internals): Call mono_assembly_load_friends ()
10026         before accessing the friend_assembly_names field.
10027
10028         * assembly.c (mono_assembly_load_friends): Make this callable multiple
10029         times.
10030         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
10031         called lazily when it is needed.
10032
10033         * metadata-internals.h (struct _MonoAssembly): Add 
10034         'friend_assembly_names_inited' flag.
10035
10036 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
10037
10038         * mono-perfcounters-def.h: fix the types of a few counters.
10039         * mono-perfcounters.c: implemented the instance names getter
10040         and a few bugfixes.
10041
10042 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
10043
10044         * culture-info-table.h : regenerated.
10045
10046 2008-09-17  Robert Jordan  <robertj@gmx.net>
10047
10048         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
10049         context bound objects. Fixes #415577.
10050
10051         Code is contributed under MIT/X11 license.
10052
10053 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
10054
10055         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
10056         implementation (bug #423582).
10057
10058 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
10059
10060         * object.c (mono_object_get_virtual_method): Handle the case method->slot
10061         is not set. Fixes #426309.
10062
10063 2008-09-16  Jb Evain  <jbevain@novell.com>
10064
10065         * class.c (mono_class_from_name): fix the exported type look up
10066         when the type is defined in a referenced assembly.
10067
10068 2008-09-16  Jb Evain  <jbevain@novell.com>
10069
10070         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10071         increment the next index counter on each iteration to make that work
10072         for more than one type forwarder. Unmanaged part to fix #422929.
10073
10074 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10075
10076         * object-internals.h: enum ComInterfaceType in
10077         MonoInterfaceTypeAttribute is guint32, not guint16.
10078
10079 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10080
10081         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10082         writing code.
10083
10084 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10085
10086         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10087         not gboolean.
10088
10089 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10090
10091         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10092         Endianness fixes for MonoSymbolFileOffsetTable.
10093
10094 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10095
10096         * process.c (complete_path) : Removing quotes from the 
10097           input path.  The glib file routines do not handle file paths
10098           that have quotes around them.
10099
10100         Code is contributed under MIT/X11 license.
10101
10102 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10103
10104         * socket-io.h : Adding a comment to provide locations where 
10105           changes to MonoSocketAsyncResult need to be synced.
10106
10107         Code is contributed under MIT/X11 license.
10108
10109 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10110
10111         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10112         parameters as well. Fixes #425001.
10113
10114 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10115
10116         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10117         windows build.
10118
10119 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10120
10121         * console-io.c: Add support for tracking the window size if it
10122         changes.
10123
10124         The setup is very simple: the TtySetup function will now return a
10125         pointer to a location in memory that tracks the current console
10126         size.  The managed code checks its current value every time its
10127         queried against the last value set, and updates accordingly.
10128
10129         With this setup we can work with multiple consoles, and we do not
10130         require to poke into managed code from a signal handler.
10131
10132         Additionally, the environment for COLUMNS and LINES is now handled
10133         in unmanaged code.
10134
10135         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10136
10137 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10138
10139         * marshal.c (mono_type_native_stack_size): Treat
10140         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10141
10142 2008-09-04  Jb Evain  <jbevain@novell.com>
10143
10144         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10145         to nullables.
10146
10147 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10148
10149         * verify.c (verify_type_compatibility_full): Revert change
10150         to allow converting a native int to unmanaged pointer be verifiable
10151         under non-strict mode.
10152         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10153
10154         * verify.c: Added some TODOs.
10155
10156 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10157
10158         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10159           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10160           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10161
10162         Code is contributed under MIT/X11 license.
10163
10164 2008-09-02  Jb Evain  <jbevain@novell.com>
10165
10166         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10167
10168 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10169
10170         reflection.c (typebuilder_setup_fields): Handle classes with
10171         explicit size.
10172
10173 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10174
10175         class.c (mono_class_setup_events): Add memory barrier due to
10176         double checked locking.
10177         
10178         class.c (mono_class_setup_properties): Same.
10179
10180 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10181
10182         * class.c (mono_class_is_assignable_from): Fix the build.
10183         
10184         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10185         before accessing klass->interface_bitmap. Fixes #421744.
10186
10187 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10188
10189         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10190         the runtime into no-exec mode, useful when running the AOT compiler.
10191
10192         * appdomain.c gc.c object.c: Avoid executing managed code when running
10193         in no-exec mode.
10194         
10195         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10196
10197         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10198         special case when the mono_assembly_loaded () returns NULL because the 
10199         search hook is not installed.
10200
10201 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10202
10203         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10204         crashes in bstr marshalling on linux.
10205
10206 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10207
10208         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10209         with more than one parameter.
10210
10211 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10212
10213         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10214         start/stop flow control as well when turning off ICANON (allows
10215         C-s and C-q to be read by Console.ReadKey).
10216
10217 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10218
10219         * class.c (mono_class_init): Move the initialization of nested classes
10220         into mono_class_get_nested_types (). Fixes #418433.
10221
10222         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10223         flag.
10224
10225         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10226         iterating tough the nested classes of a class.
10227
10228 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10229
10230         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10231         on arm.
10232
10233 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10234
10235         * console-io.c (sigcont_handler): Support signal chaining for
10236         SIGCONT.
10237
10238         (console_set_signal_handlers): Use best practices with sigaction,
10239         clear the structure before using it. 
10240
10241 2008-08-22  Robert Jordan  <robertj@gmx.net>
10242
10243         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10244         Fix the Windows build.
10245
10246 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10247
10248         * class.c (mono_class_generic_sharing_enabled): Make the default
10249         sharing mode 'corlib'.
10250
10251 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10252
10253         * console-io.c (console_set_signal_handlers): Fix a warning.
10254
10255         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10256         method normally, the JIT will take care of avoiding recursion.
10257
10258 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10259
10260         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10261
10262         Code is contributed under MIT/X11 license.
10263
10264 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10265
10266         * console-io.c (sigcont_handler): We need to restore the entire
10267         termios state, not only the original settings, as things like echo
10268         can be controlled after this (Booish exposes this issue with its
10269         own ReadLine implementation).
10270
10271         Additionally, we need to set the terminal back into keypad_xmit
10272         mode.
10273         
10274         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10275         string as a paramter as well.   Otherwise we get different
10276         keyboard sequences.
10277
10278 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10279
10280         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10281         delegates with byref out parameter passing. Fixes #351520.
10282
10283         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10284         a generic context.
10285         (mono_type_get_desc): Add the type arguments for GENERICINST.
10286         (mono_method_full_name): Stringify the class name using mono_type_full_name
10287         so it picks up generic arguments.
10288
10289 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10290
10291         * console-io.c: Removed debug output.
10292
10293 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10294
10295         reflection.c (mono_reflection_create_runtime_class): Alloc
10296         the nested classes linked list using the dynamic image mempool.
10297         Fixes leak in corlib compilation.
10298
10299 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10300
10301         * console-io.c: Fix incredibly annoying behavior on the console
10302         after resuming execution after control-z.   This affected every
10303         console application.
10304
10305 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10306
10307         * mempool-internals.h: Header for mono private mempool functions. The first
10308         two function are for allocating glib linked lists using pools.
10309
10310         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10311
10312         * Makefile.am: Added mempool-internals.h.
10313
10314 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10315
10316         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10317         (mono_domain_free): Ditto.
10318
10319         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10320         be used by the JIT to store its domain-specific information, instead of putting
10321         it directly into MonoDomain.
10322
10323         * domain.c (mono_install_create_domain_hook): New helper function to install
10324         a hook which initializes domain->runtime_info.
10325
10326         * domain.c (mono_install_free_domain_hook): Ditto.
10327         
10328 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10329
10330         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10331         asserting if the ares parameter is null.
10332
10333         * mono-perfcounters.c: Fix warnings.
10334
10335         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10336         is not needed, don't check for interruptions either.
10337         (mono_marshal_get_delegate_end_invoke): Ditto.
10338
10339 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10340
10341         * mono-perfcounters.c (predef_readonly_counter): added support for
10342         reading the ASP.NET Requests Queued counter from another process.
10343
10344 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10345
10346         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10347         MonoImage to simplify the AOT code.
10348
10349 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10350
10351         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10352         marshalling. Fixes #416078.
10353
10354 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10355         
10356         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10357         it is set, looking up the icall address is deferred to the JIT, since 
10358         in embedded scenarios, the icall might not be registered in the runtime
10359         doing the AOT compilation. Backported from the 2.0 branch.
10360
10361 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10362
10363         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10364         Fixes #415621.
10365
10366 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10367
10368         * Makefile.am: added support for cross-compilation.
10369
10370 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10371
10372         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10373
10374 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10375
10376         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10377
10378 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10379
10380         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10381         mono-perfcounters.c: performance counters implementation.
10382
10383 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10384
10385         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10386         to gpointer, letting the AOT code decide what to store in it.
10387
10388 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10389
10390         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10391           mono_class_setup_methods if the methods are not initialized.
10392
10393         Code is contributed under MIT/X11 license.
10394
10395 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10396
10397         * verify.c: Remove some debug code I commited by accident.
10398
10399         * verify.c (mono_method_is_valid_in_context): Change the return value
10400         to make possible to distinguish between invalid and unverifiable.
10401
10402         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10403         methods.
10404
10405 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10406
10407         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10408         constraints. Fixes regression in gtest-253.
10409
10410 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10411
10412         * verify.c (mono_verifier_verify_class): Don't allow generic types
10413         with explicit layout.
10414
10415         * verify.c (mono_method_verify): Check locals and argument types.
10416
10417 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10418
10419         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10420         wait if the thread is in StopRequested state.
10421
10422         * class.c (mono_class_from_name): Refactor the module searching code into
10423         a separate function so it can be reused in the AOT case too.
10424
10425 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10426
10427         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10428         Check both the type and it's generic type definition for loader errors.
10429         
10430         * verify.c (mono_method_is_valid_in_context): Don't generate another
10431         error when a type errors occur, this leads to the wrong exception been
10432         thrown.
10433
10434 2008-07-28  Dick Porter  <dick@ximian.com>
10435
10436         * icall-def.h
10437         * process.c
10438         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10439         New internal calls to duplicate and close a process handle.
10440
10441 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10442
10443         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10444
10445 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10446
10447         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10448
10449 2008-07-27  Robert Jordan  <robertj@gmx.net>
10450
10451         * class.c (mono_class_init): Don't compute class.has_finalize for
10452         valuetypes. Fixes #412477.
10453
10454 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10455
10456         * verify.c: Implement constraint equivalence checking.
10457         This is required when a generic parameter is used as
10458         argument to a constrained one.
10459
10460         Fixes #410637.
10461
10462 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10463
10464         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10465
10466         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10467
10468         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10469         synch with managed object layout.
10470
10471 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10472
10473         * verify.c (do_branch_op): Handle valuetypes and generic
10474         arguments properly.
10475
10476         * verify.c (do_cmp_op): Same.
10477
10478         Fixes #410383.
10479
10480 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10481
10482         * generic-sharing.c: Fix memory leaks.
10483
10484         * class.c, class-internals.h: Make
10485         mono_class_inflate_generic_type_with_mempool() non-static.
10486
10487 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10488
10489         * pedump.c (dump_verify_info): Dump full class name.
10490
10491 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10492
10493         * generic-sharing.c: Removed some old code that didn't do anything.
10494
10495 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10496         * profiler.c: Added runtime_initialized_event,
10497         mono_profiler_install_runtime_initialized and
10498         mono_profiler_runtime_initialized. This new hook tells the profiler
10499         when the runtime is sufficiently initialized to be able to call
10500         mono_thread_attach on the root appdomain.
10501         * profiler.h, profiler-private.h: Likewise.
10502
10503 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10504
10505         * verify.c (do_cast): Do boxing for generic arguments as well.
10506
10507         * class.c (is_nesting_type): Drop generic instantiations before
10508         checking for nesting.
10509
10510         * class.c (can_access_instantiation): Allow access to generic
10511         arguments.
10512
10513 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10514
10515         * verify.c (verify_class_for_overlapping_reference_fields):
10516         On some cases, the field size might be zero, guard against that.
10517         Fix the explicit layout check to work as expected.
10518
10519 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10520
10521         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10522         mono_thread_resume () during shutdown, since the thread we want to abort
10523         might be suspended.
10524
10525 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10526
10527         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10528         warning.
10529
10530         * debug-mono-symfile.c: Fix a warning.
10531
10532         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10533
10534         * object.c (mono_class_vtable): Check if exception_type is set, and return
10535         NULL as defined by the function comments.
10536
10537 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10538
10539         * mempool.c: Use malloc for every single mempool allocation if the
10540         configure option is set.  This makes it easier to track mempool
10541         allocations with tools like Valgrind.
10542
10543 2008-07-22  Jb Evain  <jbevain@novell.com>
10544
10545         * reflection.c (create_dynamic_mono_image): emit the same
10546         metadata version that SL2 does when creating a SL2 image.
10547
10548 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10549
10550         * icall-def.h:
10551         * icall.c: New icall System.Enum:get_hashcode. This function
10552         avoids the overhead of boxing the enum to the underlying type.
10553
10554 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10555
10556         * reflection.c (mono_method_get_object): Don't let static RGCTX
10557         invoke wrappers get into MonoReflectionMethods.
10558
10559 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10560
10561         * object-internals.h:
10562         * object.c: New mono_runtime_class_init_full function
10563         that makes throwing the exception optinal.
10564
10565         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10566         for the case where the exception object is supplied.
10567
10568 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10569
10570         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10571         old ld versions.
10572
10573         Contributed under MIT/X11 license.
10574
10575 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10576
10577         * string-icalls.c (ves_icall_System_String_InternalSplit):
10578         Optimize array allocation by caching the MonoClass of the
10579         array type.
10580
10581         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10582
10583         * reflection.c (mono_param_get_objects): Same.
10584
10585 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10586
10587         * icall-def.h:
10588         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10589         It inflates the given type using the class context.
10590
10591 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10592
10593         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10594         the vtable if it already exists.
10595
10596         * object-internals.h: Add mono_class_try_get_vtable as part of the
10597         internal API.
10598
10599         * reflection.c (mono_type_get_object): Use the MonoObject from the
10600         vtable when possible. Reduces locking contention on reflection heavy
10601         code.
10602
10603 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10604
10605         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10606         g_bit_nth_msf () since that macro is not implemented in eglib.
10607
10608 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10609
10610         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10611         on platforms which do not support it.
10612
10613 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10614
10615         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10616
10617 2008-07-11  Martin Baulig  <martin@ximian.com>
10618
10619         * mono-debug-debugger.h
10620         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10621
10622         * mono-debug-debugger.c
10623         (_mono_debugger_interruption_request): New global volatile variable.
10624         (mono_debugger_check_interruption): New public function.
10625
10626         * threads.c
10627         (mono_thread_current_check_pending_interrupt): Call
10628         mono_debugger_check_interruption().
10629         (mono_thread_interruption_checkpoint_request): Likewise.
10630
10631 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10632
10633         * verify.c: Add more type checks for loaded types. Verify the result
10634         handle from ldtoken.
10635
10636 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10637
10638         * loader.c (field_from_memberref): Don't crash if the field
10639         wasn't found.
10640
10641 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10642
10643         * verify.c: Verify if type and method instantiations
10644         don't have invalid VAR or MVAR arguments.
10645
10646 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10647
10648         * verify.c: Fix double free of function pointer list.
10649
10650 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10651
10652         * object.c (mono_string_to_utf8): Comment the new code as it
10653         breaks under eglib.
10654
10655 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10656
10657         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10658
10659 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10660
10661         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10662           is not throw too many times.
10663
10664         Code is contributed under MIT/X11 license.
10665
10666 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10667
10668         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10669         debugging is turned off.
10670
10671 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10672
10673         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10674
10675 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10676
10677         * class-internals.h, class.c: Added new generic sharing option:
10678         Share only stuff in System.Collections.Generic, which is now the
10679         default.
10680
10681 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10682
10683         * generic-sharing.c, class-internals.h: New function for getting a
10684         generic method in a generic class given the corresponding method
10685         for a different instantiation of the class.  Partly refactored
10686         from mini-trampolines.c.
10687
10688         * class.c: Make sure generic methods have a class_inst if they are
10689         part of a generic class.
10690
10691         * metadata.c (mono_type_stack_size_internal): Handle type
10692         variables.
10693
10694 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10695
10696         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10697         Signifies whether information on the this/vtable/mrgctx variable
10698         is available.
10699
10700 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10701
10702         * object.c, object-internals.h, icall.c: New function
10703         mono_delegate_ctor_with_method(), which does the same as
10704         mono_delegate_ctor(), but takes an explicit method argument
10705         instead of taking the method from the jit info.
10706
10707         * marshal.c: When creating a delegate with an inflated method take
10708         the "this" argument as the target class for the castclass.
10709
10710 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10711
10712         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10713         mono_jit_info_table_find() to perform very badly in some cases.
10714
10715 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10716
10717         * icall.c (type_from_typename): Handle 'string'.
10718
10719         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10720         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10721
10722 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10723
10724         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10725
10726         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10727         number of available managed allocator types.
10728
10729         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10730         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10731
10732 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10733
10734         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10735         which is a low level lock protecting just the 'jit_code_hash' hash table.
10736
10737         * domain.c: Initialize+cleanup jit_code_hash_lock.
10738         
10739 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10740
10741         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10742         after initialization.
10743
10744         * coree.h: Make MonoFixupExe internal.
10745
10746         Contributed under MIT/X11 license.
10747
10748 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10749
10750         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10751         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10752         as well.
10753         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10754         image being loaded is a CLI image and _CorValidateImage gets called.
10755
10756         * coree.h: Add MonoLoadImage.
10757
10758         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10759         instead of LoadLibrary.
10760
10761         Contributed under MIT/X11 license.
10762
10763 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10764
10765         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10766         for any primitive type.
10767
10768 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10769
10770         * object.c (mono_array_new_specific): Optimize this and the other allocation
10771         functions a bit.
10772         
10773         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10774         domains too if mono_dont_free_domains is set.
10775
10776         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10777         whenever to free appdomain data after it has been unloaded.
10778
10779         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10780         
10781 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10782
10783         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10784         (mono_method_get_equivalent_method): Fix a warning.
10785
10786         * object.c (mono_message_init): Avoid looking up array types for each call.
10787
10788 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10789
10790         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10791         call.
10792
10793         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10794         even more.
10795
10796         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10797         each iteration.
10798
10799         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10800         fields of an enum.
10801
10802 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10803
10804         * object.c (mono_value_box): Fix boxing of nullables.
10805
10806 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10807
10808         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10809         mono_module_handle that is defined by the linker; no initialization required.
10810         * coree.h: Remove mono_module_handle, add __ImageBase, update
10811         mono_image_open_from_module_handle.
10812         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10813         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10814         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10815         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10816         to 4 GB away from image base address. IA64 version is not tested but was very
10817         easy to implement and should work if we ever need it.
10818         * domain.c (mono_init_internal): Avoid system error message boxes.
10819         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10820         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10821         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10822         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10823         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10824
10825         Contributed under MIT/X11 license.
10826
10827 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10828
10829         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10830         as part of the private mono API.
10831         
10832         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10833         Do proper argument checking for methods that belong to generic classes.
10834         Do proper type resolution for GMFH/2.
10835         Fixes #377324.
10836         
10837 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10838
10839         * verify.c (do_switch): Fix a memory corruption bug with
10840         the jump index is out of bound.
10841
10842 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10843
10844         * verify.c: Disable debug code.
10845
10846 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10847
10848         * reflection.c (mono_image_get_methodbuilder_token): Use
10849         mono_image_get_methodspec_token_for_generic_method_definition
10850         instead of mono_image_get_memberref_token. We cache more memberef
10851         entries now.
10852
10853 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10854
10855         * verify.c: Inflate exception clause types.
10856         Fixes #402606.
10857         
10858 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10859
10860         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10861         name.
10862
10863         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10864
10865         * reflection.c (mono_image_create_method_token): Same.
10866
10867 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10868
10869         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10870         It does the same as mono_image_get_methodref_token but works on
10871         MethodBuilder.
10872
10873         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10874         and always generate a methodspec. This follows the old behavior and fixes
10875         the regressions in System.Core. 
10876
10877 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10878
10879         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10880         don't event mono_class_get () succeeds. Fixes #402182.
10881
10882 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10883
10884         * metadata-internals.h: Added MonoDynamicImage::methodspec
10885         hashtable to store methodspec tokens created for MethodBuilders.
10886
10887         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10888         MethodBuilders as open instantiations if a methodspec was requested.
10889
10890         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10891
10892         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10893
10894         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10895
10896         Fixes bug #349190.
10897
10898 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10899
10900         * loader.c (method_from_methodspec): Avoid crashing if the
10901         method lookup fails.
10902
10903 2008-06-20  Dick Porter  <dick@ximian.com>
10904
10905         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10906         classes being in a different assembly.  Fixes bug 399184.
10907
10908 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10909
10910         * loader.c (mono_loader_init): Make this callable multiple times.
10911         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10912         the runtime is initialized. Fixes #401755.
10913
10914 2008-06-19  Dick Porter  <dick@ximian.com>
10915
10916         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10917         Fixes bug 349688.
10918
10919 2008-06-19  Dick Porter  <dick@ximian.com>
10920
10921         * socket-io.c:
10922         * icall-def.h: Implement Socket generic Send() and Receive()
10923         methods.  Fixes bug 395168.
10924
10925 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10926
10927         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10928
10929         Contributed under MIT/X11 license.
10930
10931 2008-06-18  Martin Baulig  <martin@ximian.com>
10932
10933         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10934         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10935         set to 80.0.  The debugger <-> runtime interface is now frozen as
10936         well.   
10937
10938         * mono-debug.c
10939         (mono_debug_debugger_version): Bump to 4.
10940
10941 2008-06-18  Martin Baulig  <martin@ximian.com>
10942
10943         * debug-mono-symfile.c
10944         (load_symfile): Don't check the minor version.
10945
10946         * debug-mono-symfile.h: Bump the version number to 50.0.
10947
10948 2008-06-18  Martin Baulig  <martin@ximian.com>
10949
10950         * debug-mono-symfile.c
10951         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10952         minimum required version.
10953
10954 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10955
10956         * reflection.c (mono_custom_attrs_from_property): Fix support for
10957         retriveving cattrs of dynamic inflated generic types.
10958
10959         * reflection.c (mono_custom_attrs_from_event): Same.
10960
10961         * reflection.c (mono_custom_attrs_from_field): Same;
10962
10963         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10964
10965         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10966         Moved to metadata.c.
10967
10968         * metadata.c: New functions to retrive the equivalent field, event
10969         of property from the generic type definition.
10970
10971         * metadata-internals.h: Added new functions from metadata.c.
10972
10973 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10974
10975         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10976         to cached in a mempool is used.
10977
10978         * metadata.c (free_generic_class): In some situations field generic_info type
10979         is not properly dup'ed and leads to double free'ing.
10980
10981         Fixes #400643.
10982
10983 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10984
10985         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10986         this arguments (will be needed later for generic methods).
10987         Collect stats.
10988
10989 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10990
10991         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10992         Create a static RGCTX invoke wrapper for methods which require it.
10993
10994 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10995
10996         * object.c, class-internals.h: New function for checking whether
10997         an individual field is special static.
10998
10999 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11000
11001         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
11002         linear search since the table is sorted.
11003
11004         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
11005         Fixes #324180.
11006
11007 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11008
11009         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
11010         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
11011
11012         * gc.c (mono_domain_finalize): Allow an infinite timeout.
11013
11014         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
11015         
11016         * threads.c (mono_thread_request_interruption): Get rid of locking, use
11017         InterlockedCompareExchange to query and modify 
11018         thread->interruption_requested.
11019
11020         * object-internals.h (struct _MonoThread): Change interruption_requested
11021         to a gint32 so it can be modified by atomic operations. Add 
11022         'critical_region_level' from the managed side, change small_id to a guint32,
11023         add new set of 'unused' fields.
11024
11025         * appdomain.c: Bump corlib version.
11026
11027 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11028
11029         * class.c (mono_class_from_name): Search modules as well. Fixes
11030         #322332.
11031
11032 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11033
11034         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
11035         templates.  Templates are generalized with an additional type_argc
11036         argument.  RGCTX templates have type_argc==0, MRGCTX templates
11037         have type_argc>0.
11038
11039         * domain-internals.h, domain.c: New hash table for looking up
11040         MRGCTXs.
11041
11042         * metadata.c, metadata-internals.h: Rename hash and equal
11043         functions for MonoGenericInst's and make them public.
11044
11045         * class-internals.h: New data structures for the MRGCTX.  Macros
11046         for distinguishing slots in the RGCTX and the MRGCTX.
11047
11048 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11049
11050         * object.c (mono_method_get_imt_slot): Put the same methods of
11051         different instantiations of the same generic interface in the same
11052         IMT slots, to make generic sharing simpler.
11053
11054 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11055
11056         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
11057
11058         * metadata.c (mono_metadata_field_info_with_mempool): Added.
11059         This function works just like mono_metadata_field_info, but
11060         accept a mempool as argument to be used allocating memory.
11061
11062         * marshal.c (mono_marshal_load_type_info): Use new function
11063         to load marshal data into image mempool.
11064
11065 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11066
11067         * class.c (mono_class_inflate_generic_type_with_mempool):
11068         This function allows to inflate a generic type using
11069         a mempool.
11070
11071         * class.c (inflate_generic_type): Take a mempool as argument
11072         and use it to do type dup'ing.
11073
11074         * class.c (mono_class_setup_fields): Field type for generic
11075         generic classes are allocated from the image mempool.
11076
11077         * metadata.c (free_generic_class): Inflated field type is
11078         now allocated in the image mempool.
11079
11080 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11081
11082         * threads.c (thread_cleanup): Free MonoThread::name.
11083
11084 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11085
11086         * appdomain.c (ensure_directory_exists): avoid unnecessary
11087         mkdir(2) calls when the shadow directory already exists.
11088         (mono_make_shadow_copy): copy also satellite assemblies from the
11089         private bin directories.
11090
11091 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11092
11093         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11094         
11095         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11096         a page boundary. Fixes #396219.
11097
11098 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11099
11100         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11101         due to double-checked locking.
11102
11103 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11104
11105         * assembly.c (build_assembly_name): Release memory on failure.
11106
11107         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11108
11109 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11110
11111         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11112         memory on failure.
11113
11114 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11115
11116         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11117         memory on failure.
11118
11119 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11120
11121         * loader.c (field_from_memberref): Check if field signature type is equal
11122         to the non-inflated type of the field. Fixes #398980.
11123
11124 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11125
11126         * assembly.c (mono_assembly_load_from_full): Call 
11127         mono_assembly_load_friends () outside the assemblies lock, since it can
11128         acquire the loader lock. Fixes #323696.
11129
11130         * reflection.c (resolve_object): Inflate the inst with the context for
11131         FieldOnTypeBuilderInst. Fixes #399010.
11132
11133 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11134
11135         * reflection.c (mono_image_get_field_on_inst_token): Don't
11136         inflate the field to encode it's signature. If it's a
11137         VAR or MVAR it should stay that way in the signature.
11138         Fixes #399047.
11139
11140 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11141
11142         * reflection.c (resolve_object): Release memory of inflated types.
11143
11144 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11145
11146         * loader.c (mono_method_get_signature_full): Remove assert about
11147         loading a methodspec to a generic method. We have such methods, such as
11148         System.Threading.Interlocked::CompareExchange<T>.
11149         This assert was removed since it crashes the verifier when it checks
11150         methods calling CompareExchange<T>.
11151
11152 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11153
11154         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11155         of Type array and not MonoType.
11156
11157 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11158
11159         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11160         <lupus@ximian.com>
11161
11162 2008-06-10  Martin Baulig  <martin@ximian.com>
11163
11164         * debug-mono-symfile.h
11165         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11166         changes to the file format, but we were generating incorrect
11167         source file indices in the line number table due to a bug, which
11168         made backtraces report an incorrect source file.
11169
11170 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11171
11172         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11173         mini/debug-mini.c to here.
11174
11175         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11176
11177         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11178         use it to release structs returned by mono_debug_find_method.
11179
11180 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11181
11182         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11183         since it needs to set method->slot for all interface methods.
11184
11185 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11186
11187         * class-internals.h: Forgot to add.
11188
11189 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11190
11191         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11192
11193         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11194         Lookup the custom attributes from property_hash.
11195
11196         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11197         in property_hash. Allocate all data using the image mempool.
11198
11199         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11200         for dynamic_custom_attrs to checks if the image is dynamic.
11201
11202 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11203
11204         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11205         assemblies array.
11206         
11207         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11208         runtime functions while holding the domain assemblies lock.
11209
11210 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11211
11212         * verify.c: Reapplied the last bit of the reverted changes.
11213
11214 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11215
11216         * verify.c: Reapplied more of the reverted changes.
11217
11218 2008-06-09  Martin Baulig  <martin@ximian.com>
11219
11220         * debug-mono-symfile.c (load_symfile): Check the major version
11221         first; if it's wrong, don't print the minor version in the error message.
11222
11223 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11224
11225         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11226         lock instead of the domain lock to avoid deadlocks, since the thread might
11227         already hold the loader lock.
11228
11229         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11230         (mono_thread_attach): Ditto.
11231
11232         * monitor.c: Use a TLS variable for holding the current thread id instead
11233         of calling pthread_self ().
11234         (mono_monitor_init_tls): New internal function to initialize the TLS
11235         variable.
11236         (mono_monitor_try_enter_internal): Put the owner == id check after the
11237         owner == 0 check.
11238
11239         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11240         missed optimizations when using gcc-4.3.
11241
11242 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11243
11244         * reflection.c (mono_dynamic_image_free): Free the memory
11245         used by MonoGenericParam in MonoDynamicImage::gen_param.
11246
11247         * reflection.c (mono_reflection_setup_generic_class): Allocate
11248         container from mempool.
11249
11250         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11251         container from mempool.
11252
11253 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11254
11255         * threads.c (mono_set_pending_exception): New internal function to set the
11256         pending exception of the current thread.
11257         (mono_thread_get_and_clear_pending_exception): Check for 
11258         thread->pending_exception as well.
11259
11260         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11261
11262         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11263         it can trigger a collection.
11264
11265 2008-06-06  Martin Baulig  <martin@ximian.com>
11266
11267         Merged the `debugger-kahalo' branch.
11268
11269         * mono-debug.h
11270         (MONO_DEBUGGER_VERSION): Bumped to 72.
11271
11272         * debug-mono-symfile.h
11273         (MonoSymbolFileMethodIndexEntry): Removed.
11274         (MonoSymbolFileMethodEntry): New public typedef.
11275         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11276         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11277         `data_offset'.
11278         (MonoSymbolFileMethodEntry): Removed.
11279         (MonoSymbolFileLexicalBlockEntry): Removed.
11280         (MonoSymbolFileLineNumberEntry): Removed.
11281         (MonoDebugLexicalBlockEntry): Removed.
11282         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11283         removed `num_il_offsets' and `il_offsets'.
11284         (MonoSymbolFile): Replace `version' with `major_version' and
11285         `minor_version'.
11286         (MONO_SYMBOL_FILE_VERSION): Replace with
11287         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11288         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11289
11290         * debug-mono-symfile.c
11291         (mono_debug_symfile_lookup_location): Add support for the new line
11292         number table format.
11293
11294 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11295
11296         * metadata.c (free_generic_class): Release the inflated
11297         MonoClass of dynamic generic classes if it's not a generic
11298         type definition.
11299
11300 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11301
11302         * verify.c: Reapplied more of the reverted changes.
11303
11304 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11305
11306         * reflection.c (lookup_custom_attr): Clean the cached flag or
11307         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11308         for SRE types.
11309
11310 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11311
11312         * verify.c: Reapplied a small part of the reverted changes.
11313
11314 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11315
11316         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11317
11318         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11319         previously in managed code.
11320         (mono_monitor_exit): Ditto.
11321         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11322
11323         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11324         the managed definition.
11325
11326 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11327
11328         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11329
11330 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11331
11332         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11333         
11334         * monitor.c: Add some micro optimizations.
11335
11336         * icall.c (type_from_typename): Handle 'bool'.
11337
11338 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11339
11340         * verify.c: Implement constructor verification per P III 1.8.1.4.
11341         Fixes #396716.
11342
11343 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11344
11345         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11346         holding the assemblies lock here too.
11347
11348 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11349
11350         * verify.c: Kill stack_top function.
11351
11352 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11353
11354         * verify.c: Kill stack_get function.
11355
11356 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11357
11358         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11359
11360 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11361
11362         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11363         more reliable.
11364
11365         * verify.c (mono_method_verify): Inflate params and locals to avoid
11366         mismatch when checking for compatibility.
11367
11368 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11369
11370         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11371         Length prefix should be size in bytes. Fix bug #339530.
11372         
11373         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11374         Length prefix should be size in bytes. Fix bug #339530.
11375
11376         Code is contributed under MIT/X11 license.
11377
11378 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11379
11380         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11381
11382         Contributed under MIT/X11 license.
11383
11384 2008-06-05  Martin Baulig  <martin@ximian.com>
11385
11386         * mono-debug-debugger.c
11387         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11388
11389 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11390
11391         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11392         while holding the assemblies lock to prevent deadlocks. Handle the case
11393         where the search hook returns NULL but the assembly was still loaded.
11394         Fixes #323696.
11395
11396         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11397         modify domain state.
11398
11399 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11400
11401         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11402         * Makefile.am (pedump_LDADD): Post-process object files and
11403         add dtrace-generated object file, if necessary.
11404
11405         Code is contributed under MIT/X11 license.
11406
11407 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11408
11409         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11410
11411 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11412
11413         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11414
11415 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11416
11417         * threads.c: Try to free everything from the delayed free table
11418         when shutting down threads, and set the variable to NULL after the
11419         table is freed so that calling
11420         mono_thread_hazardous_try_free_all() when shutting down the root
11421         domain doesn't crash.
11422
11423 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11424
11425         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11426         the caller if resulting type was inflated.
11427
11428         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11429         was inflated.
11430
11431         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11432
11433
11434 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11435
11436         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11437         class library tests.
11438
11439         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11440         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11441         #396989.
11442
11443 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11444
11445         * domain.c, domain-internals.h: The JIT infos are now freed by the
11446         JIT info table code.  They are freed immediately if there only a
11447         single JIT info table in circulation.  If there is more, the free
11448         is delayed via a queue.
11449
11450         * threads.c, threads-types.h: New hazard pointer function for
11451         freeing all freeable delayed items in one sitting.
11452
11453 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11454
11455         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11456
11457         * reflection.c (typebuilder_setup_properties): Same.
11458
11459         * reflection.c (typebuilder_setup_events): Same.
11460
11461 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11462
11463         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11464         and use it for allocating memory.
11465
11466         * reflection.c (mono_marshal_spec_from_builder): Same.
11467
11468         * reflection.c: Change code to use new signatures.
11469
11470         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11471
11472 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11473
11474         * decimal.c (rescale128): Put back one line which was accidently commented
11475         out.
11476         
11477         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11478         to cause crashes.
11479
11480 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11481
11482         * reflection.c (mono_reflection_generic_class_initialize): Name must
11483         be always malloc'ed so we can free it later on. Do this for field, property
11484         and event.
11485
11486         * metadata.c (free_generic_class): Free field, property and event names.
11487
11488 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11489
11490         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11491         instead of g_memdup.
11492
11493         * reflection.c (typebuilder_setup_fields): Same.
11494
11495 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11496
11497         * decimal.c (rescale128): Optimize this function a bit more.
11498
11499 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11500
11501         * metadata.c (free_generic_class): Release some memory from
11502         SRE generic classes.
11503
11504 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11505
11506         * reflection.c (mono_image_get_generic_field_token): No reference
11507         to name is kept, free it.
11508
11509         * reflection.c (mono_reflection_generic_class_initialize): Free
11510         more memory of the inflated field.
11511
11512 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11513
11514         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11515         code.
11516
11517 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11518
11519         * reflection.c (mono_dynamic_image_free): Release memory used by
11520         MonoDynamicImage::array_methods elements.
11521
11522         * reflection.c (assembly_add_win32_resources): Release memory after
11523         encoding.
11524
11525 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11526
11527         * decimal.c (log2_32): Use an optimized version for this function too.
11528         
11529         * decimal.c (log2_64): Fix this on 32 bit machines.
11530
11531 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11532
11533         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11534
11535         * class.c (mono_metadata_signature_deep_dup): Same.
11536
11537         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11538         a mempool.
11539
11540         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11541
11542         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11543
11544         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11545
11546         * class-internals.h: Update signatures to take a MonoMemPool.
11547
11548 2008-06-02  Dick Porter  <dick@ximian.com>
11549
11550         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11551         * icall-def.h: Add
11552         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11553         FormatMessage API to get the error text.  Fixes bug 321827.
11554
11555 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11556
11557         * decimal.c: Add some micro optimizations to make decimal operations faster.
11558
11559 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11560
11561         * reflection.c (method_encode_clauses): Take a mempool
11562         as parameter and use it to allocate the clause array.
11563
11564         * reflection.c (mono_image_get_field_on_inst_token): Free
11565         the inflated type after encoding it.
11566
11567         * reflection.c (mono_dynamic_image_free): Free each element
11568         of MonoDynamicImage::gen_params.
11569
11570         * reflection.c (reflection_methodbuilder_to_mono_method):
11571         Allocate the generic param array from the mempool.
11572         Allocate signature params from the mempool.
11573
11574         * reflection.c (mono_reflection_generic_class_initialize):
11575         Free inflated fields after been used.
11576
11577 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11578
11579         * icall.c: Reapply the memory leak fixes as they no
11580         longer make mono crash.
11581
11582 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11583
11584         * reflection.c (mono_type_get_object): Don't store the suplied
11585         MonoType with type_hash. A caller which pass a type that
11586         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11587         might end with a pointer to freed memory.
11588         The solution is to use byval_arg or this_arg from the associated
11589         MonoClass of the supplied type.
11590
11591 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11592
11593         * icall.c: Revert the rest of the last change as it breaks the build too.
11594
11595 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11596
11597         * icall.c: Revert a leak fix as it's breaking the build.
11598
11599 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11600
11601         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11602
11603 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11604
11605         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11606
11607 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11608
11609         * icall.c: Fix some memory leaks.
11610
11611 2008-05-29  Dick Porter  <dick@ximian.com>
11612
11613         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11614         async socket operations from the pending list when a socket
11615         closes.  Leaving it until the threadpool services the event
11616         exposes a race condition when a socket descriptor is reused.
11617         Fixes bug 377589.
11618
11619 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11620
11621         * object.c: Fix negative index check for array alocation.
11622
11623 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11624
11625         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11626         This check is performed by the verifier for IL created delegates
11627         and by Delegate::CreateDelegate for programatically created ones.
11628         Fixes #372406.
11629
11630 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11631
11632         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11633         Fix code to use mono_array_size_t instead of int.
11634
11635         Based on patch by Luis F. Ortiz.
11636         Contributed under X11 license.
11637         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11638
11639 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11640
11641         * icall.c: Added ves_icall_System_Array_GetLongLength and
11642         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11643         arrays.
11644
11645         * icall.h: Export both new functions.
11646
11647         Based on patch by Luis F. Ortiz.
11648         Contributed under X11 license.
11649         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11650
11651 2008-05-28  Martin Baulig  <martin@ximian.com>
11652
11653         The debugger now requires exactly r103463.
11654
11655         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11656         This version is not supported by the debugger, wait for 72.
11657
11658 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11659
11660         * object.h: Changed array related functions to use
11661         mono_array_size_t instead of guint32. Forgot to commit this file.
11662
11663         Patch by Luis F. Ortiz.
11664         Contributed under X11 license.
11665         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11666
11667
11668 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11669
11670         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11671         don't define it. Use the number literal instead.
11672
11673 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11674
11675         * icall.c: Changed array related functions to use
11676         mono_array_size_t instead of guint32.
11677
11678         * icall.c (ves_icall_System_Array_GetLength): Check for length
11679         overflow under MONO_BIG_ARRAYS.
11680
11681         Based on patch by Luis F. Ortiz.
11682         Contributed under X11 license.
11683         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11684
11685 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11686
11687         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11688
11689         Based on patch by Luis F. Ortiz.
11690         Contributed under X11 license.
11691         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11692
11693 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11694
11695         * object.c, object.h: Changed array related functions to use
11696         mono_array_size_t instead of guint32.
11697
11698         Patch by Luis F. Ortiz.
11699         Contributed under X11 license.
11700         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11701
11702 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11703
11704         * object.h: Introduced mono_array_size_t typedef. This must be used
11705         in all places an array length is expected. This is 64bits wide if
11706         MONO_BIG_ARRAYS is enabled.
11707
11708         Patch by Luis F. Ortiz.
11709         Contributed under X11 license.
11710         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11711
11712 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11713
11714         * security-manager.c class.c: Set the class exception info by calling
11715         mono_class_set_failure ().
11716
11717         * class.c (mono_class_get_exception_data): New accessor function.
11718         (mono_class_set_failure): Store exception_data in the property hash.
11719
11720         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11721         the struct as a property.
11722
11723         * loader.c (mono_get_method_full): Store the lookup result for method
11724         tokens in method_cache, the others in methodref_cache to decrease the memory
11725         usage of hash tables.
11726
11727         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11728         (mono_image_init): method_cache is lazy inited now.
11729
11730         * metadata-internals.h (struct _MonoImage): Change method_cache to
11731         a MonoValueHashTable, add a separate methodref_cache.
11732
11733 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11734
11735         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11736           Double.ToString as exposed by Bug #383531.
11737
11738 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11739
11740         * number-formatter.h: Make some tables static.
11741
11742         * class.c (mono_method_set_generic_container): New accessor function.
11743         (mono_method_get_generic_container): Ditto.
11744
11745         * class-internals.h (struct _MonoMethod): Remove rarely used 
11746         'generic_container' field, store it in the property hash instead. Add 
11747         'is_generic' boolean field instead.
11748
11749         * image.c (mono_image_init): Initialize property_hash.
11750         (mono_image_close): Destroy property_hash.
11751
11752         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11753         hold rarely used fields of runtime structures belonging to this image.
11754
11755         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11756         to get/set method->generic_container.
11757
11758         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11759         generic methods.
11760
11761 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11762
11763         * class.c (mono_class_inflate_generic_method_full): Don't increase
11764         mono_stats.inflated_method_count for methods found in the cache.
11765
11766         * threads.c (mono_thread_request_interruption): Add a comment about 
11767         QueueUserAPC ().
11768
11769 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11770
11771         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11772         interface_offsets_packed table.
11773         
11774         * class.c (mono_class_init): Remove some dead code.
11775
11776         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11777         mono_class_setup_vtable () when CAS is active to detect security problems.
11778
11779 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11780
11781         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11782
11783         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11784         parameters as it's irrelevant for delegate checking.
11785
11786 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11787
11788         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11789
11790         * class.c (mono_class_init): Control the creation of a generic vtable using
11791         a global which is true by default, but set to false by the runtime startup code.
11792         
11793         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11794         Disabled for now since it breaks the embedding API.
11795         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11796         (mono_class_setup_methods): Add a memory barrier.
11797
11798         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11799         when mono_class_init () doesn't compute the generic vtable.
11800         
11801 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11802         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11803         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11804         to support call chains (backtrace) in the stat profiler.
11805         * profiler.c, profiler-private.h: Likewise.
11806
11807 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11808
11809         * generic-sharing.c: Init generic class when a method of it is
11810         requested via a runtime generic context.
11811
11812 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11813
11814         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11815
11816         * reflection.c (mono_type_get_object): Add a FIXME.
11817
11818         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11819
11820         * class.c (mono_class_get_method_by_index): New helper function, returning an
11821         entry in the class->methods array.
11822
11823 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11824
11825         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11826         Avoid creating a generic vtable for generic instances as well.
11827         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11828         generic instances.
11829
11830 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11831
11832         * loader.c (mono_get_method_constrained): Inflate the signature
11833         with class context. Fix #325283.
11834
11835 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11836
11837         * object.c (mono_class_create_runtime_vtable): Add a comment.
11838
11839         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11840         where needed.
11841         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11842         (mono_class_setup_vtable_general): Add an assert.
11843         (mono_class_init): Avoid creating a generic vtable for arrays.
11844
11845         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11846         here, let mono_class_init () do that.
11847
11848         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11849         interfaces in mscorlib.
11850
11851         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11852         interfaces. Add some comments.
11853         (mono_class_init): Call mono_class_setup_methods () here since it is no
11854         longer called by mono_class_setup_vtable ().
11855
11856         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11857         not set in class->vtable.
11858         (mono_class_create_runtime_vtable): Reenable the disabled code.
11859
11860         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11861         now as it causes some test failures.
11862
11863         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11864         if using the vtable trampoline. Also remove some strange code which put the
11865         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11866         stuff as it is no longer needed.
11867
11868 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11869
11870         * pedump.c: Give make --verify all option check code as well.
11871         Using --verify code won't check for metadata now.
11872
11873 2008-05-19  Martin Baulig  <martin@ximian.com>
11874
11875         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11876
11877         * mono-debug.c
11878         (_mono_debug_using_mono_debugger): New global variable; it's set
11879         directly by the debugger, so mono_debug_using_mono_debugger() also
11880         works after attaching.
11881
11882 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11883
11884         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11885         as we do double checked locking on MonoClass::runtime_info and
11886         MonoClassRuntimeInfo::domain_vtables.
11887
11888 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11889
11890         * debug-helpers.c (print_field_value): Fix a warning.
11891
11892 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11893
11894         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11895         set in the AOT case.
11896
11897 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11898
11899         * class.c (mono_class_setup_vtable_general): Use memory barriers
11900         as we do double checked locking on MonoClass::vtable.
11901
11902 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11903
11904         * reflection.c (resolve_object): Inflate only if the generic context
11905         is not null. Fixes #389886.
11906
11907 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11908
11909         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11910         instead of g_free.
11911
11912         Code is contributed under MIT/X11 license.
11913
11914 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11915
11916         * class.c: Revert unrelated change.
11917
11918 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11919
11920         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11921         a generic instantiation, use mono_class_from_mono_type instead of playing
11922         with MonoType directly.
11923
11924 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11925
11926         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11927         checks must ignore generic instantiations, so mono_class_has_parent is not
11928         suitable. Fixes #390128.
11929
11930 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11931
11932         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11933         it to avoid registering tokens during metadata generation. Fixes #390023.
11934
11935 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11936
11937         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11938         consistent.
11939
11940         Contributed under MIT/X11 license.
11941
11942 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11943
11944         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11945         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11946         to fixup the EXE image.
11947         (mono_cleanup): Use mono_close_exe_image.
11948         (mono_close_exe_image): New function.
11949         * image.c: Include "marshal.h".
11950         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11951         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11952         counting when the image is loaded outside of mono_image_open_full. Set status
11953         based on GetLastError.
11954         * coree.c: Include required headers. Add init_from_coree.
11955         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11956         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11957         (_CorExeMain): Set init_from_coree.
11958         (CorExitProcess): Only call ExitProcess for now.
11959         (CorBindToRuntimeEx): New stub implementation.
11960         (CorBindToRuntime): New function.
11961         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11962         (MonoFixupExe): ILONLY executables require no fixups.
11963         (mono_set_act_ctx): New function to set activation context.
11964         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11965         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11966         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11967         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11968         as MONO_INTERNAL.
11969         * domain-internals.h: Add mono_close_exe_image.
11970
11971         Contributed under MIT/X11 license.
11972
11973 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11974
11975         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11976         size for generic param and event tables. Fixes #388977.
11977
11978 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11979
11980         * loader.c (mono_method_signature): Use memory barriers because of the double
11981         checked locking pattern.
11982
11983         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11984         aborting or aborted as well. Fixes #376391.
11985         
11986         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11987         existing runtime state in the Suspend handler during shutdown.
11988
11989 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11990
11991         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11992
11993         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11994         which are starting up or shutting down.
11995
11996         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11997         this function never returns if the runtime is already shutting down.
11998
11999         * icall.c (ves_icall_System_Environment_Exit): Update after 
12000         mono_threads_set_shutting_down () signature change.
12001         
12002 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
12003
12004         * class.c: Added can_access_instantiation to verify if the instantiation
12005         is visible. Fix access check for nested types as they returned TRUE
12006         before doing type and generic instantiation visibility checks.
12007
12008 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12009
12010         * reflection.c (mono_reflection_create_generic_class): The created type
12011         must have a different container from its TypeBuilder. Otherwise they
12012         will end sharing generic arguments, which is wrong.
12013
12014         Due to the sharing, making a generic instance of the created type using
12015         the TypeBuider generic arguments resulted in the generic type definition
12016         been returned, which is wrong as well.
12017
12018         As a bonus the code was leaking the type_params array. This memory should
12019         be allocated from the image mempool.
12020
12021         This fixes bug #354047.
12022
12023 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
12024
12025         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
12026         to here         as they are now used in assembly.c new code.
12027         Added a skipverification flag to MonoAssembly.
12028         New internal function mono_assembly_has_skip_verification.
12029
12030         * assembly.c: New function mono_assembly_has_skip_verification. It checks
12031         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
12032         part of #387274.
12033
12034 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12035
12036         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
12037         needed. Fixes #387034.
12038
12039         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
12040
12041 2008-05-06  Miguel de Icaza  <miguel@novell.com>
12042
12043         * assembly.c (mono_assembly_load_reference): Prevent crash while
12044         disassembling Silverlight 2.0 executables while we still do not
12045         have GACed libraries.
12046
12047 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
12048
12049         * reflection.c: Special case generic type definitions as well. Fixes #383444.
12050
12051 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
12052
12053         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
12054         of the dynamic case. Fixes #387404.
12055
12056 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12057
12058         *verify.c (mono_verifier_is_class_full_trust): If under
12059         verify_all and the verifier mode was not set, only
12060         gac and corlib types are fulltrust. This makes --verify-all
12061         usable to detect unverifiable code, which is the expected
12062         use case.
12063
12064 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12065
12066         * verify.h: Ops, commited the header with debug
12067         enabled.
12068
12069 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12070
12071         * verify.c (merge_stack): Use the new value on unverifiable
12072         stack merges.
12073
12074         * verify.c (verify_type_compatibility_full): Comparison
12075         of nullable types can't use mono_class_is_assignable_from.
12076
12077         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12078         that makes all verification errors be reported.
12079
12080         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12081         mono_method_verify.
12082
12083 2008-05-05  Robert Jordan  <robertj@gmx.net>
12084
12085         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12086         support for value types. See #386415.
12087
12088         * object.c: comments.
12089
12090         Code is contributed under MIT/X11 license.
12091
12092 2008-05-05  Martin Baulig  <martin@ximian.com>
12093
12094         * debug-mono-symfile.h
12095         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12096         for old pre-terrania symbol files.
12097
12098 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12099
12100         * mono-config.c: Add ppc64 architecture.
12101
12102         Code is contributed under MIT/X11 license.
12103
12104 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12105
12106         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12107           PPC64 uses function descriptors as well.
12108
12109         Code is contributed under MIT/X11 license.
12110
12111 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12112
12113         * object.c (compute_class_bitmap): Ignore literal static fields.
12114
12115         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12116         var has an invalid format.
12117         (describe_ptr): Add some sanity checks for the vtable.
12118         (add_nursery_frag): Clear unused nursery fragments.
12119         (major_collection): Clear all remaining nursery fragments.
12120
12121 2008-05-03  Robert Jordan  <robertj@gmx.net>
12122
12123         * image.c, metadata-internals.h: add thunk_invoke_cache.
12124
12125         * marshal.c, marshal.h: implement
12126         mono_marshal_get_thunk_invoke_wrapper ().
12127
12128         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12129
12130         Code is contributed under MIT/X11 license.
12131
12132 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12133
12134         * verify.c (do_leave): Empty the stack.
12135
12136 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12137
12138         * class.c (mono_class_is_assignable_from): Variance
12139         doesn't work between reference and value types. For example,
12140         given type C<T+>, C<int32> is not assignable to C<object>.
12141         Break the argument checking loop on first error. 
12142
12143 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12144
12145         * icall.c : base64_to_byte_array() needs some more strict
12146           check for sequence of '=' characters. Patch by Santa
12147           Marta (http://deee.g.hatena.ne.jp/santamarta).
12148
12149           Contributed under MIT/X11 license.
12150           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12151
12152 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12153
12154         * domain.c: Disable LoadLibrary support to fix Win32 build.
12155
12156         Code is contributed under MIT/X11 license.
12157
12158 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12159
12160         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12161         to help with cache behaviour.
12162
12163 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12164
12165         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12166         method. 
12167
12168 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12169
12170         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12171
12172 2008-05-01  Dick Porter  <dick@ximian.com>
12173
12174         * process.c (process_get_fileversion): Only pass 16 bits of
12175         language ID to VerLanguageName.  Fixes bug 381204.
12176
12177 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12178
12179         * verify.c (mono_method_verify): Fix the comparison
12180         operator for code bounds check.
12181
12182 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12183
12184         * verify.c (mono_method_verify): Check the bounds of
12185         all access of the code array.
12186
12187 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12188
12189         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12190
12191 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12192
12193         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12194         not valid.
12195
12196 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12197
12198         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12199         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12200         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12201         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12202         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12203         mono_runtime_load.
12204         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12205         runtime initialization from metadata.
12206         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12207         (mono_set_rootdir): Use mono_get_module_file_name.
12208         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12209         handles.
12210         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12211         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12212         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12213         MonoCLIImageInfo. Add support for module handles.
12214         (load_cli_header): Update mono_cli_rva_image_map signature.
12215         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12216         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12217         (mono_image_rva_map): Add support for module handles.
12218         (mono_image_ensure_section_idx): Add support for module handles.
12219         (mono_image_close): Add support for module handles.
12220         (do_load_header): Add support for module handles.
12221         (mono_image_open_from_module_handle): New function for internal use.
12222         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12223         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12224         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12225         handles.
12226         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12227         * image.h: Add mono_image_fixup_vtable.
12228         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12229         support.
12230         * coree.h: New file.
12231         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12232         unsupported native code.
12233         (mono_marshal_set_callconv_from_modopt): New function splitted from
12234         mono_marshal_get_managed_wrapper.
12235         (mono_marshal_get_managed_wrapper): Use
12236         mono_marshal_set_callconv_from_modopt.
12237         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12238         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12239         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12240         that results in a deadlock when the runtime is loaded in _CorDllMain.
12241         * Makefile.am: Add coree.c and coree.h.
12242
12243         Contributed under MIT/X11 license.
12244
12245 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12246
12247         * generic-sharing.c: Search for type arguments in array element
12248         types as well.
12249
12250 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12251
12252         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12253
12254         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12255
12256         * object.c: Don't setup the RGCTX when the vtable is created,
12257         because we're setting it up lazily now.
12258
12259 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12260
12261         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12262         64 bit support.
12263
12264 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12265
12266         * verify.c (verify_class_for_overlapping_reference_fields): 
12267         If class is under fulltrust allow reference types to overllap
12268         if they have the same RVA.
12269
12270 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12271
12272         * pedump.c: Added new flag valid-only, that makes the verifier
12273         behaves just like --security=validil. It won't fail type load
12274         due to unverifiable restrictions.
12275
12276 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12277
12278         * class-internals.h (struct MonoMethod): Added a verification_success
12279         field to cache verifier executions. Reduced MonoMethod:slot size by
12280         one bit.
12281
12282 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12283
12284         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12285         instead of a 'vt' argument to save an indirection and to allow these to be used
12286         for valuetypes.
12287         (scan_vtype): New helper function to scan an area using a gc descriptor.
12288         (mono_gc_wbarrier_value_copy): Implement this.
12289         (handle_remset): Add support for REMSET_VTYPE.
12290         (find_in_remset_loc): Ditto.
12291         (mono_gc_base_init): Allow some debugging options to be controlled through the
12292         use of the MONO_GC_DEBUG env variable.
12293         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12294         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12295
12296 2008-04-23  Martin Baulig  <martin@ximian.com>
12297
12298         * domain.c (mono_domain_create): Move the call to
12299         mono_debug_domain_create() down, after allocating the domain id.
12300
12301 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12302
12303         verify.c (verify_class_for_overlapping_reference_fields): Skip
12304         static fields while verifying for overlapping fields as they
12305         don't matter at all.
12306
12307 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12308
12309         * domain-internals.h: added a declaration of
12310         mono_make_shadow_copy.
12311
12312         * assembly.c (mono_assembly_open_full): shadow copying of
12313         assemblies moved to here, so that all the assemblies within the
12314         application domain's private binary directories can be
12315         processed. Fixes bug #380546
12316
12317         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12318         mono_make_shadow_copy and made non-static. The decision whether
12319         to shadow-copy an assembly is made based on its location - it's
12320         copied if it's in one of the private application domain binary
12321         directories and its different to the target file in the shadow
12322         directory. Fixes bug #380546
12323
12324 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12325
12326         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12327
12328         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12329         types.
12330
12331         * reflection.c (mono_image_create_token): Handle 
12332         Method/ConstructorOnTypeBuilderInst.
12333         (resolve_object): Ditto.
12334         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12335         so it can be called from resolve_object. Also handle the case when the inflated
12336         class already has its methods setup.
12337
12338 2008-04-21  Martin Baulig  <martin@ximian.com>
12339
12340         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12341
12342 2008-04-20  Geoff Norton  <gnorton@novell.com>
12343
12344         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12345         pointer dereference.
12346
12347 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12348
12349         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12350         portability API to look up the assembly file. Fixes behavior in
12351         situations when the application has a bin/ directory, but the
12352         assembly search patch refers to Bin/ (and thus the requested file
12353         name is Bin/SomeLibrary.dll). Fixes bug #379888
12354
12355 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12356
12357         verify.c (mono_type_is_generic_argument): Extracted this check
12358         from a dozen places to here.
12359
12360         verify.c: Fixed all issues related to boxing generic arguments
12361         and their constraints.
12362
12363 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12364
12365         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12366
12367 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12368
12369         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12370         isn't finished yet. Fixes #363447.
12371
12372 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12373
12374         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12375         Fixes #346419.
12376
12377 2008-04-13  Jb Evain  <jbevain@novell.com>
12378
12379         * domain.c: update the 2.1 profile versions.
12380         Merged from the Moonlight 2 branch.
12381
12382 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12383
12384         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12385         mscorlibs for the non-refonly case as well.
12386
12387         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12388         in mono_assembly_load_from_full (). Fixes #378924.
12389
12390 2008-04-11  Geoff Norton  <gnorton@novell.com>
12391
12392         * icall.c: The global extern environ doesn't exist on Mac.  We
12393         need to call NSGetEnviron instead.
12394
12395 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12396
12397         verify.c: Add generic method constraint verification.
12398
12399 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12400
12401         class.c (mono_class_inflate_generic_method_full): Add a long
12402         explanation to the is_mb_open hack. Remove the FIXME.
12403
12404 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12405
12406         * verify.c (mono_method_verify): Mark all unknown opcodes
12407         as invalid. Mark jmp as unverifiable.
12408
12409 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12410
12411         * verify.c: Add code to do type constraint verification on class instances.
12412
12413         * verify.c (mono_verifier_verify_class): Use the type constraint 
12414         verification code.
12415
12416 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12417
12418         * class.c (mono_class_get_field_default_value): Don't pass cindex
12419         as hint to mono_metadata_get_constant_index. The local is not initialized
12420         and should contain garbage most of the time. This could only work
12421         with a lot of luck.
12422
12423 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12424
12425         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12426
12427 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12428
12429         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12430
12431         * class.c (mono_class_from_generic_parameter): Save the token of the
12432         generic param in MonoClass::sizes.generic_param_token.
12433
12434         * reflection.c (mono_custom_attrs_from_class): If the class type is
12435         VAR or MVAR retrieve the attributes of the generic param.
12436
12437 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12438
12439         * class.c (mono_class_init): Do class verification if the verifier
12440         is enabled.
12441
12442 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12443
12444         * verify-internal.h: Added mono_verifier_verify_class.
12445
12446         * verify.c: Added mono_verifier_verify_class. It checks for
12447         classes with explicit layout that have overlapping reference fields.
12448
12449         * pedump.c: Init the verifier state prior to verification. Fixed
12450         command line arguments.
12451
12452 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12453
12454         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12455
12456 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12457
12458         * verify-internals.h: Fix a warning.
12459
12460 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12461
12462         * verify-internals.h: New header with the verifier configuration
12463         extracted from mini.c.
12464
12465         * verify.c: Implemented the new functions exported by verify-internals.h.
12466
12467 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12468
12469         * verify.c: Add proper verification of ckfinite.
12470
12471 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12472
12473         * verify.c (do_conversion): Improved error message to something
12474         more meanfull.
12475
12476         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12477         with primitive types.
12478
12479 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12480
12481         * verify.c: Added tail prefix checking. Marked icall
12482         as unverifible.
12483
12484 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12485
12486         * verify.c: Fix the detection of branches to the middle
12487         of an instruction.
12488
12489 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12490
12491         * verify.c: Implemented verification of volatile. and
12492         unaligned. prefix. Check if a type is valid after retrieving it.
12493
12494 2008-04-01  Dick Porter  <dick@ximian.com>
12495
12496         * process.c (process_get_fileversion): If there's no string block,
12497         set the file language to en_US.  Fixes the other new part of bug
12498         374600.
12499
12500 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12501
12502         * class.c: New functions mono_method_can_access_field_full and
12503         mono_method_can_access_method_full. They perform type visibility
12504         and type site check.
12505
12506         * class-internal.h: Added exported functions.
12507
12508         * verify.c: Use new functions to implement proper visibility checks.
12509
12510 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12511
12512         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12513
12514 2008-03-28  Dick Porter  <dick@ximian.com>
12515
12516         * process.c (process_get_fileversion): Use the first language ID
12517         we see, rather than insisting on an invariant language.  Fixes bug
12518         374600.
12519
12520 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12521
12522         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12523         the streams to fix reading of invalid memory later.
12524
12525         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12526         to ease debugging.
12527
12528 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12529
12530         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12531         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12532
12533 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12534         * threads.h: Added MonoThreadManageCallback type and
12535         mono_thread_set_manage_callback prototype
12536         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12537         (used to store the mono_thread_manage callback).
12538         * threads.c: Added mono_thread_set_manage_callback, and handle
12539         "MonoThread->manage_callback" in build_wait_tids.
12540
12541 2008-03-26  Dick Porter  <dick@ximian.com>
12542
12543         * process.c (process_get_fileversion): Set FileVersionInfo strings
12544         to Empty when the resource doesn't have the particular info.
12545         Fixes bug 355717.
12546
12547 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12548
12549         * verify.c (mono_method_verify): Proper prefix validation.
12550
12551 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12552
12553         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12554         itself in a separate argument instead of throwing them. Fixes #373448.
12555
12556         * appdomain.c: Bump corlib version.
12557
12558 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12559
12560         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12561
12562 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12563
12564         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12565         version macros.
12566
12567 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12568
12569         * generic-sharing.c, class-internals.h: Code for putting
12570         reflection types into the runtime generic context.
12571
12572 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12573
12574         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12575         Fixes #340662. 
12576
12577
12578 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12579
12580         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12581
12582         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12583
12584         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12585
12586         * verify.c (do_cast): Let the result value keep the boxed status.
12587
12588         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12589
12590 2008-03-17  Jb Evain  <jbevain@novell.com>
12591
12592         * reflection.c: when running on a 2.0 runtime, emit
12593         unconditionally the #~ header version as 2.0, and the
12594         CLI header version as 2.5, for symmetry's sake with csc.
12595
12596 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12597
12598         * class.c: Remove the unused cache_interface_offsets stuff.
12599
12600         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12601         profiler.c: Fix warnings.
12602
12603 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12604
12605         * generic-sharing.c, class-internals.h: Support for putting
12606         methods into the runtime generic context.
12607
12608 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12609
12610         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12611         classes which are generic instances of not-yet finished typebuilders. Fixes
12612         #351172.
12613
12614         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12615
12616 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12617
12618         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12619
12620         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12621         field, replace it with a hash table in MonoDynamicImage.
12622
12623         * reflection.c (inflate_mono_method): Access the generic definition object from
12624         image->generic_def_objects instead of imethod->reflection_info.
12625
12626         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12627
12628         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12629         
12630         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12631         function in reflection.c so it is easier to keep in sync with the dynamic image
12632         creation code.
12633
12634         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12635         mono_image_close ().
12636
12637 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12638
12639         * class.c (mono_class_generic_sharing_enabled): Disable generic
12640         sharing for all architectures except AMD64 and x86 to fix build.
12641
12642 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12643
12644         * verify.c: Use the generic definition MonoGenericContext when available.
12645         Remove code for checking generics instance compatibility in favor of
12646         mono_class_is_assignable_from.
12647
12648 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12649
12650         * marshal.c, marshal.h, metadata-internals.h, image.c,
12651         wrapper-types.h: New wrapper for invoking a shared static method
12652         without having to pass the runtime generic context argument.
12653
12654 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12655
12656         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12657
12658 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12659
12660         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12661         
12662         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12663         create a token from a FieldOnTypeBuilderInst.
12664         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12665         (resolve_object): Ditto.
12666
12667         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12668         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12669
12670 2008-03-14  Martin Baulig  <martin@ximian.com>
12671
12672         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12673
12674         * debug-mono-symfile.h
12675         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12676         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12677
12678 2008-03-10  Martin Baulig  <martin@ximian.com>
12679
12680         * debug-mono-symfile.h
12681         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12682         `lexical_block_table_offset'.
12683         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12684         `lexical_blocks'.
12685         (MonoSymbolFile): Added `version'.
12686
12687         * mono-debug.h
12688         (MonoDebugLexicalBlockEntry): Removed.
12689         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12690         `lexical_blocks'.
12691
12692         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12693         blocks here; the debugger now does this internally.
12694
12695 2008-02-27  Martin Baulig  <martin@ximian.com>
12696
12697         * object.c (mono_runtime_exec_main): Call
12698         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12699         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12700
12701 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12702
12703         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12704         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12705
12706 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12707
12708         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12709         ldftn with a virtual method.
12710
12711 2008-03-13  Geoff Norton  <gnorton@novell.com>
12712
12713         * decimal.c:  Only include memory.h if the platform has it.
12714
12715 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12716
12717         * assembly.c, class.c, metadata-internals.h: make sure public key
12718         tokesns are compared in a case-insensitive way. Also, all
12719         the lookups in the GAC use a lowercase public key token
12720         (gaacutil already does the lowercasing on install). Fixes
12721         bug #369541.
12722
12723 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12724
12725         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12726         and return value.
12727
12728 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12729
12730         * image.c: when someone loads a mscorlib from a file, return the
12731         currently loaded mscorlib (fixes bug #369253).
12732
12733 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12734
12735         * class.c: handle types with no parents by forcing them to have
12736         System.Object as a parent and marking them as broken (this currently
12737         allows the first part of bug #369173 to work as well, likely because
12738         we don't check for typeload exceptions everywhere yet).
12739
12740 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12741
12742         * class.c: more complete check that types belong to corlib
12743         (fixes second part of bug #369173).
12744
12745 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12746
12747         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12748           "inline" to "__inline" before including mono-membar.h.
12749           
12750         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12751           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12752           MSVC builds.
12753
12754         Contributed under MIT/X11 license.
12755
12756 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12757
12758         * verify.c (do_invoke_method): Remove return type validation.
12759
12760         * verify.c (do_ret): Do return type validation at return site instead of
12761         call site.
12762
12763 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12764
12765         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12766
12767         * verify.c: Some todos cleaned and improved a few error messages.
12768
12769 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12770
12771         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12772
12773 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12774
12775         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12776         system types correctly.
12777
12778         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12779         function.
12780
12781 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12782
12783         * assembly.c (build_assembly_name): Fix a warning.
12784
12785 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12786
12787         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12788         the called function takes an object type argument. Fixes storing or
12789         valuetypes across remoting as well as reducing memory usage.
12790         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12791         stfld_remote wrapper caches.
12792
12793 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12794
12795         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12796         is not found.
12797
12798         * reflection.c (mono_image_register_token): New helper function to save
12799         a token->object mapping.        
12800
12801         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12802         managed code.
12803
12804         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12805         one dimension arrays. Fixes #367670.
12806         (mono_reflection_get_type_internal): Ditto.
12807
12808 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12809
12810         * marshal.c: mono_load_remote_field_new() always returns object.
12811         so use the proper signature (fixes bug #366445).
12812
12813 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12814         
12815         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12816         add an 'inline_failure' flag instead.
12817
12818 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12819
12820         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12821         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12822         contains the location of "this", used for exception handling.
12823
12824 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12825
12826         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12827         their size on all platforms for perf reasons.
12828
12829 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12830
12831         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12832         object-internal.h
12833
12834         * object-internal.h: Same.
12835
12836 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12837
12838         * reflection.h: Fix the build I just broke.
12839
12840 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12841
12842         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12843         Test if a token is valid, this remove explicit usage of 
12844         MonoDynamicImage::tokens from the verifier code.
12845
12846         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12847
12848         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12849         instead of direct access to MonoDynamicImage::tokens.
12850
12851 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12852
12853         * verify.c (token_bounds_check): Fix the build I just broke.
12854
12855 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12856
12857         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12858
12859         * verify.c (verifier_load_method): Fixed the errors message.
12860
12861         * verify.c (mono_method_verify): Fixed a debug message.
12862
12863 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12864
12865         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12866         mono-perfcounters.h, class-internals.h: support for predefined
12867         writable counters, query of categories and counters, bugfixes.
12868
12869 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12870
12871         * verify.c (do_refanytype): Verify the refanytype opcode.
12872
12873         * verify.c (mono_method_verify): Use do_refanytype.
12874
12875 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12876
12877         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12878
12879         * verify.c (mono_method_verify): Use do_mkrefany.
12880
12881 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12882
12883         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12884         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12885         implementation.
12886
12887 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12888
12889         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12890         the type load exception.
12891
12892 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12893
12894         * verify.c: Added a few FIXME for method signatures
12895
12896         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12897         of mono_method_get_signature and get vararg call working. Removed unused
12898         checks for return value.
12899
12900         * verify.c (do_refanyval): Verify the refanyval opcode.
12901
12902         * verify.c (mono_method_verify): Implemented verification of arglist and
12903         use do_refanyval.
12904
12905 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12906
12907         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12908         vtypes to marshal.c.
12909
12910         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12911         it works for AOT as well.
12912
12913 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12914
12915         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12916         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12917         the system time is adjusted.
12918
12919 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12920
12921         * icall.c, icall-def.h: use the new time functions (fixes the
12922         non-monotonic behaviour of TickCount).
12923
12924 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12925
12926         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12927         it breaks the build.
12928         
12929         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12930         cattr is not finished yet.
12931
12932 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12933
12934         * verify.c: Proper token validation for field, method and type.
12935
12936 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12937
12938         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12939
12940         * loader.c (method_from_memberref): Generate type load error instead of method missing
12941         if the type is not found.
12942
12943 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12944
12945         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12946         some of the conversions caused the generation of a marshal directive exception.
12947
12948 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12949
12950         verify.c: Report which exception should be thrown by the JIT.
12951         Added a lot of FIXME notes.
12952
12953 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12954
12955         * generic-sharing.c: Runtime generic context slots are not
12956         instantiated on init anymore.  Instead, provide function to do the
12957         instantiating on demand.
12958
12959         * class-internals.h: Added vtable to runtime generic context.
12960         Macros for encoding direct and indirect slot offsets in one
12961         guint32.
12962
12963 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12964
12965         * object.c, generic-sharing.c: Moved some generic sharing code
12966         from object.c to generic-sharing.c.
12967
12968         * generic-sharing.c: Added support for extensible runtime generic
12969         context.
12970
12971         * metadata-internals.h: Two new hash tables in MonoImage for
12972         extensible runtime generic context support.
12973
12974         * domain.c: Unregister generic vtables upon domain unloading.
12975
12976         * image.c: Destroy new hash tables upon image unloading.
12977
12978         * metadata.c: Unregister generic subclasses upon image unloading.
12979
12980         * class-internals.h: New data structure for runtime generic
12981         context template.  New fields in the runtime generic context for
12982         extensible part.
12983
12984         * Makefile.am: Added generic-sharing.c.
12985
12986 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12987
12988         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12989         there is a pending loader exception, raise it.
12990
12991         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12992         same.
12993
12994         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12995         same.
12996
12997         Fixes #363450.
12998
12999 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
13000
13001         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
13002
13003         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
13004         
13005         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
13006         ref-only requests for compatibility with MS.
13007
13008 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13009
13010         * reflection.c (mono_custom_attrs_from_method): Don't silently
13011         return an empty list for generic method instances.
13012         (mono_custom_attrs_from_param): Likewise.
13013
13014 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
13015             Raja R Harinath  <harinath@hurrynot.org>
13016
13017         Fix #354757
13018         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
13019         * class.c (mono_class_inflate_generic_method_full): Initialize it
13020         when a fully-open method is instantiated.
13021         * metadata.c (inflated_method_equal, inflated_method_hash): Update
13022         to new field.
13023         * reflection.c (inflate_mono_method): Don't create a temporary context.
13024
13025 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
13026
13027         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13028         Compute correct value, to prepare for imethod->reflection_info going away.
13029
13030 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
13031
13032         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
13033
13034 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13035
13036         * verify.c: Implement skip visibility flag.
13037
13038 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
13039
13040         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
13041         which contains an extra field to tell the kind of exception that should be thrown.
13042
13043         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
13044
13045 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
13046
13047         * loader.c (mono_method_get_param_names): Initialize 'klass' after
13048         'method' is updated.
13049
13050 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
13051
13052         * class.c (mono_class_layout_fields): Set class->min_align for classes using
13053         explicit layout as well. Fixes #360375.
13054
13055 2008-02-11  Geoff Norton  <gnorton@novell.com>
13056
13057         * loader.c: Guard and dereference against inflated generic methods
13058
13059 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
13060
13061         * class.c: Include Retargetable spec in assembly name.
13062         * assembly.c: Always include PublicKeyToken spec in assembly name
13063         (with value "null" if assembly is not signed), and include
13064         Retargetable spec.
13065         * icall-def.h: Added icall for Assembly.get_fullname.
13066         * icall.c: Added icall returning the fullname of an assembly.
13067
13068 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13069
13070         * class.c (mono_class_setup_vtable_general): Add a missing call to
13071         mono_class_setup_methods () which is needed in the AOT case.
13072
13073 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13074
13075         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13076         stack type of the given MonoType.
13077
13078         * verify.c (verify_type_compatibility_full): Handle the void type.
13079
13080         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13081         way stack merging works.
13082
13083         * verify.c (store_local): Improved verification message.
13084
13085         * verify.c (do_branch_op): If the merging is invalid, the method
13086         is unverifiable and not invalid. Improved error message.
13087
13088         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13089         a reference type diferent than System.Object. Improved error
13090         message.
13091
13092 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13093
13094         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13095
13096         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13097         type of an enum even if the argument is byref.
13098
13099         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13100         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13101
13102         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13103
13104         *verify.c (verify_type_compatibility_full): Make enum types
13105         compatible with their base types.
13106
13107         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13108         types are compatible for the special case of a boxed valuetype and
13109         System.Object.
13110
13111         * verify.c (verify_stack_type_compatibility): The function
13112         is_compatible_boxed_valuetype was extracted from here.
13113
13114         * verify.c (push_arg): Only set ctx->has_this_store if the method
13115         is not static.
13116
13117         * verify.c (do_ldelem): Fixed a typo in an error message and added
13118         strict check for mixing int32 and native int as the array type
13119         and ldelem type.
13120
13121         * verify.c (merge_stacks): Consider boxed valuetypes in the
13122         compatibility checks.
13123
13124 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13125         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13126
13127 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13128         *class.c: use_new_interface_vtable_code: renamed the env var to have
13129         a "MONO_" prefix, and fix the logic to enable it by default.
13130
13131 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13132         *class.c:
13133         mono_class_setup_vtable_general: rewrote the way in which interface
13134         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13135         makes the code more maintainable.
13136         For now the old code is still there, and can be activated setting
13137         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13138
13139 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13140
13141         * verify.c: guarded some debug functions around and #ifdef.
13142
13143         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13144
13145 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13146
13147         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13148         changes for now since they seem to break too many things.
13149
13150 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13151
13152         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13153         mono_marshal_find_nonzero_bit_offset): Added macro and function
13154         for finding the byte- and bit-offset of a bitfield within a
13155         struct.
13156
13157 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13158
13159         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13160         (mono_marshal_get_struct_to_ptr): Ditto.
13161
13162         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13163         cctor_signature.
13164
13165 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13166
13167         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13168         between methods for non-corlib types.
13169
13170 2008-02-02  Geoff Norton  <gnorton@novell.com>
13171
13172         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13173         generic parameters as well. (Fixes #342536)
13174
13175 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13176
13177         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13178
13179         * verify.c (do_invoke_method): Fix for calling with byref structs.
13180
13181         * verify.c (do_cast): push a boxed value type based on the type token and not
13182         the type of stack.
13183
13184 2008-01-31  William Holmes  <billholmes54@gmail.com>
13185
13186         * process.c (process_module_string_read): Check the size returned form 
13187           VerQueryValue to avoid out of memory exception. 
13188
13189 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13190
13191         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13192         Handle properly modules which are not in the moduleref table. Fixes
13193         #356938.
13194
13195 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13196
13197         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13198         the dynamic case which is now in managed code.
13199         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13200
13201         * marshal.c (mono_string_to_bstr): Fix a warning.
13202         (init_com_provider_ms): Ditto.
13203
13204         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13205
13206         * exception.c (mono_get_exception_out_of_memory): New helper function.
13207
13208 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13209
13210         * marshal.c: Add support for BSTR marshalling
13211         using other COM systems.
13212
13213         Code is contributed under MIT/X11 license.
13214
13215 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13216
13217         * object.c (mono_runtime_invoke_array): reverted previous
13218         commit as it breaks the build.
13219
13220 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13221
13222         * object.c (mono_runtime_invoke_array): Verify arguments for
13223         invalid types. Fixes #348522.
13224
13225 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13226
13227         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13228         non-final virtual calls using call. 
13229
13230         * verify.c (do_invoke): fixed some TODOs.
13231
13232         * verify.c (push_arg): set has_this_store for "ldarga 0".
13233
13234 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13235
13236         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13237         which belong to an inflated class. Fixes #356531.
13238
13239 2008-01-26  Robert Jordan  <robertj@gmx.net>
13240
13241         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13242         which resort to FindFirstFile when a certain error condition
13243         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13244         Code is contributed under MIT/X11 license.
13245
13246 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13247
13248         * marshal.c (emit_marshal_string): Fix out string marshalling
13249         to use specified encoding. Fixes #323900.
13250
13251         Code is contributed under MIT/X11 license.
13252
13253 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13254
13255         * class.c (mono_class_inflate_generic_method_full): Don't modify
13256         iresult->context after cache check.
13257
13258 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13259
13260         * class.c (mono_class_inflate_generic_method_full): Change the
13261         struct assignments to memcpy for better visibility and add some comments.
13262
13263 2008-01-23  Dick Porter  <dick@ximian.com>
13264
13265         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13266         procedure, and make it work on windows.
13267
13268 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13269
13270         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13271         a MonoReflectionTypeBuilder since it is always of that type.
13272
13273         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13274
13275         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13276
13277         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13278         
13279         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13280
13281         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13282
13283         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13284         instantiations from the type cache.
13285
13286 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13287
13288         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13289
13290         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13291
13292 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13293
13294         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13295
13296         * verify.c (mono_method_verify): removed old TODO
13297
13298 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13299
13300         * verify.c (do_newobj): add visibility check.
13301
13302 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13303
13304         * verify.c (do_load_function_ptr): add visibility check.
13305
13306 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13307         *class.c:
13308         mono_generic_class_get_class: hook profiler events.
13309         mono_field_get_offset: added to support heap-shot in the new profiler.
13310         *class.h: exported mono_field_get_offset.
13311         * reflection.c:
13312         mono_reflection_setup_internal_class: hook profiler events.
13313
13314 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13315
13316         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13317         argument here too and use it to avoid checking for pending exceptions if 
13318         possible.
13319
13320 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13321
13322         * assembly.c (build_assembly_name): add arg for passing the assembly
13323         flags. Do not consider a PublicKey with value "null" valid.
13324         (mono_assembly_name_parse_full): added boolean argument that will be
13325         set if the assembly name contains a PublicKeyToken spec. Added support
13326         for the Retargetable spec for which only Yes or No are allowed as valid
13327         value. Consider assembly name invalid if Retargetable spec is set, but
13328         either version, culture or public key (token) are not specified.
13329         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13330         with implementation in assembly.c.
13331         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13332         from MonoAssemblyName.
13333         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13334         introduced argument for mono_assembly_name_parse_full to know if the
13335         assembly name has a PublicKeyToken spec, and if it has instruct
13336         fill_reflection_assembly_name to use default value for keyToken (if
13337         PublicKeyToken is null).
13338
13339 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13340
13341         * verify.c (mono_method_verify): fixed ovf ops with
13342         float values. They are unverifiable now.
13343
13344 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13345
13346         * class.c (set_failure_from_loader_error): add BadImageException to the
13347         list of exceptions that can cause a type to fail to load.
13348
13349         * class.c (mono_class_get_exception_for_failure): same.
13350
13351 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13352
13353         * verify.c (in_any_exception_block): added, check if offset
13354         is part of any exception handling clause.
13355
13356         * verify.c (get_stack_type): added VAR and MVAR types.
13357
13358         * verify.c (do_stobj): better error messages.
13359
13360         * verify.c (do_cpobj): added, check cpobj.
13361
13362         * verify.c (do_initobj): added, check initobj.
13363
13364         * verify.c (do_sizeof): added, check sizeof.
13365
13366         * verify.c (do_localloc): added, check localloc.
13367
13368         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13369
13370 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13371
13372         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13373         save_lmf/restore_lmf opcodes.
13374
13375         * threads.c (mono_threads_install_notify_pending_exc): New function to
13376         install a callback notifying the JIT there is a pending exception on a thread.
13377         (mono_thread_request_interruption): Call the new callback.
13378         (mono_thread_get_and_clear_pending_exception): New function to return the
13379         exception pending on a thread.
13380
13381         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13382         to turn off checking for pending exceptions.
13383         (mono_marshal_get_native_wrapper): Ditto.
13384
13385 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13386
13387         * threads-types.h: Get rid of the unnecessary extern declarations.
13388
13389 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13390
13391         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13392         return field from parent class if not private.
13393         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13394         returns fields from parent class if they are not private.
13395         (method_nonpublic): added function to determine if a given method
13396         should be considered non-public. Returns false for private methods
13397         on parent class, and internal methods from parent on the 1.0 profile.
13398         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13399         use method_nonpublic function to determine whether method should be
13400         returned.
13401         (property_accessor_public): use newly introduced method_nonpublic
13402         function to determine whether accessor is non-public. 
13403         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13404         event from parent class if not private. Only return static event if
13405         Static flag is set, and only return static event from parent class if
13406         FlattenHierarchy flag is set.
13407         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13408         include non-private events from parent class.
13409
13410 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13411
13412         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13413         warning.
13414
13415 2008-01-16  Wade Berrier <wberrier@novell.com>
13416
13417         * security.c: Add assembly.h header to appease some warnings
13418
13419 2008-01-16  Dick Porter  <dick@ximian.com>
13420
13421         * process.c (process_module_string_read): Remove trailing null
13422         when saving string.
13423
13424 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13425
13426         * class-internals.h: A new data structure describing the layout of
13427         a runtime generic context (MonoRuntimeGenericContextTemplate).
13428
13429         * metadata-internals.h: Added a hash table to MonoDomain that maps
13430         from open generic classes to their runtime generic context
13431         templates.
13432
13433         * object.c: Building of the runtime generic context, including
13434         proper handling of generic type arguments of superclasses.
13435         Building of the runtime generic context according to the template.
13436
13437 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13438
13439         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13440         Fixes #350856.
13441
13442         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13443         mono_portability_find_file (). Fixes #325466.
13444         (mono_image_get_public_key): Fix a warning.
13445
13446 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13447
13448         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13449         Fixes #353550.
13450         (mono_class_from_name_case): Ditto.
13451
13452 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13453
13454         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13455           common storage for the tables used in the System/NumberFormatter class.
13456
13457 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13458
13459         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13460
13461 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13462
13463         * verify.c (get_boxable_mono_type): check if the token is valid.
13464
13465         * verify.c (set_stack_value): changed to add an error if an
13466         invalid type is set on stack. Changed all callers due to signature change.
13467
13468         * verify.c (do_stobj): implement stobj validation.
13469
13470 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13471
13472         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13473         set container->is_method, it was set earlier.
13474
13475         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13476         generic methods.
13477
13478         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13479         is_method of the generic container to TRUE for methods.
13480
13481 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13482
13483         * metadata.c (type_in_image): Handle type parameters properly.
13484
13485         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13486         memory ownership of this structure.
13487
13488 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13489
13490         * verify.c (get_boxable_mono_type): make typedref types been just
13491         unverifiable. check for void type.
13492
13493         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13494
13495         * verify.c (do_load_function_ptr): accept method spec tokens.
13496
13497 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13498
13499         * marshal.c (mono_class_native_size): Always set *align even if this is called
13500         recursively.
13501
13502 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13503
13504         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13505         out-of-date.
13506
13507 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13508
13509         * verify.c: removed some old unused tables. A huge bunch of small fixes
13510         to things found while testing the verifier with mono basic.
13511
13512         * verify.c (dump_stack_value): dump null literal flag to.
13513
13514         * verify.c (verify_type_compatibility_full): fix comparison
13515         for types that have a generic super type.
13516
13517         * verify.c (verify_stack_type_compatibility): fix compatibility
13518         between null literals and reference types. fix compatibility between
13519         boxed valuetypes and object. fix corner case test for enums.
13520
13521         * verify.c (do_cmp_op): proper verification of cgt.un in case
13522         of reference types.
13523
13524         * verify.c (do_invoke_method): fix error message.
13525
13526         * verify.c (do_store_indirect
13527
13528         * verify.c (check_is_valid_type_for_field_ops): proper verification
13529         of managed pointers to valuetypes and boxed valuetypes. proper verification
13530         of null literals.
13531
13532         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13533         allow token to be a reference type.
13534
13535         * verify.c (do_cast): proper handling of boxes valuetypes.
13536
13537         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13538         in object[].
13539
13540         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13541         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13542         fixed the decoding of unbox_any
13543
13544 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13545
13546         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13547
13548 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13549
13550         * verify.c (do_newobj): do delegate verification.
13551
13552         * verify.c (verify_delegate_compatibility): perform delegate
13553         verification.
13554
13555         * verify.c (verify_ldftn_delegate): perform tests related to
13556         ldftn delegates.
13557
13558         * verify.c (mono_delegate_signature_equal): perform the
13559         slightly diferent signature comparison required by delegates.
13560
13561         * metadata.c (mono_metadata_type_equal_full): added and exported
13562         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13563         allows signature only comparison.
13564
13565         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13566         as MONO_INTERNAL.
13567
13568 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13569
13570         * verify.c: added a bunch of stack_slot_* functions to
13571         make access to stack slot type easier. This is required to
13572         allow optional flags, like null literal, boxed value and
13573         this pointer.
13574         All access paths to IlStackDesc::stype have been changed 
13575         to use these new funcions.
13576         Removed a bunch of unused functions and cleared all warnings.
13577         This patch introduces the usage of the this pointer and 
13578         boxed value flags.
13579
13580 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13581
13582         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13583
13584 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13585
13586         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13587         match managed version.
13588
13589         * appdomain.c: Bump corlib version.
13590         
13591         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13592         argument.
13593
13594 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13595
13596         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13597         Set public key token to zero-length byte array if assembly is not
13598         strongnamed.
13599
13600 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13601
13602         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13603         writing a vtype array elem.
13604
13605 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13606
13607         * assembly.c (build_assembly_name): return FALSE if length of token is
13608         not 16 (if not "null").
13609         (mono_assembly_name_parse_full): return FALSE if value of version,
13610         culture, token or key is 0.
13611         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13612         specify whether public key and public key token must be set to default
13613         value (zero-length byte array) if not available. Set versioncompat to
13614         SameMachine. If public key is available or the default is set, then
13615         set PublicKey flag.
13616         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13617         is available, use empty byte array as default value. On the 2.0
13618         profile, use default value for public key token if not set.
13619         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13620         profile, use default value for public key if not set. On the 2.0
13621         profile, use default value for public key token if not set.
13622         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13623         default values for public key and public key token.
13624
13625 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13626
13627         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13628         field to keep it in synch with the managed object.
13629
13630         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13631         delegates. Fixes #351520.
13632
13633         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13634         contains defined memory.
13635         
13636         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13637
13638         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13639         
13640         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13641         of the GC data structures.
13642
13643         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13644
13645         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13646         
13647         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13648         barrier.
13649         (mono_array_clone_in_domain): Ditto.
13650         (mono_array_clone_in_domain): Ditto.
13651
13652         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13653         (cache_culture): Use a write barrier.
13654
13655         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13656         (ves_icall_get_property_info): Ditto.
13657
13658         * object.h (MONO_STRUCT_SETREF): New macro.
13659
13660         * class-internals.h (MonoStats): Add some GC statistics.
13661
13662         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13663
13664 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13665
13666         * exception.c (mono_exception_from_name_two_strings):
13667         Break from loop after method is found.
13668
13669 2008-01-04  Dick Porter  <dick@ximian.com>
13670
13671         * process.c (process_module_string_read): Rename variable to
13672         reflect correct usage, after fixing bug 345972.
13673
13674 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13675
13676         * verify.c (mono_type_create_fnptr_from_mono_method): 
13677         created a MonoType function pointer instance to be used during
13678         verification. The verifier releases this memory at end.
13679
13680         * verify.c (mono_method_is_constructor): extracted repeated
13681         checks for constructor into a single class.
13682
13683         * verify.c (do_push_field): use new extracted method
13684         for constructor check.
13685
13686         * verify.c (do_newobj): same.
13687
13688         * verify.c (do_ldftn): renamed to do_load_function_ptr
13689         and make it verify ldvirtftn too.
13690
13691         * verify.c (mono_method_verify: proper verification
13692         of ldvirtftn. release created MonoMethod instances.
13693
13694 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13695
13696         * verify.c (token_bounds_check): added.
13697
13698         * verify.c (do_ldftn): added.
13699
13700         * verify.c (mono_method_verify): proper verificartion of ldftn.
13701
13702 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13703
13704         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13705         than the table row count. It's the resposibility of the caller to
13706         make the bounds check and raise the correct error.
13707
13708         * metadata.c (mono_metadata_decode_row_col): Same.
13709
13710         * loader.c (mono_get_method_from_token): perform bounds check
13711         on token for methoddef table.
13712
13713 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13714
13715         * icall.c
13716         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13717         assert into a negative result, the managed code already coped with
13718         that.
13719
13720         Some folks on Windows reported this error. 
13721
13722 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13723
13724         * appdomain.c: Bump corlib version.
13725         * icall.c:
13726         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13727         CultureInfo.CreateCulture to create CultureInfo for name.
13728         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13729         create CultureInfo for name. Fixes bug #347174.
13730
13731 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13732
13733         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13734         flags.
13735
13736         * verify.c (is_valid_branch_instruction): allow branching to the
13737         first instruction of the protected block.
13738
13739         * verify.c (is_valid_cmp_branch_instruction): same.
13740
13741         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13742         avoid double initialization.
13743
13744         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13745         detect which cases the eval stack should just be copied.
13746
13747         * verify.c (mono_method_verify): check if the eval stack
13748         is empty when entering a protected block.
13749
13750 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13751
13752         * verify.c: added is_clause_in_range, is_clause_inside_range,
13753         is_clause_nested and verify_clause_relationship. They perform
13754         the verifications stated in P1 12.4.2.7.
13755
13756         * verify.c (mono_method_verify): remove some unused variables,
13757         add the new exception clause checks, add instruction border
13758         checks for protected block start/end, improved some error 
13759         messages and fixed a bug in the way invalid instruction access
13760         is detected.
13761
13762 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13763
13764         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13765         from GC 7.0 if available.
13766
13767         * object.c: Remove an unused define.
13768         
13769         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13770
13771         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13772
13773         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13774
13775         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13776
13777         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13778         to take the same arguments as the other make_descr functions.
13779
13780         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13781
13782         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13783         directly.
13784
13785         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13786         mini.c.
13787
13788         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13789         call to boehm-gc.c.
13790
13791         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13792
13793         * null-gc.c (mono_gc_register_root): Fix a warning.
13794
13795         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13796
13797         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13798         (mono_gc_base_init): Call GC_init ().
13799
13800         * null-gc.c: Define mono_gc_register_root () as a no-op.
13801
13802         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13803
13804 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13805
13806         * verify.c: add prototype for merge_stacks at top
13807
13808         * verify.c (do_switch): added.
13809
13810         * verify.c (merge_stacks): on some cases the stack merging
13811         was not happening properly. Unequal stack sizes at merge
13812         points should be invalid.
13813
13814         * verify.c (mono_method_verify): added more debug info on stack state.
13815         verify switch properly.
13816
13817 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13818
13819         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13820         marshal.h.
13821
13822         * boehm-gc.c marshal.c: Include method-builder.h.
13823
13824         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13825
13826         * marshal.c: Remove some code which is now in method-builder.c.
13827
13828 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13829
13830         * method-builder.c: New file, extraction of the method builder functionality 
13831         from marshal.c.
13832
13833         * marshal.c: Move the mb functions into method-builder.c.
13834
13835         * marshal.h marshal.c: Export some mono_mb_... functions.
13836
13837         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13838
13839         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13840         the caller.
13841
13842         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13843
13844         * loader.c (mono_field_from_token): Ditto.      
13845
13846         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13847         type as well.
13848         
13849         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13850         Fixes #342565.
13851
13852         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13853         a helper function for setting it.
13854
13855         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13856
13857         
13858         * assembly.c: Significally simplify code now that referenced assemblies are 
13859         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13860
13861         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13862         #349952.
13863
13864 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13865
13866         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13867         instructions that were target of branches or are at protected block boundaries.
13868
13869         * verify.c (in_same_block): handle filter clauses.
13870
13871         * verify.c (is_valid_branch_instruction): added. checks the target of
13872         instructions br or brtrue/false.
13873
13874         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13875         binary branch instructions such as beq and bge.
13876
13877         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13878         and made it pin the instruction as been part of the exception block.
13879
13880         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13881         of in_same_block.
13882
13883         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13884         of in_same_block.
13885
13886         * verify.c (do_ret): ret from a protected block is unverifiable and
13887         not invalid.
13888
13889         * verify.c (do_static_branch): verify br and br.s instructions.
13890
13891         * verify.c (merge_stacks): add extra param to support detection
13892         of branches in the middle of instructions.
13893         
13894         * verify.c (mono_method_verify): verify branches and exception blocks
13895         that target the middle of instructions. Proper verification of br and br.s.
13896
13897 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13898
13899         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13900         skip_visibility field.
13901         (reflection_methodbuilder_from_dynamic_method): Ditto.
13902
13903         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13904         registrations. Fixes #348193.
13905
13906         * threads.h: Move the internal mono_thread_get_pending_exception () to
13907         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13908
13909 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13910
13911         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13912         icall registration. Fixes #348193.
13913
13914         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13915         for corlib classes into object. Fixes #349621.
13916
13917 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13918
13919         * icall.c (property_accessor_nonpublic): new function to determine
13920         whether an accessor allows a property to be considered non-public.
13921         Returns false for private accessor(s) from parent class, and internal
13922         accessor(s) from parent on 2.0 profile (and higher).
13923         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13924         to determine whether property should be included if NonPublic flag
13925         is set. Fixes bug #349078.
13926
13927 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13928
13929         * verify.c (init_stack_with_value): added.
13930
13931         * verify.c (mono_method_verify): extracted common
13932         code for exception initialization into init_stack_with_value.
13933
13934         * verify.c (mono_method_verify): initialize the exception
13935         for handler clauses as well.
13936
13937         * verify.c (mono_method_verify): fix the exception clause
13938         ordering rules, it should use handler end offset and not
13939         start offset.
13940
13941 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13942
13943         * rawbuffer.c: remove useless warning.
13944
13945 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13946
13947         * threads.h, threads-types.h: move functions to the correct header
13948         (fixes bug#349952).
13949
13950 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13951
13952         * verify.c (mono_method_verify): proper verification
13953         of exception handling clauses ranges and fallthru in
13954         and out of protected blocks.
13955
13956 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13957
13958         * verify.c (mono_method_verify): fixed compilation issue.
13959
13960 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13961
13962         * verify.c (mono_method_verify): a printf slipped in, changed
13963         to use verifier debug macro.
13964
13965 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13966
13967         * verify.c (is_correct_leave): check for filter clauses.
13968
13969         * verify.c (do_filter): added.
13970
13971         * verify.c (mono_method_verify): property verification of leave.
13972
13973
13974 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13975
13976         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13977         Win32 build, until we figure out how to do the proper thing on
13978         Win32.
13979
13980 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13981
13982         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13983         by the previous patch.
13984         
13985         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13986         the assembly resolve handler for refonly assemblies.
13987
13988 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13989
13990         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13991         Make sure only one thread is allowed to commence shutdown, and
13992         don't allow new threads to be started once shutdown is in
13993         progress.
13994
13995 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13996
13997         * verify.c (is_correct_endfilter): added.
13998
13999         * verify.c (is_unverifiable_endfilter): added.
14000
14001         * verify.c (do_endfilter): added.
14002
14003         * verify.c (mono_method_verify): property verification of endfilter
14004         and fixed a corner case or endfinally.
14005
14006 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
14007
14008         * verify.h: new flags to support fail fast of unverifiable code and
14009         do non-strict verification. Non-strict verification is required to
14010         have MS runtime compatibility. There are a huge amount of unverifiable
14011         code that it accepts as verifiable. The strict mode verifies the code
14012         as the specs says.
14013         Non-strict mode will be required in cases where code needs to be
14014         accepted as verifiable but fails under strict mode.
14015
14016         * pedump.c: added support to fail fast and non-strict verification.
14017
14018         * verify.c: added support for both fail fast and non-strict verification.
14019
14020 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
14021
14022         * verify.c (is_correct_endfinally): added.
14023
14024         * verify.c (mono_method_verify): property verification of endfinally.
14025
14026 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14027
14028         * verify.c (in_any_block): check for filter clauses.
14029
14030         * verify.c (is_correct_rethrow): added.
14031
14032         * verify.c (mono_method_verify): property verification of rethrow.
14033
14034         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
14035
14036 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
14037
14038         * verify.c (do_throw): added.
14039
14040         * verify.c (mono_method_verify): property verification of throw
14041
14042 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
14043
14044         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
14045         assemblies. Fixes #346425.
14046
14047 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
14048
14049         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
14050         FieldBuilders.
14051
14052         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
14053
14054         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
14055         prevent asserts when this is called with a token which might not be valid.
14056
14057         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
14058         lookup_dynamic_token_class with valid_token == FALSE.
14059
14060         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
14061
14062         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
14063
14064         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14065         
14066 2007-12-10  Mark Probst  <mark.probst@gmail.com>
14067
14068         * gc.c: Don't delay threadpool thread finalization unless Mono is
14069         shutting down.
14070
14071 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14072
14073         * threads.c: turn an assert into a non-fatal warning.
14074
14075 2007-12-09  Robert Jordan  <robertj@gmx.net>
14076
14077         * icall.c (GetVirtualMethod): Add missing argument validation.
14078
14079 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14080
14081         * verify.c (do_cast): added.
14082
14083         * verify.c (mono_method_verify): property verification of castclass and isinst.
14084
14085
14086 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14087
14088         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14089
14090         * verify.c (do_stelem): added.
14091
14092         * verify.c (mono_method_verify): property verification of stelem.X.
14093
14094 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14095
14096         * class.c, class-internals.h: Introduce an environment variable
14097         (MONO_GENERIC_SHARING) through which the extent of generic code
14098         sharing can be controlled (share all classes, share only corlib
14099         classes, or share nothing).
14100
14101         * object.c: Only create runtime generic context for classes for
14102         which sharing is enabled.
14103
14104 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14105
14106         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14107
14108         * verify.c (mono_method_verify): property verification of ldelem.any.
14109
14110 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14111
14112         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14113         added ldelem.X opcodes.
14114
14115         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14116
14117         * verify.c: proper verification of ldelem.X 
14118
14119 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14120
14121         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14122
14123 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14124
14125         * verify.c (mono_method_verify): null literal requires special handling,
14126         the value pushed on stack need to be flagged as so.
14127
14128         * verify.c (do_ldelema): Verify ldelema properly.
14129
14130 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14131
14132         * verify.c: Verify ldlen properly.
14133
14134 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14135
14136         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14137         to the target object's type. Fixes #346160.
14138
14139 2007-12-05  Dick Porter  <dick@ximian.com>
14140
14141         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14142         Solaris needs the same workaround as BSD-derived systems.  Fixes
14143         bug 323524, patch by Burkhard Linke
14144         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14145
14146 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14147
14148         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14149         handle to use when error dialog is shown; otherwise, update mask
14150         to show no error dialog when an error occurs.
14151
14152 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14153
14154         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14155
14156         * class.c (mono_class_get_field_default_value): New helper function to initialize
14157         field->def_type and field->data.
14158
14159 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14160
14161         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14162         the general one.
14163
14164         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14165
14166         * marshal.c: Avoid depending on delegate->method_info being set.
14167
14168         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14169         
14170         * object.c (mono_delegate_ctor): Set delegate->method.
14171
14172         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14173
14174         * appdomain.c: Bump corlib version.
14175
14176 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14177
14178         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14179         equality check if we're comparing canonicalized MonoGenericInsts.
14180
14181 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14182
14183         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14184         accessing class->methods.
14185
14186 2007-11-22  Dick Porter  <dick@ximian.com>
14187
14188         * threads.c: Ensure that the synch_cs is set before trying to use
14189         it.
14190
14191 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14192
14193         * profiler.c: r89126 broke the statistial profiler, unbreak.
14194
14195 2007-11-22  Martin Baulig  <martin@ximian.com>
14196
14197         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14198
14199         * mono-debug.c
14200         (mono_debug_debugger_version): Bump to 3.
14201         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14202         -> mono_debugger_class_initialized().
14203
14204         * mono-debug-debugger.c
14205         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14206
14207         * class.c
14208         (mono_debugger_start_class_init_func): Removed.
14209         (mono_debugger_class_loaded_methods_func): Added.
14210         (mono_class_setup_methods): Call it here.
14211
14212 2007-11-22  Martin Baulig  <martin@ximian.com>
14213
14214         * mono-debug.c
14215         (mono_debug_add_delegate_trampoline): New public method.
14216         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14217
14218         * mono-debug.h
14219         (MonoSymbolTable): Added `global_data_table'.
14220         (MonoDebuggerTypeKind): Removed.
14221
14222 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14223
14224         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14225         these methods.
14226
14227         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14228         
14229 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14230
14231         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14232
14233 2007-11-20  Martin Baulig  <martin@ximian.com>
14234
14235         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14236
14237         * mono-debug-debugger.c
14238         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14239         (mono_debugger_remove_breakpoint): Likewise.
14240         (mono_debugger_check_breakpoints): Likewise.
14241         (mono_debugger_register_class_init_callback): New public method.
14242         (mono_debugger_remove_class_init_callback): Likewise.
14243         (mono_debugger_add_type): Likewise.
14244
14245         * mono-debug-debugger.h
14246         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14247
14248 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14249
14250         * class.c: more interface implementations needed for the
14251         array enumerator (fixes bug #341112).
14252
14253 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14254
14255         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14256         fix ParamName of ArgumentNullExceptions.
14257
14258 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14259
14260         * reflection.c (mono_reflection_encode_sighelper): Generate the
14261         modopts and modreqs.   I have a useless test that crashes monodis,
14262         but that shows the code working.
14263
14264 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14265
14266         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14267         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14268
14269 2007-11-15  Dick Porter  <dick@ximian.com>
14270
14271         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14272         When joining a thread, it's the thread that's calling Join that
14273         gets WaitSleepJoin state not the target.  Fixes the standalone
14274         test case in bug 334740, and hopefully the whole bug too.
14275
14276 2007-11-15  Dick Porter  <dick@ximian.com>
14277
14278         * process.c: Read file version info from the files pointed at by
14279         process modules, not the current process.  Fixes bug 315969.
14280
14281         Use windows typedef names in some places to fix warnings on the
14282         windows build.
14283
14284 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14285
14286         * image.c, metadata-internals.h: Added a generic_class_cache hash
14287         to MonoImage for looking up generic classes when sharing generics.
14288
14289 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14290
14291         * sgen-gc.c: warning cleanups.
14292
14293 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14294
14295         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14296         inherited properties.
14297
14298 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14299
14300         * object.c, class-internals.h: Added more information to the
14301         runtime generic context.
14302
14303 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14304
14305         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14306         instead of just the target method. Generalize the abstract method handling to
14307         handle any non-static method.
14308
14309         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14310         mono_marshal_get_delegate_invoke () signature change.
14311
14312 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14313
14314         * class.c, class-internals.h: Made
14315         mono_type_get_basic_type_from_generic () public.  Fixed member
14316         access check for shared generics.
14317
14318         * loader.c: Don't insert field into field cache if it's part of a
14319         non-inflated generic class.
14320
14321         * domain.c, domain-internals.h: The generic sharing context is now
14322         part of the jit info data structure.  Added two accessor
14323         functions.
14324
14325 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14326
14327         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14328         the array Get/Set/Address methods, since the JIT inlines them.
14329
14330         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14331
14332         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14333         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14334
14335         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14336         mono_marshal_get_delegate_invoke signature change.
14337
14338         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14339         an additional argument. Add support for invoking abstract methods.
14340
14341         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14342
14343         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14344
14345 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14346
14347         * class.c: Do field layout for open generic classes as well.
14348
14349 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14350
14351         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14352         other objects, because the threadpool is still around.  Put them
14353         in a list instead and after finalizing all other objects in the
14354         root domain shut down the thread pool and then finalize the
14355         threads.  Fixes bug #337383.
14356
14357         * threads.c, thread-types.h: New mono_thread_create_internal()
14358         function for marking a thread with the threadpool flag before it
14359         started.  Set synch_cs to NULL after freeing it.
14360
14361         * threadpool.c: Mark threadpool threads before they start.
14362
14363 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14364
14365         * reflection.h, reflection.c: don't export random functions
14366         and lazy load dbnull and missing objects.
14367
14368 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14369
14370         * class.c: Initialize COM types if COM interfaces
14371         are present (not just COM classes).
14372         
14373         Code is contributed under MIT/X11 license.
14374
14375 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14376         * reflection.c:
14377         create_dynamic_mono_image: hook module profiler events (dynamic case).
14378         mono_image_basic_init: hook assembly profiler events (dynamic case).
14379
14380 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14381         * profiler.c:
14382         simple_appdomain_unload: completely terminate the profiler
14383         instead of only processing the statistical samples.
14384         simple_shutdown: make sure this is really called exactly once,
14385         even in multithreaded applications, and always listen to
14386         appdomain events.
14387         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14388         here, the "[un]load" functions will do it.
14389         Fixes bugs #333791 and #325261.
14390
14391 2007-11-07  Geoff Norton  <gnorton@novell.com>
14392
14393         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14394         rather than depend on __APPLE__.
14395
14396 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14397
14398         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14399
14400 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14401
14402         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14403         UTF16 MonoString. Fix the crash from bug #335488
14404
14405 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14406
14407         * marshal.c: Correct (for non-Win32 OS) length != size in 
14408         mono_string_from_bstr. Fix #339530.
14409
14410 2007-11-06  Geoff Norton  <gnorton@novell.com>
14411
14412         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14413         to succeed
14414
14415 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14416
14417         * process.c: Added run-time GetProcessId API detection for Windows.
14418
14419 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14420
14421         * reflection.c  (mono_param_get_objects): If a parameter has the
14422         attribute [System.Runtime.InteropServices.Optional] we should
14423         set the DefaultValue of the ParameterInfo to be
14424         System.Reflection.Missing instead of DBNull.
14425
14426         See bug #339013.
14427
14428         (mono_get_reflection_missing_object): New method,
14429         returns the System.Reflection.Missing.Value singleton instance.
14430
14431 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14432
14433         * culture-info-table.h : regenerated.
14434
14435 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14436
14437         * icall.c: Use GetEnvironmentStrings on windows
14438         so we are using the same environment block as 
14439         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14440         #333740.
14441         
14442         Code is contributed under MIT/X11 license.
14443
14444 2007-10-31  Martin Baulig  <martin@ximian.com>
14445
14446         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14447
14448         * mono-debug-debugger.h
14449         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14450
14451 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14452
14453         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14454         classes.
14455
14456 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14457
14458         * culture-info-table.h : regenerated.
14459
14460 2007-10-30  Robert Jordan  <robertj@gmx.net>
14461
14462         * icall-def.h, icall.c:
14463         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14464
14465         Code is contributed under MIT/X11 license.
14466
14467 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14468
14469         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14470         inflated class instead of inflating them again.
14471         
14472         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14473         dynamic case.
14474
14475         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14476         Call setup_supertypes () after klass->parent is set.
14477         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14478
14479         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14480         for inflated instances of not yet created dynamic generic classes.
14481         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14482         times from inflated_method.
14483         (methodbuilder_to_mono_method): Ditto.
14484
14485 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14486
14487         * gc.c: code cleanup and removed old untested option of not creating the
14488         finalizer thread.
14489
14490 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14491
14492         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14493         creating a jump trampoline for dynamic methods.
14494
14495 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14496
14497         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14498         generic TypeBuilders when called from another method of the same type (bug #335131).
14499
14500
14501 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14502
14503         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14504         doesn't seem to work perfectly.
14505         
14506         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14507         called multiple times.
14508         (methodbuilder_to_mono_method): Ditto.
14509         (resolve_object): Inflate FieldBuilder's.
14510
14511 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14512
14513         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14514         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14515         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14516
14517 2007-10-26  Dick Porter  <dick@ximian.com>
14518
14519         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14520         Thread initialisation changes
14521
14522 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14523
14524         * verify.c: fix compatibility check between arrays and System.Array
14525
14526 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14527
14528         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14529         too. Fixes #336999.
14530
14531 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14532
14533         * object.c (mono_value_box): Use typed allocation here.
14534
14535 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14536
14537         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14538         trampoline instead of compiling the method right away.
14539
14540         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14541
14542 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14543
14544         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14545         related fields for dynamic classes. Fixes #334493.
14546
14547 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14548
14549         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14550         
14551         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14552
14553         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14554         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14555
14556         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14557
14558         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14559         if needed.
14560         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14561
14562 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14563
14564         * marshal.c: Use correct key when removing item
14565         from ccw_hash.
14566         
14567         Code is contributed under MIT/X11 license.
14568
14569 2007-10-17  William Holmes  <billholmes54@gmail.com>
14570
14571         *marshal.c: Adding a case to marshal booleans to U1
14572
14573         Code is contributed under MIT/X11 license.
14574
14575 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14576
14577         * class.c (mono_class_from_name): Search the modules compromising dynamic
14578         assemblies. Fixes #331601.
14579
14580 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14581
14582         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14583         exception if the type name contains an assembly component. Fixes #334203.
14584
14585         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14586         modules inside dynamic assemblies. Fixes #334200.
14587         
14588         * reflection.c: Set image->public_key and image->public_key_length;
14589
14590         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14591         fields.
14592
14593         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14594         
14595 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14596
14597         * metadata.c: Implemented correct comparing of generic classes.
14598         An inflated generic class can be equal to a non-inflated one if it
14599         is inflated with generic type variables as type arguments.  Fixes
14600         bug #333798.
14601
14602 2007-10-15  Dick Porter  <dick@ximian.com>
14603
14604         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14605         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14606         81646.
14607
14608         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14609         instead of a monitor lock.  This means that monitor_try_enter and
14610         co can set the thread state safely.
14611         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14612         thread_interrupt_requested, so interrupt actually works.
14613
14614         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14615         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14616         state accessor function
14617
14618 2007-10-15  Martin Baulig  <martin@ximian.com>
14619
14620         * mono-debug.h
14621         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14622         the debugger with the current runtime.
14623
14624 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14625
14626         * object.c, object-internals.h: added the ability to set a single
14627         trampoline for all the slots in a vtable.
14628
14629 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14630
14631         * marshal.c: deal with a possible race condition during multicast
14632         delegate invocation.
14633
14634 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14635
14636         * class.c: ensure value type methods don't have the synchronized
14637         flag set.
14638
14639 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14640
14641         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14642         breaks the build.
14643
14644 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14645
14646         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14647         to take an options parameter so that empty entries can be removed during
14648         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14649
14650 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14651
14652         * marshal.c: make sure we don't store the signature from a dynamic
14653         method into the runtime invoke cache (bug #327189).
14654
14655 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14656
14657         * marshal.c: make sure the wrapper methods are properly initialized.
14658
14659 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14660
14661         * metadata.c, metadata-internals.h: Generalized
14662         mono_type_stack_size() to mono_type_stack_size_internal() which
14663         takes an additional argument specifying whether it allows open
14664         types.
14665
14666 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14667
14668         * verify.c (do_invoke_method): handle typedbyref params
14669         correctly and check for unverifiable return values.
14670
14671         * verify.c (do_newobj): fix a warning.
14672
14673 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14674
14675         * verify.c: don't tread typedbyref as allways unverifable,
14676         so uses, like (ld/st)loc.0 are valid. verify for the cases
14677         that it matters, like boxing related operations.
14678
14679 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14680
14681         * verify.c: add verification of the newobj opcode. verification
14682         of delegate instantation still missing due ldftn and virldftn not
14683         pushing the function type on stack
14684
14685 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14686
14687         * class-internals.h: Runtime generic context data structure
14688         definition.
14689
14690         * object.c: Initialization of runtime generic context at runtime
14691         vtable creation time.
14692
14693 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14694         * class.c (mono_class_create_from_typedef,
14695         mono_class_from_generic_parameter, mono_ptr_class_get,
14696         mono_fnptr_class_get, mono_bounded_array_class_get)
14697         * domain.c (mono_domain_create, mono_domain_free)
14698         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14699         * image.c (do_mono_image_load, mono_image_close):
14700         Hooked up load-unload profiler events.
14701
14702 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14703
14704         * domain.c: track statistics about the actual amount of native code
14705         allocated.
14706
14707 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14708
14709         * class.c: the valuetype enumerators don't have the additional
14710         supertypes interfaces.
14711
14712 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14713
14714         * class.c: need more interfaces setup for the IEnumerator<T>
14715         object created for arrays (tests/ienumerator-interfaces.2.cs).
14716
14717 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14718
14719         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14720
14721 2007-10-05  Alp Toker  <alp@atoker.com>
14722
14723         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14724         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14725         #315863.
14726
14727 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14728
14729         * verify.c (verify_type_compatibility_full): verification of
14730         compatibility improved, validates correctly non-strict checks between
14731         native int and I4 types different than (unsigned)int32.
14732
14733         * verify.c (do_store_indirect): added, do all verification of
14734         ldind.X opcodes. 
14735
14736         * verify.c (get_load_indirect_mono_type): renamed to
14737         get_indirect_op_mono_type, as it now returns the MonoType for 
14738         ldind.X and stind.X opcodes.
14739
14740 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14741
14742         * reflection.c: Fix the encoding of generic type definition for
14743         TypeBuilders.
14744
14745         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14746         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14747         be made. Typespec check is done prior to typeref cache lookup.
14748
14749         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14750         mono_image_typedef_or_ref_full.
14751
14752         * reflection.c (encode_generic_class): encode the generic class
14753         directly instead of calling encode_type.
14754
14755         * reflection.c (encode_type): encode the generic type definition
14756         MonoClass as a generic instantiation.
14757
14758         * reflection.c (create_typespec): cache typespec tokens in
14759         the assembly->typespec cache. Don't create typespec for a generic
14760         instance MonoClass. Create typespec for the generic type defintion.
14761
14762         * reflection.c (create_generic_typespec): encode the generic
14763         class directly instead of calling encode_type.
14764
14765         * reflection.c (mono_image_create_token): encode the generic
14766         type definition not using a typespec for MonoType instances.
14767
14768
14769 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14770
14771         Fix #328812
14772         * class.c (mono_image_init_name_cache): Don't return nested
14773         'protected internal' classes.
14774         (mono_class_from_name_case): Likewise.
14775
14776 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14777
14778         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14779           common function used by both DefaultConfig in System.dll and
14780           InternalConfigurationHost in System.Configuration.dll.
14781
14782 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14783
14784         * class.c: automatically add to vectors only a few essential explicit
14785         generic interfaces. The rest of the interfaces that arrays should
14786         provide are currently implicitly added (but still not lazily, see the
14787         design in the discussion of bug#325495 for the details of what is
14788         needed for that). Additionally, implicit interfaces are assigned the
14789         same vtable slot as the explicit interfaces (as they are compatible):
14790         this enables huge memory savings since we don't need to instantiate
14791         as many memthods and as large vtables anymore. Also, Since
14792         GetEnumerator<T> returns an instance of a type that is required to
14793         support a similarly large set of interfaces as arrays, we add
14794         implicit interfaces and interface offset sharing support to those
14795         types, too. This change adds all the required interfaces so that
14796         the anonarray.cs test case in the bug report works (we don't add
14797         all the interfaces to arrays of arrays 3-level deep and more because
14798         of the memory requirements explained in the bug and since they are much
14799         less common: the lazy-loading support will enabled them to work, too).
14800
14801 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14802
14803         * verify.c (merge_stacks): major clean up, all type compatibility
14804         checks are done by verify_type_compatibility. This fix my earlier lack
14805         of understanding of the CLR type system and merge_stacks no longer looks
14806         scary.
14807
14808         * verify.c: fixed some bad spelling.
14809
14810 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14811
14812         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14813         a given stack slock.
14814         
14815         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14816         verify_type_compatibility_full. This removed a near indentical function and fixed
14817         handling of Int32 and IntPtr across all opcodes.
14818
14819 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14820
14821         * class.c: only vectors have the additional generic interfaces.
14822
14823 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14824
14825         * mono-config.c: Use g_strcasecmp instead of
14826         strcasecmp like everywhere else to fix
14827         compilation with MSVC.
14828         
14829         Code is contributed under MIT/X11 license.
14830
14831 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14832
14833         * object.c, object-internals.h: refactored the IMT code to enable
14834         building a single slot at a time and lazily creating the IMT trampolines
14835         and thunks.
14836
14837 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14838
14839         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14840
14841         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14842         Fixes #328501.
14843         
14844 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14845
14846         * loader.c (method_from_methodspec): Rearrange to avoid
14847         un-necessary exposition.  Don't assert out if the method's
14848         declaring type is a generic type definition.
14849
14850 2007-09-28  Martin Baulig  <martin@ximian.com>
14851
14852         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14853
14854 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14855
14856         * class-internals.h: optimize field layout of MonoClass to
14857         requires less cachelines at runtime and save a few bytes on 64 bit
14858         systems.
14859
14860 2007-09-28  Jb Evain  <jbevain@novell.com>
14861
14862         * reflection.c: when encoding type names in custom attributes,
14863         if the type is a closed generic type, its generic arguments
14864         have to be serialized as AssemblyQualifiedName, so that when
14865         they are deserialized, it's possible to re-create them properly.
14866         Fixes #329450.
14867
14868
14869 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14870
14871         * object.c, class-internals.h: added delegate-creation counter.
14872
14873 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14874
14875         * class.c: cleanup of the code that synthetizes interfaces for
14876         arrays in 2.0: saves quit a bit of corlib mempool memory.
14877         Code to fix bug #325495 ifdeffed out for now until the issues
14878         with memory usage and O(n^2) behaviour are fixed.
14879
14880 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14881
14882         * marshal.c: when possible, do not duplicate the name of the methods
14883         in the method builder and in the generated MonoMethod.
14884
14885 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14886         * verify.c: added support for type checking ldind_* opcodes.
14887
14888 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14889
14890         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14891         which is used to distinguish the fully open instantiation of a TypeBuilder
14892         with the rest. This temporary hack is required to restore the property that
14893         the fully open instantiation is the same type of the generic type definition.
14894
14895         * class-internals.h (mono_generic_class_is_generic_type_definition):
14896         new function as part of the internal API.
14897
14898         * class.c (inflate_generic_type): return NULL when the generic inst is
14899         fully open. The fully open generic type is now the same as the generic type
14900         definition for non TypeBuilder types.
14901
14902         * class.c (mono_generic_class_get_class): removed assert since it is
14903         no longer valid, gklass->cached_class can point to the generic type definition.
14904
14905         * class.c (mono_generic_class_is_generic_type_definition): new.
14906
14907         * metadata.c (mono_generic_class_hash): added is_tb_open field
14908         to the hash calculation.
14909
14910         * metadata.c (free_generic_class): if the generic class is associated
14911         with the generic type definition, its field will come from the mempool and
14912         must not be freed.
14913
14914         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14915         new, this function identifies the corner case of a TypeBuilder fully open
14916         instantiation.
14917
14918         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14919         for lookup. Set gclass->cached_class to be the container class in case of
14920         the fully open instantiation of non TypeBuilder types.
14921
14922         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14923         to compare generic classes.
14924
14925         * reflection.c (method_encode_methodspec): remove assert that
14926         no longer is valid.
14927
14928         * reflection.c (mono_reflection_generic_class_initialize): add
14929         an aditional assert to ensure the proper type is used.
14930
14931 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14932
14933         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14934         to enjoy it.
14935
14936 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14937
14938         * verify.c (push_arg): Fixed support for ldarga
14939         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14940         MonoType used as first arg in case of instance calls.
14941
14942 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14943
14944         * verify.c: Support for verifying VAR and MVAR types, 
14945
14946 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14947
14948         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14949         accessors correctly.
14950
14951 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14952
14953         * threads.c: support OSX and other systems in
14954         mono_thread_get_stack_bounds (bug #328026).
14955
14956 2007-09-25  Martin Baulig  <martin@ximian.com>
14957
14958         * mono-debug.h
14959         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14960
14961 2007-09-24  Martin Baulig  <martin@ximian.com>
14962
14963         * mono-debug.h
14964         (MonoDebugClassEntry): Moved the definition of this struct into
14965         mono-debug.c to make it private.
14966
14967         * mono-debug.c
14968         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14969         type table per symbol file, we don't need to store the symfile id
14970         any longer.
14971
14972 2007-09-24  Martin Baulig  <martin@ximian.com>
14973
14974         Create one type table per symbol file, since a `MonoClass *' gets
14975         invalid when its image is unloaded.
14976
14977         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14978         (MonoDebugHandle): Added `type_table'.
14979
14980 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14981
14982         * mempool.c, mempool.h: added mono_mempool_new_size () API
14983         to be able to specify a smaller initial size for the pool.
14984         Adjusted the code to slowly increase pool size before using
14985         the previous default size.
14986         * image.c: use a small initial size for image mempools.
14987
14988 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14989
14990         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14991         Fixes ##320990.
14992
14993         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14994         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14995
14996 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14997
14998         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14999         free. Fixes #327438.
15000
15001 2007-09-21  Raja R Harinath  <harinath@gmail.com>
15002
15003         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
15004         generic instantiations, etc.
15005         <MONO_TYPE_ARRAY>: Likewise.
15006
15007 2007-09-21  Martin Baulig  <martin@ximian.com>
15008
15009         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
15010         these structs were never defined.
15011         (MonoDebugHandle): Removed the `_priv' field, it was never used.
15012
15013 2007-09-21  Martin Baulig  <martin@ximian.com>
15014
15015         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
15016
15017 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
15018
15019         * image.c: removed the guid hash tables: we can get the same info
15020         without the additional memory usage hit (partially fixes also bug #327052).
15021
15022 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15023
15024         * profiler.h, profiler-private.h, profiler.c: add a new profiler
15025         event to handle unloading methods. After the event is called, the
15026         corresponding MonoMethod* must be considered invalid.
15027         * loader.c (mono_free_method): call the new mono_profiler_method_free
15028         event.
15029
15030 2007-09-20  Mark Probst  <mark.probst@gmail.com>
15031
15032         * domain-internals.h: New flag in MonoJitInfo which marks shared
15033         generic methods.  New hash table (shared_generics_hash) in
15034         MonoDomain to keep track of shared generic methods.  Prototypes
15035         for functions to register and lookup shared generic methods.
15036
15037         * domain.c: Support for registering and looking up shared generic
15038         methods via a hash table (shared_generics_hash) in MonoDomain.
15039
15040         * class-internals.h: New exception to signal failure of shared
15041         compilation of a generic method.  New counters for generics
15042         sharing in MonoStats.
15043
15044 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
15045
15046         * image.c, metadata-internals.h: don't keep a file descriptor open
15047         for loaded assemblies (bug#325988).
15048
15049 2007-09-19  Raja R Harinath  <rharinath@novell.com>
15050
15051         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
15052         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
15053         use the corresponding datatypes.
15054         (type_in_image): Update to changes.
15055         (CleanForImageUserData): Simplify.
15056         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
15057         Avoid quadratic behaviour in handling the "stolen" list by
15058         separating the filter predicate out, and by prepending the stolen
15059         items rather than appending them.
15060         (steal_ginst_in_image): Likewise.
15061         (mono_metadata_clean_for_image): Update to changes.
15062
15063 2007-09-19  Martin Baulig  <martin@ximian.com>
15064
15065         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
15066
15067 2007-09-19  Martin Baulig  <martin@ximian.com>
15068
15069         * mono-debug.c (mono_debug_cleanup): Don't call
15070         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15071
15072 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15073
15074         Fix crash on 'make run-test' in mcs/errors
15075         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15076         Avoid more potential allocations in mono_class_from_mono_type.
15077         (ginst_in_image): Update to changes.
15078         (gclass_in_image): Rearrange slightly.
15079
15080 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15081
15082         * class.c (mono_class_init): Move the code that sets up class->methods to 
15083         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15084
15085         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15086         canonical instance of an inflated generic signature.
15087         (mono_type_create_from_typespec): Remove an invalid free.
15088
15089         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15090
15091 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15092
15093         * domain-internals.h: added a declaration of the
15094         mono_assembly_load_full_nosearch internal function.
15095
15096         * assembly.c (mono_assembly_load_with_partial_name): use
15097         mono_try_assembly_resolve return value properly.
15098         (mono_assembly_load_full_nosearch): copied the function body from
15099         mono_assembly_load_full, without the code to invoke assembly
15100         search hooks.
15101         (mono_assembly_load_full): calls the above new function and if the
15102         assembly is not resolved, invokes the search hooks.
15103
15104         * appdomain.c (mono_runtime_init): restore the global postload
15105         assembly search handlers.
15106
15107 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15108
15109         * class.c (mono_class_init): Make sure class->methods and class->properties
15110         are never NULL in the generics case.
15111
15112         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15113
15114 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15115
15116         * metadata.c (free_generic_class): Disable some code to fix the build.
15117
15118         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15119
15120         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15121         from the image mempool.
15122
15123         * metadata.c (free_generic_class): Free more data from the inflated class.
15124
15125         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15126
15127         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15128         mempool.
15129         (mono_type_create_from_typespec): Ditto.
15130
15131         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15132         MonoImage to the caller.
15133         (mono_init_internal): Save the opened image in a global variable.
15134         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15135
15136         * reflection.c (resolve_object): Fix a leak.
15137
15138         * metadata.c: Fix the freeing of data in the generics caches.
15139         
15140         * metadata.c (free_generic_inst): Comment this out to fix the build.
15141         (free_generic_class): Ditto.
15142
15143         * metadata.c: Free cached generic methods, instantinations and classes when
15144         they are removed from the caches.
15145         (mono_metadata_free_type): Free the type itself.
15146
15147         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15148         places.
15149
15150 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15151
15152         * boehm-gc.c: restrict managed allocs to __thread supporting
15153         architectures.
15154
15155 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15156
15157         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15158         (mono_generic_class_get_class): Fix a leak.
15159
15160         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15161         mono_metadata_free_type ().
15162         (mono_metadata_inflate_generic_inst): Fix a leak.
15163
15164 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15165
15166         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15167
15168         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15169         mempool.
15170
15171         * mono-debug.c (mono_debug_close_image): Fix call to 
15172         g_hash_table_remove ().
15173
15174 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15175
15176         * icall-def.h: redirect all the string ctor to the managed
15177         CreateString () methods.
15178         * string-icalls.c, string-icalls.h: removed dead code for string
15179         ctors and icalls.
15180
15181 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15182
15183         * mono-debug.c: Fix memory leaks.
15184
15185 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15186
15187         * threads-types.h: Implement mono_hazard_pointer_set and 
15188         mono_hazard_pointer_clear macros using do/while(0) to fix
15189         compilation with MSVC.
15190         
15191         Code is contributed under MIT/X11 license.
15192
15193 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15194
15195         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15196         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15197
15198 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15199
15200         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15201         icalls.
15202
15203 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15204
15205         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15206         managed-code allocated as well.
15207
15208 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15209
15210         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15211
15212 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15213
15214         * boehm-gc.c: fixed the build after the AOT changes.
15215
15216 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15217
15218         * wrapper-types.h: Add an ALLOC wrapper type.
15219
15220         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15221         reference managed allocator methods.
15222
15223 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15224
15225         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15226         of Type array and not MonoType, a fix suggested by Hari.
15227         
15228 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15229
15230         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15231         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15232         
15233         Code is contributed under MIT/X11 license.
15234
15235 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15236
15237         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15238
15239 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15240
15241         * image.c (do_mono_image_open): if assembly file fails to open and
15242         MONO_IOMAP is in effect, try to find the path in a
15243         case-insensitive way.
15244
15245         * appdomain.c (mono_runtime_init): do not install postload hooks -
15246         tests show that MS.NET doesn't use anything of that sort to
15247         trigger the AppDomain.AssemblyResolve event.
15248         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15249         made non-static.
15250         (mono_runtime_init): init portability helpers here.
15251
15252         * assembly.c (mono_assembly_load_with_partial_name): if other   
15253         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15254         to resolve the assembly.
15255
15256         * domain-internals.h: added mono_try_assembly_resolve and marked
15257         it as internal.
15258
15259 2007-09-11  Jb Evain  <jbevain@novell.com>
15260
15261         * object-internals.h (MonoReflectionDynamicMethod): add
15262         a `MonoReflectionType *owner` field. The owner is used
15263         * reflection.c:
15264         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15265         method as the class declaring the dynamic method.
15266         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15267         dynamic method to the declaring type of the methodbuilder.
15268
15269 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15270
15271         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15272         rules for calling methods via reflection.
15273
15274 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15275
15276         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15277         Inflate MonoType's.
15278
15279 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15280
15281         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15282         provide a managed method that does fast allocations without needing
15283         a managed->unmanaged transition. Boehm GC implementation currently
15284         enabled for ptrfree objects on sane architectures.
15285
15286 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15287
15288         * marshal.c, marshal.h: exported a couple of useful functions and
15289         added mono_mb_get_label () to easily handle backward branches.
15290
15291 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15292
15293         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15294
15295 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15296
15297         * loader.c (find_method): Fixed the regression introduced while
15298         fixing bug #81466.
15299
15300 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15301
15302         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15303         well.
15304         
15305         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15306         icall.c reflection.c: Pass a MonoGenericContext argument to 
15307         mono_lookup_dynamic_token ().
15308
15309         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15310         #82744.
15311         
15312 2007-09-09  Robert Jordan  <robertj@gmx.net>
15313
15314         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15315         for generic methods.
15316
15317         * object.c (mono_object_get_virtual_method): Handle generic methods.
15318         Fixes bug #78882.
15319
15320         Code is contributed under MIT/X11 license.
15321
15322 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15323
15324         * image.c: fix locking in mono_image_load_file_for_image ().
15325
15326 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15327
15328         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15329         used only as a cache: added an icall to fill it.
15330
15331 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15332
15333         * reflection.h: exposed mono_reflection_free_type_info
15334         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15335         since mono_reflection_bind_generic_parameters makes a copy of it.
15336         * reflection.c (free_type_info): subinfos should be freed.
15337         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15338         made non static.
15339         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15340         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15341         this fixes #82695 and #81726.
15342    
15343
15344 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15345
15346         * process.h, process.c:  added support for user profile/info in
15347           ProcessStartInfo. For now only Windows works.
15348
15349 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15350
15351         * metadata.c: consider the generic arguments when comparing
15352         signatures (bug #82614).
15353
15354 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15355
15356         * cil-coff.h, image.c: updated assembly loader to cope with the
15357         PE32+ 64 bit file format.
15358
15359 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15360
15361         * assembly.c, class.c, domain.c, loader.c: remove useless
15362         inclusion of cil-coff.h.
15363
15364 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15365
15366         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15367         if interface is marked with CoClassAttribute. 
15368    
15369         Code is contributed under MIT/X11 license.
15370
15371 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15372
15373         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15374         if it's seen twice in major collections.
15375
15376 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15377
15378         * sgen-gc.c: big objects are not copied to the gray area, but they
15379         need to be considered for scanning, too, if they are brought alive
15380         by an object ready for finalizations or a survived one.
15381
15382 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15383
15384         * sgen-gc.c: properly account the number of disappearing links when
15385         they are nullified.
15386
15387 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15388
15389         * sgen-gc.c: share the code to scan the registered roots between the
15390         different types of collections.
15391
15392 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15393
15394         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15395
15396 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15397
15398         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15399         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15400
15401 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15402
15403         * security-manager.c (mono_security_manager_get_methods):
15404         LinkDemandSecurityException now has 2 arguments instead of 3.
15405
15406 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15407
15408         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15409         platforms which need it.
15410
15411 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15412
15413         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15414         dtor.
15415
15416 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15417
15418         * threads.c: free the thread static data on thread exit.
15419
15420 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15421
15422         * class.c: walk the hierarchy to find the generic definition for
15423         a class (fixes runtime part of bug #82498).
15424
15425 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15426
15427         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15428         ...
15429
15430         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15431
15432 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15433
15434         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15435
15436 2007-08-24  Robert Jordan  <robertj@gmx.net>
15437
15438         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15439
15440 2007-08-24  Jb Evain  <jbevain@novell.com>
15441
15442         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15443         for byref types.
15444
15445 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15446
15447         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15448         #82286.
15449
15450 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15451
15452         * assembly.c: Fix a warning.
15453         
15454 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15455
15456         * appdomain.c: parse the <runtime> section looking for the probing
15457         element with the 'privatePath' attribute, which sets additional
15458         directories in which the runtime should look for assemblies.
15459
15460 2007-08-23  Robert Jordan  <robertj@gmx.net>
15461
15462         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15463         Fixes #82499.
15464
15465 2007-08-23  Martin Baulig  <martin@ximian.com>
15466
15467         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15468         _mono_debug_init_corlib() and remove it from the header file.
15469
15470 2007-08-23  Martin Baulig  <martin@ximian.com>
15471
15472         * mono-debug-debugger.c
15473         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15474         don't notify the debugger about it.
15475
15476         * mono-debug-debugger.h
15477         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15478
15479 2007-08-23  Robert Jordan  <robertj@gmx.net>
15480
15481         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15482         Code is contributed under MIT/X11 license.
15483
15484 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15485
15486         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15487
15488 2007-08-22  Martin Baulig  <martin@ximian.com>
15489
15490         * mono-debug.c: Store debugging info on a per-domain basis and
15491         free it on domain unload.  Add support for unloading symbol files.
15492
15493         * mono-debug.h
15494         (MonoDebugList): New typedef.
15495         (MonoSymbolTable):
15496         - add `data_tables and `type_table'.
15497         - replace 'symbol_files' and `num_symbol_files' with a
15498           `MonoDebugList *'.
15499         (mono_debug_data_table): Removed.
15500         (mono_debug_list_add): New public function.
15501         (mono_debug_list_remove): New public function.
15502         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15503         (mono_debug_init_2_memory): Renamed into
15504         mono_debug_open_image_from_memory().
15505         (mono_debug_close_image): New public function.
15506         (mono_debug_domain_create): Likewise.
15507         (mono_debug_domain_unload): Likewise.
15508         (MONO_DEBUGGER_VERSION): Bump to 60.
15509
15510         * mono-debug-debugger.h
15511         (MonoDebuggerEvent):
15512         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15513         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15514         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15515         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15516           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15517         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15518           meaning.
15519         (mono_debugger_add_symbol_file): Removed.
15520         (mono_debugger_add_type): Removed.
15521         (mono_debugger_lookup_type): Removed.
15522         (mono_debugger_lookup_assembly): Removed.
15523
15524         * domain.c
15525         (mono_domain_create): Call mono_debug_domain_create().
15526         (mono_init_internal): Call mono_debug_init_corlib().
15527
15528         * assembly.c
15529         (mono_assembly_close): Call mono_debug_close_image().
15530
15531 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15532
15533         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15534         mmap call.
15535
15536 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15537
15538         * sgen-gc.c: ensure section->pin_queue_end is initialized
15539         correctly when non pinning objects in the section have been found.
15540
15541 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15542
15543         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15544         containing a list of directories separated by ':'. MSDN docs say
15545         the directories should be separated with ';'. Part of a bugfix for
15546         bug #81446
15547
15548 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15549
15550         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15551         it should MonoType and not MonoClass.
15552
15553 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15554
15555         * culture-info-table.h : regenerated.
15556
15557 2007-08-20  William Holmes  <billholmes54@gmail.com>
15558
15559         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15560          to call ReplaceFile Kernel32 on windows or in io-layer.
15561         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15562         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15563          as an internal call.
15564
15565         Code is contributed under MIT/X11 license.
15566
15567 2007-08-20  Jb Evain  <jbevain@novell.com>
15568
15569         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15570         and MONO_EXCEPTION_FIELD_ACCESS.
15571
15572         * debug-helpers.[c|h]: new mono_field_full_name function.
15573
15574 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15575
15576         * class.c: Removed class_security_level() and moved it to
15577         security-core-clr.c.
15578
15579         * security-core-clr.c, security-core-clr.h: class_security_level()
15580         is now public and renamed to mono_security_core_clr_class_level().
15581         It also looks for security attributes in the classes a class is
15582         nested in.
15583
15584 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15585
15586         * security-core-clr.c, security-core-clr.h: CoreCLR security
15587         utility functions.
15588
15589         * Makefile.am: Added security-core-clr.[ch].
15590
15591         * security-manager.c, security-manager.h: Functions and enum for
15592         setting and getting the security mode.
15593
15594         * class.c: CoreCLR security checks.
15595
15596 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15597
15598         * icall-def.h, process.c, process.h: implemented icall to get
15599         user/system processor times.
15600
15601 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15602
15603         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15604         reader-lock-free jit_info_table.
15605
15606 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15607
15608         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15609
15610         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15611
15612         * object-internals.h (MonoException): Add missing _data member.
15613
15614 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15615
15616         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15617         checking that only methods with matching qname or fqname are picked
15618         from implemented interfaces.
15619
15620 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15621
15622         * verify.c (do_newarr):added, do type verification of
15623         newarr ops, push the right value on the eval stack.
15624         * verify.c (mono_method_verify): use do_newarr
15625
15626
15627 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15628
15629         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15630         factored the common code into get_boxable_mono_type, which
15631         is now using mono_type_get_full, this fixed byref related tests.
15632
15633 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15634
15635         * class.c: added mono_type_get_full, this function has the same
15636         behavior of mono_class_get_full but the returned MonoType has
15637         all metadata of the associated token in case of a typespec token.
15638         * class.c: added mono_type_retrieve_from_typespec, used by 
15639         mono_type_get_full to retrieve the token type.
15640         * class.c (mono_class_create_from_typespec): changed to use
15641         mono_type_retrieve_from_typespec.
15642         * class.c (mono_ldtoken): changed to use mono_type_get_full
15643         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15644         * class-internals.h: exported mono_type_get_full for internal use.
15645
15646 2007-08-16  Jb Evain  <jbevain@novell.com>
15647
15648         * domain.c (supported_runtimes): add entry for
15649         the 'moonlight' runtime version.
15650
15651 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15652
15653         * verify.c (mono_method_verify): small typo sliped in.  
15654
15655 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15656
15657         * verify.c (do_unbox_value): added, do type verification of
15658         unboxing ops
15659         * verify.c (mono_method_verify): use do_unbox_value
15660
15661
15662 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15663
15664         * verify.c (dump_stack_value): fixed typo, was printing string
15665         instead of object on stack.
15666         * verify.c (do_box_value): moved the byref check up as it leads
15667         to invalid code and should be done earlier.
15668         * verify.c: improved error messages for and ldobj
15669
15670 2007-08-15  William Holmes  <billholmes54@gmail.com>
15671
15672         * marshal.c (emit_marshal_custom): Omit the call to 
15673           marshal_native_to_managed when calling native to managed 
15674           and the argument is specified as an out argument.
15675
15676         Code is contributed under MIT/X11 license.
15677
15678 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15679
15680         * verify.c: fixed the type checks for generics, function pointers and vectors.
15681         Added type verification for ldobj and ldtoken. The verifier
15682         would segfault if header or signature of a method contained references
15683         to non-existant types.
15684
15685 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15686
15687         * marshal.c (cominterop_get_ccw): Patch from
15688         Bill Holmes to no walk up interface hierarchy. 
15689         All parent methods should be present in the interface for COM.
15690    
15691         Code is contributed under MIT/X11 license.
15692
15693 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15694
15695         * marshal.c (emit_marshal_com_interface): Patch from
15696         Bill Holmes to handle COM Interfaces as return values
15697         for native->managed calls.
15698    
15699         Code is contributed under MIT/X11 license.
15700
15701 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15702
15703         * marshal.c (cominterop_get_idispatch_for_object): Implement
15704         for runtime callable wrappers.
15705    
15706         Code is contributed under MIT/X11 license.
15707
15708 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15709
15710         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15711         so 2.0 types are accessible
15712
15713
15714 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15715
15716         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15717         once we load mscorlib.   Due to the order in which we initialize,
15718         the mono_assembly_load_full routine that loads mscorlib did not
15719         load friends.   We now load it once we load the
15720         mono_defaults.internals_visible_class class. 
15721
15722         * assembly.c: Expose the mono_load_friend_assemblies method.
15723
15724 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15725
15726         * verify.c: improved the handling of boxing, better
15727         type checking for unary ops and conversion. Fix bug
15728         regarding managed pointer compatibility checking
15729
15730 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15731
15732         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15733
15734         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15735
15736 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15737
15738         * reflection.c (dup_type): Remove.
15739         * class.c (dup_type): Remove.
15740         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15741         instead of the dodgy 'dup_type'.
15742         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15743         handle the case where 'dup_type' needed the second argument.
15744
15745 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15746
15747         * domain.c: Fix a warning.
15748
15749 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15750
15751         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15752         checking that methods with the same fqname are not overridden
15753         with a method from an ancestor.
15754
15755 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15756
15757         * threads.c (free_thread_static_data_helper): Avoid a crash if
15758         thread->static_data is not yet set.
15759
15760 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15761
15762         * marshal.c: Use correct image when emitting
15763         native wrapper for COM calls.
15764    
15765         Code is contributed under MIT/X11 license.
15766
15767 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15768
15769         * icall-def.h, security.c, security.h :
15770           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15771
15772 2007-08-07  Martin Baulig  <martin@ximian.com>
15773
15774         * mono-debug-debugger.h
15775         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15776
15777         * domain.c (mono_domain_free): Call
15778         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15779
15780 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15781
15782         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15783         * verify.c (in_same_block): code should test if either offset is inside the clauses
15784         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15785         and filter blocks
15786
15787 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15788
15789         * image.c (mono_image_close): Fix a leak.
15790
15791         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15792
15793         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15794
15795 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15796
15797         * domain.c, threads.c, threads-types.h: fix memory retention issue
15798         with thread static variables not being cleared on domain unload.
15799         Reuse thread static slots after domain unload.
15800
15801 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15802
15803         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15804         nullable type.
15805
15806         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15807         now done in mono_runtime_invoke_array.
15808
15809         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15810         receiver is a nullable type.
15811
15812         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15813         generic parameter.
15814
15815 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15816
15817         * marshal.c: Implement COM Objects as return type for 
15818         managed->unmanaged calls. Added Release calls for COM Object
15819         out/return values in managed->unmanaged calls.
15820
15821         Code is contributed under MIT/X11 license.
15822
15823 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15824
15825         * threads.h, threads-type.h: move the hazard pointer declarations
15826         to the private header.
15827
15828 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15829
15830         * file-io.c, appdomain.c: memory leak fixes.
15831
15832 2007-08-02  Dick Porter  <dick@ximian.com>
15833
15834         * socket-io.c
15835         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15836         SO_REUSEADDR setting into io-layer/sockets.c.
15837
15838 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15839
15840         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15841         from Object when called on a generic parameter. Fixes #82211.
15842
15843 2007-08-01  Dick Porter  <dick@ximian.com>
15844
15845         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15846         Fixes bug 79250 yet again.
15847
15848 2007-07-30  Martin Baulig  <martin@ximian.com>
15849
15850         Merged the `debugger-dublin' branch.
15851
15852         * mono-debug.h
15853         (MonoDebugDataTable): New typedef.
15854         (MonoDebugMethodAddressList): New typedef.
15855         (MonoDebugWrapperData): Removed.
15856         (MonoDebugSymbolTable): Removed `current_data_table',
15857         `current_data_table_size', `current_data_table_offset'.
15858         (MonoDebugDataItemType): Moved into mono-debug.c.
15859         (MonoDebugMethodJitInfo): Remove `address'.
15860         (mono_debug_data_table): New global variable.
15861         (mono_debug_lookup_method_addresses): New public function.
15862         (mono_debug_find_method): Take a `MonoMethod *', not a
15863         `MonoDebugMethodInfo *'.
15864
15865         * mono-debug.c: Drop support for the old symbol tables.
15866
15867 2007-06-28  Martin Baulig  <martin@ximian.com>
15868
15869         * mono-debug.c (mono_debug_debugger_version): New public variable.
15870
15871 2007-07-31  William Holmes  <billholmes54@gmail.com>
15872
15873         * metadata.c Changed mono_type_create_from_typespec to not insert
15874           the type into the hash map until after
15875           do_mono_metadata_parse_type has completed.
15876         Fixes Bug #82194
15877         Code is contributed under MIT/X11 license.
15878
15879 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15880
15881         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15882         generic parameter. Fixes #82211.
15883
15884 2007-07-27  Jb Evain  <jbevain@novell.com>
15885
15886         * pedump.c (dump_metadata, dump_metadata_header): dump
15887         versions contained in the metadata header.
15888
15889 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15890
15891         * threads.c: register small_id_table with the GC.
15892
15893 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15894
15895         * threads.c, threads.h, class-internals.h, object-internals.h:
15896         Hazard pointers, to be used by lock-free parallel algorithms.
15897
15898 2007-07-26  Dick Porter  <dick@ximian.com>
15899
15900         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15901         routine on non-windows platforms, as I've not managed to think of
15902         a non-kludgy way of doing this.  Finishes off bug 78739.
15903
15904 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15905
15906         * object.c: properly setup interface_bitmap in proxy vtables.
15907
15908 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15909
15910         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15911         to create unique shadow copy target directories, use the domain's
15912         serial number instead. Each domain gets a unique target directory
15913         that way.
15914
15915         * domain.c (mono_domain_create): added code to increment domain
15916         shadow copy serial number and cache the value in the current
15917         domain structure.
15918
15919         * domain-internals.h (struct _MonoDomain): added a new field -
15920         shadow_serial to hold the serial number used in generation of
15921         shadow-copy directories. This is to make sure that the directory
15922         name is unique for each and every domain created. We avoid a race
15923         condition with overriding assemblies already in use by other app
15924         domains.
15925
15926 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15927
15928         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15929         binding generic parameters.
15930
15931 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15932
15933         * metadata.c (do_mono_metadata_parse_generic_class): Use
15934         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15935         error.
15936
15937 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15938
15939         * loader.c, class-internals.h, reflection.c: removed the per-method
15940         generics hashtable: we use the global one through the call of
15941         mono_class_inflate_generic_method ().
15942
15943 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15944
15945         * class.c, metadata.c, class-internals.h: introduce yet another
15946         generics global cache for inflated methods (fixes 98% of the perf
15947         issue in bug #81806).
15948
15949 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15950
15951         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15952         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15953         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15954         return a MonoGenericInst containing (a copy) of those types.
15955         (mono_metadata_inflate_generic_inst): Update to changes.
15956         (mono_metadata_parse_generic_inst): Likewise.
15957         (mono_get_shared_generic_inst): Likewise.
15958         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15959         (mono_reflection_bind_generic_method_parameters): Likewise.
15960         * metadata-internals.h: Likewise.
15961         * icall.c (free_generic_context): Kill.
15962         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15963
15964         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15965         mono_metadata_type_dup.
15966         * marshal.c (mono_mb_create_method): Likewise.
15967
15968         * metadata.c (mono_metadata_type_dup): Rename from
15969         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15970         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15971         * marshal.c, metadata-internals.h: Update to changes.
15972
15973 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15974
15975         * class.c: fixed a small leak for array classes and removed warning.
15976
15977 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15978
15979         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15980         Return 0x8000000 for return parameters. Fixes #82161.
15981
15982 2007-07-21  Marek Habersack  <grendello@gmail.com>
15983
15984         * appdomain.c (get_shadow_assembly_location): append the current
15985         ticks value to the path. Avoids overwriting the same assemblies by
15986         several threads at the same time.
15987
15988 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15989         and Raja R Harinath  <rharinath@novell.com>
15990
15991         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15992         Simplify slightly.
15993         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15994         property for testing if a method is a generic method definition.
15995
15996 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15997
15998         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15999
16000 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16001
16002         * verify.c: used function from private branch, reverted to the one in class.h 
16003
16004 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16005
16006         * verify.c: a typo slipped in and the code wont compile
16007
16008 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16009
16010         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
16011         disabled box instruction as it is doing the wrong thing
16012         improved stack dump messages, now it is easier to debug type related issues
16013
16014
16015 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
16016
16017         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
16018
16019 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16020
16021         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
16022         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
16023         grouped with class and valuetype. This change will simply 
16024         the code as it should be handled just like unmanaged pointers.
16025
16026 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16027
16028         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
16029
16030 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
16031
16032         * verify.c: several stack merge issues fixed, reference comparisons now
16033         check the type size. strict type check now works correctly.
16034         added more uses of IS_MANAGED_POINTER macro.
16035         fixed issues pointed by running the test suite against .net.
16036         
16037
16038 2007-07-19  Mark Probst  <mark.probst@gmail.com>
16039
16040         * class.c, loader.c, class-internals.h: Removed the
16041         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
16042         defines.
16043
16044         * icall.c: Better error checking in some internal reflection
16045         methods.
16046
16047 2007-07-18  William Holmes  <billholmes54@gmail.com>
16048
16049         * filewatcher.c : removed unused variable 'filename' in 
16050           ves_icall_System_IO_FSW_SupportsFSW
16051
16052 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
16053
16054         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
16055         obsolete, removed.
16056
16057 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
16058
16059         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
16060         
16061         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
16062
16063 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
16064
16065         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
16066         Implement generics support.
16067         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16068
16069         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16070         type_args and method_args arguments.
16071         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16072         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16073         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16074
16075 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16076
16077         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16078           It adds a rootimage parameter to mono_reflection_get_type_internal,
16079           adds new function mono_reflection_get_type_with_rootimage and use
16080           the rootimage to resolve the types instead of the current image
16081
16082 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16083
16084         * culture-info-table.h: Forgot to update after r78304.
16085
16086 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16087
16088         * class.c (mono_class_is_open_constructed_type)
16089         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16090
16091 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16092
16093         * class.c (mono_bounded_array_class_get):  method fails if used with
16094         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16095         avoiding calculating the size for such array as it cannot be instantiated.
16096         Fix bug #82015
16097
16098 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16099
16100         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16101         field.
16102         * metadata.c, reflection.c: Update to changes.
16103
16104 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16105
16106         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16107         mono_class_is_valid_enum, they are used to valide a enum when loading.
16108         * reflection.c: used new functions to throw TypeLoadException when and
16109         invalid enum is build with TypeBuilder. Fixes #82018
16110   
16111 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16112
16113         * object.c: forgot commit of mono_class_setup_methods () to access
16114         iface->methods.
16115         * object-internals.h: added a few more handy fields to
16116         MonoIMTCheckItem.
16117
16118 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16119
16120         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16121         iface->methods.
16122
16123 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16124
16125         * class-internals.h, object-internals.h, object.c: IMT-based
16126         interface invocation core from Massimiliano Mantione
16127         (massi@ximian.com) with a reworked arch-specific interface,
16128         bsearch implementation and a few bugfixes and memory savings by me.
16129
16130 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16131
16132         * class.c (mono_class_create_from_typedef): mono would segfault if 
16133         an enum did not have a __value field. It now throws a TypeLoadException
16134         for such cases. Fix bug #82022
16135
16136 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16137
16138         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16139
16140 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16141
16142         * class.c (mono_class_init): If a class is already inited but has
16143         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16144
16145 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16146
16147         * class.c: Properly handle the case of an unimplemented interface
16148         method.  Fixes: 81673.
16149
16150 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16151
16152         * class-internals.h, object.c: cleanup patch from massi: use
16153         MonoVTable->interface_bitmap since the vtable interfaces offset array
16154         is going away.
16155
16156 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16157
16158         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16159         GetMDStreamVersion icall instead.
16160
16161 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16162
16163         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16164         not use mono_dl_build_path() with a full library name: makes
16165         fallbacks to libgaim and libfam work.
16166
16167 2007-07-06  William Holmes  <billholmes54@gmail.com>
16168
16169         * assembly.c: Added a continue statement in probe_for_partial_name when
16170          parse_assembly_directory_name fails.  Fixes : 82002
16171
16172 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16173
16174         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16175         and added a verification  for TYPEDBYREF.
16176         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16177         make native int interchangeable with int32 and some small cleanup and formating.
16178         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16179         handle byref of byref.
16180         * verify.c (push_local): handle byref of byref.
16181         * verify.c (do_binop): invalid mix of values is unverifiable
16182         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16183         added visibility checks
16184         * verify.c (field related method): added visibility checks
16185         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16186
16187 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16188
16189         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16190         string.
16191
16192 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16193
16194         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16195
16196         * marshal.c (emit_marshal_string): When returning a string from managed code,
16197         allways make a copy even for unicode strings. Fixes #81990.
16198
16199 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16200
16201         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16202         of byref generic inst types (bug #81997).
16203
16204 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16205
16206         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16207         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16208
16209 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16210
16211         * marshal.c (emit_marshal_string): Add support for unicode strings in
16212         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16213
16214 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16215
16216         * verify.c: field load/store are now verified, missing only access checks now
16217
16218 2007-06-28  Martin Baulig  <martin@ximian.com>
16219
16220         * mono-debug.c (mono_debug_debugger_version): New public variable.
16221
16222 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16223
16224         * locales.c: When constructing DateTimeFormat or NumberFormat for
16225         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16226         MonoCultureInfo contructed from the current locale is always
16227         read-only and has UseUserOverride set to true. All MonoCultureInfo
16228         instances returned for GetCultures have both IsReadOnly and
16229         UseUserOverride set to true. Fixes part of bug #81930.
16230
16231 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16232
16233        * icall-def.h: Update System.__ComObject icalls
16234        * marshal.c: Avoid managed transition (and object creation)
16235        when looking up COM interface in RCW.
16236        * marshal.h: Ditto.
16237        
16238        Code is contributed under MIT/X11 license.
16239
16240 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16241
16242         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16243         to avoid crashes during assembly unloading.
16244
16245 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16246
16247         Fix MethodInfo.IsGenericMethodDefinition
16248         * reflection.c (mono_reflection_bind_generic_method_parameters):
16249         Rearrange code to ensure we always uses a generic method definition.
16250         * class.c (mono_class_inflate_generic_method_full): Set
16251         'generic_container' field only for generic method definitions.
16252         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16253         Use presense of 'generic_container' field as indication of being a
16254         generic method definition.
16255
16256 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16257
16258         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16259
16260         * object-internals.h: Reflect changes in the layout of the managed Delegate
16261         class.
16262         
16263         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16264         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16265         runtime memory used by the dynamic method. Fixes #77146.
16266
16267 2007-06-21  Dick Porter  <dick@ximian.com>
16268
16269         * file-io.h: 
16270         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16271         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16272         81767.
16273
16274 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16275
16276         * reflection.c (method_encode_methodspec): Add a tripwire.
16277         * class.c (inflate_generic_type): The fully open generic type is
16278         not the same as the generic type definition.
16279
16280 2007-06-21  Martin Baulig  <martin@ximian.com>
16281
16282         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16283
16284         * mono-debug-debugger.h
16285         (MonoDebuggerBreakpointInfo): Removed.
16286         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16287         (mono_debugger_remove_breakpoint): Likewise.
16288         (mono_debugger_breakpoint_callback): Likewise.
16289         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16290
16291 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16292
16293         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16294         generic type is not the same as the generic type definition.
16295         * class.c (mono_generic_class_get_class): Likewise.
16296
16297 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16298
16299         * icall.c: The second argument to 
16300         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16301         is a MonoType not a MonoClass.
16302
16303 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16304
16305         * verify.c: support for function pointers in the verifier
16306
16307 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16308
16309         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16310
16311 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16312
16313         * assembly.c: removed Mono.Data.SqliteClient from the list of
16314         forward-compatible assemblies as it breaks the ABI (bug #81899).
16315
16316 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16317
16318         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16319         lookup/update with the loader lock.
16320         * reflection.c (mono_class_bind_generic_parameters): No need to
16321         protect mono_metadata_lookup_* with the loader lock.
16322         * class.c (inflate_generic_type): Likewise.
16323         
16324         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16325         on a generic instantiated type.
16326
16327 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16328
16329         *verify.c: produce meanfull error messages on verification error
16330         *verify.c: fixed some cases of verification errors reported as validation errors
16331         *pedump.c: fixed the error name array, now it shows validation errors properly
16332         *verify.h: fixed the contant that should be used for verification errors
16333
16334 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16335
16336         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16337         for bug #77596, 81858 and 80743 (generics data structures on domain
16338         unload).
16339
16340 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16341
16342         Avoid allocating 'MonoGenericContext' on the heap.
16343         * class-internals (_MonoMethodInflated::context): Make field
16344         inline, not a pointer.
16345         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16346         stack.  Use the context embedded within the inflated method as the
16347         hash key, rather than 'new_context'.
16348         * class.c (inflate_generic_context): Simplify.  Return a struct
16349         rather than allocating on the heap.
16350         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16351         doesn't salt away a copy of the context -- simplifying the
16352         lifetime rules of a 'MonoGenericContext *'.
16353         (mono_method_get_context): Return pointer to embedded context.
16354         (setup_generic_array_ifaces): Allocate temporary context on stack.
16355         * reflection.c (inflate_mono_method): Likewise.
16356         (mono_reflection_bind_generic_method_parameters): Likewise.
16357         Use the context embedded within the inflated method as the hash key.
16358
16359         Avoid a source of allocation of 'MonoGenericContext'.
16360         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16361         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16362         * class.c: Update to changes.
16363         (mono_generic_class_get_context): Simplify drastically.  Now just
16364         returns a pointer to the field.
16365         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16366         argument as a const pointer.
16367         (mono_metadata_generic_context_equal): Likewise.
16368         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16369         Update to changes.
16370
16371 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16372
16373         * verify.c improved the handling of brtrue/brfalse, factored out common code
16374
16375 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16376
16377         Kill MonoGenericMethod.
16378         * class-internals.h (MonoGenericContext::method_inst): Rename from
16379         'gmethod' and convert to a MonoGenericInst.
16380         (MonoGenericMethod): Remove.
16381         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16382         * loader.c (method_from_methodspec): Update to changes.  Use a
16383         MonoGenericContext as the key to the hashtable.
16384         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16385         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16386         (mono_metadata_generic_context_hash): Likewise from
16387         'mono_metadata_generic_method_hash'.  Change hash function.
16388         (mono_metadata_load_generic_params): Update to changes.
16389         (mono_get_shared_generic_method): Remove.
16390         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16391         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16392         (inflate_generic_context): Likewise.
16393         (mono_class_inflate_generic_method_full): Likewise.
16394         (setup_generic_array_ifaces): Likewise.
16395         (mono_class_create_from_typespec): Likewise.
16396         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16397         (method_encode_methodspec): Update callsite.
16398         (reflection_methodbuilder_to_mono_method): Update to changes.
16399         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16400         MonoGenericContext as the key to the hashtable.
16401         (inflate_mono_method): Update to changes.
16402
16403         * class-internals.h (MonoGenericMethod::container): Remove.
16404         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16405
16406 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16407
16408         * profiler-private.h, profiler.c, profiler.h: added API to profile
16409         exception events.
16410
16411 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16412
16413         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16414
16415 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16416
16417         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16418         Fixed overflow and underflow not aborting the verification process.
16419
16420 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16421
16422         * class-internals.h (MonoStats): Added stats entries for dynamic
16423         code allocations.
16424
16425 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16426
16427         * loader.c (mono_free_method): Free header->locals and header->clauses.
16428
16429         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16430         dynamic case.
16431
16432         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16433
16434         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16435
16436 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16437
16438         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16439         the tables.
16440
16441 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16442
16443         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16444
16445 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16446
16447         MonoGenericMethod on a diet
16448         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16449         here ...
16450         (_MonoGenericMethod::reflection_info): ... from here.
16451         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16452         Update to changes.
16453         * reflection.c (inflate_mono_method): Likewise.
16454         (mono_reflection_bind_generic_method_parameters): Likewise.
16455
16456 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16457
16458         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16459         *verify.c: factored long ldarg forms to share code with short forms
16460
16461 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16462
16463         *verify.c: fixed code formating factored some duplicate code
16464         into a new function
16465
16466         *verify.h: fixed binary incompatibility introduced earlier
16467
16468         *pedump.c: fixed formating
16469
16470 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16471
16472         Fix assertion when disassembling Mono.C5.dll
16473         * loader.c (method_from_methodspec): Avoid inflating a method
16474         twice with the same context.  If the methodref is inflated, use
16475         the declaring method instead.
16476
16477         * class.c (mono_class_from_generic_parameter): Fix case similar to
16478         bug #81830 handled below, but for method containers.
16479
16480 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16481
16482         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16483         get_shared_generic_class.  Directly inflate the instance.
16484         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16485         (inflate_generic_class): Delete.
16486         (get_shared_generic_class): Delete.  Move setting of
16487         'cached_class' and 'cached_context' ...
16488         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16489
16490         * metadata.c (mono_metadata_lookup_generic_class): Change
16491         signature to take the components of a MonoGenericClass rather than
16492         an allocated MonoGenericClass.  Change semantics to be intern-like.
16493         * reflection.c (mono_class_bind_generic_parameters): Update to
16494         changes.  Make locking region tighter.
16495         * class.c (inflate_generic_class): Update to changes.
16496         (get_shared_generic_class): Likewise.
16497         * metadata-internals.h: Likewise.
16498
16499         * reflection.c (mono_class_bind_generic_parameters): Take and
16500         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16501         (mono_reflection_bind_generic_parameters): Use
16502         'mono_class_bind_generic_parameters' rather than duplicate the code.
16503         * class.c (mono_bounded_array_class_get): Update to changes.
16504         * object-internals.h: Likewise.
16505
16506         * reflection.c (mono_class_bind_generic_parameters): Only support
16507         parameterizing generic type definitions.  Remove support for other
16508         open types.
16509
16510 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16511
16512         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16513
16514         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16515         in the dynamic case.
16516
16517 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16518
16519         * threads.c: When cleaning up thread, reset the Background bit.
16520         Fixes bug #81720.
16521
16522 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16523
16524        * metadata.c: Move variable declarations to top of scope.
16525        * verify.c: Move variable declarations to top of scope.
16526
16527        Code is contributed under MIT/X11 license.
16528
16529 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16530
16531         * reflection.c (mono_class_bind_generic_parameters): Replace
16532         open-coded loop with mono_metadata_inflate_generic_inst.
16533
16534         * class.c (get_shared_generic_class): Don't call
16535         mono_get_shared_generic_inst.  Use the container's own
16536         'class_inst'.
16537
16538         * metadata.c (mono_metadata_load_generic_params): Move
16539         initialization of 'context' field here from ...
16540         * class.c (mono_class_create_from_typedef): ... here, and ...
16541         * loader.c (mono_get_method_from_token): ... here.
16542
16543         * class.c (get_shared_generic_class): Rename from
16544         mono_get_shared_generic_class and make static.
16545         (mono_get_shared_generic_inst): Move to metadata.c.
16546         * loader.c (mono_get_shared_generic_method): Likewise.
16547         * class-internals.h, metadata-internals.h: Update to changes.
16548
16549         Fix #81830
16550         * class.c (mono_class_from_generic_parameter): Don't assume a
16551         generic container owner exists.  Generic containers from monodis
16552         don't have any.
16553
16554 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16555
16556         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16557         * verify.h: new typedefs to returns the non-verifiable status
16558         * verify.c: initial implementation of generics, stack merging and object compatibility check
16559
16560 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16561
16562         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16563         a MonoInternalHashTable again (fixed bug in internal hash table
16564         code).
16565
16566 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16567
16568         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16569         MonoInternalHashTable again (fixed bug in internal hash table
16570         code).
16571
16572 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16573
16574         * class.c, image.c, class-internals.h, domain.c,
16575         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16576         changes.  Have to figure out what makes them break the SWF
16577         regression.
16578
16579 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16580
16581         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16582         a MonoInternalHashTable now.
16583
16584 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16585
16586         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16587         MonoInternalHashTable now.
16588
16589 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16590
16591         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16592         invoke_impl code.
16593
16594         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16595
16596         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16597         dependent trampoline.
16598
16599         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16600
16601         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16602
16603 2007-05-29  Robert Jordan  <robertj@gmx.net>
16604
16605         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16606
16607 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16608
16609         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16610
16611 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16612
16613        * marshal.c: Fix interface lookup loops for
16614        cominterop_get_com_slot_for_method and 
16615        cominterop_get_method_interface. Only need to lookup
16616        if type is a class, else use interface type method is on.
16617
16618        Code is contributed under MIT/X11 license.
16619
16620 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16621
16622         * reflection.c: HasSecurity can be present even if no specially 
16623         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16624         SecurityAttribute). Fix CAS regression tests on buildbot.
16625
16626 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16627
16628        * appdomain.c: Add configure checks for header files.
16629        * image.c: Add configure checks for header files.
16630        * file-io.c: Add configure checks for header files.
16631        * debug-mono-symfile.c: Add configure checks for header files.
16632        * threadpool.c: Add configure checks for header files.
16633        * console-io.c: Add configure checks for header files.
16634        * profiler.c: Add configure checks for header files.
16635        * rawbuffer.c: Add configure checks for header files.
16636        * icall.c: Add configure checks for header files.
16637        * rand.c: Add configure checks for header files.
16638        * socket-io.c: Add configure checks for header files.
16639
16640        Code is contributed under MIT/X11 license.
16641
16642 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16643
16644         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16645         assertion as it breaks the build.
16646         
16647         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16648
16649         * reflection.c (lookup_custom_attr): Make a copy here too.
16650
16651         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16652         dynamic images.
16653
16654         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16655         images.
16656
16657         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16658         info.
16659
16660 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16661
16662         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16663         (load_cattr_value): Ditto.
16664
16665 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16666
16667         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16668
16669 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16670
16671         * threads.c: In "start_wrapper", set apartment_state to MTA if
16672         apartment_state is Unknown and we're running on 2.0 profile or
16673         higher.
16674         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16675         to main method, then set apartment_state to Unknown on 1.0 profile,
16676         and MTA on 2.0 profile.
16677
16678 2007-05-16  Jb Evain  <jb@nurv.fr>
16679
16680         * class-internals.h (MonoDefaults): Add an attribute_class and
16681           customattribute_data_class.
16682         * domain.c (mono_init_internal): Populate them.
16683         * reflection.c: Use them to remove duplicates. Make a vew
16684         MonoClass variables `static'.
16685
16686 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16687
16688         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16689         step in implementing IMT, so that all isinst checks now can go
16690         through the bitmap.
16691         This was needed because vtables for TransparentProxy need to look
16692         like the vtable of the "target" class, so they need to point to
16693         its interface bitmap directly.
16694
16695         * object.c: inside "mono_class_create_runtime_vtable" and
16696         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16697
16698 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16699
16700         * object-internals.h
16701           culture-info.h : added territory field in MonoCulture and
16702           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16703         * locales.c : fill territory field above too.
16704         * culture-info-table.h : regenerated.
16705
16706 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16707
16708         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16709         Fixes #81599.
16710
16711 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16712
16713         * object.c: Always initialize apartment, even if 
16714         there is no custom attributes on entry point.
16715         
16716         Code is contributed under MIT/X11 license.
16717
16718 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16719
16720         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16721         * metadata.c: If no encoding is set, check for unicode
16722         on class.
16723         
16724         Code is contributed under MIT/X11 license.
16725
16726 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16727
16728         * threads.c: Handle if mono_thread_current returns NULL 
16729         
16730         Code is contributed under MIT/X11 license.
16731
16732 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16733
16734         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16735         in start_wrapper. Added mono_thread_init_apartment_state and
16736         mono_thread_cleanup_apartment_state.
16737         * object.c: Initialize thread apartment state on main thread
16738         by checking for STAThreadAttribute on entry point.
16739         * object-internals.h: Add apartment_state field to MonoThread.
16740         * threads-types.h: Add unmanaged definition of 
16741         System.Threading.ApartmentState, MonoThreadApartmentState.
16742         
16743         Code is contributed under MIT/X11 license.
16744         
16745 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16746
16747         * class.c: Fix windows build.
16748         * class-internals.h: Fix windows build.
16749         
16750         Code is contributed under MIT/X11 license.
16751
16752 2007-05-08  Robert Jordan  <robertj@gmx.net>
16753
16754         * process.c (CreateProcess_internal):
16755         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16756         .CreateNoWindow was specified. Fixes #81496.
16757
16758 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16759
16760         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16761         step in implementing IMT, replaced it with two compact arrays
16762         (interfaces_packed and interface_offsets_packed) and a bitmap that
16763         is used for isinst checks (interface_bitmap).
16764
16765         * class.c: (compare_interface_ids): compare function to pass to
16766         bsearch when looking for an interface with a given id.
16767         (mono_class_interface_offset): reimplemented using bsearch on
16768         interfaces_packed, getting the offset from interface_offsets_packed.
16769         (print_implemented_interfaces): utility debugging function.
16770         (setup_interface_offsets): reworked to initialize interfaces_packed,
16771         interface_offsets_packed and interface_bitmap.
16772
16773         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16774         with uses of interfaces_packed and interface_offsets_packed.
16775
16776 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16777
16778         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16779         mono_class_interface_offset prototype to wrap all accesses to
16780         "MonoClass.interface_offsets".
16781
16782         * class.c: Implemented mono_class_interface_offset, and wrapped all
16783         accesses to "MonoClass.interface_offsets".
16784
16785         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16786         "MonoClass.interface_offsets".
16787
16788 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16789
16790         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16791         GetMethodFromHandle overloads (bug #78637).
16792
16793 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16794
16795         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16796         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16797
16798 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16799
16800         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16801         #81498.
16802
16803         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16804         gracefully.
16805         (mono_custom_attrs_from_index): Ditto.
16806
16807         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16808         Fixes #81501.
16809
16810 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16811
16812         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16813         is now allocated from a mempool.
16814
16815 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16816
16817         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16818         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16819
16820 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16821
16822         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16823         mono_loader_clear_error () too late. Fixes #81463.
16824
16825 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16826
16827         * culture-info-table.h : regenerated.
16828
16829 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16830
16831         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16832         is missing.
16833
16834 2007-04-25  Dick Porter  <dick@ximian.com>
16835
16836         * Makefile.am: Put the mingw enforced-optimisation back into the
16837         PLATFORM_WIN32 section.
16838
16839 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16840
16841         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16842         patch.
16843
16844         * image.c (mono_image_load_module): New API function to load a module reference.
16845
16846         * image.c (load_modules): Load modules lazily. Fixes #80812.
16847
16848         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16849         
16850         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16851
16852         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16853         to mono_image_load_module_dynamic.
16854
16855 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16856
16857         * marshal.c: Fix calling convention for CCW on non-windows
16858         platforms. STDCALL on windows, CDECL everywhere else to work 
16859         with XPCOM and MainWin COM.
16860         
16861         Code is contributed under MIT/X11 license.
16862
16863 2007-04-23  Martin Baulig  <martin@ximian.com>
16864
16865         Fix #80969.
16866
16867         * loader.c
16868         (method_from_memberref): Added `gboolean *used_context' argument.
16869         (mono_get_method_from_token): Likewise.
16870         (mono_get_method_full): Don't insert the method in the cache when
16871         `used_context' is true.
16872
16873 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16874
16875         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16876
16877         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16878         create new MonoTypes for returned types.
16879         * class.c (mono_generic_class_get_class): Export mono-internal.
16880         * class-internals.h: Update to changes.
16881
16882 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16883
16884         * threadpool.c, threadpool.h, icall-def.h: patch from
16885         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16886
16887 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16888
16889         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16890         
16891         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16892
16893         * threads.c (mono_thread_get_stack_bounds): New helper function.
16894
16895         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16896         Correctly compute stack bounds when attaching. Fixes #81394.
16897
16898 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16899
16900         * reflection.c: fix handling of doubles in custom attributes
16901         for the arm-fpa format (bug #81368).
16902
16903 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16904
16905         * reflection.c (assembly_add_win32_resources): Mildly relax an
16906         bounds check to let the end pointer point just past the end of the
16907         allocated buffer.  (may fix #81384)
16908
16909 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16910
16911         * culture-info-table.h : regenerated.
16912
16913 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16914
16915         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16916         the thread is aborted early.
16917
16918 2007-04-05  Dick Porter  <dick@ximian.com>
16919
16920         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16921         FindFirstFile()/FindNextFile() to find entries.  This lets the
16922         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16923         81038.
16924
16925         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16926         the parameters of
16927         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16928
16929 2007-04-04  Martin Baulig  <martin@ximian.com>
16930
16931         * debug-helpers.c
16932         (mono_method_desc_full_match): Add support for nested classes.
16933
16934 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16935
16936         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16937
16938 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16939
16940         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16941         waiting for too many threads.
16942
16943 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16944
16945         * environment.c: Fix return value check on uname so we can get the 
16946         executing version on Solaris operating systems.
16947
16948 2007-03-28  Jb Evain  <jbevain@gmail.com>
16949
16950         * class.c (mono_type_get_name_recurse): Complete the
16951         fix for the creation of assembly qualified names for
16952         pointer types. Fixes #81208.
16953
16954 2007-03-27  Dick Porter  <dick@ximian.com>
16955
16956         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16957         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16958         changed.
16959
16960         * threads.c
16961         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16962         the value of ReleaseMutex().
16963
16964 2007-03-27  Dick Porter  <dick@ximian.com>
16965
16966         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16967         in little-endian order, not network endian, so must be converted
16968         to host endian here.  Fixes bug 80593.
16969
16970 2007-03-22  Jb Evain  <jbevain@gmail.com>
16971
16972         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16973         qualified names for pointer types. Fixes #81208.
16974
16975 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16976
16977         * marshal.c: Add support for PreserveSigAttribute. 
16978         
16979         Code is contributed under MIT/X11 license.
16980
16981 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16982
16983         * process.c: Fix endianness issues. Fixes #81126.
16984
16985         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16986         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16987
16988         * image.c (mono_image_lookup_resource): Make this work on big-endian
16989         machines.Change API contract so the caller needs to free the return value.
16990         
16991         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16992         API change.
16993         
16994 2007-03-14  Martin Baulig  <martin@ximian.com>
16995
16996         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16997         mono_type_get_desc() as well.
16998
16999 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
17000
17001         * icall.c:  Fix environ access in VS.  
17002         
17003 2007-03-13  Alp Toker  <alp@atoker.com>
17004
17005         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
17006         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
17007         #63841.
17008
17009 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
17010
17011         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
17012         circular references among dynamic methods. Fixes #81091.
17013
17014         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
17015
17016 2007-03-09  Martin Baulig  <martin@ximian.com>
17017
17018         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
17019
17020 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
17021
17022         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
17023         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
17024         
17025         Code is contributed under MIT/X11 license.
17026         
17027 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
17028
17029         * loader.c: Reapply patch for bug #79424.
17030
17031 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17032
17033         * metadata.c (mono_type_to_unmanaged): Only convert object to
17034         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
17035
17036 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
17037
17038         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
17039         (and incorrectly set) is_reference field from MonoGenericInst.
17040
17041 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
17042
17043         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
17044         a little earlier.
17045
17046         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
17047
17048         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
17049
17050 2007-03-05  Miguel de Icaza  <miguel@novell.com>
17051
17052         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
17053         FileOptions.1 value to mean "temporary", map that to
17054         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
17055
17056         Fixes 80688
17057
17058 2007-03-03  Marek Habersack  <mhabersack@novell.com>
17059
17060         * appdomain.c: implement MS .Net style shadow copying. Copies of
17061         the assemblies are made in a subdirectory of the dynamic base
17062         directory, the assembly names are preserved.
17063         Copy .mdb and .config files along with the assemblies being shadowed.
17064
17065 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17066
17067         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
17068         (emit_marshal_handleref): Ditto.
17069
17070         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17071         on Visual C++. Fixes #80671.
17072
17073 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17074
17075         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17076         for clone operations.
17077
17078 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17079
17080         * marshal.c: Fix warnings.
17081
17082 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17083
17084         * loader.c: allow case-insensitive matching of the dll name
17085         in dllmap handling when prefixed with "i:".
17086
17087 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17088
17089         * threads.c: Fix #ifdef for dummy_apc function for VS.
17090
17091 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17092
17093         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17094
17095 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17096         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17097         giving precedence to the methods with a fully qualified name
17098         (InterfaceName.MethodName) when building the interface sections
17099         of the vtable.
17100
17101 2007-02-16  Dick Porter  <dick@ximian.com>
17102
17103         * threadpool.c (append_job): Fix fast-path array handling, so it's
17104         less likely the array will grow exponentially when the load is
17105         heavy.
17106
17107 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17108
17109         * metadata-internals.h, loader.c: fix dllmap lookup order
17110         for non-function maps, too, and prepare for fallback code.
17111
17112 2007-02-12  Robert Jordan  <robertj@gmx.net>
17113
17114         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17115         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17116         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17117         GlobalFree. Fixes a part of bug #77075.
17118
17119 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17120
17121         * loader.c: implemented typedef parent in field memberref.
17122
17123 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17124
17125         * marshal.c: Fix warnings and remember to call Release on
17126         IUnknown of RCW.
17127         
17128         Code is contributed under MIT/X11 license.
17129
17130 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17131
17132         * class-internals.h: Add MonoHandleRef definition, and
17133         handleref_class to mono_defaults. 
17134
17135         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17136         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17137
17138         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17139         (do nothing on this stage)
17140         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17141         (emit_marshal_handleref): New method, used for argument handling
17142         of HandleRefs. 
17143
17144 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17145
17146         * class.c (mono_class_setup_parent): Lazily init com types.
17147         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17148         init com types.
17149         * object.c (mono_remote_class_vtable): Lazily init com types.
17150         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17151         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17152         * domain-internals.h: Expose mono_init_com_types.
17153         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17154         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17155         Add support for COM Callable Wrapper marshalling.
17156         * marshal.h: Add icall definitions.
17157         * gc.c: Handle freeing of CCWs in finalizer code.
17158         
17159         Code is contributed under MIT/X11 license.
17160
17161 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17162
17163         * reflection.c: changed all the signature encoding code to use
17164         a variable-sized buffer.
17165
17166 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17167
17168         * marshal.c: locking fixes: never take the loader lock
17169         or other runtime locks when holding the marshal lock
17170         (fixes bug#80664).
17171
17172 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17173
17174         * marshal.c: make the delegate function pointer mapping
17175         work for the moving GC.
17176
17177 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17178
17179         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17180         for bug #80618.
17181
17182 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17183
17184         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17185         gmodule.
17186
17187 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17188
17189         * threadpool.c: made the code moving-GC safe.
17190
17191 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17192
17193         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17194         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17195         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17196         warning cleanup.
17197         * reflection.c: warning cleanup, some threading and moving GC fixes.
17198
17199 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17200
17201         * class.c, loader.c: create the needed Set/Get/Address array methods
17202         as well as the .ctors in mono_class_init (), fixes bug #80567.
17203
17204 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17205
17206         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17207         we doesn't decrease its alignment. Should fix the sparc build.
17208
17209 2007-01-24  Dick Porter  <dick@ximian.com>
17210
17211         * socket-io.c
17212         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17213         Create the returned object if we need to ignore an unsupported
17214         socket option.  Fixes a segfault reported by Atsushi.
17215
17216 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17217
17218         * class.c, object.c: restrict GC-tracked fields to
17219         UIntPtr fields used inside corlib, so we provide better
17220         type info to the GC and also allow broken packing as in
17221         bug #80580.
17222
17223 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17224
17225         * sgen-gc.c: removed duplicated function.
17226
17227 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17228
17229         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17230         value that means that the value is not supported, but that we
17231         should not return a failure, but instead report this as a
17232         successful operation.
17233
17234 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17235
17236         Fix tests/bug79956.2.il
17237         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17238         (mono_generic_class_get_class): If the generic definition in an
17239         enum, copy over other fields related to it.
17240
17241 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17242
17243         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17244         genericinst enums (bug #79215).
17245
17246 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17247         * class.c: Fix bug 80307.
17248
17249 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17250
17251         * image.c: if the file table is not present, try to load
17252         all the modules, since we don't have info about them
17253         having or not metadata (bug #80517).
17254         * assembly.c: allow mono_assembly_load_references () to
17255         work for netmodules.
17256
17257 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17258
17259         * image.c, metadata-internals.h, object.c: execute module
17260         cctors when running on the 2 runtime if present (bug #80487).
17261
17262 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17263
17264         * icall.c: optimized InitializeArray() on bigendian.
17265
17266 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17267
17268         * icall.c: fix for the broken ARM FPA double format.
17269
17270 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17271
17272         * icall.c: handle endian issues for r4 and r8 types, too, in
17273         the InitializeArray() icall.
17274
17275 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17276
17277         * loader.c (mono_loader_error_prepare_exception): Clear the error
17278         once we have extracted the information from it, do this before we
17279         call into the JIT's class loading mechanisms.
17280
17281         * object.c (mono_class_create_runtime_vtable): Do not clear the
17282         loader error before calling mono_class_get_exception_for_failure
17283         as the loader error is needed inside
17284         mono_class_get_exception_for_failure to throw the error (thinko).
17285
17286         Fixes #80521
17287         
17288 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17289
17290         * reflection.c: align fields rva data so it's faster to load at
17291         runtime.
17292
17293 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17294
17295         Prepare to simplify GenericMethod handling.
17296         * class-internals.h (mono_method_get_context): New accessor function.
17297         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17298         rather than directly accessing '->context' field.
17299
17300         * class-internals.h (_MonoGenericParam.method): Move ...
17301         (_MonoGenericContainer): ... here.  Add into union with klass field.
17302         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17303         Update to changes.
17304
17305 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17306
17307         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17308         the wrapper type enum and reduce relocations.
17309
17310 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17311
17312         * reflection.c (inflate_mono_method): Reuse method instantiation
17313         from the generic method, if available.
17314
17315 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17316
17317         * marshal.c (emit_marshal_variant): Fix conv_arg
17318         type in last commit, based on whether parameter is byref.
17319         
17320 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17321
17322         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17323         marshalling.
17324         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17325         MONO_TYPE_OBJECT back for VARIANT support.
17326
17327 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17328
17329         * marshal.c, marshal.h, icall-def.h: Implement 
17330         Marshal.ReAllocCoTaskMem.
17331
17332 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17333
17334         * marshal.c: memory retention fixes: use the proper
17335         image cache for runtime_invoke method lookups.
17336
17337 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17338
17339         * mempool.c: added code to help debug mempool allocations.
17340
17341 2007-01-11  Dick Porter  <dick@ximian.com>
17342
17343         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17344         support (experimenting with faking it with IP_MTU_DISCOVER for
17345         systems that don't have IP_DONTFRAGMENT.)
17346         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17347         icall.
17348
17349         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17350
17351         * socket-io.h: Add new fields to MonoSocketAsyncResult
17352         corresponding to the new ones in Socket.cs.
17353
17354 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17355
17356         Fix IronPython regression mentioned in #80249
17357         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17358         'cached_context' field, since it may have been initialized as a
17359         side-effect of metadata parsing.
17360
17361         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17362         (_MonoGenericClass.cached_class): Move here and rename from lone
17363         remaining field of ...
17364         (_MonoInflatedGenericClass): ... this.  Remove.
17365         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17366         to changes.
17367
17368         Fix mcs/tests/test-128.cs regression.
17369         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17370         2007-01-10 change below.
17371         [MONO_TYPE_OBJECT]: Recurse into array case.
17372
17373 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17374
17375         * class-internals.h (mono_get_inflated_generic_class): Remove.
17376         * class.c (mono_get_inflated_generic_class): Remove.
17377         (mono_generic_class_get_class): Rename from
17378         mono_class_create_generic.
17379         (mono_class_from_mono_type) [GENERICINST]: Use it.
17380         * reflection.c, metadata.c: Update to changes.  Use
17381         'mono_class_from_mono_type'.
17382
17383 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17384
17385         * reflection.c: use passed type when encoding an array element
17386         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17387
17388 2007-01-09  Robert Jordan  <robertj@gmx.net>
17389
17390         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17391         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17392         Fixes bug #80392.
17393
17394 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17395
17396         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17397
17398         * object.c (set_value): Avoid aliasing between type->data.klass
17399         and type->data.generic_class.
17400
17401         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17402
17403 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17404
17405         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17406         between type->data.klass and type->data.generic_class.
17407
17408 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17409
17410         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17411         value in out parameters.
17412
17413 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17414
17415         Simplify invariant for MonoGenericClass::klass field.
17416         * class.c (mono_class_create_generic): Verify 'klass' is null.
17417         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17418         initialize 'klass' field.
17419
17420 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17421
17422         Ongoing work to avoid redundant data and simplify invariants.
17423         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17424         'generic_class', and change type to a GenericInst.
17425         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17426         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17427
17428 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17429
17430         * class.c : skip io-layer under PLATFORM_WIN32.
17431
17432 2007-01-03  Tor Lillqvist  <tml@novell.com>
17433
17434         Fix #80305: In a bundled executable, look in the bundled exe
17435         assembly to determine the runtime version. Add the possibility to
17436         bundle also the machine.config file.
17437         
17438         * assembly.c (mono_assembly_open_from_bundle): Make
17439         non-static. Allow being called even if we have no bundled
17440         assemblies, and return NULL right away in that case.
17441
17442         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17443         here.
17444
17445         * domain.c (app_config_parse): Take an assembly exe file name as
17446         parameter instead of a config file name. Check for a bundled
17447         config file for that assembly by calling
17448         mono_config_string_for_assembly_file() (see below) before looking
17449         for one in the file system.
17450         (get_runtimes_from_exe): Corrsponding change to call of
17451         app_config_parse().
17452         (get_runtimes_from_exe): Check for bundled assembly exe file first
17453         by calling mono_assembly_open_from_bundle(). If no bundled
17454         assembly exe file is found, call mono_image_open() as before to
17455         look it up in the file system.
17456
17457         * mono-config.c: Add variable bundled_machinec_onfig.
17458         (mono_config_string_for_assembly_file): New function.
17459         (mono_config_for_assembly): Move code snippet that looks for a
17460         bundled assembly .config file into the above new function. Call
17461         it.
17462         (mono_register_machine_config, mono_get_machine_config): New
17463         functions to set and retrieve
17464
17465         * assembly.h: Declare mono_register_machine_config().
17466
17467         * mono-config.h: Declare mono_get_machine_config() and
17468         mono_config_string_for_assembly_file().
17469
17470         * icall.c: No declaration of environ necessary on Win32. It is
17471         declared (as a macro expanding to a function call) in stdlib.h.
17472         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17473         New internal mono function. Returns the value of
17474         mono_get_machine_config() as a Mono string.
17475
17476         * icall-def.h: Add get_bundled_machine_config().
17477
17478 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17479
17480         Remove redundant field
17481         * class-internals.h (_MonoGenericContext.container): Remove field.
17482         * loader.c (mono_method_get_signature_full): Don't parse a
17483         "container" for a signature parse when the signature is inflated
17484         immediately.
17485         (method_from_methodspec): Likewise, for a generic_inst.
17486         * class.c, metadata.c, reflection.c: Update to changes.
17487
17488 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17489
17490         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17491         'cached_context', and change semantics -- it starts off NULL, and
17492         is initialized on demand.
17493         * class.c (mono_generic_class_get_context): New accessor to
17494         replace 'context' field accesses.
17495         (mono_class_get_context): New helper.
17496         (*): Update to changes.
17497         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17498
17499 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17500
17501         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17502         before the memcpy.   Fixes Marshal2 regression.
17503
17504 2007-01-02  Jb Evain  <jbevain@gmail.com>
17505
17506         * blob.h: add a MONO_TYPE_ENUM definition
17507         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17508         fix the encoding of arrays of enums in custom attributes.
17509
17510         Fixes #79666.
17511
17512 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17513
17514         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17515         string is null terminated, but only cut the string short if it
17516         overflows the buffer.   
17517         
17518         (mono_string_to_byvalstr): Also fix this routine.   The code here
17519         was not properly terminating a string (it was only terminated
17520         because of the previous catch-all memset). 
17521
17522         I left the memset, because I do not know if applications expect
17523         the runtime to clear this region. 
17524
17525         Fixes #79944.
17526
17527         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17528         Clear the error before returning to unmanaged code to prevent the
17529         runtime from being confused later on (fixes  80420).
17530         (ves_icall_type_from_name): Always call mono_loader_clear_error
17531         after parsing a type that could have failed.
17532         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17533
17534         * loader.c (mono_loader_clear_error): Fix indentation.
17535
17536 2006-12-28  Martin Baulig  <martin@ximian.com>
17537
17538         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17539
17540 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17541
17542         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17543         getting a token for an EnumBuilder.
17544
17545 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17546
17547         * reflection.c: be more careful in case resource generation
17548         fails to create the data array.
17549
17550 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17551
17552         * sgen-gc.c: write barrier for clone and fix unregister handles.
17553
17554 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17555
17556         * reflection.c: some fixes needed in the generics code for the moving GC.
17557
17558 2006-12-22  Robert Jordan  <robertj@gmx.net>
17559
17560         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17561         account. Fixes bug #80299.
17562
17563 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17564
17565         Fix WaitHandle usage in delegates.
17566         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17567         * object.c (mono_wait_handle_new): Use the property set method to
17568         initialize the handle.
17569         (mono_wait_handle_get_handle): New.
17570         * threadpool.c (mono_async_invoke): Use it.
17571         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17572         Likewise.
17573         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17574
17575 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17576
17577         * marshal.c (emit_marshal): Call emit_marshal_variant and
17578         emit_marshal_com_interface when applicable.
17579         (emit_marshal_variant, emit_marshal_com_interface): Add
17580         methods for this case and remove if's from emit_marshal_object.
17581         
17582 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17583
17584         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17585
17586 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17587
17588         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17589         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17590         and GlobalFree on Windows. Remove FIXME.
17591
17592 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17593
17594         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17595         implementation for managed objects.
17596
17597 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17598
17599         * object.c: implemented code to be used for checking
17600         that no reference field overlaps with non-references.
17601
17602 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17603
17604         * threadpool.c: fix queue code to be compatible with the
17605         moving GC.
17606
17607 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17608
17609         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17610         in structures by throwing ArgumentNullException.
17611
17612         (emit_marshal_safehandle): Also when they are null parameters.
17613
17614         (emit_marshal_safehandle): Add support for ref
17615         SafeHandles parameters
17616
17617 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17618
17619         * profiler.c: updated to use the mono-dl API instead of
17620         gmodule.
17621
17622 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17623
17624         * profiler.c: updated to use the mono-dl dynamic loading
17625         API instead of gmodule.
17626
17627 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17628
17629         * profiler.c: use readlink, older versions of glib don't have
17630         g_file_read_link ().
17631
17632 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17633
17634         * profiler.c: try to detect the path to mono if libc fails to provide
17635         a useful name (bug #80286).
17636
17637 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17638
17639         Fix #80242
17640         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17641         instance, use the generic type definition instead.
17642         (ves_icall_Type_GetNestedTypes): Likewise.
17643         * class.c (mono_class_create_generic): Always set the
17644         nested_classes of a generic instance to NULL, even if the generic
17645         type definition has nested types.
17646
17647 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17648
17649         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17650         and fix on Linux.
17651         
17652 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17653
17654         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17655         my arguments were in the wrong order.   I also fixed the Windows
17656         version which seems to have had the same issue.
17657
17658         (mono_free_bstr): On Unix, this is g_free.
17659         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17660         conversions (for the tests in corlib to pass).
17661
17662 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17663
17664         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17665         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17666         exception if a ref SafeHandle in a struct has changed).
17667         
17668         (emit_struct_conv): Do not perform layout checks for classes
17669         derived from SafeHandle, as those are specially handled. 
17670
17671         (emit_object_to_ptr_conv): Add support for
17672         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17673
17674         (emit_marshal_safehandle): Implement conversion of return values
17675         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17676         
17677         * threads.c: WaitHandle now is compiled with two different handles
17678         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17679         for 2.0.
17680         
17681         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17682         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17683         these routines to cope with both kinds of fields.
17684
17685 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17686
17687         * metadata.c (mono_type_to_unmanaged): Handle the case where
17688         type->data.klass is a SafeHandle, and in that case, return the
17689         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17690         MONO_MARSHAL_CONV_SAFEHANDLE. 
17691
17692 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17693
17694         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17695         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17696         calling emit_marshal_object.
17697
17698         (emit_marshal_safehandle): Implement marshalling of
17699         SafeHandle parameters (no ref support yet).
17700
17701         (MarshalAction): Document the defines as I implement
17702         them for SafeHandle.
17703
17704         (emit_marshal_object): indentation police.
17705
17706         * class-internals.h: Define MonoSafeHandle.
17707         Add safehandle_class to MonoDefaults type.
17708
17709         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17710         list of classes to check for fields. 
17711
17712         * domain.c (mono_init_internal): Add SafeHandle to the list of
17713         mono_defaults loaded.
17714
17715 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17716
17717         Fix #80253
17718         * reflection.c (mono_reflection_bind_generic_parameters): If the
17719         generic type definition is a type builder, ensure that it is fully
17720         initialized before instantiating it.  Kill some dead code.
17721
17722 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17723
17724         * object.c: clear the loader_error () before loading
17725         more metadata stuff (bug #80258).
17726
17727 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17728
17729         * icall.c, icall-defs.h: type modifiers icalls for
17730         parameters and properties.
17731
17732 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17733
17734         * object.c, icall.c: fixed warnings.
17735
17736 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17737
17738         * marshal.c: fixed a couple of leaks and coding style in a few places.
17739
17740 2006-12-08  Dick Porter  <dick@ximian.com>
17741
17742         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17743         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17744         80173.
17745
17746 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17747
17748         * process.c: ProcessStartInfo may have only filename set and
17749         arguments can be NULL.
17750
17751 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17752
17753         * icall.c: fix leak found by Robert Jordan.
17754
17755 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17756
17757         * marshal.c, marshal.h: generate managed method to access an element
17758         of a multi-dimensional array.
17759
17760 2006-11-30  Paolo Molaro (lupus@ximian.com)
17761
17762         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17763
17764 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17765
17766         * icall.c: back out GetFields () fix until the serialization code is
17767         fixed to not depend on the incorrect behaviour.
17768
17769 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17770
17771         * profiler.c: provide defaults if none are set.
17772
17773 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17774
17775         * Makefile.am, attrdefs.h: new public header file with
17776         constants for attributes for use by embedders.
17777
17778 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17779
17780         * icall.c: GetFields () fix for bug #80064.
17781
17782 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17783
17784         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17785         removed long unused icalls.
17786
17787 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17788   
17789         * marshal.c: 
17790                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17791                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17792                 can be generated without a delegate class.
17793                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17794         
17795         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17796
17797 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17798
17799         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17800         #80069.
17801
17802 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17803
17804         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17805         icall-def.h: added icalls needed by System.GC.
17806
17807 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17808
17809         * loader.c: ensure the class in catch clauses is handled
17810         correctly for generics methods (fixes bug#79980).
17811
17812 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17813
17814         * monitor.h, monitor.c: added mono_locks_dump () function
17815         to help debug deadlocks involving managed locks.
17816
17817 2006-11-13  Dick Porter  <dick@ximian.com>
17818
17819         * file-io.c (get_file_attributes): If the file is a symlink try
17820         and get the stat data for the target, but also add the
17821         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17822         the specs for the windows symlink support, but will probably have
17823         to be reworked when I have test data from a vista machine.  Fixes
17824         bug 79887.
17825
17826 2006-11-13  Dick Porter  <dick@ximian.com>
17827
17828         * gc.c (mono_domain_finalize): 
17829         * marshal.c (mono_delegate_begin_invoke): 
17830         * threadpool.c (socket_io_init, mono_thread_pool_init)
17831         (mono_thread_pool_finish): 
17832         * monitor.c (mono_monitor_try_enter_internal): 
17833         * threads.c (mono_thread_resume, mono_thread_init)
17834         (mono_thread_suspend_all_other_threads)
17835         (mono_thread_execute_interruption): 
17836         * appdomain.c (mono_domain_unload): Check for NULL error returns
17837         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17838         75733.
17839
17840 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17841
17842         * process.c
17843         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17844         Only close the handle if the value of the handle is not
17845         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17846         robust.
17847
17848         Improvement for #75733, so that we do not run into this problem. 
17849
17850         
17851         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17852         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17853         internal variables.  Fixes #79462 
17854         
17855
17856 2006-11-09  Dick Porter  <dick@ximian.com>
17857
17858         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17859         Use poll() not select().  Fixes bug 79397.
17860
17861 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17862
17863         Fix #79872
17864         * assembly.c (mono_assembly_load_from_full): Check that the given
17865         image has an assembly manifest.
17866
17867 2006-11-09  Ankit Jain  <jankit@novell.com>
17868
17869         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17870         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17871         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17872
17873 2006-11-07  Dick Porter  <dick@ximian.com>
17874
17875         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17876         Put the old resolver behaviour back for pre-2.0 profiles.
17877
17878 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17879
17880         * threadpool.c: precise GC and locking fixes.
17881
17882 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17883
17884         * class.c: don't load types that have an explicit unaligned
17885         managed reference. Provide better info in the TypeLoad exception.
17886         Part of the fix for bug #79744.
17887         * object.c: use the correct check for class type load issues.
17888
17889 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17890
17891         * class.c: enforce alignment of fields with managed references
17892         even when Pack=1 is forced by the user (bug #77788).
17893
17894 2006-11-03  Dick Porter  <dick@ximian.com>
17895
17896         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17897         If the address reverse lookup fails, return it as the hostname
17898         anyway.  Fixes bug 79721.
17899
17900 2006-11-03  Dick Porter  <dick@ximian.com>
17901
17902         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17903         Fix build on Windows.
17904
17905 2006-11-02  Dick Porter  <dick@ximian.com>
17906
17907         * icall-def.h: 
17908         * object-internals.h: 
17909         * exception.c (mono_get_exception_thread_interrupted): 
17910         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17911         Fixes bug 74525.
17912
17913         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17914         Check for pending Thread.Interrupt.
17915
17916 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17917         * loader.c: Fixed bug 79684.
17918
17919 2006-10-27  Dick Porter  <dick@ximian.com>
17920
17921         * file-io.c (get_file_attributes): Force symlinks to directories
17922         to be returned as a regular file.  Fixes bug 79733.
17923 2006-10-26  Dick Porter  <dick@ximian.com>
17924
17925         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17926         CreateFile to open a directory then we need to set the
17927         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17928
17929 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17930
17931         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17932         friends.
17933
17934 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17935
17936         * sgengc.c: small cleanup of timer code.
17937
17938 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17939
17940         * sgen-gc.c: fix some warnings and start adding support for
17941         complete object removal on domain unload.
17942
17943 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17944
17945         * assembly.c: build_assembly_name should not consider a version
17946         number without build or revision number invalid. Fixes bug #79715.
17947
17948 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17949
17950         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17951         call kernel32 function OutputDebugString directly.
17952         
17953         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17954         
17955 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17956
17957         * reflection.c: small cleanup, using a function to insert a MonoString
17958         in the string heap.
17959
17960 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17961
17962         * reflection.c: moving GC fixes.
17963
17964 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17965
17966         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17967         all the objects with finalizers belonging to an unloading appdomain.
17968
17969 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17970
17971         * sgen-gc.c: added ability to allocate even when the nursery is fully
17972         pinned and fixed a couple of bugs.
17973
17974 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17975
17976         * threads.h: Revert the last change for now.
17977
17978         * threads.h (mono_thread_get_pending_exception): Rename this to
17979         mono_thread_get_undeniable_exception ().
17980
17981 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17982
17983         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17984         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17985         when fname does not refer to valid assembly. This result in a more
17986         meaningful error message.
17987         * exception.c: added mono_get_exception_bad_image_format2 which 
17988         constructs a BadImageFormatException using the ctor taking a custom
17989         message and the file name. Passing in a NULL msg results in a default
17990         message.
17991         * exception.h: define mono_get_exception_bad_image_format2 function.
17992         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17993         when file name pointed to an invalid IL image. Use 
17994         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17995         as this results in a more meaningful error message.
17996
17997 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17998
17999         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
18000         #79465.
18001
18002 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
18003
18004         * metadata.c (mono_type_size): Change the align parameter to guint32 for
18005         consistency with the other _size functions.
18006         (mono_type_stack_size): Ditto.
18007
18008         * class.c object.c icall.c: Fix warnings caused by the above change.
18009
18010         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
18011
18012         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
18013
18014         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
18015
18016 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18017
18018         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
18019         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
18020         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
18021         threadpool.h, threads-types.h: mark more internal functions.
18022
18023 2006-10-11  Dick Porter  <dick@ximian.com>
18024
18025         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
18026         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
18027         reproduce the bug even before applying the fix.)
18028
18029 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
18030
18031         * reflection.c: allow retrieving attributes for arguments in generic
18032         methods (bug #79241).
18033
18034 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
18035
18036         * debug-mono-symfile.c: properly check fopen () result (found by
18037         coverity).
18038
18039 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
18040
18041         * reflection.c: make error message clearer and fixed two
18042         issuelets found by Coverity.
18043
18044 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
18045
18046         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
18047
18048 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18049
18050         * object-internals.h, gc-internal.h, profiler-private.h:
18051         mark internal functions.
18052
18053 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18054
18055         * reflection.c: put data in the text section.
18056         * icall.c: recognize more types in type_from_typename ().
18057         * process.c, marshal.c: added some GC FIXMEs.
18058
18059 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18060
18061         * loader.c: check for NULL before initializing.
18062
18063 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
18064
18065         * gc.c (finalizer_thread): Use a non-alertable wait here.
18066
18067         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
18068         until the correct solution is found.
18069
18070 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18071
18072         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18073         modules with no metadata. Fixes #79596.
18074
18075         * image.c (load_metadata_ptrs): Put back the error message when
18076         the #- heap is encountered since the support is not complete yet.
18077
18078 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18079
18080         * gc.c: do not allow the user to SuppressFinalize () a
18081         delegate because it would leak the trampoline if present.
18082
18083 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18084
18085         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18086         PropertyPtr table.
18087
18088 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18089
18090         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18091
18092         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18093
18094         * row-indexes.h: Add definitions for *Ptr tables.
18095
18096         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18097
18098         * metadata.c (mono_metadata_translate_token_index): New helper function to
18099         translate table indexes used in uncompressed metadata.
18100         (mono_metadata_decode_table_row): Ditto.
18101         (mono_metadata_decode_table_row_col): Ditto.
18102
18103         * metadata.c: Add table schema for *Ptr tables.
18104
18105         * class.c loader.c: Use the new helper function to access the affected metadata
18106         tables.
18107         
18108         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18109         #38532.
18110         
18111 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18112
18113         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18114         sequences which can be unbounded in size. Fixes #79583.
18115
18116 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18117
18118         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18119         static initialization.
18120
18121         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18122
18123         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18124
18125         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18126
18127         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18128         ctor fails, i.e. throw the same exception on subsequent accesses.
18129         
18130 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18131
18132         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18133         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18134         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18135         Handle marshalling of interfaces and VARIANTs contained in structs.
18136         
18137         Code is contributed under MIT/X11 license.
18138         
18139 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18140
18141         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18142         
18143         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18144         mempool.
18145
18146 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18147
18148         * console-io.c: ignore previous SIGINT handler.
18149
18150 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18151
18152         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18153         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18154         #79460, #79461, #79485.
18155
18156         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18157
18158         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18159         #79217.
18160
18161 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18162
18163         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18164         could be generated from it.
18165
18166 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18167
18168         * rand.c: fix read loop to correctly handle EINTR.
18169
18170 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18171
18172         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18173         internal calls are defined to keep methods closer to the declaring
18174         type and allow a significant reduction in runtime relocations and
18175         memory usage.
18176
18177 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18178
18179         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18180         exception message to have FileNotFoundException use the default
18181         assembly load error message. Fixes bug #79426.
18182         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18183
18184 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18185
18186         * threadpool.c: (start_thread_or_queue) use the root domain when
18187         creating the thread instead of the async object one.
18188
18189 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18190
18191         * class.c, object.c, class-internals.h, reflection.c:
18192         for arrays, store element_size inside MonoClass (speedup
18193         for array object creation).
18194
18195 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18196
18197         * icall.c: fixed CodeBase to use the file name and not the module
18198         name (bug #79365).
18199
18200 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18201
18202         * mono-debug.c, mono-debug.h: export find_method as
18203         mono_debug_find_method ().
18204
18205 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18206
18207         * debug-helpers.c, class-internals.h: added a few functions useful
18208         when debugging under gdb.
18209
18210 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18211
18212         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18213         characters that need special handling.
18214
18215 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18216
18217         * mono-config.c: make the os/cpu specification more flexible,
18218         allowing lists and negation.
18219
18220 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18221
18222         * marshal.c: COM Interop fixes. Handle case where method->klass.
18223         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18224         calling convention on non-windows platforms. This is for
18225         compatibility with XPCOM and MainWin COM.
18226         
18227         Code is contributed under MIT/X11 license.
18228         
18229
18230 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18231
18232         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18233         correctly. Fixes #79217.
18234
18235         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18236
18237 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18238
18239         * mono-config.c: allow both an os and cpu attribute for dllmap
18240         and dllentry elemnets to enable a single config file to be used
18241         for multiple architectures.
18242
18243 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18244
18245         * loader.c: MonoLoaderError was cleared too soon on load failure.
18246         Fixes bug #79424.
18247
18248 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18249
18250         * icall.c: use the defining class vtable when accessing a
18251         static field, not a pobblibly derived class.
18252
18253 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18254
18255         * icall.c string-icalls.c: Remove references to unicode.h.
18256
18257         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18258
18259         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18260
18261         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18262         indicating the image where custom marshaller types should be looked up.
18263         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18264         custom marshallers, instead of corlib. Fixes #79425.
18265
18266 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18267
18268         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18269
18270 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18271
18272         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18273         Implement Environment.ProcessorCount.
18274         
18275         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18276         Implement Environment.ProcessorCount.
18277         
18278         * icall.c: 
18279         Add Environment.ProcessorCount icall.
18280         
18281         Patch by Jason McFall.
18282
18283 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18284
18285         * assembly.c: don't append .exe/.dll when the filename already contains
18286         one of those extensions.
18287
18288 2006-09-12  Martin Baulig  <martin@ximian.com>
18289
18290         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18291         to array interfaces.
18292
18293 2006-09-11  Martin Baulig  <martin@ximian.com>
18294
18295         * reflection.c (mono_image_build_metadata): Create the
18296         MethodImpl's after emitting all types and methods, so we don't
18297         need another fixup pass for them.
18298
18299 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18300
18301         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18302         change.
18303
18304 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18305
18306         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18307         unload.
18308
18309 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18310
18311         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18312         args is not set. Fixes #78926.
18313
18314 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18315
18316         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18317
18318         * image.c (load_class_names): Move this to class.c, and rename it to 
18319         'mono_image_init_name_cache'.
18320         (load_modules): Fix a warning.
18321
18322         * class.c icall.c image.c: Initialize image->name_cache lazily.
18323
18324         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18325         on its name using information in the AOT file.
18326
18327         * class.c (mono_class_from_name): Use the new hook function.
18328
18329 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18330
18331         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18332         correctly.
18333
18334         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18335         Fixes #79289.
18336         
18337 2006-09-06  Martin Baulig  <martin@ximian.com>
18338
18339         * icall.c (mono_lookup_internal_call): Small fix.
18340
18341 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18342
18343         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18344         double g_free.
18345
18346 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18347
18348         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18349         when --debug is specified.
18350
18351 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18352
18353         * class.c (setup_generic_array_ifaces): Fix a warning.
18354
18355 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18356
18357         * Temporarily remove the patch to assemly.c that checks the
18358         assembly versions as it breaks our gacutil.
18359
18360 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18361
18362         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18363
18364         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18365         a net 1.0 runtime.
18366
18367         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18368         created using the default ctor. Fixes #79152.
18369         (mono_string_builder_to_utf16): Ditto.
18370
18371 2006-09-01  Martin Baulig  <martin@ximian.com>
18372
18373         Fix handling of the generic array interfaces.
18374
18375         * class-internals.h
18376         (MonoDefaults): Removed `generic_array_class' and added
18377         `generic_ilist' class.
18378
18379         * class.c
18380         (mono_bounded_array_class_get): Add the new generic array interfaces.
18381         (setup_generic_array_ifaces): New static method; create vtable
18382         entries for each method in the generic array interfaces.
18383
18384         * metadata.c
18385         (select_container): Allow "parent-less" generic methods.
18386
18387         * marshal.c
18388         (mono_marshal_get_generic_array_helper): New public method.
18389
18390         * icall.c
18391         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18392         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18393         moved the interncall into System.Array.
18394
18395 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18396
18397         A few more cases of avoiding work on types with ->byref set.
18398         Has the real fix for #79238
18399         * icall.c (is_generic_parameter): New helper.
18400         (ves_icall_Type_GetGenericParameterPosition): Use it.
18401         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18402         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18403         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18404         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18405         reference types.
18406         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18407         reference types.
18408         (ves_icall_Type_get_IsGenericInstance): Likewise.
18409         (ves_icall_Type_get_IsGenericType): Likewise.
18410
18411 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18412
18413         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18414         class if possible.
18415
18416         * mempool.h (mono_mempool_get_allocated): New helper function.
18417
18418         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18419         change.
18420
18421         * mempool.c: Fix warnings and the calculation of stats.
18422
18423         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18424
18425         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18426
18427         * loader.c (mono_get_method_from_token): Update method_count stat.
18428
18429         * class-internals.h (MonoStats): Add some stats.
18430
18431 2006-08-31 Robert Jordan  <robertj@gmx.net>
18432
18433         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18434         with managed variants.
18435         All code is contributed under the MIT/X11 license.
18436         
18437 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18438
18439         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18440         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18441
18442         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18443
18444         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18445         with cycles in classes.
18446
18447         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18448
18449         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18450         missing a [MarshalAs] directive. Fixes #79203.
18451
18452         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18453         klass->marshal_info. Fixes #79217.
18454
18455 2006-08-30  Martin Baulig  <martin@ximian.com>
18456
18457         Committing a patch from Joachim Ante <joe@otee.dk>:
18458         Add support for binary data symbol stores.
18459
18460         * debug-mono-symfile.c
18461         (mono_debug_open_mono_symbol_file): Renamed into
18462         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18463         arguments.
18464
18465         * mono-debug.c
18466         (mono_debug_open_image): Added `raw_contents' and `size' args.
18467         (mono_debug_init_2_memory): New public function.
18468
18469 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18470
18471         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18472
18473 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18474
18475         * appdomain.c: implement support for ShadowCopyFiles.
18476
18477 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18478
18479         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18480         when value is NULL (and should remove CID #51).
18481
18482 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18483
18484         * image.c: moved 2 functions to ../utils.
18485
18486 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18487
18488         * gc.c: cope with the target object of a GC handle being NULL
18489         (bug #78877).
18490
18491 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18492
18493         * class.c: recursively check parent's explicit implementations
18494         of interface methods (fixes bug #79125).
18495
18496 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18497
18498         * filewatcher.c: Avoid warnings when building, do not redefine
18499         constants that are defined.
18500
18501         Remove warnings.
18502
18503 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18504
18505         * image.c: don't fail when the link points to an absolute path.
18506
18507 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18508
18509         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18510         Fix CID #3.
18511
18512 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18513
18514         * image.c (full_path): A new method used to obtain the actual path
18515         of an assembly even in the presence of symbolic links.  
18516
18517         This is necessary for the case where we are running a binary that
18518         has been GACed, but we are using the "published" path name
18519         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18520         file in the GAC.
18521
18522         This was the source of the failure for the `xsp' command with the
18523         recent AppDomain changes, as far as the runtime was concerned,
18524         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18525         $prefix/mono/gac/blah/version/blah.exe.
18526
18527         (do_mono_image_open): use full path
18528
18529 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18530
18531         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18532
18533 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18534
18535         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18536         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18537
18538 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18539
18540         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18541         small structures. Fixes #78990.
18542
18543 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18544
18545         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18546
18547         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18548
18549 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18550
18551         * appdomain.c:
18552         * marshal.c: don't load all the assemblies from a domain into newly
18553         created ones. The new domains might have different rules and load
18554         assemblies from different locations. Fixes bug #76757.
18555
18556         Patch by Lluis. Conflicts resolved by Brian Crowell.
18557
18558 2006-08-16  Alp Toker  <alp@atoker.com>
18559
18560         * socket-io.c: First half of the fix for #79084.
18561         Set sa_size to the length of the content, not that of the struct.
18562         Don't add NULL suffix to the content, this should be done in
18563         managed code if needed.
18564
18565 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18566
18567         Fix part of #79012
18568         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18569         mono_metadata_parse_type returns NULL.
18570
18571 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18572
18573         * normalization-tables.h : new file for string normalization data.
18574         * locales.c, locales.h, icall.c :
18575           added load_normalization_resource() for string normalization,
18576           and icall as well.
18577         * Makefile.am : added normalization-tables.h to the sources.
18578
18579 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18580
18581         * marshal.c: Add more helper functions to reduce code duplication and use them
18582         everywhere.
18583
18584 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18585
18586         * marshal.c: Fix non-x86 stdcall warnings.
18587         
18588         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18589         them everywhere.
18590
18591 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18592
18593         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18594         type check on multi-dimensional arrays. Fixes #79000.
18595
18596 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18597
18598         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18599         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18600         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18601         * class-internals.h: add is_com_object to class structure.
18602         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18603         null checks to COM object marshalling. Fix .ctor call on RCW.
18604         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18605         
18606         All code is contributed under the MIT/X11 license.
18607
18608 2006-08-09  Dick Porter  <dick@ximian.com>
18609
18610         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18611         racing mono_monitor_allocator_lock() somewhere, so don't delete
18612         the critical section for now.  Found by running and exiting
18613         monodevelop.
18614
18615 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18616
18617         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18618         (ves_icall_System_ComObject_FindInterface): Ditto.
18619         (ves_icall_System_ComObject_CacheInterface): Ditto.
18620
18621         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18622         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18623
18624 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18625
18626         * threadpool.c: treat pipes from process asynchronous reads as sockets
18627         when reading from them, so we get select/poll or epoll to wait for
18628         data.
18629
18630 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18631
18632         * loader.c: Fix a typo (CID #233) in the null check.
18633
18634 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18635
18636         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18637         Hopefully fixes #78949.
18638         
18639         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18640         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18641         bytes. Fixes #78972.
18642
18643 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18644
18645         * filewatcher.c: we need to set errno here.
18646
18647 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18648
18649         * filewatcher.c: let Win32Exception get the error value.
18650
18651 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18652
18653         * filewatcher.c: translate errno into win32 errors for Win32Exception
18654         to know what happened.
18655
18656 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18657
18658         * threadpool.c: Fix more warnings.
18659
18660         * assembly.c (search_loaded): Fix warnings.
18661
18662         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18663         (mono_async_invoke): Ditto.
18664
18665 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18666
18667         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18668         entries for __ComObject type in addition to ComImport types.
18669         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18670         about hash table.
18671         
18672         All code is contributed under the MIT/X11 license.
18673
18674 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18675
18676         * image.c: avoid tentative loading of modulerefs that contain
18677         no metadata (P/Invoke library names).
18678
18679 2006-07-28  Dick Porter  <dick@ximian.com>
18680
18681         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18682         mono_loader_lock() somewhere, so don't delete the critical section
18683         for now.  Found by running and exiting monodevelop.
18684
18685 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18686
18687         * filewatcher.c: define the inotify syscalls when we're building on
18688         linux and have sys/syscall.h. The build system might not have support
18689         for inotify but the target system might have it.
18690
18691 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18692
18693         * domain.c: Documentation updates.
18694
18695         * loader.c (mono_free_method): Do not release the method
18696         information if we are being profiled, as profilers will use this
18697         information at shut down to present some data to the user.
18698
18699         This is needed so that the profiler does not crash, as the
18700         profiler tends to keep MonoMethods around, and they might become
18701         invalid if we free these.
18702
18703         (mono_get_method_constrained): Return the original CIL stream
18704         method as well, so verification can be performed against it.
18705
18706 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18707
18708         * filewatcher.[ch]: support for inotify file system watcher.
18709         * icall.c: add new internal calls for the inotify file system watcher.
18710
18711 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18712
18713         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18714         #78888.
18715
18716 2006-07-20  Dick Porter  <dick@ximian.com>
18717
18718         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18719         warning.
18720
18721 2006-07-20  Dick Porter  <dick@ximian.com>
18722
18723         * threads.c (start_wrapper): Do the thread cleanup while we still
18724         hold a reference to its object.  Fixes bug 78123.
18725
18726 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18727
18728         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18729         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18730           "managed-to-managed".
18731         * icall.c: Redirect string constructors that take sbyte* to
18732           ves_icall_System_String_ctor_RedirectToCreateString.
18733         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18734           to CreateString () methods with matching signature.
18735         * reflection.c: Use original security informations for
18736           MONO_WRAPPER_MANAGED_TO_MANAGED.
18737         * security-manager.c: Use original security informations for
18738           MONO_WRAPPER_MANAGED_TO_MANAGED.
18739         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18740           that is a placeholder and only its address should be used.
18741         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18742           that is a placeholder and only its address should be used.
18743
18744 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18745
18746         Begin implementing COM Interop.
18747         * appdomain.c: Increment corlib version.
18748         * class.c: Set ComImport classes' parent to __ComObject.
18749         * loader.c: Mark cominterop methods as such.
18750         * domain.c: Add __ComObject class to MonoDefaults structure.
18751         * image.c: Add 2 hashtables to the image for COM Interop related methods
18752         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18753         using the mempool allocator
18754         
18755         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18756         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18757         declaration for mono_metadata_type_dup_mp.
18758         
18759         * debug-helpers.c: Added strings for two additional wrapper types
18760         * object.c: Create proxy objects for ComImport classes
18761         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18762         and added __ComObject class to MonoDefaults structure.
18763         
18764         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18765         MonoComInteropProxy and MonoComObject.
18766         
18767         * marshal.c: Added support for COM Interop
18768         (signature_cominterop): Converts managed signature to corresponding
18769         unmanaged COM signature.
18770         (cominterop_get_function_pointer): gets unmanaged function pointer via
18771         COM object vtable
18772         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18773         (cominterop_get_method_interface): returns interface type that method is defined on
18774         (mono_mb_emit_cominterop_call): emits native call to function pointer
18775         gotten from vtable
18776         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18777         that matches signature of unmanaged function.
18778         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18779         (cominterop_get_invoke): forwards call from proxy to __ComObject
18780         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18781         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18782         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18783         
18784         * marshal.h: Added Marshal icall declarations.
18785         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18786         so we can access them in finalizer
18787         
18788 2006-07-14  Dick Porter  <dick@ximian.com>
18789
18790         * object.c (mono_type_initialization_cleanup): Fix a race
18791         condition by temporarily commenting out the critical section
18792         deletion.
18793
18794 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18795
18796         * reflection.c (create_custom_attr): Fix some warnings.
18797         (create_custom_attr_data): Ditto.
18798         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18799         types. Fixes #78855.
18800
18801 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18802
18803         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18804
18805         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18806
18807 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18808
18809         * reflection.c (resolve_object): Add support for DynamicMethod.
18810
18811         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18812         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18813
18814 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18815
18816         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18817         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18818
18819 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18820
18821         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18822         Fixes #77888.
18823
18824 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18825
18826         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18827         slightly: remove a shadow local variable.
18828
18829 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18830
18831         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18832         definition that introduces the virtual function slot.
18833         Also fix Coverity #105.
18834
18835 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18836
18837         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18838         for dynamic assemblies. Fixes #78724.
18839
18840 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18841
18842         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18843         Fixes #78722.
18844
18845 2006-06-21  Martin Baulig  <martin@ximian.com>
18846
18847         * reflection.c
18848         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18849         fixes #76484.
18850
18851 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18852
18853         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18854
18855 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18856
18857         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18858         nor TYPEREFs.
18859         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18860         Inflate result if necessary.
18861         (mono_class_get_full): Remove old version.  Rename from
18862         'mono_class_get' and add 'context' argument.  Pass it to
18863         ..._create_from_typespec.
18864         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18865         (mono_ldtoken): Revert change below.
18866
18867 2006-06-20  Martin Baulig  <martin@ximian.com>
18868
18869         * class.c (mono_ldtoken): Don't pass the generic context to
18870         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18871
18872 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18873
18874         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18875         and later freeing it. Fixes #78638.
18876
18877 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18878
18879         * icall.c (mono_class_get_throw): Revert over-zealous error
18880         throwing, the caller for mono_class_get_throw will cope with
18881         errors when classes are not properly initialized already.
18882
18883         The code still copes with loader exceptions though.
18884
18885         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18886         
18887 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18888
18889         Fixes the `make run1' version of RuntimeAbort (to be commited,
18890         source is in Bugzilla).
18891         
18892         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18893         FALSE on class loading failure instead of returning true.
18894
18895         * class.c (mono_class_create_from_typedef): It is possible for
18896         mono_metadata_interfaces_from_typedef_full to fail if a class is
18897         not found, cope with this.
18898         
18899
18900 2006-06-14  Dick Porter  <dick@ximian.com>
18901
18902         * socket-io.c: 
18903         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18904         4.1.1
18905
18906 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18907
18908         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18909
18910 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18911
18912         * icall.c: Another fix for building mono in Visual Studio.
18913
18914 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18915
18916         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18917         
18918 2006-06-09  Martin Baulig  <martin@ximian.com>
18919
18920         * debug-mono-symfile.c: Put this back and really fix it this
18921         time. Sorry for all the trouble.
18922
18923 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18924
18925         * icall.c (mono_class_get_throw): Fix a warning.
18926         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18927         ReflectionTypeLoadException if needed. Fixes #78606.
18928
18929         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18930         (mono_class_init): Ditto.
18931
18932         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18933         ref_only exceptions.
18934         (mono_loader_clear_error): Make this work even if there is no error.
18935
18936 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18937
18938         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18939         Marshal.GetComSlotForMethodInfo using internal call.
18940
18941 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18942
18943         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18944         a function for signalling it.
18945
18946         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18947         a referenced assembly is not found.
18948
18949         * loader.c (mono_loader_error_prepare_exception): Add support for 
18950         LOADER_ERROR_ASSEMBLY. Fix formatting.
18951
18952 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18953
18954         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18955         for VARIANT marshalling on windows and increment corlib version
18956         since Variant struct was added.
18957
18958 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18959
18960         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18961         stack trace line information:
18962
18963         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18964         (Martin) when looking up B which is between A and C, return A not C.
18965
18966         Bug is #78573.
18967
18968         Thanks to Alexander Olk for tracking this down.
18969
18970 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18971
18972         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18973         
18974         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18975         avoid clobbering its value.
18976         (mono_string_to_lpstr): Fix a warning on windows.
18977
18978 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18979
18980         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18981
18982         * reflection.c loader.c: Removed references to 'dummy' flag.
18983
18984         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18985
18986         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18987         it gets GC tracking.
18988
18989         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18990         GC tracking.
18991         
18992         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18993
18994         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18995
18996         * appdomain.c: Bump corlib version.
18997
18998 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18999
19000         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19001         CEE_STIND_REF when working with object references.
19002
19003 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
19004
19005         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
19006         Fixes #78539.
19007
19008 2006-05-30  Miguel de Icaza  <miguel@novell.com>
19009
19010         * loader.c (method_from_memberref): Fix argument value for
19011         mono_loader_set_error_method_load (I was passing the MonoClass
19012         instead of the class name char *).
19013
19014 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
19015
19016         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
19017         CEE_STIND_REF when working with object references.
19018
19019 2006-05-30  Martin Baulig  <martin@ximian.com>
19020
19021         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
19022         mono_method_full_name() change and replace the ':' with a '.'
19023         here.
19024
19025 2006-05-30  Martin Baulig  <martin@ximian.com>
19026
19027         * debug-mono-symfile.c
19028         (mono_debug_symfile_lookup_location): Fix the algorithm:
19029         when looking up B which is between A and C, return A not C.
19030
19031 2006-05-29  Martin Baulig  <martin@ximian.com>
19032
19033         * mono-debug.h
19034         (MonoDebugMethodInfo): Make the typedef public.
19035         (MonoDebugSourceLocation): New public struct.
19036
19037         * mono-debug.c
19038         (mono_debug_source_location_from_address): Removed.
19039         (mono_debug_source_location_from_il_offset): Removed.
19040         (mono_debug_il_offset_from_address): Removed.
19041         (mono_debug_address_from_il_offset): Removed.
19042         (mono_debug_lookup_method): New public function.
19043         (mono_debug_lookup_source_location): New public function; replaces
19044         the old mono_debug_source_location_from_*() functions; see the
19045         inline documentation.
19046         (mono_debug_free_source_location): New public function.
19047         (mono_debug_print_stack_frame): New public function; see the
19048         inline documentation.
19049
19050         * debug-mono-symfile.c
19051         (mono_debug_find_source_location): Renamed into
19052         mono_debug_symfile_lookup_location(); only take a
19053         `MonoDebugMethodInfo *' and an `offset' argument; added inline
19054         documentation.
19055         (mono_debug_find_method): Renamed into
19056         mono_debug_symfile_lookup_method().
19057
19058 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
19059
19060         * assembly.c (mono_assembly_open_full): Dont overwrite the status
19061         returned by mono_image_open_full ().
19062
19063         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
19064         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
19065         #78517.
19066
19067         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
19068         #78518.
19069
19070 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19071
19072         * class.c (mono_class_from_typeref): handle missing images
19073         earlier, deals with bug #78418.   Refactor code; 
19074
19075         Fix a warning introduced in my previous commit (some stale code
19076         from before I revisited my patch).
19077
19078         * class.c (mono_class_create_from_typedef): On failure, remove the
19079         class from the MonoImage->class_cache as the class is not
19080         initialized;   Fixes the leak pointed out by Paolo.
19081
19082 2006-05-25  Dick Porter  <dick@ximian.com>
19083
19084         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19085         DeleteCriticalSections until I figure out which one may still be
19086         sometimes locked when mono_thread_cleanup is called.
19087
19088 2006-05-24  Dick Porter  <dick@ximian.com>
19089
19090         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19091         of mono_thread_manage and back into its own function, so it can be
19092         called after the finalizer thread has finished.
19093
19094         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19095
19096 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19097
19098         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19099         Fixes #78495.
19100
19101         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19102         with non-blittable elements.
19103         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19104
19105 2006-05-24  Martin Baulig  <martin@ximian.com>
19106
19107         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19108         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19109
19110         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19111         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19112         `mono_debugger_event_handler' to NULL.
19113
19114 2006-05-24  Martin Baulig  <martin@ximian.com>
19115
19116         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19117
19118 2006-05-24  Martin Baulig  <martin@ximian.com>
19119
19120         * mono-debug-debugger.h
19121         (mono_debugger_create_notification_function): Added
19122         `MonoCodeManager *' argument.
19123
19124 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19125
19126         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19127
19128 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19129
19130         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19131         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19132         implementation.
19133
19134 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19135
19136         * icall.c: precise GC support: objects can't be stored in unmanaged
19137         memory anymore, even if they are kept alive by other references: since
19138         they can move the GC needs to be able to always find them.
19139
19140 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19141
19142         * object.c: precise GC support for static fields. Support
19143         for moving GCs: write barriers and pinned allocation for interned
19144         strings.
19145
19146 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19147
19148         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19149         structure.
19150
19151 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19152
19153         * class.c, gc.c: sgen and precise GC updates.
19154
19155 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19156
19157         * marshal.h, marshal.c: added write barrier wrapper and precise type
19158         fixes.
19159
19160 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19161
19162         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19163         support.
19164
19165 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19166
19167         * reflection.c: precise and sgen GC updates.
19168
19169 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19170
19171         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19172
19173 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19174
19175         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19176
19177 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19178
19179         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19180         MONO_TYPE_OBJECT. Fixes #78462.
19181
19182 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19183
19184         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19185         and blittable types.
19186
19187 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19188
19189         * class.c (mono_class_get_exception_for_failure): Implement parts
19190         of a TODO: if the loader error is set (instead of the class
19191         error), we return a Loader exception that can be properly thrown
19192         elsewhere.
19193
19194         This was exposed by some Winforms 2.0 code that I tried to run
19195         (Atsushi pointed me to it).
19196
19197 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19198
19199         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19200         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19201         
19202         * marshal.c (emit_marshal_vtype): Add limited support for 
19203         UnmanagedType.LPStruct. Fixes #78427.
19204
19205         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19206         Applied a patch from kangaroo to fix #77523.
19207
19208 2006-05-17  Martin Baulig  <martin@ximian.com>
19209
19210         * threads.c
19211         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19212         (debugger_thread_created): Removed.
19213         (debugger_thread_exited): Removed.
19214
19215 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19216
19217         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19218
19219         * object-internals.h (MonoReflectionResource): Sync with managed version.
19220
19221 2006-05-12  Wade Berrier <wberrier@novell.com>
19222
19223         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19224
19225 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19226
19227         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19228         functions try to allocate from the image mempool.
19229
19230 2006-05-12  Dick Porter  <dick@ximian.com>
19231
19232         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19233
19234 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19235
19236         * object.c: The FieldGetter and FieldSetter methods require the full
19237         name of the class, not only the name. Fixes bug #78277.
19238
19239 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19240
19241         * loader.c (method_from_memberref): Do not pass the NULL klass to
19242         mono_loader_set_error_() methods.  Pass the non-NULL value
19243         (class). 
19244
19245 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19246
19247         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19248         (mono_assembly_close): Null out assembly->image->references after freeing it.
19249
19250         * image.c (mono_image_close): Free image->references.
19251         
19252         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19253
19254 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19255
19256         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19257         before checking if it's NULL (g_assert).
19258
19259 2006-05-10  Martin Baulig  <martin@ximian.com>
19260
19261         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19262         I thought I already killed that two months ago, but now it somehow reappeared.
19263
19264 2006-05-10  Martin Baulig  <martin@ximian.com>
19265
19266         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19267
19268 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19269
19270         * reflection.c: Allocate memory for dynamically created methods in the image
19271         mempools.
19272
19273 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19274
19275         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19276         don't use the ad pointer before checking if it's NULL (g_assert).
19277
19278 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19279
19280         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19281         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19282
19283         * marshal.c: Allocate all signatures from mempools.
19284
19285         * marshal.c: Allocate some more signatures from mempools.
19286
19287 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19288
19289         * object.c (mono_load_remote_field): The code used to provide a
19290         temporary variable for returning results if the user did not
19291         provide a result pointer.  But our temporary variable was allocted
19292         on the satck.
19293
19294         Fix calling code to always pass a result area.   Coverity ID 103.
19295
19296 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19297
19298         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19299         value, not the old. Fixes #78312.
19300         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19301
19302         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19303         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19304         per-image cache.
19305
19306         * assembly.c (mono_assembly_close): Free image->references.
19307
19308         * assembly.c (mono_assembly_names_equal): Fix a warning.
19309         (mono_assemblies_cleanup): Cleanup more global data.
19310
19311         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19312
19313         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19314         ptr_cache and image->modules.
19315
19316         * image.c (mono_image_init): Allocate array_cache lazily.
19317         
19318 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19319
19320         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19321         behavior was changed recently and has bad side effects.
19322
19323 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19324
19325         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19326         
19327         * assembly.c (mono_assembly_close): Remove a debug printf.
19328
19329         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19330
19331         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19332         to also allow for temporary references between mono_image_open ()/close ().
19333
19334         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19335
19336 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19337
19338         * marshal.c: Fix support for dynamic methods.
19339
19340         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19341
19342         * marshal.c (mono_marshal_cleanup): New cleanup function.
19343
19344         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19345         image mempools.
19346
19347         * class.c (mono_class_init): Fix leaking class->nested_classes.
19348
19349         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19350
19351         * image.c (mono_image_init): Initialize the new cashes.
19352
19353         * image.c (mono_image_close): Destroy the new cashes.
19354
19355         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19356
19357         * mempool.c (mono_mempool_strdup): New helper function.
19358
19359         * class-internals.h: Add prototype for mono_loader_unlock ().
19360
19361         * domain.c (mono_jit_info_table_find): Fix a warning.
19362         (mono_debugger_check_runtime_version): Ditto.
19363
19364         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19365         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19366         functions to these modules.
19367
19368         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19369         metadata modules.
19370         
19371         * marshal.c (mono_free_bstr): Fix a warning.
19372
19373         * assembly.c (mono_assembly_open_full): Fix another small leak.
19374
19375         * object.c: Fix some unload leaks in the remoting code.
19376
19377         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19378         function.
19379
19380         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19381
19382         * reflection.c: Fix some unload leaks in dynamic assemblies.
19383
19384 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19385
19386         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19387         * marshal.h: Add BSTR support on Win32
19388         * icall.c: Add BSTR icalls
19389         * metadata.h: Add BSTR enums
19390
19391 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19392
19393         Work to catch the crash from #76795 and turn it into an
19394         exception.   As I stubbed out pieces of the VisualBasic support,
19395         I found a number of places where the code was failing and I added
19396         checks to those places. 
19397         
19398         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19399         function return a status code.  If we fail to parse the signature
19400         from mono_metadata_parse_generic_inst, return FALSE.
19401
19402         * loader.c (mono_get_method_from_token): If we fail to load the
19403         method (mono_class_get) return NULL.   
19404
19405         * (method_from_memberref): Return NULL if we are unable to parse
19406         the method signature
19407
19408         (mono_loader_error_prepare_exception): Since we now use the
19409         loader_error flag internally to stop processing, and obtaining
19410         exceptions that might be thrown will walk this code path the
19411         proper way of going from a MonoLoaderError into a
19412         MonoException was convoluted.   This new routine encapsulates the
19413         process of turning the error into an exception and *clearing* the
19414         error afterwards.
19415         
19416 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19417
19418         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19419         with missing assemblies), and to cope with:
19420
19421                 * Missing fieldref from a non-existing assembly.
19422                 * Missing methodref from a non-existing assembly.
19423
19424         The first batch of work to address *some* of the issues from 76661.
19425         
19426         * object.c (mono_class_create_runtime_vtable): If we fail to
19427         initialize the class raise the exception here. 
19428
19429         * metadata.c (mono_class_get_overrides_full): If any methods fail
19430         to load return the failure to the caller.
19431
19432         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19433         flagging assemblies that failed to load.   
19434
19435         Do not crash if we are unable to load the assembly.
19436
19437         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19438         assemblies. 
19439
19440         * loader.c (mono_loader_set_error_type_load): Change the
19441         convention to always pass unallocated strings, so we make our own
19442         copies (I know our own code had duplicated strings before, but
19443         this keeps the normal conventions).
19444         (method_from_memberref): Call mono_loader_set_error_method_load
19445         for all possible failures of loading the class. 
19446         Remove assert, turn into a loader error.
19447
19448         (mono_loader_error_to_exception): Move this routine from mini
19449         (mini_loader_error_to_exception) there was no need to have that in
19450         mini. 
19451
19452         * class.c (mono_class_from_typeref): If we were not able to load
19453         the assembly with mono_assembly_load_reference, call the
19454         mono_loader_set_error_type_load to register the problem.
19455
19456         (mono_class_setup_fields): If we fail to load the type from
19457         mono_metadata_parse_type_full, call mono_class_set_failure and
19458         break from the loop.
19459
19460         If class->exception_type is set, we do not layout the fields as
19461         that might crash the runtime, and instead return (from breaking
19462         from the previous loop).
19463
19464         (mono_class_setup_vtable): This now returns a boolean indicating
19465         whether the table was properly setup.   The decision is driven by
19466         mono_class_get_overrides_full which might run into non-existing
19467         methods. 
19468         
19469         (mono_class_init): Returns TRUE on success or FALSE if there was a
19470         problem in loading the type (incorrect assemblies, missing
19471         assemblies, methods, etc).
19472
19473         When we call mono_class_setup_fields we also check for a potential
19474         error inside this call (either a class exception or a general
19475         loader exception).
19476
19477         (mono_class_create_from_typedef): If the parent fails to load
19478         (calling mono_class_get_full) return NULL.
19479         
19480         ** Important **
19481
19482         calls to mono_metadata_parse_type_full should be checked
19483         everywhere and set the mono_class_set_failure
19484         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19485
19486         The current patch checks the places where my manually constructed
19487         tests show the errors are showing up, but we should do it
19488         everywhere. 
19489
19490         ** Important2 **
19491
19492         mono_class_init return values should be tested everywhere, like
19493         the previous case this is something that we should audit
19494         everywhere and not only on the cases exposed by the tests I
19495         created. 
19496
19497 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19498
19499         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19500         boolean parameter and instead pass the information on `options'
19501         parameter (FileOptions).
19502
19503         * icall.c: Register the new signature for MonoIO.Open.
19504
19505         * debug-helpers.c (dis_one): Trying to understand how coverity
19506         works.  Fix Run 5, item 78.
19507
19508 2006-04-26  Dick Porter  <dick@ximian.com>
19509
19510         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19511         dereference.
19512
19513 2006-04-25  Martin Baulig  <martin@ximian.com>
19514
19515         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19516
19517         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19518         debugger_thread_created().
19519         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19520         special way.
19521         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19522         (mono_debugger_finalize_threads): New function; undo the effects
19523         of mono_debugger_init_threads().
19524         (mono_debugger_create_all_threads): Removed.
19525
19526 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19527
19528         * image.c (mono_image_close): Tidy up trace messages.
19529
19530         * assembly.c (mono_assembly_close): Ditto.
19531
19532         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19533         no longer references an already freed assembly. Fixes #78168.
19534
19535 2006-04-21  Dick Porter  <dick@ximian.com>
19536
19537         * threads.c (mono_thread_detach): Fix reference counting when
19538         detaching threads.
19539
19540 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19541
19542         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19543         #78155.
19544
19545 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19546
19547         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19548         (mono_type_to_stind): Ditto.
19549
19550         * marshal.c: Use the new helper functions to simplify code.
19551
19552         * image.c (mono_image_close): Add some code for help debug assembly unloading
19553         problems.
19554
19555         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19556         image mempool.
19557
19558         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19559         assembly was already loaded in another appdomain. Fixes #78083.
19560
19561 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19562
19563         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19564         referenced assemblies.
19565         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19566
19567         * domain.c (mono_domain_free): Add a trace message.
19568
19569         * appdomain.c (add_assemblies_to_domain): Ditto.        
19570
19571         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19572         field.  
19573
19574 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19575
19576         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19577
19578 2006-04-12  Martin Baulig  <martin@ximian.com>
19579
19580         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19581         `USE_INCLUDED_LIBGC'.   
19582
19583 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19584
19585         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19586         the patch contains ../ and a small directory name later. Hopefully fixes
19587         #78035.
19588
19589 2006-04-10  Martin Baulig  <martin@ximian.com>
19590
19591         Clean up the debugger's thread-handling code.
19592
19593         The debugger's thread-handling code has been moved from
19594         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19595         over the `threads' hash, keep track of exiting threads and also
19596         use proper locking.
19597
19598         We can now debug XSP and XSP based applications with the debugger.
19599
19600         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19601
19602         * threads.h
19603         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19604         (mono_install_thread_callbacks): Likewise.      
19605
19606         * threads.c (mono_thread_callbacks): Removed.
19607         (debugger_thread_created, debugger_thread_exited): New static functions.
19608         (start_wrapper): Call debugger_thread_created().
19609         (thread_cleanup): Call debugger_thread_exited().
19610         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19611         (mono_debugger_init_threads): New public function.
19612         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19613         iterate directly over the `threads' hash and also use proper locking.
19614
19615         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19616
19617         * mono-debug-debugger.h
19618         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19619
19620 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19621
19622         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19623         argument type=array. Fixes #78057.
19624
19625 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19626
19627         * culture-info-table.h : regenerated. Fixed bug #69652.
19628
19629 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19630
19631         * loader.c metadata.c: Reapply a variant r59116.
19632         
19633         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19634
19635         * class.c (mono_class_setup_interface_offsets): New internal function.
19636
19637         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19638         interfaces too. Fixes #77398.
19639
19640         * reflection.c (encode_cattr_value): Add support for 
19641         parameter type=object, argument type=array.
19642         (load_cattr_value): Ditto. Fixes #77916.
19643
19644         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19645         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19646
19647         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19648         a byval char array and CharSet is Ansi.
19649
19650         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19651
19652 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19653
19654         * metadata.c: Add some locking comments.
19655         
19656         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19657         mempool.
19658         (mono_metadata_free_method_signature): Don't free the signature itself.
19659
19660         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19661
19662         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19663         reference the same MonoImage.
19664         (mono_assembly_load_from_full): Add an assert.
19665
19666 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19667
19668         * image.c (mono_image_close): Don't put the image we are about to free into the
19669         loaded_images_guid_hash.
19670
19671         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19672         to reduce code duplication.
19673
19674         * marshal.c: Register the native functions called by this module as icalls, to
19675         somewhat centralize the creation of MonoMethodSignature's.
19676
19677         * loader.c (mono_method_signature): Add a cache for method signatures.
19678
19679         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19680         the parameter attributes of a method.
19681         (mono_metadata_parse_method_signature_full): Refactored the computation of
19682         parameter attributes into a separate function. Also avoid one allocation in
19683         most cases.
19684
19685         * assembly.c (mono_assembly_close): Ditto.
19686
19687         * image.c (mono_image_close): Log trace messages with INFO level.
19688
19689         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19690
19691         * image.c reflection.c: Correct reference counting of image modules.
19692         
19693         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19694         of this function from the image mempool.
19695         
19696         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19697         to allow more cached types to be used.
19698
19699         * mono-debug.c (mono_debug_add_method): Appled patch from
19700         David S. Miller  <davem@sunset.davemloft.net>: Access 
19701         minfo->lexical_blocks[] entry elements using read32().
19702
19703 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19704
19705         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19706         methods as it is allocated from the mempool.
19707
19708         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19709         image mempool.
19710
19711         * metadata-internals.h: Add comments describing the reference counting scheme
19712         used for MonoImage and MonoAssembly.
19713
19714         * image.c assembly.c reflection.c: Rework reference counting of images and 
19715         assemblies so they are freed when the runtime is shut down. Free some 
19716         additional memory structures when an image is unloaded.
19717         
19718 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19719
19720         * class.c loader.c reflection.c: Allocate more data structures in
19721         the image mempool.
19722
19723 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19724
19725         * icall.c
19726         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19727         build on pre glib 2.4 systems.
19728
19729 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19730
19731         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19732
19733         * icall.c: Fix some warnings.
19734
19735 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19736
19737         * culture-info-table.h : regenerated.
19738
19739 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19740
19741         * threads.c, object-internals.h, verify.c: changed the culture caching
19742         code to use a normal MonoArray for storage so the GC can keep track of
19743         them easily. Fixed bits of the cache logic, too and simplified the
19744         code.
19745
19746 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19747
19748         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19749         thread for non-Boehm GCs.
19750
19751 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19752
19753         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19754         needed to keep track of the data for static fields.
19755
19756 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19757
19758         Fix #75172
19759         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19760         for interface classes.  Use 'num_methods' instead.
19761         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19762         before using '->vtable_size' field.
19763
19764 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19765
19766         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19767         doesn't contain managed pointers, so use a normal hashtable.
19768
19769 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19770
19771         * reflection.c, class-internals.h, domain.c: fixed handling of types
19772         used as values for objects in custom attributes (bug #77915):
19773
19774 2006-03-24  Martin Baulig  <martin@ximian.com>
19775
19776         * class.c (mono_class_setup_fields): Added support for generic
19777         instances; fixes #77580.
19778
19779 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19780
19781         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19782
19783 2006-03-24  Dick Porter  <dick@ximian.com>
19784
19785         * file-io.c (get_file_attributes): More stat macro breakage.
19786         Fixes bug 77759.
19787
19788 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19789
19790         * profiler.c: added the file=filename option in the default profiler
19791         to output the profile data to filename.
19792
19793 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19794
19795         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19796         bug #77877.
19797
19798 2006-03-22  Martin Baulig  <martin@ximian.com>
19799
19800         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19801         allocated `MonoClassField *' in `fb->handle'.
19802
19803 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19804
19805         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19806         allocate interface ID to save memory and allow better ID reuse on
19807         appdomain unload. setup_generic_vtable () removal from Martin.
19808
19809 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19810
19811         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19812         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19813         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19814         write barriers for reference stores with managed objects accessed with
19815         C structures in the runtime and in embedding programs.
19816
19817 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19818
19819         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19820         'interface_id' and 'max_interface_id' fields of MonoClasses
19821         representing open generic types.
19822
19823 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19824
19825         * object.h, object.c, icall.c: added functions to deal with
19826         storing valuetypes that contain references in managed objects.
19827         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19828         fixes and comments around uses of mono_array_addr ().
19829
19830 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19831
19832         * object.h, icall.c, monitor.c: object.GetHashCode ()
19833         implementation that supports the moving garbage collector.
19834
19835 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19836
19837         * icall.c, threads-types.h, threads.c: implemented finalizer for
19838         LocalDataStoreSlot.
19839
19840 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19841
19842         * metadata.c (mono_type_size): Add a fixme.
19843         (mono_type_stack_size): Ditto.
19844
19845         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19846         'type_forwarders' field.
19847
19848         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19849         attribute from net 2.0.
19850
19851         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19852         from class.c.
19853
19854         * class.c (mono_class_setup_fields): Fix a warning.
19855         
19856         * class.c (mono_class_from_name): Add support for assemblyref entries
19857         in the EXPORTEDTYPE table.
19858
19859         * reflection.c: Add support for handling type forwarders under net 2.0.
19860
19861         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19862         
19863 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19864
19865         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19866         overwriting entries in ModuleBuild->types, also clean up the code
19867         a little. Fixes #77774.
19868
19869 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19870
19871         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19872         load friend assembly info when present.
19873
19874 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19875
19876         Fix crasher on gtest-158.cs.
19877         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19878         the return value if the MonoClass we want is yet in an
19879         inconsistent state.
19880         * class.c (mono_class_create_from_typedef): Add an comment
19881         explaining an order dependency between mono_class_setup_parent and
19882         mono_class_setup_mono_type.
19883
19884 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19885
19886         * class.c: documentation updates and events bug fix.
19887
19888 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19889
19890         * class.c: some cleanup, locking fixes.
19891
19892 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19893
19894         * class.c: fix the generics code to setup nested
19895         type info to the instantiated type (bug #77770).
19896
19897 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19898
19899         * marshal.c: fixed a few type correctness issues.
19900
19901 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19902
19903         * loader.c: the Set/Get/Addrtess array methods should be public.
19904
19905 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19906
19907         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19908         
19909         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19910         info->wrapper.
19911
19912 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19913
19914         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19915
19916         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19917
19918         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19919         (mono_mempool_alloc0): Ditto.
19920
19921 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19922
19923         * socket-io.c:
19924         (create_object_from_sockaddr): it was allocating 4 extra bytes
19925         for the AF_UNIX data. Fixes bug #77747.
19926
19927 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19928
19929         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19930
19931 2006-03-09  Dick Porter  <dick@ximian.com>
19932
19933         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19934         Fixes bug 76966 again.
19935
19936 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19937
19938         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19939         names from r57532
19940         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19941
19942 2006-03-07  Martin Baulig  <martin@ximian.com>
19943
19944         * object.c
19945         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19946
19947 2006-03-07  Martin Baulig  <martin@ximian.com>
19948
19949         * class.c
19950         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19951         regression introduced in r56970; see gtest-252.cs.
19952
19953         * loader.c (mono_get_method_constrained): Correctly handle generic
19954         methods; see gtest-253.cs.
19955
19956 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19957
19958         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19959
19960 2006-03-04  Martin Baulig  <martin@ximian.com>
19961
19962         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19963         compute the parent type at runtime, just like we're already doing
19964         it for interfaces.
19965
19966         * reflection.c
19967         (mono_reflection_bind_generic_parameters): Don't compute the
19968         parent type anymore.
19969
19970         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19971
19972 2006-03-04  Martin Baulig  <martin@ximian.com>
19973
19974         * mono-debug-debugger.h
19975         (mono_debugger_create_notification_function): Allocate memory at
19976         runtime and return a pointer to it.
19977
19978 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19979
19980         * assembly.c: Fix windows build.
19981         
19982         * assembly.c: Fix build.
19983
19984         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19985
19986         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19987         
19988 2006-03-03  Dick Porter  <dick@ximian.com>
19989
19990         * process.c
19991         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19992         Check parameters before dereferencing them.  Fixes Aaron's part of
19993         bug 77393.
19994
19995 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19996
19997         Fix performance regression.
19998         * loader.c (find_method_in_class): Add 'from_class' argument.
19999         Rename 'klass' argument to 'in_class'.  The signature is compared
20000         against the method in 'in_class', and the corresponding method is
20001         returned from 'from_class'.
20002         (find_method): Walk both 'in_class' and 'from_class' in parallel.
20003         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
20004         type definition and generic instantiation in parallel.
20005         (mono_get_method_constrained): Update to changes.
20006
20007 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
20008
20009         * threads.c: make sure the domain is correct, too when doing
20010         mono_thread_attach ().
20011
20012 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
20013
20014         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
20015         windows. Fixes #77683.
20016
20017 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
20018
20019         * object.h, *: introduced specific way to set elements of an array
20020         of references to be used as write barrier. Still need to audit the
20021         uses of mono_array_addr.
20022
20023 2006-03-01  Miguel de Icaza  <miguel@novell.com>
20024
20025         * object-internals.h: New field to cache the assmebly name, patch
20026         from Tambet Ingo (tambet@ximian.com)
20027
20028 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
20029
20030         * decimal.h, class-internals.h, metadata-internals.h,
20031         file-io.h: mark a few function declarations as internal, to
20032         reduce the number of PLT entries.
20033
20034 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20035
20036         * file-io.c: fix typo in warning message.
20037
20038 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
20039
20040         * loader.c: on unix, lookup the "*A" version of a function
20041         if charset is auto as a second option before failing.
20042
20043 2006-02-28  Raja R Harinath  <rharinath@novell.com>
20044
20045         * class.h (mono_class_inflate_generic_method): Revert to two
20046         argument version.
20047         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
20048         (mono_class_inflate_generic_method_full): Add.
20049         * class.c (mono_class_inflate_generic_method_full): Rename from
20050         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
20051         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
20052         * loader.c, reflection.c: Update to changes.
20053
20054 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
20055
20056         * icall.c: const fixes and small improvements.
20057
20058 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20059
20060         * threadpool.c: for asynchronous connect(), enable the same workaround
20061         for BSD 6 as for the Mac. Fixes bug #77637.
20062
20063 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
20064
20065         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
20066         formatted classes. Fixes #77524.
20067
20068 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20069
20070         * class.c (inflate_generic_type): Add a couple more
20071         micro-optimizations.
20072         (inflate_generic_context): Don't use the 'gmethod' from
20073         'inflate_with'.
20074         (mono_class_inflate_generic_method): If the method has generic
20075         parameters, but the passed-in context doesn't have a 'gmethod',
20076         create one.  Use the possibly simplified generic instantiation
20077         from the declaring class instead of the one passed in.
20078
20079 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20080
20081         Make generic method signature and method header handling lazy.
20082         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20083         (inflate_generic_header): Likewise.
20084         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20085         parameter to avoid inflating types.
20086         (mono_get_inflated_method): Empty out.
20087         * class.h (mono_class_inflate_generic_method): Update to changes.
20088         * loader.c (mono_get_method_from_token): Don't parse signature for
20089         generic methods, nor methods of generic classes.
20090         (mono_method_signature): Rename from 'mono_method_signature'.
20091         Inflate signature on demand.
20092         (mono_method_get_header): Inflate method header on demand.
20093         * reflection.c: Update to changes.
20094
20095 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20096
20097         * metadata.c (mono_metadata_inflate_generic_inst): If the
20098         instantiation is closed, don't bother expanding it in the new
20099         context.
20100         * class.c (inflate_generic_class): If the generic instantiation
20101         doesn't change after inflation, return the argument itself.
20102         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20103         Add bounds checks.
20104         (inflate_generic_context): If neither the generic class nor the
20105         generic method instantiations change, return the original context.
20106         * reflection.c (mono_method_get_object): Do
20107         'mono_get_inflated_method' before accessing the ->klass field.
20108         (inflate_mono_method): Don't create a MonoGenericMethod unless
20109         necessary.
20110         (inflate_method): Don't pass a constructed type as the declaring
20111         type of a methodbuilder.
20112
20113 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20114
20115         * object.c: fix memory overwrite.
20116
20117 2006-02-22  Dick Porter  <dick@ximian.com>
20118
20119         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20120         it doesn't work any more.
20121         (mono_threads_request_thread_dump): Fix unused variable warnings.
20122
20123 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20124
20125         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20126         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20127         the public header file.
20128
20129 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20130
20131         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20132
20133 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20134
20135         * class-internals.h, object.c: reduce the size of MonoVTable
20136         and store the interface_offsets array at negative offsets.
20137
20138 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20139
20140         * metadata.c: tweak table descriptors data structures to reduce
20141         size and runtime relocations.
20142
20143 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20144
20145         * marshal.c: fix some types and opcodes to be type-safe
20146         in marshaling wrappers.
20147
20148 2006-02-21  Ankit Jain  <jankit@novell.com>
20149
20150         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20151
20152 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20153
20154         * metadata.c (get_constraints): Relax debugging checks for monodis.
20155
20156 2006-02-21  Ankit Jain  <jankit@novell.com>
20157
20158         * metadata.c (mono_metadata_load_generic_params): Move the code
20159         checking for ambiguous generic params from here to mono/dis/get.c
20160         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20161
20162 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20163
20164         Fix assertion triggered when compiling nemerle.
20165         * class.c (mono_get_shared_generic_inst): Rename from
20166         get_shared_inst and make non-static.
20167         * loader.c (mono_get_shared_generic_method): New.  Used to create
20168         the MonoGenericContext-equivalent of a MonoGenericContainer.
20169         (mono_get_method_from_token): Initialize the 'context' field of
20170         the created MonoGenericContainer.
20171         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20172         * metadata.c (get_constraints): Add sanity check.
20173         * class-internals.h: Add new internal methods.
20174
20175         * reflection.c (verify_safe_for_managed_space): New sanity check.
20176         Currently checks that owner-less generic parameters aren't allowed
20177         in managed space.
20178         (mono_type_get_object): Use it.
20179         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20180         that are now in mono_type_get_object.
20181         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20182
20183 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20184
20185         * metadata.c (mono_type_create_from_typespec): Rename from
20186         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20187         argument and caching of types in the generic container.
20188         (unwrap_arrays, find_generic_param): Remove.
20189         * metadata-internals.h: Update.
20190         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20191
20192 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20193
20194         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20195
20196         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20197         return values. Fixes #77581.
20198
20199         * class.c (mono_fnptr_class_get): Switch name and name_space.
20200
20201         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20202         classes and add support for [In, Out] attributes.
20203         (mono_marshal_free_asany): Ditto. Fixes #77524.
20204
20205 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20206
20207         * class.c (mono_class_from_generic_parameter): Make more robust to
20208         incomplete MonoGenericContainers from monodis.
20209
20210 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20211
20212         * class-internals.h: added some more exception types.
20213         * class.c, metadata.c: added a few checks to handle missing
20214         types.
20215
20216 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20217
20218         Use owner-less generic-params some more.
20219         * class.c (my_mono_class_from_generic_parameter): Remove.
20220         (mono_class_from_generic_parameter): Handle null image,
20221         param->name and param->owner.
20222         (mono_class_from_mono_type): Update.
20223         (mono_class_create_from_typespec): Remove 'container' parameter.
20224         If that parameter is non-null, the result is always inflated by
20225         'mono_class_get_full' anyway.
20226         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20227         parameter.
20228         (mono_class_get_full): Update.
20229
20230         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20231         instance is not open, don't bother inflating.
20232         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20233         parse metadata for inflated classes.
20234         (_mono_class_get): Change GenericContext* parameter to
20235         GenericContainer*.
20236         (mono_class_create_from_typespec): Likewise.  Simplify, and
20237         implement trivially.  All the cases are handled in
20238         mono_class_from_mono_type.  Don't inflate returned class.
20239         (mono_class_get_full): Delegate GENERICINST optimization to
20240         inflate_generic_type.
20241         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20242
20243 2006-02-16  Dick Porter  <dick@ximian.com>
20244
20245         * socket-io.c (create_object_from_sockaddr): Fix typo.
20246         (create_sockaddr_from_object): Check array lengths before
20247         potentially accessing items off the end.
20248         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20249         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20250         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20251         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20252         length checks to avoid wraparound overflows.
20253         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20254         contents of the array of sockets
20255         (hostent_to_IPHostEntry2)
20256         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20257         Check return value of inet_ntop ().
20258         (addrinfo_to_IPHostEntry): Fix typo
20259
20260 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20261
20262         Type metadata parsing doesn't use generic-instantiation information.
20263         * metadata.c (mono_metadata_parse_array_full): Change
20264         MonoGenericContext* parameter to MonoGenericContainer*.
20265         (mono_metadata_parse_type_full): Likewise.
20266         (mono_type_create_from_typespec_full): Likewise.
20267         (mono_metadata_parse_mh_full): Likewise.
20268         (mono_metadata_parse_generic_inst): Likewise.
20269         (do_mono_metadata_parse_generic_class): Likewise.
20270         (do_mono_metadata_parse_type): Likewise.
20271         * metadata-internals.h: Update to changes.
20272         * class.c (mono_class_find_enum_basetype): Likewise.
20273         (mono_class_setup_fields): Likewise.
20274         (mono_class_create_from_typespec): Likewise.
20275         * loader.c (method_from_methodspec): Likewise.
20276         (mono_get_method_from_token): Likewise.
20277         (mono_method_get_header): Likewise.
20278
20279 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20280
20281         * marshal.c: handle additional GENERICINST case (patch from
20282         Thong Nguyen <tum@veridicus.com>).
20283         Fix a few cases where LDIND_I/STIND_I was used for references.
20284
20285 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20286
20287         * reflection.c (mono_reflection_get_token): Remove unused variable.
20288
20289 2006-02-16  Martin Baulig  <martin@ximian.com>
20290
20291         * reflection.c (mono_reflection_get_token): Add support for fields
20292         in instantiated generic types.
20293
20294         * icall.c
20295         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20296
20297 2006-02-15  Martin Baulig  <martin@ximian.com>
20298
20299         * icall.c
20300         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20301         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20302         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20303         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20304
20305 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20306
20307         * class.c, metadata.c, metadata.h, object.c, icall.c,
20308         marshal.c: changed mono_type_get_underlying_type () to do
20309         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20310         Fixed handling of instantiated generic valuetypes (bug #75479).
20311
20312 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20313
20314         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20315         Delegate to mono_metadata_decode_value, and work on the returned value.
20316
20317         * icall.c (ves_icall_MonoType_GetGenericArguments):
20318         Add consistency check here too.
20319         
20320 2006-02-15  Ankit Jain  <jankit@novell.com>
20321
20322         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20323         char/short etc.
20324
20325 2006-02-15  Ankit Jain  <jankit@novell.com>
20326
20327         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20328         signed values, used only for representing lower bounds of arrays.
20329         (mono_metadata_parse_array_full): Use new
20330         mono_metadata_decode_signed_value to decode lower bounds.
20331
20332 2006-02-14  Martin Baulig  <martin@ximian.com>
20333
20334         * reflection.c
20335         (mono_reflection_get_token): Support "MonoGenericMethod" and
20336         "MonoGenericCMethod" and allow generic instances / methods.
20337
20338 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20339
20340         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20341         to obtain the terminal size using an ioctl.
20342
20343         * object.c (mono_nullable_init): Revert this as nullable reference
20344         types are not valid.
20345         (mono_nullable_box): Ditto.
20346
20347 2006-02-09  Dick Porter  <dick@ximian.com>
20348
20349         * threads.c (mono_thread_detach): Drop a reference to the thread
20350         we're detaching.
20351
20352 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20353
20354         * object.c (mono_nullable_init): Handle nullable reference types.
20355         (mono_nullable_box): Ditto. Fixes #77446.
20356
20357 2006-02-07  Martin Baulig  <martin@ximian.com>
20358
20359         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20360
20361 2006-02-07  Ankit Jain  <jankit@novell.com>
20362
20363         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20364         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20365         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20366         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20367         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20368         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20369
20370 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20371
20372         * class.c (mono_class_create_generic): Set type_token as well.
20373
20374         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20375         compatible with MS.
20376
20377 2006-02-02  Martin Baulig  <martin@ximian.com>
20378
20379         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20380         has never been used so far.
20381
20382 2006-02-02  Martin Baulig  <martin@ximian.com>
20383
20384         * mono-debug-debugger.h: Changed comment at the top of this file;
20385         the header is not installed, but it's safe to #include it from
20386         within the JIT.
20387
20388         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20389         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20390
20391 2006-02-02  Martin Baulig  <martin@ximian.com>
20392
20393         * mono-debug.h
20394         (MonoSymbolTable): Removed the `metadata_info' field.
20395
20396         * mono-debug.c
20397         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20398
20399         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20400         (mono_debugger_add_builtin_types): Removed.
20401         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20402         (mono_debugger_create_notification_function): We now operate on a
20403         pre-allocated area; take a `gpointer' and return `void'.
20404
20405         * mono-debug-debugger.c
20406         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20407         (mono_debugger_add_builtin_types): Removed.
20408
20409 2006-02-02  Martin Baulig  <martin@ximian.com>
20410
20411         * threads.c (mono_debugger_create_all_threads): New public method.
20412
20413 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20414
20415         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20416         breaks on several platforms.
20417
20418 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20419
20420         * assembly.c: the VS.NET build doesn't supply default values for
20421         MONO_ASSEMBLIES and MONO_CFG_DIR.
20422
20423 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20424
20425         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20426         helper function.
20427
20428         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20429
20430         * loader.c (method_from_memberref): Fix a warning.
20431
20432         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20433
20434         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20435         with explicit layout. Fixes #77433.
20436
20437 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20438
20439         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20440         max_interface_id is initialized before using it. Fixes #77398.
20441         (ves_icall_Type_GetInterfaces): Ditto.
20442
20443 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20444
20445         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20446         allocate memory for parameter attributes when parsing memberref
20447         signatures.
20448         * loader.c (mono_loader_set_error_method_load): Don't warn.
20449         (method_from_memberref): Ensure MissingMethodException gets thrown
20450         if method is not found.  Make warning more informative.
20451
20452 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20453
20454         Fix #77397
20455         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20456         return true if is byref.
20457         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20458         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20459         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20460
20461 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20462
20463         Fix tests/find-method.2.il
20464         * loader.c (find_method, find_method_in_class): Remove is_inflated
20465         argument.  Revert 2006-01-18 change.
20466         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20467         is generic, search for method in its generic definition.
20468         * class.c (mono_class_setup_vtable_general): Print generic
20469         arguments of generic types in debugging printf.
20470
20471 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20472
20473         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20474
20475         * threads.c (mono_threads_request_thread_dump): New helper function.
20476
20477 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20478
20479         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20480
20481 2006-01-25  Ankit Jain  <jankit@novell.com>
20482
20483         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20484         move definition to ..
20485         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20486         
20487 2006-01-25  Ankit Jain  <jankit@novell.com>
20488             Raja R Harinath  <rharinath@novell.com>
20489
20490         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20491         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20492         as necessary.
20493
20494 2006-01-25  Martin Baulig  <martin@ximian.com>
20495
20496         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20497         `MonoDebuggerThread' into debug-debugger.c.
20498
20499 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20500
20501         * profiler.c: fix printing of data.
20502
20503 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20504
20505         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20506           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20507
20508 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20509
20510         * object.c: fix deadlock related to string interning.
20511
20512 2006-01-23  Martin Baulig  <martin@ximian.com>
20513
20514         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20515
20516         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20517
20518 2006-01-23  Martin Baulig  <martin@ximian.com>
20519
20520         * mono-debug.h: Moved the prototypes of some functions which are
20521         used by the JIT here from mono-debug-debugger.h.
20522
20523 2006-01-21  Martin Baulig  <martin@ximian.com>
20524
20525         * Makefile.am: Don't install mono-debug-debugger.h.
20526
20527 2006-01-21  Martin Baulig  <martin@ximian.com>
20528
20529         * mono-debug-debugger.h: Enforce the private status of this header
20530         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20531         Moved some stuff from mono-debugger-jit-wrapper.h here.
20532
20533 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20534
20535         * class.c (mono_class_from_typeref): Add a sanity test to help
20536         catch lack of assembly load/search hooks.
20537
20538 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20539
20540         * marshal.c (emit_struct_conv): Relax the fields with same offset
20541         check even more. Fixes #77230.
20542
20543 2006-01-18  Martin Baulig  <martin@ximian.com>
20544
20545         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20546         argument; if false, we compare the uninstantiated signatures.
20547         (method_from_memberref): Compare the uninstantiated signatures;
20548         fixes #76417.
20549
20550 2006-01-18  Robert Jordan  <robertj@gmx.net>
20551
20552         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20553         Clear the weak link. Fixes bug #77170.
20554
20555         * gc.c (mono_gchandle_free):
20556         Reflect *-gc.c changes (tiny optimization).
20557
20558 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20559
20560         * metadata.c (mono_metadata_signature_dup): Applied patch from
20561         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20562         Fixes #77288.
20563
20564 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20565
20566         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20567         marshalling from native to managed code. Fixes #77230.
20568
20569 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20570
20571         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20572         connect. Fixes bug #77020.
20573
20574 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20575
20576         * class.c: fixed id assignement for nested interfaces (bug #77275).
20577         Added also better info for --print-vtable debugging.
20578
20579 2006-01-12  Martin Baulig  <martin@ximian.com>
20580
20581         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20582         interfaces on-the-fly; fixes #76625.
20583
20584         * class-internals.h
20585         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20586         don't need that anymore.
20587
20588 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20589
20590         * socket-io.c
20591         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20592         To avoid initing the nested_classes when not needed I turned the
20593         PeerCredData as a toplevel internal class, as it has to be shared
20594         anyways. 
20595
20596         Fixes the CASA issue.
20597
20598 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20599
20600         * domain.c: Accessors for MonoJitInfo
20601
20602         * profiler-private.h: Add jitinfo to the end jit hook
20603
20604         * profiler.[ch]: Define new hooks, called after jitting which give
20605         the MonoJitInfo that was compiled
20606
20607 2006-01-10  Martin Baulig  <martin@ximian.com>
20608
20609         * class.c (mono_class_setup_events): Add support for generic
20610         classes; fixes #76440.
20611
20612 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20613
20614         Fix #77160.
20615         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20616         on passed-in method.
20617
20618 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20619
20620         * object.c (mono_runtime_invoke_array): Add Nullable support.
20621
20622         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20623
20624 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20625
20626         * file-io.c: Don't consider sockets as directory and avoid an endless
20627         loop. Fix bug #76966.
20628
20629 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20630
20631         * object.c (mono_nullable_init): New helper function.
20632         (mono_nullable_box): Ditto.
20633
20634         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20635
20636         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20637
20638         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20639         
20640 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20641
20642         * class.c (mono_class_is_assignable_from): Make T assignable to 
20643         Nullable<T>.
20644
20645 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20646
20647         * appdomain.c: Bump corlib version to 46.
20648         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20649         serialization purpose) and changed ves_icall_System_Reflection_
20650         Assembly_get_code_base signature to accept a boolean (to escape, or 
20651         not, the assembly code base).
20652
20653 2005-12-23  Dick Porter  <dick@ximian.com>
20654
20655         * icall.c: 
20656         * threads-types.h: 
20657         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20658         CreateEvent icall now returns "created" boolean parameter.
20659
20660 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20661
20662         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20663         #76967.
20664
20665         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20666         when attr_klass is an interface. Fixes #77045.
20667
20668 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20669
20670         * marshal.c (emit_struct_conv): Fix previous patch.
20671         
20672         * marshal.c (emit_struct_conv): Add a check for fields with the same
20673         offset.
20674
20675 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20676
20677         Fix regression in Mono.C5.
20678         * class.c (mono_class_create_generic): If 'klass' is an interface
20679         set up the interface offsets.
20680         (mono_class_is_assignable_from): Don't throw away generic arguments.
20681
20682 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20683
20684         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20685         type parameters.
20686
20687 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20688
20689         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20690         dead store.
20691         (do_mono_metadata_parse_generic_class): Don't pass the current
20692         generic context when parsing the type being instantiated: it
20693         cannot use it, anyway.
20694
20695         * loader.c (method_from_memberref): Don't inflate a signature if
20696         it doesn't contain any type parameters.
20697
20698 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20699
20700         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20701
20702 2005-12-14  Martin Baulig  <martin@ximian.com>
20703
20704         * class.c
20705         (mono_type_get_name_recurse): Don't return null for type
20706         parameters and open generic classes.
20707         (mono_class_setup_methods): Don't exclude generic instances.
20708         (mono_get_unique_iid): Use different IDs for different
20709         instantiations of the same generic type.
20710         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20711         open generic instances; create a normal vtable for closed generic
20712         instances.
20713         (mono_class_setup_vtable_general): We're now also called for
20714         closed generic instances.
20715
20716         * reflection.c
20717         (mono_reflection_bind_generic_parameters): Correctly use
20718         mono_metadata_lookup_generic_inst() everywhere.
20719
20720 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20721
20722         * object.c (mono_class_create_runtime_vtable): Call 
20723         mono_class_setup_vtable ().
20724
20725         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20726         function.
20727         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20728         #76959.
20729
20730         * loader.c (mono_loader_set_error_type_load): Print the type load
20731         warnings to the console so they are more visible to the user.
20732         (mono_loader_set_error_method_load): Ditto.
20733
20734         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20735         is still broken.
20736         
20737         * reflection.c (ensure_runtime_vtable): Fix build.
20738
20739         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20740         doesn't work in all cases.
20741
20742 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20743
20744         * object.c (mono_array_new_full): Treat a single dimensional array
20745         with 0 lower bounds as an szarray. Fixes #76973.
20746
20747         * reflection.c (custom_attr_visible): Really fix this.
20748
20749 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20750
20751         * reflection.c (custom_attr_visible): Allow nested public attributes
20752         as well.
20753
20754         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20755         interface check.
20756
20757 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20758
20759         * class.c (set_generic_param_owner): Delete.
20760         (mono_class_create_from_typedef): Don't set ->owner field of
20761         generic parameters to "param containers" of enclosing classes.
20762         * reflection.c (mono_reflection_initialize_generic_parameter):
20763         Likewise.
20764
20765 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20766
20767         * reflection.c (custom_attr_visible): Fix build.
20768
20769 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20770
20771         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20772         private attributes.
20773         
20774         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20775         handling of null parameter defaults.
20776
20777 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20778
20779         * class.c (mono_class_from_generic_parameter): Don't set
20780         klass->generic_container.
20781         (my_mono_class_from_generic_parameter): Likewise.
20782
20783 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20784
20785         * reflection.c (load_public_key): Fix a warning.
20786         (method_encode_code): Fix unaligned accesses.
20787
20788 2005-12-07  Martin Baulig  <martin@ximian.com>
20789
20790         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20791
20792         * reflection.c
20793         (write_generic_param_entry): Encode our custom attrs.
20794
20795         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20796
20797 2005-12-07  Martin Baulig  <martin@ximian.com>
20798
20799         * reflection.c (encode_new_constraint): Removed; we don't use the
20800         `NewConstraintAttribute' anymore.
20801
20802 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20803
20804         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20805         not fire a TypeResolve event when Assembly.GetType () is called.
20806
20807 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20808
20809         Beginning of support for nullable types in the runtime. Parts of
20810         this patch are from Martin.
20811
20812         * appdomain.c (MONO_CORLIB_VERSION): Bump
20813
20814         * domain.c (mono_init_internal): get the nullable type
20815
20816         * class.c (mono_class_is_nullable): New method
20817         (mono_class_get_nullable_param): New mehod
20818         (mono_class_create_generic): In types T? set cast_class to T
20819
20820         * class-internals.h (MonoDefaults): new nullable default class
20821         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20822         new methods.
20823
20824 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20825
20826         * metadata.c (select_container): New.  Refactor code to select the
20827         appropriate GenericContainer given the type of generic parameter
20828         we are looking for.
20829         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20830         not a MonoGenericContext.  Use select_container.  Update parameters.
20831         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20832         and MONO_TYPE_MVAR.
20833         (unwrap_arrays): Remove duplicate tests.
20834         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20835         generic instantiated class to find any arguments that are generic
20836         parameters.
20837         (mono_type_create_from_typespec_full): Use find_generic_param to
20838         avoid evicting some generic instantiations from the typespec
20839         cache.
20840
20841 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20842
20843         * reflection.c: fixed writing of doubles on ARM FPA.
20844
20845 2005-12-02  Robert Jordan  <robertj@gmx.net>
20846
20847         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20848
20849 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20850
20851         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20852         least on SUSE 10 they are not the same (on debian, they are just the
20853         same thing).
20854
20855 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20856
20857         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20858         DeclaringType for VARs and MVARs.
20859         * class.c (set_generic_param_owner): Fix initialization of owner
20860         fields.
20861
20862 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20863
20864         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20865
20866 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20867
20868         * threadpool.c: workaround for a bug that shows up on the Mac:
20869         select()+connect() on a blocking socket is not like it should
20870         be, so we proceed to connect() in that case, wasting the I/O
20871         threadpool thread until connect succeedes. Fixes bug #75436.
20872
20873 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20874
20875         * threadpool.c: fix typo when setting file descriptor states.
20876
20877 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20878
20879         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20880         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20881         create a temporary signature container.
20882         (mono_metadata_parse_generic_param): Update to changes.
20883         (mono_type_create_from_typespec_full): Update to changes.
20884         * loader.c (method_from_memberref): Don't use a
20885         MonoGenericContainer while parsing a memberref signature.
20886         (method_from_methodspec): Remove dead-store of the 'container'
20887         variable.  It's overwritten before use.
20888
20889         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20890         checks tighter.
20891         (mono_metadata_parse_generic_param): Likewise.
20892         * loader.c (find_method_in_class): Does not need a
20893         MonoGenericContainer.  Use 'mono_method_signature' rather than
20894         'mono_method_signature_full'.
20895         (find_method, mono_get_method_constrained, method_from_memberref):
20896         Update to changes.
20897
20898         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20899         owner-less generic-parameters are never evicted from the typespec
20900         cache.
20901
20902         * loader.c (method_from_memberref): Don't use the current context
20903         when parsing signatures.
20904         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20905
20906         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20907         side-effects in g_assert.
20908         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20909         that we don't potentially lose information.
20910
20911 2005-11-26  Dick Porter  <dick@ximian.com>
20912
20913         * icall.c:
20914         * threads.c: icalls to implement basic (ie, not named)
20915         System.Threading.Semaphore.
20916
20917 2005-11-24  Dick Porter  <dick@ximian.com>
20918
20919         * process.c
20920         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20921         Use GetProcessId() if it's available.
20922
20923 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20924
20925         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20926
20927 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20928             Ankit Jain  <jankit@novell.com>
20929
20930         * loader.c (mono_get_method_from_token): Initialize 'method' field
20931         of all generic parameters before parsing the signature.  Remove
20932         code that "fixed"-up MVAR references.
20933
20934 2005-11-23  Ankit Jain  <jankit@novell.com>
20935
20936         * metadata.c (mono_metadata_has_generic_params):
20937         (mono_metadata_load_generic_param_constraints):
20938         (mono_metadata_load_generic_params): Move duplicate code ...
20939         (mono_metadata_get_generic_param_row): ... here. Returns the
20940         first row-id in GenericParam table for a given owner (token).
20941         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20942         prototype.
20943
20944 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20945             Ankit Jain  <jankit@novell.com>
20946
20947         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20948         comparing VARs too.
20949         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20950         type->data.generic_param only if the type is an MVAR.
20951         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20952         leak owner-less VARs and MVARs into managed space.
20953
20954 2005-11-21  Martin Baulig  <martin@ximian.com>
20955
20956         * class-internals.h
20957         (MonoMethod): Moved the `generic_container' here from
20958         `MonoMethodNormal' since we now also need it for
20959         `MonoMethodPInvoke';
20960         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20961         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20962         an union containing both `MonoMethodNormal' and
20963         `MonoMethodPInvoke'.
20964
20965         * loader.c
20966         (mono_get_method_from_token): Allow implementing generic methods
20967         as interncalls.
20968
20969         * threads.c
20970         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20971         icall.
20972
20973 2005-11-17  Dick Porter  <dick@ximian.com>
20974
20975         * icall.c: 
20976         * process.h: 
20977         * process.c: Split the Process Start_internal icall into
20978         ShellExecuteEx_internal and CreateProcess_internal, which are
20979         called depending on whether UseShellExecute is true.  Fixes bug
20980         76670.
20981
20982         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20983
20984 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20985
20986         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20987         'msize' parameters, use the information in 'mspec' instead.
20988         (emit_object_to_ptr_conv): Ditto.
20989
20990         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20991         fields out of order. Fixes #76733.
20992
20993 2005-11-17  Ankit Jain  <jankit@novell.com>
20994
20995         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20996
20997 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20998
20999         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
21000           bug #76575.
21001
21002 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21003
21004         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
21005         for types with non-auto layout. Fixes #76717.
21006
21007 2005-11-16  Ankit Jain  <jankit@novell.com>
21008
21009         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
21010         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
21011         if generic_context is null.
21012           (mono_metadata_generic_param_equal): param->owner can be null.
21013           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
21014         null.
21015
21016 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
21017
21018         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
21019         the correct value.
21020
21021 2005-11-15  Martin Baulig  <martin@ximian.com>
21022
21023         * object.c (set_value): Use mono_class_from_mono_type() instead of
21024         the hack for generic instances; fixes #76136.
21025
21026 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
21027
21028         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
21029         fields.
21030
21031         * image.c (load_metadata_ptrs): Initialize the new fields.
21032
21033         * reflection.c (create_dynamic_mono_image): Ditto.
21034
21035         * reflection.c (build_compressed_metadata): Use the new fields.
21036
21037         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
21038         icall.
21039
21040         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
21041         icall.
21042         
21043 2005-11-15  Ankit Jain  <jankit@novell.com>
21044             Raja R Harinath  <harinath@gmail.com>
21045
21046         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
21047         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
21048         new per-generic_container cache if the cached MonoType's context matches
21049         the current context.
21050           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
21051         to the expected context.
21052           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
21053
21054 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21055
21056         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
21057         we changed the signature of an icall.
21058         * icall.c: Modify to mono_double_ParseImpl return true/false 
21059         depending on the success, instead of throwing the exception. This will
21060         help us in Double.TryParse methods.
21061         
21062 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
21063
21064         * marshal.c (emit_marshal_object): Throw an exception when
21065         marshalling 'object' instead of crashing. Fixes #76696.
21066
21067 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21068
21069         * class-internals.h: Add prototype for mono_type_get_full_name ().
21070
21071 2005-11-11  Dick Porter  <dick@ximian.com>
21072
21073         * threads.c (mono_thread_manage): Make sure the main thread has
21074         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21075
21076 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21077
21078         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21079         console about the missing type.
21080         (mono_loader_set_error_method_load): Ditto.
21081
21082 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21083
21084         * mono-config.c (mono_get_config_dir): Set the system defaults if
21085         none is specified.
21086
21087         * assembly.c (mono_set_dirs): New API entry point to set the
21088         assembly and the config directory in one call
21089
21090 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21091
21092         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21093         the ftnptr was created from a delegate in a domain other than the
21094         current domain. Fixes #75377.
21095
21096         * exception.h exception.c: Add mono_get_exception_not_supported ().
21097
21098 2005-11-08  Martin Baulig  <martin@ximian.com>
21099
21100         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21101
21102 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21103
21104         * security-manager.h: Added definitions to deal with strongname key 
21105         pairs bigger (and smaller) than 1024 bits.
21106         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21107         adjust wrt the public key length being used.
21108
21109 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21110
21111         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21112           Windows build (r51396-51397).
21113
21114 2005-11-03  Martin Baulig  <martin@ximian.com>
21115
21116         * class.c (mono_class_setup_vtable_general): Also add generic
21117         methods to the vtable; fixes #76581.
21118
21119 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21120
21121         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21122         sure that we lookup GetString method from the System.Text.Encoding
21123         class, not the derived class or we get an empty method.
21124
21125         Fixed class #76612.
21126
21127 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21128
21129         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21130         if it has been previously set (embedders). 
21131
21132         Make mono_set_rootdir available also on Unix.
21133
21134 005-10-24  Robert Jordan  <robertj@gmx.net>
21135
21136         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21137
21138 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21139
21140         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21141         only calls which are made to native code use this flag.
21142
21143         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21144
21145 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21146
21147         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21148         Add support for FieldBuilders.
21149
21150 2005-10-29  Martin Baulig  <martin@ximian.com>
21151
21152         * mono-debug.c
21153         (mono_debug_using_mono_debugger): New public method; returns
21154         whether we're running inside the debugger.
21155
21156 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21157
21158         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21159         for Method/Constructor/FieldBuilders.
21160
21161 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21162
21163         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21164         and fields as well.
21165
21166 2005-10-26  Martin Baulig  <martin@ximian.com>
21167
21168         * mono-debug-debugger.c
21169         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21170
21171 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21172
21173         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21174         integer to isspace.
21175
21176 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21177
21178         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21179         when passing valuetypes byref. Fixes #76502.
21180
21181 2005-10-19  Jackson Harper  <jackson@ximian.com>
21182
21183         * profiler.c: Don't put a . in front of types that are not in a
21184         namespace.
21185
21186 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21187
21188         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21189
21190 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21191
21192         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21193         #76436.
21194         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21195
21196 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21197
21198         * assembly.c metadata-internals.h icall.c: Define an additional
21199         parameter for mono_assembly_name_parse_full, so we can avoid creating
21200         S.R.AssemblyName.Version when no version info wasn't passed.
21201         
21202 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21203
21204         * class.c (mono_type_get_full_name): Reimplement method that was
21205         removed. 
21206
21207         * image.c: Some docs
21208
21209 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21210
21211         * profiler.c (output_newobj_profile): Fix printing of Total memory
21212         on x86.
21213
21214 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21215
21216         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21217
21218 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21219
21220         * threads.c: remove debug output.
21221
21222 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21223
21224         * threads.c (mono_thread_manage): Fix crashes if more than 64
21225         threads need to be aborted. Hopefully fixes #75899.
21226
21227         * assembly.c (mono_stringify_assembly_name): New helper function.
21228
21229         * class.c: Use mono_stringify_assembly_name instead of the similar
21230         static function.
21231
21232         * assembly.h assembly.c: Add support for calling a postload search 
21233         hook if an assembly cannot be loaded.
21234
21235         * appdomain.c: Register new search hooks which call the AssemblyResolve
21236         events in AppDomain. Fixes #75231
21237
21238 2005-10-07  Martin Baulig  <martin@ximian.com>
21239
21240         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21241         methods without debug info.
21242
21243 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21244
21245         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21246         wrappers.
21247
21248 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21249
21250         * file-io.c: now that we return symlinks, use lstat and, when the file
21251         is a symbolic link, stat, to get the file attributes. Also avoid the
21252         conversion to/from utf16/external.
21253
21254 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21255
21256         * class.c (mono_class_layout_fields): Compute klass->has_references
21257         correctly if an embedded valuetype is not yet initialized. Fixes
21258         #76331.
21259
21260 2005-10-04  Martin Baulig  <martin@ximian.com>
21261
21262         * metadata.c
21263         (mono_metadata_load_generic_param_constraints): New public
21264         function; splitted the constraints loading out from
21265         mono_metadata_load_generic_params().
21266
21267         * class.c (mono_class_create_from_typedef): Call
21268         mono_metadata_load_generic_param_constraints() after setting up
21269         the type and creating our parent; fixes #75329.
21270
21271 2005-10-04  Martin Baulig  <martin@ximian.com>
21272
21273         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21274         non-dynamic parent classes.
21275
21276 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21277
21278         * file-io.c : win32 build fix (ETXTBSY seems not found).
21279
21280 2005-10-04  Martin Baulig  <martin@ximian.com>
21281
21282         * reflection.c
21283         (mono_image_get_methodspec_token): Make the cache actually work;
21284         fixes #75974.
21285
21286 2005-10-04  Martin Baulig  <martin@ximian.com>
21287
21288         * class.c (mono_class_name_from_token): Removed the unneccessary
21289         `MonoGenericContext *' argument.
21290
21291 2005-10-04  Martin Baulig  <martin@ximian.com>
21292
21293         * loader.c
21294         (method_from_methodspec): Make the caching work again; fixes the
21295         performance regression from #76262.
21296
21297 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21298
21299         * file-io.c:
21300         * file-io.h:
21301         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21302         GetFileSystemEntries that performs the same work but without going
21303         into io-layer, locking, etc.
21304
21305 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21306
21307         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21308         ThreadState_Stopped as well. Fixes #76047.
21309
21310 2005-09-29  Martin Baulig  <martin@ximian.com>
21311
21312         * class.c
21313         (inflate_generic_context): If the new context has a `gmethod', set
21314         its `container' that that gmethod's `container'.
21315
21316         * metadata.c
21317         (mono_metadata_parse_generic_param): Simplify things;
21318         `generic_container = generic_context->container;' is just fine.
21319
21320         * loader.c (method_from_methodspec): Code cleanups.
21321
21322 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21323
21324         * decimal.c: fix warning (and let gcc generate correct
21325         code on ARM with optimizations).
21326
21327 2005-09-28  Martin Baulig  <martin@ximian.com>
21328
21329         * loader.c
21330         (method_from_memberref): Added `MonoGenericContext *class_context'
21331         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21332         (method_from_methodspec): If we're a memberref, use the enclosing
21333         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21334
21335 2005-09-28  Martin Baulig  <martin@ximian.com>
21336
21337         * object.c (mono_runtime_invoke_array): Added support for
21338         MONO_TYPE_GENERICINST; fixes #75917.
21339
21340 2005-09-27  Martin Baulig  <martin@ximian.com>
21341
21342         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21343         `k->byval_arg.type' to determine the actual type.
21344
21345         * loader.c (method_from_methodspec): Removed some hacks.
21346
21347 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21348
21349         * class-internals.h (mono_field_is_deleted): Do the test for
21350         rtspecialname before we check the actual name of the field. This
21351         prevents us from dereferencing a pointer into the string table,
21352         saving us from accessing a few pages
21353
21354         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21355         macros. This will allow a deadlock debugger to easily be plugged
21356         in.
21357
21358 2005-09-27  Martin Baulig  <martin@ximian.com>
21359
21360         * loader.c (method_from_methodspec): Create a "signature"
21361         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21362
21363 2005-09-27  Martin Baulig  <martin@ximian.com>
21364
21365         * class.c
21366         (inflate_generic_class): Correctly set the new context's
21367         container.
21368
21369         * loader.c
21370         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21371         instead of a `MonoGenericContext *'.
21372         (mono_method_signature_full): Take a `MonoGenericContainer *'
21373         instead of a `MonoGenericContext *'.
21374
21375         * metadata.c
21376         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21377         instead of a `MonoGenericContext *'.
21378         (mono_metadata_parse_method_signature_full): Likewise.
21379
21380 2005-09-26  Martin Baulig  <martin@ximian.com>
21381
21382         * class.c
21383         (mono_class_from_generic_parameter): Set `klass->generic_container'
21384         (mono_class_from_generic_parameter): Likewise.
21385         (mono_bounded_array_class_get): We inherit the generic container
21386         from the element class.
21387
21388         * loader.c
21389         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21390         argument rather than computing it here.
21391         (method_from_memberref): Correctly set the generic context before
21392         parsing the signature.  Fixes #75681.
21393
21394 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21395
21396         * object.c (mono_class_has_special_static_fields): Fix warnings.
21397
21398 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21399
21400         * assembly.c: Add parse_public_key function, to
21401         par the public keys. Also added mono_assembly_name_parse_full,
21402         to define it the parsed key should be freed or not.
21403         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21404         to parse a long format assembly name.
21405         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21406         private, since calling it to preserve the key requires
21407         freeing it manually.
21408         
21409 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21410
21411         * locales.c : removed HAVE_ICU part.
21412
21413 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21414
21415         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21416         field_is_special_static if the klass has no special static fields.
21417
21418         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21419         (MonoCachedClassInfo): Likewise.
21420
21421         * object.c (mono_class_has_special_static_fields): New helper function.
21422
21423 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21424
21425         * class.c (mono_class_create_from_typedef): Don't call 
21426         interfaces_from_typedef_full for enums.
21427         (mono_class_create_from_typedef): Compute the base types of enums directly
21428         without calling mono_class_setup_fields ().
21429         (mono_class_find_enum_basetype): New helper function.
21430
21431         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21432         one place inside the string heap.
21433         
21434 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21435
21436         * class.c: locking fixes, code cleanups, some docs added.
21437         Allocate some data structures in the image mempool.
21438
21439 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21440
21441         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21442         the example code.
21443         
21444 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21445
21446         * class-internals.h, class.c, reflection.c: reduce memory taken by
21447         MonoClass.
21448
21449 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21450
21451         * metadata.c, metadata.h, loader.h: documentation updates, code and
21452         API cleanups.
21453
21454 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21455
21456         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21457         the example code.
21458
21459         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21460         page faults caused by the runtime while reading metadata.
21461
21462 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21463
21464         * socket-io.c: the field names were changed 3 months ago and no one
21465         realized until bug #76077 got filed!
21466
21467 2005-09-20  Martin Baulig  <martin@ximian.com>
21468
21469         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21470
21471 2005-09-20  Martin Baulig  <martin@ximian.com>
21472
21473         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21474         write the rank into the class entry.
21475
21476 2005-09-20  Martin Baulig  <martin@ximian.com>
21477
21478         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21479
21480 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21481
21482         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21483
21484         * icall.c (custom_attrs_defined_internal): New icall.
21485
21486         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21487         function.
21488         (mono_custom_attrs_construct_by_type): New helper function.
21489
21490 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21491
21492         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21493         terminate the resulting string. Fixes #76123.
21494
21495 2005-09-16  Martin Baulig  <martin@ximian.com>
21496
21497         * mono-debug.c
21498         (mono_debug_add_method): Ignore inflated methods for the moment.
21499
21500 2005-09-14  Martin Baulig  <martin@ximian.com>
21501
21502         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21503
21504 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21505
21506         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21507         return a success/failure indication.
21508         (mono_metadata_interfaces_from_typedef_full): Ditto.
21509         (get_constraints): Ditto.
21510
21511 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21512
21513         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21514         
21515         * marshal.c (emit_marshal_array): Add support for returning string
21516         arrays from delegates. Fixes #76063.
21517
21518         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21519
21520 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21521
21522         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21523         icall.
21524
21525 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21526
21527         * reflection.c icall.c: Fix after mono_get_exception_type_load
21528         signature change.
21529
21530         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21531         (mono_assembly_load_reference): Use the new helper.
21532
21533         * class-internals.h (MonoLoaderError): New structure containing 
21534         information about type loading errors.
21535
21536         * class-internals.h loader.c: Add APIs to store per-thread loader
21537         error information.
21538
21539         * loader.c class.c: Set the loader error if needed.
21540
21541         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21542
21543 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21544
21545         * decimal.c: fixed to handle the broken ARM fp format.
21546
21547 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21548
21549         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21550         broken.
21551
21552 2005-09-06  Martin Baulig  <martin@ximian.com>
21553
21554         * domain.c (supported_runtimes): Added v2.0.50727.
21555
21556 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21557
21558         * culture-info.h: reduce the size of some structures.
21559
21560 2005-09-05  Martin Baulig  <martin@ximian.com>
21561
21562         Reflect latest API changes in the August CTP.
21563
21564         * icall.c
21565         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21566         ("MonoType.HasGenericArguments"): Removed.
21567         ("MonoMethod.BindGenericParameters"): Renamed to
21568         "MakeGenericMethod".
21569         ("MethodBuilder.BindGenericParameters"): Renamed to
21570         "MakeGenericMethod".    
21571
21572 2005-09-05  Martin Baulig  <martin@ximian.com>
21573
21574         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21575
21576 2005-09-05  Martin Baulig  <martin@ximian.com>
21577
21578         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21579
21580         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21581         generic_container is non-NULL.
21582
21583 2005-09-05  Martin Baulig  <martin@ximian.com>
21584
21585         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21586
21587         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21588
21589 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21590
21591         * reflection.c (encode_locals,
21592         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21593         for large generic types.
21594
21595 2005-09-05  Martin Baulig  <martin@ximian.com>
21596
21597         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21598
21599         * class.c (mono_dup_array_type): New public method.
21600         (mono_metadata_signature_deep_dup): New public method.
21601         (dup_type): Correctly duplicate array and function types.
21602
21603 2005-09-05  Martin Baulig  <martin@ximian.com>
21604
21605         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21606
21607         * reflection.c (get_default_param_value_blobs): Handle generic types
21608         and generic methods.
21609
21610 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21611
21612         * class.c: Fixed error reporting (method/class were inversed) for 
21613         inheritance demands.
21614         * security-manager.c|h: Added the AppDomain when calling the managed
21615         System.Security.SecurityManager.InheritanceDemand method.
21616
21617 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21618
21619         * reflection.c (encode_marshal_blob): 'marshaltype' and
21620         'marshaltyperef' are alternate sources for the custom marshaler
21621         name.
21622
21623 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21624
21625         * class.c: fix creation of array classes with rank == 1
21626         (patch by Ankit Jain <jankit@novell.com>).
21627
21628 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21629
21630         * object.c: fix check for creating the bound data for arrays vs
21631         szarrays.
21632
21633 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21634
21635         * object.c: configuration file name is now based on the executable name,
21636         not the image name. Fixes bug #75931.
21637
21638 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21639
21640         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21641         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21642
21643 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21644
21645         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21646
21647 2005-08-24  Ankit Jain  <jankit@novell.com>
21648             Raja R Harinath  <rharinath@novell.com>
21649
21650         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21651           called by it recursively.
21652           (mono_class_init): Remove special case in pending_init handling, since it's
21653           superseded by the fix to mono_class_from_typeref.
21654
21655 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21656
21657         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21658         BROKEN_THREAD_START stuff.
21659
21660 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21661
21662         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21663         trampoline.
21664
21665         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21666         
21667         * object.c (mono_delegate_ctor): Replace the original function address with
21668         a delegate trampoline.
21669
21670 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21671
21672         * icall.c: add boolean argument to base64_to_byte_array and 
21673         InternalFromBase64String to control whether a whitespace-only string
21674         is allowed (or should casue a FormatException to be thrown). We need
21675         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21676         to match the MS behaviour in both profiles.
21677         * appdomain.c: Bump corlib version.
21678
21679 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21680
21681         This patch implements a big portion of publisher policy
21682         support, used to bind assembly versions and redirect
21683         one assembly from version A to version B.
21684
21685         * assembly.c:
21686         New GSList loaded_assembly_bindings, for storing the cached
21687         assembly bindings.
21688         (assembly_binding_maps_name): New static function for checking if a 
21689         assembly binding information maps an assembly name.
21690         (mono_assembly_binding_info_free): New function for freeing
21691         assembly binding information resources.
21692         (get_publisher_policy_info): New static function for retrieving 
21693         assembly binding information from a MonoImage.
21694         (compare_versions): New static function for comparing an assembly
21695         binding information data and the version of an assembly name.
21696         (check_policy_versions): New static function for checking if an
21697         assembly binding info mapping an assembly name is valid for it.
21698         (mono_assembly_load_publisher_policy): New static function for
21699         loading the 'policy.major.minor.MyAssembly' image for an assembly
21700         with an assembly name 'aname'.
21701         (mono_assembly_bind_version): New static function for updating
21702         assembly redirection.
21703         (mono_assembly_apply_binding): New static function for applying
21704         assembly binding.
21705         (search_binding_loaded): New static function for searching 
21706         loaded assembly binding infos in the cache domain.
21707         (mono_assembly_load_full): Don't apply assembly binding for
21708         reflection only assemblies.
21709
21710         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21711         which contains information about assembly binding. Also
21712         declare signature for mono_config_parse_publisher_policy ()
21713         function, used to retrieve pub policy info.
21714         
21715         * mono-config.c:
21716         (publisher_policy_start): New static function used to parse publisher 
21717         policy config files.
21718         (publisher_policy_parser): New static MonoParseHandler containing 
21719         the functions used when parsing config files.
21720         (mono_config_parse_publisher_policy): New function for parsing
21721         publisher policy files.
21722         
21723 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21724
21725         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21726
21727         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21728
21729         * object.c (mono_get_addr_from_ftnptr): New helper function.
21730
21731         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21732
21733         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21734
21735 2005-08-19  Dick Porter  <dick@ximian.com>
21736
21737         * threads.c, threads.h, appdomain.c, appdomain.h,
21738         profiler-private.h, monitor.c, object.c, object-internals.h,
21739         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21740         store the thread ID, so it can hold a 64 bit value if needed.
21741
21742 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21743
21744         * reflection.c (mono_reflection_create_dynamic_method): Store the
21745         handle class into the method references as well so ldtoken works in
21746         dynamic methods.
21747
21748         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21749         types.
21750
21751 2005-08-19  Ankit Jain <jankit@novell.com>
21752
21753         Fix #75847.
21754         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21755           here rather than using the method signature of a arbitrary function
21756           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21757           two arguments.
21758           Hack done with Harinath.
21759
21760 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21761
21762         * threadpool.c: disable printing stack traces when we get a exception
21763         in a threadpool thread. I need to do more testing to figure out which
21764         cases actually print this. Fixes bug #75828.
21765
21766 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21767
21768         * icall.c: there might be ignored whitespace after the last '='. This
21769         fixes length computation and bug #75840.
21770
21771 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21772
21773         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21774         well. Fixes #75809.
21775
21776         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21777         #75784.
21778         
21779         * reflection.c (create_custom_attr_data): Ditto.
21780
21781 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21782
21783         * locales.c, culture-info.h : removed RegionLCIDMap.
21784         * culture-info-tables.h : regenerated.
21785
21786 2005-08-16  Martin Baulig  <martin@ximian.com>
21787
21788         * class.c (mono_type_get_name_recurse): Small fix.
21789
21790 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21791
21792         * locales.c : indentation fixie.
21793
21794 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21795
21796         * object-internals.h,
21797           locales.h,
21798           locales.c,
21799           culture-info.h,
21800           icall.c : added RegionInfo table support.
21801         * culture-info-table.h : regenerated for region support.
21802
21803 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21804
21805         * reflection.c (resolve_object): handle all kinds of MonoMethod
21806         including generic ones
21807
21808 2005-08-12  Ankit Jain <jankit@novell.com>
21809
21810         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21811           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21812
21813 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21814
21815         * process.c: Don't close a thread handle when it's NULL. This is a
21816         workaround for bug #75733.
21817
21818 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21819
21820         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21821
21822 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21823
21824         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21825
21826 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21827
21828         * threadpool.c: if a work item in the thread pool has a callback that
21829         catches a exception, don't propagate it after invoking the callback.
21830         Fixes bug #75336.
21831
21832 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21833
21834         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21835
21836         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21837
21838         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21839
21840         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21841
21842 2005-08-03  Ankit Jain  <jankit@novell.com>
21843
21844         Fix #75683.
21845         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21846           PInvoke calling convention is 0.
21847
21848 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21849
21850         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21851         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21852
21853 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21854
21855         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21856         to handle threads not started by the GC (patch by Michael Meeks
21857         <michael.meeks@novell.com>).
21858
21859 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21860
21861         * reflection.c: Make buffer used in emitting types larger for some
21862         big generic types (patch by Michal Moskal).
21863
21864 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21865
21866         * mono-debug.c: Fix some (not all) alignment problems.
21867
21868 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21869
21870         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21871         Invoke mono_image_load_from_data_full passing the refonly
21872         parameter.
21873
21874         * assembly.c
21875         (mono_assembly_open_from_bundle): Add the refonly argument, 
21876         in order to pass it to other methods it calls to.
21877         (do_mono_assembly_open): Add the refonly argument, in order 
21878         to pass it to other methods it calls to.
21879         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21880         the refonly parameter to it.
21881
21882         * image.c: Add loaded_images_refonly_hash and
21883         loaded_images_refonly_guid_hash to cache the reflection
21884         only loaded images.
21885         (mono_images_init): Initialize the hash tables used for
21886         caching the reflection only images.
21887         (load_modules): Invoke mono_image_open_full passing the refonly
21888         parameter to load the modules the correct way.
21889         (build_guid_table): Add the refonly argument, to re-build the 
21890         correct hash table.
21891         (do_mono_image_open): Added the refonly argument, in order to
21892         define it for the loaded image.
21893         (mono_image_loaded_full): New function, which receives an
21894         additional parameter to look for the image in the refonly or
21895         non-refonly section.
21896         (mono_image_loaded): Updated, using mono_image_loaded_full.
21897         (mono_image_loaded_by_guid_full): The same case that happens
21898         with mono_image_loaded_full.
21899         (mono_image_loaded_by_guid): Likewise.
21900         (register_image): Use the ref_only variable inside MonoImage
21901         to decide in which hash table store the current image.
21902         (mono_image_open_from_data_full): Rename
21903         mono_image_open_from_data to mono_image_open_from_data_full,
21904         adding the refonly argument, to define the ref_only variable 
21905         inside MonoImage.
21906         (mono_image_open_from_data): Return 
21907         mono_image_open_from_data_full.
21908         (mono_image_open_full): Rename mono_image_open to
21909         mono_image_open_full, receiving the new refonly argument,
21910         to pass it to inner methods.
21911         (mono_pe_file_open): Update this function, to open
21912         a MonoImage as a non-refonly image.
21913         (mono_image_close): Use the refonly variable inside
21914         MonoImage to remove the image from the correct caches.
21915
21916         * image.h: Add the signatures of mono_image_open_full,
21917         mono_image_open_from_data_full, mono_image_loaded_full,
21918         mono_image_loaded_by_guid_full.
21919
21920         * metadata-internals.h: Add the ref_only field to 
21921         MonoImage.
21922         
21923 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21924
21925         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21926         Fix the last behavior, which used to load the assemblies and
21927         extract MonoReflectionAssemblyName information, instead of
21928         extract it from the metadata tables. Needed for Reflection
21929         Only assemblies.
21930         
21931 2005-07-29  Martin Baulig  <martin@ximian.com>
21932
21933         * mono-debug-debugger.c
21934         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21935         not initialized.
21936
21937         * mono-debug.c
21938         (mono_debug_address_from_il_offset): Check whether we have
21939         debugging support before attempting to take the lock.
21940         (mono_debug_source_location_from_address): Likewise.
21941         (mono_debug_source_location_from_il_offset): Likewise.
21942         (mono_debug_il_offset_from_address): Likewise.
21943         (mono_debug_address_from_il_offset): Likewise.
21944
21945 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21946
21947         * class.c (mono_class_from_name_case): Add support for dynamic images.
21948         Fixes #75650.
21949
21950         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21951         for #75479.
21952
21953 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21954         
21955         * reflection.c (mono_method_get_object): Fix warning.
21956
21957 2005-07-28  Martin Baulig  <martin@ximian.com>
21958
21959         * mono-debug.c
21960         (mono_debug_add_wrapper): Also write the wrapper type.
21961
21962 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21963
21964         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21965         
21966         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21967         data indicates the class has none.
21968
21969 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21970
21971         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21972         loader lock with the debugger lock. Prevents deadlocks for beagle.
21973
21974         Beagle can now run on an smp box for a weekend without any
21975         issues. Woohoo!
21976
21977 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21978
21979         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21980         in a module. Fixes #75629.
21981
21982 2005-07-26  Martin Baulig  <martin@ximian.com>
21983
21984         * mono-debug.c (mono_debug_add_wrapper): New static method.
21985         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21986         interncall or a wrapper.
21987
21988         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21989         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21990         (MONO_DEBUGGER_VERSION): Bump to 51.
21991
21992         * mono-debug-debugger.c
21993         (mono_debugger_add_type): Removed this empty function.
21994         (mono_debugger_add_method): Likewise.
21995
21996 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21997
21998         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21999         before accessing method->slot.
22000
22001 2005-07-21  Jb Evain  <jbevain@gmail.com>
22002
22003         * reflection.c (method_encode_clauses/class): Handle filters clauses.
22004         Fixes #75010.
22005
22006 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
22007
22008         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
22009         #75587.
22010
22011 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
22012
22013         * image.h image.c: Add mono_image_get_guid () API function.
22014
22015 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
22016
22017         There were issues when multiple threads tried to load
22018         assemblies. A deadlock was created between assemblies_mutex and
22019         mono_domain_assemblies_lock. This fixes the issue by making the
22020         assembly ref counting be lock free. See bug 75586.
22021         
22022         * image.c (mono_image_close): The add ref function here was using
22023         Interlocked operations while the unref was using a mutex and a
22024         --. I don't think this was ever a bug that would be exposed in a
22025         non-pendantic way (ie, by an embedder doing a ref on one thread
22026         and an unref on another), but for the sake of correctness, this is
22027         now Interlocked.
22028
22029         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
22030         (mono_assembly_load_reference): Call mono_assembly_addref rather
22031         than touching the refcount ourselves.
22032         (mono_assembly_close): Use InterlockedDecrement to unref the
22033         assembly. Don't acquire the lock unless it is actually needed.
22034
22035 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22036
22037         * class.c (mono_class_layout_fields): Fix calculation of has_references
22038         for generic types.
22039
22040 2005-07-12  Martin Baulig  <martin@ximian.com>
22041
22042         Applying a patch from Michal Moskal <malekith@nemerle.org>.
22043
22044         * metadata.c
22045         (mono_type_hash): Provide better hashing for generic instances.
22046         (mono_generic_inst_hash): Improve hashing.
22047         (mono_generic_class_hash): Likewise.
22048
22049         * reflection.c (mymono_metadata_type_hash): Improve hashing for
22050         generic instances.
22051
22052 2005-07-12  Martin Baulig  <martin@ximian.com>
22053
22054         * reflection.c (mono_reflection_create_runtime_class): Remove the
22055         hack for generic type definitions and non-`Run' assemblies.
22056         (mono_reflection_bind_generic_parameters): Also use
22057         `klass->wastypebuilder' to check for TypeBuilders.
22058
22059 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
22060
22061         * class.c (mono_class_layout_fields): Fix calculation of has_references
22062         for generic types.
22063
22064         * class.c (inflate_generic_class): Fix a leak.
22065         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
22066         for generic types.
22067
22068 2005-07-11  Martin Baulig  <martin@ximian.com>
22069
22070         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22071         on error.
22072
22073 2005-07-11  Martin Baulig  <martin@ximian.com>
22074
22075         * loader.c (find_method): Also lookup in
22076         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22077
22078 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22079
22080         * appdomain.c (mono_domain_unload): Don't free the error message
22081         before passing it to mono_get_exception_...
22082
22083         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22084         
22085 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22086
22087         * threads.c: try to better guess an available RT signal (bug #75387).
22088
22089 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22090
22091         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22092         and CACHE_OBJECT.
22093
22094 2005-07-07  Martin Baulig  <martin@ximian.com>
22095
22096         * class.c (mono_type_get_name_full): Return NULL for
22097         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22098         fixes #75408.
22099
22100 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22101
22102         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22103         exit the appdomain as well being aborted.
22104
22105         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22106         change back to the root domain after calling managed code. This enables
22107         appdomains using threadpools to be unloaded.
22108
22109 2005-07-07  Martin Baulig  <martin@ximian.com>
22110
22111         * class-internals.h
22112         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22113         into `MonoDynamicGenericClass' since we only need it for dynamic
22114         types.
22115
22116         * reflection.c (mono_class_bind_generic_parameters): We don't need
22117         to compute the `parent' here.
22118
22119 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22120
22121         * culture-info-table.h : regenerated.
22122
22123 2005-07-06  Martin Baulig  <martin@ximian.com>
22124
22125         * icall.c
22126         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22127
22128         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22129
22130 2005-07-06  Martin Baulig  <martin@ximian.com>
22131
22132         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22133         we're doing a signature-only comparision; fixes #74945.
22134
22135 2005-07-06  Martin Baulig  <martin@ximian.com>
22136
22137         * class-internals.h (MonoGenericClass): Moved some things out into
22138         a new `MonoInflatedGenericClass' type.  
22139         (MonoInflatedGenericClass): New type; the `klass' of a
22140         `MonoGenericClass' is now computed lazyly in
22141         mono_get_inflated_generic_class().      
22142
22143         * class.c (mono_get_inflated_generic_class): New public function.
22144         (mono_class_inflate_generic_method): Removed the unused
22145         `MonoClass *' argument.
22146         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22147         all the methods.
22148         (mono_class_create_generic): Make this static and merge it with
22149         mono_class_create_generic_2(); we're now called automatically from
22150         mono_get_inflated_generic_class().
22151
22152         * loader.c (mono_method_signature): Call
22153         mono_get_inflated_method() here.
22154
22155 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22156
22157         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22158         type of fields with RVA.
22159
22160         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22161         for this pseudo class.
22162         (my_mono_class_from_generic_parameter): Likewise.
22163         (mono_class_init): Allow interfaces to have cctors.
22164
22165 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22166
22167         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22168         lazily for AOT methods.
22169
22170 2005-07-05  Martin Baulig  <martin@ximian.com>
22171
22172         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22173         returns FALSE for a successful match, not TRUE.
22174
22175 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22176
22177         * loader.c (mono_method_get_index): Optimize this a bit.
22178
22179 2005-07-04  Martin Baulig  <martin@ximian.com>
22180
22181         * class.c
22182         (class_compute_field_layout): Move the check for generic type
22183         definitions into mono_class_layout_fields().  Fixes #74684.
22184         (mono_class_from_generic_parameter): Correctly compute
22185         `klass->parent'; fixes #75457.
22186
22187         * reflection.c (register_assembly, register_module): Make sure
22188         `domain->rejobject_hash' is already created.
22189
22190 2005-07-02  Martin Baulig  <martin@ximian.com>
22191
22192         * class-internals.h
22193         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22194         `MonoDynamicGenericClass'.      
22195
22196 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22197
22198         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22199         returned by a field getter is null, since null is a valid value.
22200
22201 2005-07-01  Martin Baulig  <martin@ximian.com>
22202
22203         * reflection.c (mono_reflection_generic_class_initialize): Update
22204         the `dgclass->fields [i].parent' to the correct class.
22205         (mono_image_get_fieldref_token): Use the declaring type, not the
22206         reflected type.
22207
22208 2005-07-01  Martin Baulig  <martin@ximian.com>
22209
22210         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22211
22212 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22213
22214         * threads.c (thread_cleanup): assert that thread != NULL
22215         (wait_for_tids_or_state_change): We were using the wrong variable
22216         when accessing wait->threads. `i' was always out of the bounds of
22217         the array.
22218
22219 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22220
22221         * loader.c: map user32 and kernel32 to libMonoSupportW
22222
22223 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22224
22225         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22226
22227 2005-06-28  Martin Baulig  <martin@ximian.com>
22228
22229         * loader.c (method_from_methodspec): Fix #75334.
22230
22231 2005-06-28  Martin Baulig  <martin@ximian.com>
22232
22233         Fix #74953 - Arrays now implement the generic IList<T> interface
22234         on the 2.0 platform.
22235
22236         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22237
22238         * reflection.c (mono_class_bind_generic_parameters): New public
22239         function; similar to mono_reflection_bind_generic_parameters(),
22240         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22241
22242         * domain.c (mono_init_internal): Try to initialize.
22243         `mono_defaults.generic_array_class' here; this'll only succeed if
22244         we're using the 2.0 corlib.
22245
22246         * icall.c
22247         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22248         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22249         (mono_lookup_internal_call): Added support for nested classes.
22250
22251         * loader.c
22252         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22253         we're an interncall and have generic arguments.
22254
22255         * class.c
22256         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22257         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22258         instance of System.Array.InternalArray<T> for arrays, so they
22259         implement the generic IList<T> interface.
22260
22261 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22262
22263         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22264         (chastamar@yahoo.com). Fixes #75374.    
22265
22266 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22267
22268         * culture-info-table.h: regenerated.
22269
22270 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22271
22272         * icall.c: handle spaces correctly for base64 strings.
22273
22274 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22275
22276         * *.c: Kill some warnings.
22277
22278 2005-06-23  Duncan Mak  <duncan@novell.com>
22279
22280         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22281         that this builds on Solaris 10 (x86).
22282
22283 2005-06-23  Martin Baulig  <martin@ximian.com>
22284
22285         * class.c
22286         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22287         generic type definitions.
22288
22289 2005-06-23  Martin Baulig  <martin@ximian.com>
22290
22291         Fix #75331.
22292
22293         * metadata.c (mono_class_get_overrides): Renamed to
22294         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22295         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22296         pass it to mono_get_method_full().
22297
22298 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22299
22300         * reflection.c (mono_reflection_create_runtime_class): take the
22301         mono_domain_lock in this method. Prevents deadlocks
22302
22303 2005-06-22  Martin Baulig  <martin@ximian.com>
22304
22305         * loader.c (method_from_methodspec): Fix #75330.
22306
22307 2005-06-22  Martin Baulig  <martin@ximian.com>
22308
22309         * reflection.c (type_get_qualified_name): Use
22310         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22311         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22312         argument; use it if we don't have an assembly name.
22313
22314 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22315
22316         * object.c: In mono_message_init, set "copy out" flag for in
22317         parameters with the [Out] flag.
22318
22319 2005-06-21  Martin Baulig  <martin@ximian.com>
22320
22321         * class.c
22322         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22323         and MONO_TYPE_PTR.
22324
22325 2005-06-21  Martin Baulig  <martin@ximian.com>
22326
22327         * class.c (mono_class_init): Don't initialize `class->fields' for
22328         generic instances since they're initialized again in
22329         compute_field_layout(). 
22330         (compute_field_layout): Set the field's `generic_info' here; fix
22331         #75320. 
22332
22333 2005-06-21  Martin Baulig  <martin@ximian.com>
22334
22335         * class-internals.h
22336         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22337
22338         * metadata.c (mono_metadata_generic_method_equal): Also
22339         distinguish the `generic_class'; fixes #75334.
22340
22341 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22342
22343         * domain.c:
22344         * appdomain.c:
22345         * domain-internals.h:
22346         * reflection.c: 'domain_assemblies' field is now protected by its own
22347         lock. Don't call into managed code to run the AssemblyLoad event if we
22348         now there are no registered delegates for it.
22349
22350 2005-06-20  Martin Baulig  <martin@ximian.com>
22351
22352         * class.c (mono_class_is_assignable_from): Use a custom version of
22353         mono_class_has_parent() to make things work for generic instances;
22354         fix #75300.
22355
22356 2005-06-20  Martin Baulig  <martin@ximian.com>
22357
22358         * loader.c (method_from_methodspec): Apply a patch from
22359         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22360
22361 2005-06-20  Martin Baulig  <martin@ximian.com>
22362
22363         * class.c (mono_class_init): Reverted Zoltan's last change; it
22364         breaks generics.
22365
22366 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22367
22368         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22369
22370 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22371
22372         * socket-io.c: fix the index in the socket array for writable/error
22373         sockets. Fixes bug #75306.
22374
22375 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22376
22377         * class.c (mono_class_init): Allow interfaces to have static ctors.
22378
22379 2005-06-17  Martin Baulig  <martin@ximian.com>
22380
22381         * loader.c (method_from_methodspec): Use `context->container' when
22382         parsing the `gmethod->inst'.
22383
22384 2005-06-17  Martin Baulig  <martin@ximian.com>
22385
22386         * class.c (mono_type_get_name_recurse): Don't add the assembly
22387         name for type arguments.
22388
22389 2005-06-15  Martin Baulig  <martin@ximian.com>
22390
22391         * reflection.c (mono_image_get_inflated_method_token): Encode
22392         correct klass; fixes #75260.
22393
22394 2005-06-13 Michal Moskal <malekith@nemerle.org>
22395
22396         * icall.c: Make GetCorrespondingMethod/Constructor take
22397         MonoReflectionMethod method not MonoMethod. Removed
22398         MonoType.GetCorrespondingField, and make
22399         MonoGenericType.GetCorrespondingField take name not
22400         MonoClassField.
22401
22402 2005-06-13  Michal Moskal <malekith@nemerle.org>
22403
22404         * reflection.c (field_encode_signature, encode_locals):
22405          Make sizes of buffers for types larger (for big generic types).
22406          (create_generic_typespec,
22407          mono_reflection_sighelper_get_signature_local,
22408          mono_reflection_sighelper_get_signature_field):
22409          Add asserts for too small buffers.
22410
22411 2005-06-15  Martin Baulig  <martin@ximian.com>
22412
22413         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22414         if our parent is not a dynamic type.
22415
22416 2005-06-15  Martin Baulig  <martin@ximian.com>
22417
22418         * class-internals.h (MonoTypeNameFormat): New enum.
22419
22420         * class.c
22421         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22422         (mono_type_get_full_name): Removed.
22423         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22424         argument instead of the boolean's.
22425
22426         * icall.c (ves_icall_System_MonoType_getFullName):
22427         Added `gboolean assembly_qualified'.    
22428
22429         * reflection.h
22430         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22431
22432         * reflection.c (mono_reflection_parse_type): Parse the new type
22433         name format.
22434
22435 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22436
22437         * icall.c: no need to convert from utf16 to utf8 and then back again
22438         after the call to GetLogicalDrives.
22439
22440 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22441
22442         * icall.c: frombase64. Fix problems exposed by new tests.
22443
22444 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22445
22446         * icall.c: added internal calls for converting char [] and strings in
22447         base64 into byte [].
22448
22449 2005-06-10  Martin Baulig  <martin@ximian.com>
22450
22451         * class.c (mono_class_create_generic_2): Read the nested classes
22452         from the metadata rather than from `gklass->nested_classes' since
22453         `gklass' might not be initialized yet.
22454
22455 2005-06-09  Duncan Mak  <duncan@novell.com>
22456
22457         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22458         all public headers. Fixes #74919.
22459
22460 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22461
22462         * domain.c: The key for proxy_vtable_hash is now a pointer
22463         array. Added new GHashFunc and GCompareFunc functions for this.
22464
22465         * class.h: The list of interfaces in MonoRemoteClass is known in
22466         advance and can't grow (we create a new MonoRemoteClass if needed),
22467         so now the interface array can be allocated together with
22468         MonoRemoteClass.
22469         
22470         * object.c: Added a new method create_remote_class_key.
22471         Fixed mono_remote_class so it does not depend on
22472         mono_upgrade_remote_class.
22473         Removed extend_interface_array.
22474         Added new method clone_remote_class(), which makes a copy of a remote
22475         class and adds a new interface or class to it.
22476         mono_upgrade_remote_class() now creates a new remote class (or gets
22477         it from the cache) if an vtable upgrade is needed. In this way
22478         we make sure that other objects sharing the same remote class
22479         don't get the new vtable with unwanted interfaces.
22480         
22481         * object-internals.h:
22482         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22483         
22484         * marshal.c: Track changes in mono_upgrade_remote_class().
22485
22486 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22487         * icall.c: Add runtime methods for obtaining members of inflated
22488         class, which were created from supplied non-inflated members. It
22489         is used in internal Get{Method,Constructor,Field} methods in
22490         System.Type
22491
22492 2005-06-09  Martin Baulig  <martin@ximian.com>
22493
22494         * reflection.c
22495         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22496
22497 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22498         * reflection.c (mono_image_basic_init): Define
22499         Version in MonoDynamicAssembly. 
22500         
22501 2005-06-08  Martin Baulig  <martin@ximian.com>
22502
22503         Fix #75136.
22504
22505         * loader.c
22506         (mono_method_signature_full): New public method; takes a
22507         `MonoGenericContext *'.
22508         (find_method): Use mono_method_signature_full() and pass the
22509         klass'es context to it.
22510
22511         * class.c (mono_class_is_inflated_method): Use
22512         mono_method_signature_full() and pass the context to it.
22513
22514 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22515
22516         * object.c: add proper locking in mono_remote_class_vtable(),
22517         fixes possible memory corruption.
22518
22519 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22520
22521         * marshal.c (mono_remoting_marshal_init): set
22522         initialized after initialization.
22523
22524 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22525
22526         * locales.c : hush.
22527
22528 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22529
22530         * object.c (extend_interface_array): fix really silly
22531         memory corrupting / comparison bug.
22532
22533 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22534
22535         * reflection.c: Functions added to support the creation
22536         of CustomAttributeData, which includes Attribute data
22537         used by ReflectionOnly methods.
22538
22539         * reflection.h:  mono_reflection_get_custom_attrs_data and
22540          mono_custom_attrs_data_construct added (functions exposed).
22541
22542          * icall.c: Added mono_reflection_get_custom_attrs_data
22543          as icall.
22544         
22545 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22546
22547         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22548         lupus's request.
22549
22550 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22551
22552         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22553
22554         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22555         dynamic DllImportAttribute.
22556
22557         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22558         dynamic DllImportAttribute.
22559
22560         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22561         Fixes #75162.
22562
22563 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22564
22565         * threads.c: avoid segfault when an unstarted thread is aborted.
22566
22567 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22568
22569         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22570         Returns the name and version of the runtime for reporting.
22571
22572 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22573
22574         * appdomain.c: bump corlib version.
22575         * object-internals.h: new field in MonoReflectionAssembly.
22576
22577 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22578
22579         * object-internals.h: Carlos forgot to add this field.
22580
22581 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22582
22583         * icall.c: Added create_version to create instances
22584         of Version of MonoReflectionAssemblyName. This change helps
22585         the AssemblyName tests to keep running fine.
22586         
22587 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22588   
22589         * object.c (mono_method_return_message_restore): A somehow less
22590         intrusive fix for #75138.
22591
22592 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22593
22594         * object.c (mono_method_return_message_restore): Fix computation
22595         of expected number of out args.
22596
22597 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22598
22599         * reflection.c (mono_image_get_method_info): Fix the case when the
22600         charset is empty.
22601
22602 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22603
22604         * object.c: Added missing null check in
22605           mono_method_return_message_restore.
22606
22607 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22608
22609         * reflection.c (mono_image_get_method_info): Handle the case when
22610         dllentry is empty.
22611
22612 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22613
22614         * object.c: When creating the vtable for a proxy, take into account
22615         all inherited interfaces, not only the ones registered in
22616         iclass->interfaces. This fixs bug #74996.
22617         Also, in mono_method_return_message_restore, verify that the array
22618         of out args has the expected lengh.
22619
22620 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22621
22622         * socket-io.c: update the timeout in Poll when the call is interrupte.
22623
22624 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22625
22626         * socket-io.c: support abort/suspend in Select_internal after last
22627         change.
22628
22629 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22630
22631         * threadpool.c: remove warning.
22632
22633 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22634
22635         * icall.c:
22636         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22637         removing the 1024 limit from select(). Runtime part of the fix for
22638         bug #71203.
22639
22640 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22641
22642         * socket-io.c: when resolving the addresses for the same
22643         host returned by gethostname(), get the local IPs from the interface
22644         list. Loopback addresses are discarded if the are interfaces up with
22645         non-loopback ones. Fixes bug #63265.
22646
22647 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22648
22649         * appdomain.c, verify.c, object-internals.h, reflection.c:
22650         bumped corlib number to 36, and added new extra_flags field
22651         to ReflectionMethodBuilder and friends.  Fixes #75060.
22652
22653 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22654
22655         * gc.c: register a new weak link only if the object is non-null
22656         (fixes bug#75047).
22657
22658 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22659
22660         * culture-info.h : short time pattern too.
22661
22662 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22663
22664         * culture-info.h : expand long time pattern string length.
22665
22666 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22667
22668         * culture-info-table.h : update (more French date format; #72788).
22669
22670 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22671
22672         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22673         the method is static. Fixes #75029.
22674
22675 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22676
22677         * reflection.c: Update the table_idx field of method builders after
22678         saving the module, since it can change. This is a workaround for
22679         bug #74914. 
22680
22681 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22682
22683         * culture-info-table.h : update (additional French date format).
22684
22685 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22686
22687         * icall.c (ves_icall_type_Equals): Revert last change.
22688         
22689         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22690
22691         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22692
22693 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22694
22695         * class-internals.h: Added executioncontext_class field to 
22696         MonoDefaults structure.
22697         * domain.c: Cache System.Threading.ExecutionContext class in 
22698         mono_defaults.
22699         * object.c: Capture the ExecutionContext for asynchroneous calls in
22700          mono_async_result_new.
22701         * object-internals.h: Added execution_context and original_context 
22702         fields to MonoAsyncResult. Added execution_context to MonoThread.
22703         * security-manager.c|.h: Added mono_get_context_capture_method to 
22704         return the capture method (if required by the security manager or by
22705         the framework version used).
22706         * threadpool.c: Apply capture (if present) ExecutionContext in 
22707         mono_async_invoke and revert to original context after it completes.
22708
22709 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22710
22711         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22712
22713 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22714
22715         * culture-info-table.h : zh-CHT related workaround.
22716
22717 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22718
22719         * marshal.c (emit_marshal_custom): Add some error checking and call the
22720         methods in the ICustomMarshaler interface. Fixes #74875.
22721         
22722         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22723         native->managed wrappers.
22724
22725 2005-05-12  Martin Baulig  <martin@ximian.com>
22726
22727         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22728         here and use the loader lock.
22729
22730         * mono-debug.c: Properly lock when the debugger is not attached.
22731         (mono_debug_init): Release the initial lock if we're not running
22732         in the debugger.
22733
22734 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22735
22736         * marshal.c (emit_marshal_custom): Pass through NULL values without
22737         calling the custom marshalling routines.
22738
22739         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22740         conversion in structures. Fixes #74882.
22741
22742 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22743
22744         * culture-info-table.h : zh-* cultures were missing.
22745
22746 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22747
22748         * threads.c: Added a new event background_change_event which is signaled
22749         when a thread changes its background mode.
22750         Moved here several checks previously done in managed code. The checks
22751         require the thread lock, and using the thread lock in managed code
22752         can result in deadlocks.
22753         Merged Start_internal and Thread_internal into a single method. Now 
22754         Thread_internal does all work of creating and starting a thread.
22755         Added icalls for setting and getting the state of the object. Moved from
22756         managed code to avoid locking there.
22757         Added wait_for_tids_or_state_change() which is called instad of
22758         wait_for_tids when waiting for non-backround threads to end. This method
22759         will return if one of the threads ends or the background_change_event
22760         is signaled.
22761         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22762         the background mode. This method signals the background_change_event
22763         event.
22764         * icall.c:
22765         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22766         removed Start_internal.
22767         
22768 2005-05-11  Martin Baulig  <martin@ximian.com>
22769
22770         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22771         to order of some fields to get proper alignment on 64-bit machines.
22772
22773 2005-05-11  Martin Baulig  <martin@ximian.com>
22774
22775         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22776         changes as they're broken and completely fuck up the debugger.
22777
22778         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22779
22780 2005-05-10  Martin Baulig  <martin@ximian.com>
22781
22782         * reflection.c (mono_reflection_generic_class_initialize): Don't
22783         call mono_class_setup_parent() here.
22784
22785 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22786
22787         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22788         send/receive timeout use an integer in milliseconds. We were using a
22789         struct timeval.
22790
22791 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22792
22793         * locales.c:
22794         (internal_get_cultures): reserve the first slot of the array for the
22795         InvariantCulture, which will be filled in managed code.
22796
22797 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22798
22799         * reflection.c (mono_image_fill_module_table): Initialize the
22800         GENERATION field as well.
22801
22802 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22803
22804         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22805         Monitor.Enter on the object.
22806
22807 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22808
22809         * threads.c: Enable the wait for running threads when exiting.
22810         * icall.c: Suspend all threads before exiting.
22811
22812 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22813
22814         * assembly.c (mono_assembly_load_reference): Fix warning.
22815
22816 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22817
22818         * threadpool.c: changed the default number of threads per cpu. From now
22819         on, the default will be 20 + (5 * number of cpus) instead of 50.
22820
22821 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22822
22823         * loader.c (mono_method_get_signature_full): Add locking here.
22824
22825 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22826
22827         * appdomain.c: Moved methods for parsing and freeing assembly
22828         names to assembly.c.
22829         * assembly.c, domain-internals.h: Created public methods for parsing
22830         assembly names. Fixed mono_assembly_load_with_partial_name:
22831         it now finds the best match, taking into account the version,
22832         token and culture specified in the partial name. Also return
22833         the latest version if no version information is specified.
22834
22835 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22836
22837         * threadpool.c: replace check for SocketAsyncCall class.
22838
22839 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22840
22841         * threadpool-internals.h:
22842         * Makefile.am: added threadpool-internals.h
22843
22844         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22845         that happen in threadpool threads (tested on MS).
22846         (mono_thread_pool_remove_socket): new function that dispatch any pending
22847         AIO call on a socket that is closing. By now only epoll really needs it,
22848         as select/poll wake up when the socket closes.
22849
22850
22851         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22852
22853 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22854
22855         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22856
22857 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22858
22859         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22860
22861 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22862
22863         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22864         has an abort request, convert it into a suspend request.
22865
22866 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22867
22868         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22869         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22870         is not supported yet.
22871
22872 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22873
22874         * image.c: register assemblies loaded from data (bundles) in the loaded
22875         assemblies hash. Fixes bug #74772.
22876
22877 2005-04-29  Martin Baulig  <martin@ximian.com>
22878
22879         * class.c (mono_type_get_name_recurse): Update to the new naming
22880         schema from the latest .NET 2.x beta2.
22881         (mono_class_setup_vtable_general): If we're a generic instance,
22882         copy the vtable from our generic type definition and inflate all
22883         the methods in it.
22884
22885         * loader.c (find_method): Update to the new naming schema from the
22886         latest .NET 2.x beta2.
22887
22888 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22889
22890         * class.c (mono_class_init): Add a mono_loader_unlock to the
22891         #74734 fix.
22892
22893 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22894
22895         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22896         suspend_all_other_threads () call for the time being, since it can hang.
22897
22898         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22899         the background threads to exit, since it can also hang.
22900
22901         * class.c (mono_class_init): Applied patch from Ankit Jain 
22902         (radical@gmail.com). Avoid pending init errors when a field refers
22903         to a nested class using a typeref. Fixes #74734.
22904
22905         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22906         this for dynamic modules.
22907
22908 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22909
22910         * threads.c: don't wait for threads that are in the process of aborting
22911         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22912         and waiting for background threads to finish. This makes xsp and
22913         mod-mono-server exit without random length delays and/or hangs.
22914
22915 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22916
22917         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22918
22919 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22920
22921         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22922         dynamic types to prevent infinite loops. Fixes #74727.
22923
22924         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22925         ..._is_assignable_to.
22926
22927 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22928
22929         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22930
22931 2005-04-25  Martin Baulig  <martin@ximian.com>
22932
22933         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22934
22935         * domain.c
22936         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22937
22938         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22939
22940         * reflection.c (build_compressed_metadata): Set metadata header
22941         version to 2.0.
22942
22943 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22944
22945         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22946         number into an integral and a decimal part. Fixes #70473.
22947
22948         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22949
22950 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22951
22952         * culture-info-table.h : reflected the latest locale-builder output.
22953
22954 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22955
22956         * threadpool.c: check for SuspendRequested too when deciding if
22957         mono_thread_interruption_checkpoint should be called.
22958
22959 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22960
22961         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22962         * threads.c: remove interruption_mutex and use Interlocked instead. When
22963         suspending all the threads, wait for all the suspended events at once.
22964         If we're shutting down and get an APC that is going to be queued,
22965         call mono_thread_execute_interruption immediately, as the thread might
22966         be sleeping on a pthread condition or mutex.
22967
22968         * icall.c: call mono_runtime_set_shutting_down before suspending the
22969         threads.
22970
22971         Fixes bug #74693. And now xsp is happier when exiting.
22972
22973 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22974
22975         * loader.c (mono_stack_walk): Fix #74690.
22976
22977 2005-04-22  Martin Baulig  <martin@ximian.com>
22978
22979         * mono-debug.h (MonoDebugMethodJitInfo): Added
22980         `MonoDebugMethodJitInfo *jit'.
22981
22982         * mono-debug.c (mono_debug_read_method): Cache the
22983         MonoDebugMethodJitInfo in `address->jit'.
22984         (mono_debug_free_method_jit_info): New public method.
22985
22986 2005-04-22  Martin Baulig  <martin@ximian.com>
22987
22988         * class.c (mono_class_is_assignable_from): Disallow
22989         type parameter -> interface.
22990
22991 2005-04-21  Dick Porter  <dick@ximian.com>
22992
22993         * threads.c (mono_thread_create): Turn an assertion into an error.
22994
22995 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22996
22997         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22998         
22999         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
23000         Fix some gcc 4.0 warnings.
23001
23002 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
23003
23004         * file-io.c: fix alt dir separator char on unix systems
23005         and cleanup (fixes bug #71214).
23006
23007 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
23008
23009         * marshal.c: Use CALLVIRT instead of CALL when dispatching
23010         a call to a remote domain, since the method may be an
23011         interface method in the client domain. This fixes bug #74192.
23012
23013 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23014
23015         * threadpool.c: recv/send are now performed before going back to managed
23016         code to save one transition.
23017
23018 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23019
23020         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
23021
23022         * metadata/threadpool.c: removed hack to workaround the bug above.
23023
23024         Fixes bug #74618.
23025
23026 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
23027
23028         * reflection.c reflection.h: Fix handling of parameter defaults in
23029         dynamic methods. Also fixes handling of parameter attributes.
23030         Fixes #74609.
23031
23032         * mono-debug.c (mono_debug_close_image): Fix warning.
23033
23034 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23035
23036         * socket-io.h: replaced old unused field with new 'blocking'.
23037         * threadpool.c: restore socket blocking state on windows(tm).
23038
23039 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
23040
23041         * icall.c: don't return the codebase in the AssemblyName[] returned by
23042         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
23043         * object-internals.h: Removed FIXME (fields were presents) and fixed
23044         versioncompat declaration.
23045
23046 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23047
23048         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
23049         not closed, so don't cleanup when it happens.
23050
23051 2005-04-13  Chris Toshok  <toshok@ximian.com>
23052
23053         * mono-debug-debugger.h: change prototype for
23054         mono_debugger_lookup_type.
23055
23056         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
23057         this function, although it should probably be named
23058         mono_debugger_init_type.
23059
23060 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23061
23062         * threadpool.c: fix non-AIO case.
23063
23064 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
23065
23066         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
23067         the built-in profiler to measure just JIT compilation times.
23068
23069 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23070
23071         * threadpool.c: the epollfd might be closed by another thread at
23072         any time, so ignore EBADF at treat it as a "we're closing" sign.
23073
23074 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23075
23076         * threadpool.c: release the semaphores with a count equals to the number
23077         of working threads in both IO and regular pools. Fixed typo that messed
23078         up the count of IO pool threads. Don't initialize the pipe handles if
23079         we're using epoll.
23080
23081 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23082
23083         * threadpool.c: some systems don't like a NULL when deleting the socket
23084         from epoll.
23085
23086 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23087
23088         * threadpool.c: fix semaphore allocation.
23089
23090 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23091
23092         * threadpool.c: added epoll() based implementation for asynchronous IO
23093         that is used instead of the default poll() when available.
23094         It can be disabled by setting MONO_DISABLE_AIO.
23095
23096 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23097
23098         * threadpool.c: windows needs 'closesocket' and instead of returning
23099         0 when the stream is closed while in select, it returns -1. Fixes bug
23100         #74573.
23101
23102 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23103
23104         * class.c (class_compute_field_layout): Fix the regression caused by
23105         the previous try.
23106
23107 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23108
23109         * threadpool.c: separate pool for socket async. IO.
23110         * threadpool.h: mono_max_worker_threads is not a global any more.
23111
23112 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23113
23114         * class.c (class_compute_field_layout): Fix #74549.
23115
23116 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23117
23118         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23119         use 2 connected sockets instead.
23120
23121 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23122
23123         * mono-config.c: Add new entry point for mkbundle
23124         mono_config_parse_memory. 
23125
23126 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23127
23128         * threadpool.c: removed another unused function.
23129
23130 2005-04-08  Ankit Jain  <radical@corewars.org>
23131
23132         * reflection.c (get_default_param_value_blobs): Add 'types'
23133         parameter to get the types encoded in the constant table.
23134         (mono_param_get_objects): Use the type from the constant table,
23135         not the type of the parameter, when creating default values.
23136         Handle null default values correctly.
23137
23138 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23139
23140         * file-io.c:
23141         * file-io.h:
23142         * threadpool.c:
23143         * threadpool.h:
23144         * icall.c:
23145         * socket-io.c: removed dead code for async IO.
23146
23147 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23148
23149         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23150
23151         * threadpool.c: intercept socket async. calls and pass them to a thread
23152         that is polling and dispatching the job items to the threadpool as
23153         socket become ready. Fixes bugs #71217, #71933.
23154
23155         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23156         between char and short/ushort arrays.
23157
23158         * socket-io.c: remove dead code.
23159
23160 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23161
23162         * locales.c,
23163           icall.c : removed InternalToUpper_Comp() and
23164           InternalToLower_Comp().
23165
23166 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23167
23168         * char-conversions.h : The tables were incorrectly generated. Should
23169           be generated against invariant culture.
23170
23171 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23172
23173         * object.c (mono_runtime_invoke_array): Fix return value when 
23174         passing pre-created valuetype objects to ctors.
23175
23176         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23177         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23178         Fixes #74338.
23179
23180 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23181
23182         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23183         only used with --security and hides the wrong corlib version error.
23184
23185 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23186
23187         * class.c: Changed mono_class_name_from_token so that types
23188         outside of a namespace don't have an initial period.  Improved
23189         the g_warning message used in _mono_class_get when loading
23190         fails.
23191         * assembly.c: In mono_assembly_load_reference, when an assembly
23192         can't be found, "No such file or directory" is misleading and
23193         unhelpful because a few paths were checked for the presence of
23194         the assembly.  When that happens (ENOENT), display a nicer
23195         message indicating the directories that were searched.  In all
23196         cases, the warning is made easier to read for non-hackers.
23197
23198 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23199
23200         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23201         project/solution.
23202         * appdomain.h|domain.c: Removed inline from functions.
23203         * appdomain.c: Reduced warnings when compiling on windows.
23204         * icall.c: Fixed output_debug declaration to gunichar2*.
23205         * mono-config.c: Reduced warnings when compiling on windows.
23206         * rand.c: Added missing "windows.h". Added missing return value.
23207         * rawbuffer.c: Added missing winsock2.h for windows.
23208         * sysmath.h: Added mono-compiler.h header to allow/ease 
23209         compilation with non-GCC compilers.
23210         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23211         Removed cast warnings.
23212
23213         Adapted from the work of J Lothian (for VC6).
23214
23215 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23216
23217         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23218         from default_path.
23219
23220 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23221
23222         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23223         the 2.0 profile.
23224
23225 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23226
23227         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23228         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23229         stuff, and it would probably use $(prefix)/share rather than
23230         $(prefix)/lib.
23231
23232 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23233
23234         * console-io.c: added 2 includes that might be missing.
23235
23236 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23237
23238         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23239         profile.
23240
23241         * reflection.c (create_custom_attr): Allocate the params array using
23242         alloca so it gets GC tracking.
23243
23244 2005-03-23  Chris Toshok  <toshok@ximian.com>
23245
23246         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23247         out some spew.
23248
23249 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23250
23251         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23252         changes to pick up any changes in prefix, etc.
23253
23254 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23255
23256         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23257         
23258         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23259         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23260
23261 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23262
23263         * class-internals.h object-internals.h class.c reflection.c: Extend the
23264         mono_lookup_dynamic_token () function to return the class of the
23265         token as well. 
23266
23267         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23268         well. Fixes #73848.
23269
23270 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23271
23272         * security-manager.c: Skip inheritance checks for intra-corlib
23273         class inheritance and method overrides. This skips a lot of checks
23274         and (anyway) permissions cannot work until corlib is loaded.
23275
23276 2005-03-23  Martin Baulig  <martin@ximian.com>
23277
23278         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23279         MONO_TYPE_GENERICINST.  
23280
23281 2005-03-23  Martin Baulig  <martin@ximian.com>
23282
23283         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23284
23285 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23286
23287         * class.c: added locking comments to some functions.
23288         Cache the interface offsets arrays (saves about 20 KB
23289         of runtime memory in a typical app).
23290         Reduce the time overhead in mono_class_setup_supertypes ().
23291
23292 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23293
23294         * icall.c: speedup and fix leaks in GetMethodsByName and
23295         GetPropertiesByName.
23296
23297 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23298
23299         * reflection.c: some locking fixes.
23300
23301 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23302
23303         * metadata.c: added missing break in case statement.
23304
23305 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23306
23307         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23308         typedbyref return values. Fixes #73941.
23309
23310 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23311
23312         * security-manager.c|h: Added demandunmanaged method and 
23313         suppressunmanagedcodesecurity class to MonoSecurityManager.
23314         Renamed aptc class to allowpartiallytrustedcallers.
23315
23316 2005-03-17  Martin Baulig  <martin@ximian.com>
23317
23318         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23319
23320 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23321
23322         * file-io.c: disabled file async. IO using aio_*. It uses the
23323         threadpool now. Workaround for bug #73718.
23324
23325 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23326
23327         * assembly.h, mono-config.c: added code to deal with bundled configs
23328         for bundled assemblies.
23329
23330 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23331
23332         * *.c, private.h: cleanup, removing old private.h header file.
23333
23334 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23335
23336         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23337         and throw_on_unmappable_char attributes.
23338
23339 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23340
23341         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23342         _ProcessName_internal.
23343
23344 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23345
23346         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23347         #73631.
23348
23349         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23350         are no longer used.
23351
23352 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23353
23354         * object.c (compute_class_bitmap): Add support for generics. Fixes
23355         #73527.
23356
23357 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23358
23359         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23360
23361 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23362
23363         * filewatcher.c: commented out the code for windows watcher, as we don't
23364         use it (we use the managed implementation instead).
23365
23366 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23367
23368         * object-internals.h (MonoThread): Remove 'unused1' field.
23369
23370         * appdomain.c: Bump corlib version.
23371
23372         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23373
23374         * reflection.c (mono_reflection_create_runtime_class): Remove the
23375         AssemblyBuilder.Save optimization since it causes too many problems.
23376
23377 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23378
23379         * exception.c|h: Added mono_get_exception_reflection_type_load to
23380         create a ReflectionTypeLoadException object.
23381         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23382         to return NULL is a InheritanceDemand fails during reflection. Updated
23383         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23384         ReflectionTypeLoadException if an InheritanceDemand fails during 
23385         reflection. Added icall mapping for GetLinkDemandSecurity.
23386         * security-manager.c|h: Added ves_icall_System_Security_
23387         SecurityManager_GetLinkDemandSecurity internal call to return the
23388         class and methods permissions set for a LinkDemand. Removed unused
23389         fields in MonoSecurityManager.
23390
23391 2005-03-10  Martin Baulig  <martin@ximian.com>
23392
23393         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23394         it's a generic instance.
23395
23396 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23397
23398         * reflection.c (mono_get_object_from_blob): Applied patch from
23399         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23400
23401         * class.c (mono_class_is_assignable_from): Another try at fixing 
23402         #73469 without breaking anything.
23403
23404 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23405
23406         * class.c: (mono_class_is_assignable_from): Revert the last changes
23407         since they don't work with generics.
23408         
23409         * class.c (mono_class_is_assignable_from): Fix build bustage.
23410
23411         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23412         the managed IsAssignableFrom method. Fixes #73469.
23413
23414         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23415         function.
23416
23417 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23418
23419         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23420         memory when the remoting callback does not sets the out arguments.
23421         Fixes #73007.
23422
23423         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23424         by mistake.
23425
23426         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23427
23428         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23429
23430         * appdomain.c: Bump corlib version.
23431
23432 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23433
23434         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23435         function.
23436
23437         * threads.c (mono_thread_attach): Detect threads which are not started
23438         by the GC pthread wrappers.
23439
23440 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23441
23442         * icall.c: Added new icall for RNG.
23443         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23444         single handle on Linux to access /dev/urandom and fix #73183.
23445
23446 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23447
23448         * object.c: setting the new vtable in a transparent proxy object must
23449         not change the GC descriptor.
23450
23451 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23452
23453         * object.c: fixed compilation without GCJ support.
23454         * reflection.c: for runtime-created types ensure klass->has_references
23455         is correct (bug #73215).
23456
23457 2005-03-02  Martin Baulig  <martin@ximian.com>
23458
23459         * class.c (mono_class_is_assignable_from): Make this work if
23460         `oklass' is a generic instance; fixes #72831.
23461
23462 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23463
23464         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23465         with hasthis set.
23466         
23467         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23468
23469         * marshal.c: Reorganize native->managed marshalling code to also use
23470         the emit_marshal_... functions.
23471
23472 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23473
23474         * object.c: typed allocs have issues with bitmap sizes > 30,
23475         so check for max_set >= 30.
23476
23477 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23478
23479         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23480         managed code. Fixes #73012.
23481
23482         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23483
23484         * metadata.c reflection.c: Load/Emit elem_mult as well.
23485         
23486         * metadata.h (MonoMarshalSpec): Add comment.
23487
23488         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23489
23490         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23491         num_elem to -1 if not given.
23492
23493         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23494
23495         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23496         given values.
23497
23498 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23499
23500         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23501
23502 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23503
23504         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23505
23506         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23507
23508 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23509
23510         * object.c: generalized the reference bitmap creation
23511         and added hooks for the new GC.
23512         * class-internals.c: removed the gc_bitmap field from MonoClass.
23513
23514 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23515
23516         * domain.c: help the compiler to produce better code
23517         in mono_jit_info_table_find ().
23518
23519 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23520
23521         * object.c: make all allocations look typed.
23522
23523 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23524
23525         * socket-io.c: load Mono.Posix if it's not loaded already
23526         (fixes bug#73033).
23527
23528 2005-02-24  Martin Baulig  <martin@ximian.com>
23529
23530         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23531         * reflection.c (dup_type): Likewise.
23532
23533 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23534
23535         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23536         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23537
23538 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23539
23540         * domain.c, threads.c, object-internals.h: make the critical thread
23541         local vars use the fast access mode (even when we're compiled in
23542         a lib). Provide accessors to be used by the jit during codegen.
23543
23544 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23545
23546         * appdomain.c: Changed hook functios behavior to include
23547         support for the reflection only assemblies. Some icalls were changed
23548         to support the mentioned assemblies too. Signatures of static methods
23549         try_assembly_resolve and real_load now have an additional parameter:
23550         refonly.
23551
23552         * assembly.c: General changes to mono_assembly_ methods to support
23553         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23554         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23555         suffix, to support an additional gbool parameter to specify whether
23556         the assembli is reflection only or not. Created some new hook functions 
23557         to add support for reflection only assemblies. Signatures of static 
23558         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23559         have now an additional parameter: refonly.
23560
23561         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23562         indicating whether the assembly is reflection only or not.
23563
23564         * exception.c: Add mono_get_exception_invalid_operation.
23565
23566         * icall.c: Throw an InvalidOperationException when trying to invoke
23567         a property/method/event, or trying to set/get the value of a field.
23568         Also add an icall to retrieve the ref_only flag to the
23569         MonoReflectionAssembly.
23570
23571 2005-02-23  Chris Toshok  <toshok@ximian.com>
23572
23573         Part of fix for #72827.
23574         * mono-debug.c (mono_debug_add_method): add lexical block data to
23575         the info we write.  Kind of a hack at the moment - we copy the
23576         lexical block info from the MonoDebugMethodInfo to the
23577         MonoDebugMethodJitInfo here, before writing it.
23578         (mono_debug_read_method): read the lexical block info.
23579
23580         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23581
23582         * debug-mono-symfile.h: add lexical block support.
23583
23584         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23585         support.
23586
23587 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23588
23589         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23590
23591         * object.c (mono_runtime_free_method): Call mono_free_method () and
23592         put the TODOs there.
23593
23594         * loader.c (mono_free_method): Free up most memory allocated for 
23595         dynamic methods.
23596
23597 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23598
23599         * reflection.c: properly flag a Type argument to a
23600         named custom attr value (bug #72248).
23601
23602 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23603
23604         * reflection.c: reduce code duplication in named custom
23605         attribute encoding.
23606
23607 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23608
23609         * reflection.c: properly encode custom attrs of type object
23610         (bug #72649).
23611
23612 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23613
23614         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23615
23616 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23617
23618         * socket-io.c: load System.dll if it's not loaded already
23619         (bug #72850 and #70477).
23620
23621 2005-02-21  Martin Baulig  <martin@ximian.com>
23622
23623         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23624         generic instances.
23625
23626 2005-02-21  Martin Baulig  <martin@ximian.com>
23627
23628         * reflection.c (mono_image_build_metadata): We also need to
23629         "fixup" the MethodImpl table after we computed the final method
23630         indices.  Call fixup_methodimpl() to do that.
23631         (fixup_methodimpl): New private method.
23632
23633 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23634
23635         * assembly.c: special case mscorlib.dll (bug#72536),
23636         patch from Carlos Alberto Cortez.
23637
23638 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23639
23640         * threads-types.h threads.c: Fix build bustage.
23641
23642         * threads.c: Use a union for long<->double conversions.
23643
23644         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23645         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23646
23647         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23648         containing the checkpoint call with NOT_TAKEN.
23649         
23650         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23651         checkpoint before pushing the arguments, so they won't have to be
23652         spilled to stack.
23653
23654 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23655
23656         * domain.c, assembly.c, domain-internals.h: make some data
23657         const and relocation-free.
23658
23659 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23660
23661         * object.c, appdomain.c, class-internals.h: introduce the
23662         MonoClassRuntimeInfo structure to hold the info needed to
23663         use a class at runtime. Made mono_class_vtable() lock-free
23664         for all the appdomains.
23665
23666 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23667
23668         * metadata-internals.h, image.c: introduce a per-image mempool to
23669         be used for memory that has the same lifetime as the image.
23670
23671 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23672
23673         * domain.c: In mono_init_internal(), instead of selecting the first
23674         runtime version supported by an executable, get a list of all
23675         supported versions and select the one for which an mscorlib exists
23676         (since even if the runtime supports a given version, it doesn't mean
23677         that the framework for that version is installed).
23678         Modified get_runtimes_from_exe to support this behavior.
23679         In supported_runtimes, added information about additional system
23680         assembly versions.
23681         
23682         * assembly.c: Added support for more than one system assembly version
23683         per runtime version. Updated the assembly list.
23684         In mono_assembly_remap_version, removed the initial version check,
23685         since we don't know to which version we need to compare until we
23686         get the version set on which the assembly is based.
23687         Moved the code for loading corlib into the new method
23688         mono_assembly_load_corlib(), so it can be used by the initialization
23689         code.
23690         
23691         * domain-internals.h: Updated data structures and added declaration
23692         for mono_assembly_load_corlib.
23693
23694 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23695
23696         * reflection.c (resolve_object): Fix the creation of the signature in 
23697         the SignatureHelper case.
23698
23699         * assembly.c (mono_assembly_remap_version): Fix binary search.
23700         
23701 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23702  
23703         * class.c: Added inheritance check when a method is overloaded (from a
23704         virtual method or when implementing an interface) and when a class is
23705         inherited. Added functions to set a failure for a class and to 
23706         retreive the exception from a failure.
23707         * class-internals.h: Added fields to MonoClass to keep the exception
23708         information status for inheritance (or other exceptions) to be thrown
23709         later (i.e. not at load time).
23710         * object.c: Throw the inheritance SecurityException when a type is to 
23711         be created with either class or method inheritance violations.
23712         * reflection.c|h: Fix when getting declsec from a class. Removed 
23713         unrequired code for class. Improved sanity in parameter naming.
23714         * security-manager.c|h: Added functions to check for class and method
23715         inheritance.
23716
23717 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23718
23719         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23720         and has_finalize in dynamic types as well.
23721
23722 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23723
23724         * culture-info-table.h : fixed currency format for en-GB (and so on).
23725
23726 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23727
23728         * gc.c: ensure the GC handles never have 0 as a value.
23729
23730 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23731
23732         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23733         a pointer to a struct to unmanaged code. Fixes #72625.
23734
23735 2005-02-16  Martin Baulig  <martin@ximian.com>
23736
23737         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23738
23739 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23740
23741         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23742
23743 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23744
23745         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23746
23747         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23748         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23749         etc. Fixes #71471.
23750
23751         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23752
23753         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23754
23755 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23756
23757         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23758         changes to make the current context a field in MonoThread.
23759
23760 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23761
23762         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23763         the last change.
23764         
23765         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23766         extracted from mono_marshal_get_native_wrapper.
23767
23768         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23769         to create wrappers around native functions.
23770
23771         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23772         delegates for arbitrary function pointers. Fixes #71472.
23773
23774 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23775
23776         * threads.c: cleaned up the code a little.
23777
23778 2005-02-15  Martin Baulig  <martin@ximian.com>
23779
23780         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23781         the data table.
23782
23783         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23784         allocate larger chunks if needed.
23785
23786 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23787
23788         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23789         in by mistake.
23790
23791 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23792
23793         * domain.c: keep the domains in an array and ensure the domain ids
23794         are kept small, so they can be used as indexes to domain-specific data
23795         with a small memory overhead.
23796
23797 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23798
23799         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23800
23801 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23802
23803         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23804
23805 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23806
23807         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23808
23809         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23810         values.
23811
23812         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23813         
23814 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23815
23816         * domain-internals.h: add the hashtable here.
23817
23818         * class-internals.h: Remove `info' from MonoMethod
23819
23820         * domain.c: Add a new hashtable, jit_trampoline_hash
23821
23822 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23823
23824         * object.c: don't set the value of static fields
23825         (fixes bug#72494).
23826
23827 2005-02-11  Martin Baulig  <martin@ximian.com>
23828
23829         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23830         (mono_debug_add_method): Silently ignore the method if it's too big.
23831         (mono_debug_add_type): Likewise.
23832
23833 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23834
23835         * threads.c, appdomain.c: remove #ifdefs from the code.
23836
23837 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23838
23839         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23840         common security informations. This allows us to stay in unmanaged code
23841         when doing LinkDemand and it's special cases (except for the first 
23842         time for initialization). The flags a very much used with --security.
23843         * reflection.c|h: Added code to get declarative security attributes 
23844         for LinkDemand and InheritanceDemand. This required to refactor the
23845         existing code for Demand.
23846         * security-manager.c|h: Added new method fields for the special cases
23847         of LinkDemand.
23848
23849 2005-02-10  Martin Baulig  <martin@ximian.com>
23850
23851         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23852         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23853
23854 2005-02-10  Martin Baulig  <martin@ximian.com>
23855
23856         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23857         debugging code; this is almost a complete rewrite.
23858
23859         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23860
23861 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23862
23863         * domain.c, object.h: expose mono_string_equal () and 
23864         mono_string_hash ().
23865         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23866         it's implemented in managed code.
23867
23868 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23869
23870         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23871         lo leak objects between appdomains.
23872
23873 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23874
23875         * assembly.c: old compilers compilation fix from 
23876         robertj@gmx.net (Robert Jordan).
23877
23878 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23879
23880         * class-internals.h: Little reminder for the future.
23881
23882         * debug-helpers.c: Fix up wrapper_type_names
23883
23884 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23885
23886         * image.c, metadata-internals.h: when loading an image from a file,
23887         mmap all of it and use the same codepaths as when using a
23888         in-memory image: the code is simpler and we use less memory
23889         (both writable and readonly).
23890
23891 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23892
23893         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23894         API to alloc runtime data structures that need to be tracked by the
23895         GC and contain pointers.
23896         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23897         make the code more readable and eventually use a different GC.
23898
23899 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23900
23901         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23902         for out arguments.
23903         
23904 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23905
23906         * object.c: In release_type_locks(), don't release the cctor lock
23907         if it has already been released. This fixes a crash in the
23908         thread5 test.
23909
23910 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23911
23912         * gc.c, marshal.c, icall.c: register a delegate for finalization
23913         only when the native function pointer has been allocated for it.
23914
23915 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23916
23917         * object.c: cleaned up some code, allocate objects that are
23918         pointer free with the atomic malloc variant. Allocate memory
23919         for static data from the mempool if it's pointer-free.
23920         Allocate the bounds array at the end of the array data, when needed.
23921         * object-internals.h, object.h: move a private function in a private
23922         header.
23923         * class.c: handle missing case in tracking references in fields.
23924
23925 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23926
23927         * class.c, class-internals.h: keep track if a type has
23928         reference fields in either the instance or static fields.
23929
23930 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23931
23932         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23933         and renamed to MonoRuntimeInfo. Added fields to store the expected
23934         framework assembly version. Changed mono_get_framework_version and
23935         mono_get_runtime_version for a single mono_get_runtime_info method.
23936         
23937         * assembly.c: Added method to remap system assembly versions to the
23938         current executing runtime version. Removed old mapping code.
23939         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23940         
23941         * icall.c, reflection.c: Track api changes.
23942
23943 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23944
23945         * loader.c (method_from_memberref): Improve error reporting,
23946         produce the class name instead of the typeref/typedef index. 
23947
23948 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23949
23950         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23951
23952 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23953
23954         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23955         stdcall and charset name mangling.  Reorganize the code and add
23956         some tracing stuff.
23957
23958 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23959
23960         * monodiet.c: More iters!
23961
23962         * marshal.c: Iter usage.
23963
23964         * icall.c: Iter usage.
23965
23966         * object.c: Use iters.
23967
23968         * debug-helpers.c: More iters
23969
23970 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23971
23972         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23973         under win32.
23974
23975 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23976
23977         * mono-debug-debugger.c: use iters
23978
23979         * class.c, class-internals.h: mono_class_setup_events is static
23980         now
23981
23982         * All callers: use iters
23983
23984 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23985
23986         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23987         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23988
23989 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23990
23991         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23992
23993         * marshal.h: Add prototypes for ldfld/stfld_remote.
23994
23995         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23996         this is called during startup.
23997         
23998 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23999
24000         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
24001         MonoThreadsSync struct private in monitor.c. Changed the way
24002         MonoThreadsSync is allocated so it's faster and there is no
24003         need to keep track of it with a finalizer and it uses less memory.
24004         This also finally allows us to allocate mono objects as ptrfree when
24005         there are no reference fields.
24006
24007 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
24008
24009         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
24010         disappearing link to the GC interface and use them to simplify
24011         the gchandles code.
24012
24013 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
24014
24015         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
24016         stfld_remote which call mono_load/store_field_new. This allows methods
24017         calling ldfld/stfld wrappers to be AOTed.
24018
24019         * console-io.c: Include sys/filio.h under solaris.
24020         
24021         * console-io.c: Include curses.h if needed correctly.
24022
24023 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24024         
24025         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
24026         method->klass as well.
24027
24028         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
24029
24030         * class.c (mono_class_init): Switch on lazy initialization of 
24031         methods.
24032
24033         * class.c (mono_class_get_finalizer): Handle the case when the 
24034         finalizer is inherited.
24035
24036 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24037
24038         * console-io.c: <curses.h> is needed by term.h on solaris.
24039
24040 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
24041
24042         * icall.c, class-internals.h, monodiet.c, class.c: Remove
24043         mono_class_setup_properties where possible. Remove this ftn from
24044         the header file, and make it static.
24045
24046 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
24047
24048         * loader.c: Add missing setup_... call.
24049
24050         * class.c: Add missing setup_... calls.
24051
24052         * class.c (mono_class_init): Switch on lazy initialization of 
24053         the generic vtable.
24054         
24055         * class.c (mono_class_init): Fix generics broken by the recent changes.
24056
24057         * monodiet.c (handle_type): Add missing setup_... calls.
24058
24059         * class.c: Back out garbage in previous patch.
24060         
24061         * class.c: Add missing setup_... calls.
24062
24063         * class.c (mono_class_get_method_from_name_flags): Avoid calling
24064         mono_class_setup_methods () if possible.
24065
24066         * class-internals.h (MonoClass): Add 'has_cctor' flag.
24067
24068         * class-internals.h (MonoCachedClassInfo): New structure.
24069
24070         * class.c: Initialize properties and events fields of MonoClass lazily.
24071
24072         * class.c: Add infrastructure for lazily initializing the methods and
24073         vtable fields of MonoClass. Not yet used.
24074
24075         * class.c (mono_class_get_finalizer): New helper function.
24076
24077         * class.c: Add infrastructure for loading some class related data from
24078         an AOT file.
24079
24080         * object.c: Add infrastructure for initializing the vtable from data
24081         in the AOT file.
24082
24083         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24084
24085         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24086         appropriate initialization function before accessing parts of the
24087         MonoClass structure.
24088
24089         * marshal.c: Fix warnings.
24090         
24091         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24092
24093         * mono-debug-debugger.c (get_exception_message): Use 
24094         mono_class_get_method_from_name_flags ().
24095
24096 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24097
24098         * reflection.c, appdomain.c: Replace a few manual searches that
24099         Zoltan missed. (Paolo approved this part of my initial patch).
24100
24101 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24102
24103         * profiler.c: disable recording statistical events at report time.
24104
24105 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24106
24107         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24108         to byteswap arrays of enum values, too (bug #72080).
24109
24110 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24111
24112         * appdomain.c (set_domain_search_path): Allow this to be called if
24113         domain->setup is not yet set.
24114
24115         * loader.c (mono_method_get_index): New helper function.
24116
24117         * loader.c reflection.c: Use mono_method_get_index ().
24118
24119         * class.c (mono_class_get_method_from_name_flags): New helper method.
24120
24121         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24122         this.
24123
24124         * class.c (mono_class_get_cctor): New helper method.
24125
24126         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24127         mono_class_get_method () to look up methods.
24128
24129 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24130
24131         * console-io.c: Fix the build, this should work on Windows.
24132
24133 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24134
24135         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24136         be set to null to keep things valid
24137
24138 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24139
24140         * icall.c: added Console 2.0 icalls.
24141         * Makefile.am: added console-io.[ch]
24142         * console-io.[ch]: internal calls for Console 2.0 API.
24143
24144 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24145
24146         * class.c: make sure we consider all the interfaces
24147         when calculating max_interface_id (bug found by
24148         Jeroen Frijters running ikvm).
24149
24150 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24151
24152         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24153         valuetype fields to null.
24154
24155         * object.c (set_value): Ditto. Fixes #71669.    
24156
24157 2005-01-31  Martin Baulig  <martin@ximian.com>
24158
24159         * metadata.c (mono_metadata_has_generic_params): New public
24160         function; checks whether something is a generic method.
24161
24162 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24163
24164         * appdomain.c: fix infinite recursion when adding assemblies.
24165
24166 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24167
24168         * object.c: Fix small typo to return all items for Environment.
24169         GetCommandLineArgs.
24170
24171 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24172
24173         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24174         reflection.c: more domain and assembly-unload related fixes
24175         and memory leaks plugs.
24176
24177 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24178
24179         * 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.
24180
24181 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24182
24183         * loader.c (mono_method_signature): Make this method lazy
24184         (mono_get_method_from_token): Don't computate the signature here.
24185
24186         Doing this saves quite a bit of memory. I got 90 kb on starting up
24187         monodoc. It should also save some disk reads on startup.
24188
24189         * *: MonoMethod->signature might be NULL now. You *MUST* use
24190         mono_method_signature.
24191
24192 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24193
24194         * object.c (mono_runtime_get_main_args): Return an array from the
24195         current domain here. Fixes #71938.
24196
24197 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24198
24199         * monitor.c: formatting changes to comply with the
24200         mono coding style and remove #ifdefs from the code.
24201
24202 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24203
24204         * metadata.c, private.h: remove some unneeded data
24205         and use a more compact representation for table schemas.
24206
24207 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24208
24209         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24210         to get a better distribution in hash tables.
24211         * *.c: use mono_aligned_addr_hash() where appropriate.
24212         * assembly.c: make var static.
24213
24214 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24215
24216         * domain-internals.h: Put MonoJitInfo on a diet.
24217
24218         * domain.c: Fix a warning.
24219
24220 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24221
24222         * gc.c: rework the gc handles code to reuse handles
24223         when freed.
24224
24225 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24226
24227         * domain.c: fixed long standing bug in mono_string_equal() which
24228         was brought to light with the ldstr changes.
24229
24230 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24231
24232         * reflection.c: Remove warning by adding missing include for marshal.h
24233
24234 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24235
24236         * domain.c, object.c: change the ldstr_table to hold
24237         MonoString* as keys: makes the runtime isinterned lookup
24238         faster and simplifies memory management.
24239
24240 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24241  
24242         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24243         possible to add imperative security checks before calling the icall.
24244         * reflection.c: Return security attributes on the original MonoMethod
24245         (and not the wrapped one). This fix permissions on icalls.
24246
24247 2005-01-25  Dick Porter  <dick@ximian.com>
24248
24249         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24250         the check for mktime() support actually test the mktime() return
24251         value.  "Fixes" bug 71682, though the output is still different to
24252         MS.
24253
24254 2005-01-25  Martin Baulig  <martin@ximian.com>
24255
24256         * class.c (mono_class_is_assignable_from): Make this work for
24257         generic instances.
24258
24259 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24260
24261         * marshal.c (mono_string_utf8_to_builder)
24262         (mono_string_builder_to_utf16): We might not have ownership of the
24263         string. In thise case, we need to create a new buffer.
24264
24265         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24266         be null, in which case, use the default capacity.
24267
24268 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24269
24270         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24271         GC events to the profiler.
24272
24273 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24274
24275         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24276         if you don't want the GC to run.
24277
24278 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24279
24280         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24281         start providing a GC API and keeping different implementations in
24282         their own file.
24283         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24284
24285 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24286
24287         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24288         mmap rather than allocating a huge buffer.
24289         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24290         above.
24291
24292 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24293
24294         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24295         and CheckExecutionRights.
24296         * reflection.c|h: Keep the index of the declarative security to be 
24297         used, instead of the pointer, when AOT compiler is used. Also add 
24298         class initialization when requesting demands.
24299         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24300         CheckExecutionRights. Both properties are now FALSE by default, and
24301         unmodifiable, unless the --security option is used.
24302
24303 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24304
24305         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24306         reflection.c: properly refcount images and assemblies, many leaks fixed.
24307
24308 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24309
24310         * threadpool.c: increase the timeout for threads in the thread pool to
24311         10s.  Fixes bug #67159.
24312
24313 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24314
24315         * class-internals.h: Sun's compiler insists on explicit
24316         signed on bit fields to handle then correctly.
24317
24318 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24319
24320         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24321         Make the size of the array fit only the number of invalid path
24322         chars that we have.
24323
24324         * class.c (_mono_class_get): Improve the error reporting when a
24325         class referenced is not found, to assist debugging. 
24326
24327 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24328
24329         * threads.c: fix off-by-one error.
24330         * domain.c: free data allocated in the domain.
24331
24332 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24333
24334         * reflection.c (mono_method_body_get_object): Fill out exception info
24335         as well.
24336
24337         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24338         structure.
24339         
24340 2005-01-19  Martin Baulig  <martin@ximian.com>
24341
24342         * loader.c (mono_get_method_constrained): Make this work again.
24343
24344 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24345
24346         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24347         guint16 to match the managed side.
24348
24349         * reflection.c (mono_reflection_body_get_object): Fill out local
24350         variables array.
24351
24352         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24353         as well.
24354
24355         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24356         'local_var_sig_token'.
24357
24358 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24359
24360         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24361         System.Drawing.
24362
24363         * reflection.c (mono_method_body_get_object): Handle abstract and
24364         runtime methods.
24365
24366 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24367
24368         * marshal.c, loader.c, class-internals.h, reflection.c:
24369         store the emthod data for a wrapper in an array instead of a list.
24370
24371 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24372
24373         * marshal.c: change the code to allocate memory more
24374         conservatively for method wrappers.
24375
24376 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24377
24378         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24379         fields from MonoClass to the marshal info structure where they belong.
24380
24381 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24382
24383         * class.c, object.c, class-internals.h, marshal.c: rearrange
24384         some fields and tweak some types to lower memory usage.
24385
24386 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24387
24388         * threads.c (signal_thread_state_change): Handle the case when the
24389         target thread is the current thread.
24390
24391         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24392
24393         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24394         emit_ptr_to_object_conv. 
24395
24396         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24397         marshalling. Fixes #71352.
24398
24399 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24400
24401         * metadata.h, blob.h: move table enum to blob.h so it can be included
24402         in any header.
24403         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24404         cut the size of MonoImage/MonoDynamicImage.
24405
24406 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24407
24408         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24409
24410 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24411
24412         * reflection.c, reflection.h, icall.c: add a function to check
24413         if an attribute type is defined for a metadata object.
24414
24415 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24416
24417         * object-internals.h: Added some needed fields from StringBuilder class.
24418         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24419
24420 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24421
24422         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24423         threads before shutting down the runtime.
24424
24425         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24426
24427 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24428
24429         * object-internal.h, threads.c: implement stacksize and 
24430         parameterized thread start functionality (requires
24431         matching corlib). Marked broken code for later removal.
24432
24433 2005-01-12  Martin Baulig  <martin@ximian.com>
24434
24435         * class-internals.h (MonoGenericClass): Moved the `initialized'
24436         flag to MonoDynamicGenericClass, removed `init_pending'.
24437         (MonoGenericInst): Added `is_reference' flag.
24438
24439 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24440
24441         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24442         inside the MSDOS header. Fixes #71201.
24443
24444         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24445         gc thread.
24446         (mono_domain_finalize): Ditto.
24447
24448 2005-01-12  Martin Baulig  <martin@ximian.com>
24449
24450         * class.c (mono_get_shared_generic_class): Use the cache for
24451         non-dynamic generic classes.
24452
24453         * class-internals.h (mono_class_create_generic_2): Removed
24454         function prototype, this function is now static inside class.c.
24455
24456         * class.c (mono_class_create_generic_2): Made this static, only
24457         call it from mono_class_init() and mono_class_setup_parent().
24458         (collect_implemented_interfaces_aux): Call mono_class_init() on
24459         the interfaces we collect.
24460         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24461
24462 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24463
24464         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24465         it a real thread handle.
24466
24467         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24468         MonoJitExceptionInfo, since each catch clause needs its own variable.
24469         
24470 2005-01-11  Dick Porter  <dick@ximian.com>
24471
24472         * image.c (mono_pe_file_open): New variant on mono_image_open()
24473         that does not set up the CLI metadata; used for FileVersionInfo so
24474         it can get the data for windows binaries too.
24475         
24476         * process.c (process_read_string_block): Don't read off the end of
24477         the StringTable block.
24478
24479         These both fix bug 70766.
24480
24481 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24482
24483         * gc.c: set some fields to NULL at GC cleanup time.
24484         * threads.c: if we quit the main thread, call exit ().
24485
24486 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24487
24488         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24489
24490 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24491
24492         * threads.h, threads.c, object.c: added accessor and settor for
24493         main_thread. Handle it specially when exiting from it: wait
24494         for other foreground threads to exit.
24495
24496 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24497
24498         * process.c, verify.c: remove some bloat.
24499
24500 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24501
24502         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24503         the calling convention to cdecl under win32.
24504
24505 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24506
24507         * object.c (mono_object_get_size): New function to get the size of
24508         an object instance.
24509
24510         * profiler.c (simple_allocation): Use above.
24511
24512 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24513
24514         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24515         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24516         get an appdomain by it's id and we can't assume the root's id is 0).
24517         * domain-internals.h: Change the function prototype to match.
24518         * icall.c: Change the icall table for AppDomain.
24519
24520 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24521
24522         * locales.c (string_invariant_compare_char): Only compute
24523         GUnicodeTypes in the case where we need them.  Test for ordinality
24524         first and return if so.
24525
24526         From the commit:
24527
24528                 /*
24529                  * FIXME: here we must use the information from c1type and c2type
24530                  * to find out the proper collation, even on the InvariantCulture, the
24531                  * sorting is not done by computing the unicode values, but their
24532                  * actual sort order.
24533                  */
24534
24535 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24536
24537         * loader.c: for P/Invoke methods, allow the "Internal" shared
24538         library name to refer to the calling process symbol namespace.
24539
24540 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24541
24542         * Makefile.am: Add the security manager to the build.
24543         * security-manager.c|h: New. Initialization of the security manager.
24544
24545 2005-01-07  Dick Porter  <dick@ximian.com>
24546
24547         * threads.c: 
24548         * monitor.c: Update thread state during Monitor and WaitHandle
24549         waits.  Fixes bug 71031.
24550
24551 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24552
24553         * reflection.c (property_encode_signature): Correctly handle when the
24554         property has no methods.
24555
24556 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24557
24558         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24559         
24560         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24561         fields from mb, not rmb. Fixes #71017.
24562
24563         * marshal.c (emit_ptr_to_str_conv): Add support for 
24564         ByValTStr -> string conversion. Fixes #71015.
24565
24566         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24567
24568         * mempool.c (mono_mempool_contains_addr): New helper function.
24569
24570 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24571
24572         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24573         HasSematics encoded fields.
24574         
24575         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24576         invalid string marshalling.
24577
24578         * metadata.c: Fix warnings.
24579         
24580 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24581
24582         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24583         profiler support.
24584
24585 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24586
24587         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24588         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24589         tests.
24590
24591 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24592
24593         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24594         so methods containing these can be AOTed.
24595
24596 2005-01-03  Martin Baulig  <martin@ximian.com>
24597
24598         * loader.c (find_method): Removed the hack for generic instances.
24599         (method_from_memberref): If our parent is a generic instance, pass
24600         its generic type definition to find_method() and then inflate the
24601         method.
24602         (mono_get_method_constrained): Pass the generic type definition to
24603         find_method() and inflate the method later.
24604
24605         * class-internals.h (MonoStats): Added `generic_class_count'.
24606
24607         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24608         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24609
24610         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24611         generic type definitions.
24612
24613 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24614
24615         * loader.c icall.c: Fix warnings.
24616
24617 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24618
24619         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24620         blittable types. Fixes #70864.
24621
24622 2004-12-29  Martin Baulig  <martin@ximian.com>
24623
24624         * icall.c
24625         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24626
24627         * reflection.c (mono_method_get_object): Create a
24628         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24629         call mono_get_inflated_method().
24630
24631         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24632
24633 2004-12-27  Martin Baulig  <martin@ximian.com>
24634
24635         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24636         (MonoMethodInflated): Added `inflated' field.
24637
24638         * class.c (mono_class_inflate_generic_method): Don't really
24639         inflate the method here; just set the `is_inflated' flag in the
24640         MonoMethod.
24641         (mono_class_get_inflated_method): Actually inflate the method here
24642         if it's not already inflated; we use the MonoMethodInflated's new
24643         `inflated' field as a cache.
24644
24645 2004-12-26  Martin Baulig  <martin@ximian.com>
24646
24647         * class.c
24648         (inflate_generic_class): Moved some code out of inflate_generic_type().
24649         (mono_class_inflate_generic_method): If we're already inflated,
24650         inflate the context and use the declaring method; ie. make sure
24651         the declaring method of an inflated method is always the generic
24652         method definition.
24653         (mono_class_create_from_typedef): Create
24654         `class->generic_container->context->gclass'.
24655
24656 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24657
24658         * metadata-internals.h, marshal.c, reflection.c: More
24659         MonoGHashTable->GHashTable.
24660
24661         * domain-internals.h, class.c: Change MonoGHashTable's into
24662         GHashTables for some cases where no gc stuff is used
24663
24664         All users: update apis
24665
24666 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24667
24668         * metadata.c (builtin_types): Make this `const'. Makes this get
24669         put into the shareable section.
24670         (mono_metadata_init): Casts to make gcc happy.
24671
24672 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24673
24674         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24675
24676 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24677
24678         * icall.c: Added an internal call to retrieve the position and length
24679         of assembly-level declarative security attributes (RequestMinimum, 
24680         RequestOptional and RequestRefuse). This is used by the Assembly class
24681         to re-create the corresponding permission sets.
24682
24683 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24684
24685         * marshal.c: fix the stelemref wrapper to be type correct
24686         (and faster).
24687
24688 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24689
24690         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24691         to do key & 0x7fffffff. Hashtable already does this. It just
24692         results in longer code.
24693
24694 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24695
24696         * appdomain.c: Bump corlib version.
24697         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24698         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24699         * reflection.c|h: Add functions to get declarative security infos
24700         (blob position and length) for assemblies, classes and methods.
24701
24702 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24703
24704         * reflection.c: sort the constant table (bug #70693).
24705
24706 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24707
24708         * object-internals.h, threads.c, domain.c: add accessors for
24709         the MonoThread and MonoDomain tls keys.
24710
24711 2004-12-18  Martin Baulig  <martin@ximian.com>
24712
24713         * class.c (inflate_generic_type): If we're inflating a generic
24714         instance, set `ngclass->context->container = context->container';
24715         ie. the container we inflated into.
24716
24717         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24718         inflate_generic_type() changes.
24719
24720 2004-12-17  Martin Baulig  <martin@ximian.com>
24721
24722         * class-internals.h
24723         (MonoGenericClass): Replaced `MonoType *generic_type' with
24724         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24725         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24726         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24727
24728 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24729
24730         * exception.c (mono_exception_from_token): New helper function.
24731
24732 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24733
24734         * assembly.c (mono_assembly_load_with_partial_name): Call 
24735         mono_assembly_loaded before invoking the preload hooks. Fixes
24736         #70564.
24737
24738         * object-internals.h (MonoThread): Change culture_info and 
24739         ui_culture_info into an array.
24740
24741         * threads.c: Cache culture info objects from more than one appdomain.
24742
24743         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24744         current UI culture.
24745
24746 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24747
24748         * threads.h threads.c appdomain.c: Clear the culture_info field of
24749         all threads during unloading if they point to an object in the dying
24750         appdomain.
24751
24752 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24753
24754         * culture-info.h (TextInfoEntry): New struct
24755         * object-internals.h: sync with managed
24756         * locales.c: fill the `text_info_data' field
24757         * culture-info-tables.h: update
24758
24759 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24760
24761         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24762         collector.
24763
24764 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24765
24766         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24767         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24768
24769 2004-12-12  Martin Baulig  <martin@ximian.com>
24770
24771         * mono-debug-debugger.c (write_type): If we're an enum and the
24772         builtin types have already been initialized, call mono_class_init().
24773
24774 2004-12-11  Martin Baulig  <martin@ximian.com>
24775
24776         * metadata.c (mono_metadata_load_generic_params): Added
24777         `MonoGenericContainer *parent_container' argument; automatically
24778         compute `container->is_method'; pass the correct owner to
24779         get_constraints().      
24780
24781         * reflection.c (compare_genericparam): Sort the GenericParam table
24782         according to increasing owners. 
24783
24784 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24785
24786         * profiler.c: allow disabling the default profiler.
24787
24788 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24789
24790         * decimal.c, icall.c: allow disabling System.Decimal support.
24791
24792 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24793
24794         * reflection.c: Add support for null attribute arguments.
24795
24796 2004-12-09  Martin Baulig  <martin@ximian.com>
24797
24798         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24799         names to get rid of compiler warnings.
24800
24801 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24802
24803         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24804         mono_marshal_load_type_info (). Fixes #69625.
24805         (mono_marshal_get_ptr_to_struct): Likewise.
24806
24807 2004-12-08  Martin Baulig  <martin@ximian.com>
24808
24809         * mono-debug.h: Bumped version number to 47.
24810
24811         * mono-debug-debugger.c
24812         (mono_debugger_event_handler, mono_debugger_event): Take two
24813         guint64 arguments insteed of a gpointer and a guint32.  
24814
24815 2004-12-08  Martin Baulig  <martin@ximian.com>
24816
24817         * debug-mono-symfile.h
24818         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24819         `address' to `native_offset'.
24820
24821 2004-12-08  Martin Baulig  <martin@ximian.com>
24822
24823         * class.c (mono_class_create_from_typespec): Only inflate if we
24824         either have `context->gclass' or `context->gmethod'.
24825
24826 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24827
24828         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24829
24830         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24831
24832         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24833
24834         * reflection.c (mono_assembly_get_object): Remove the workaround put
24835         in for the release.
24836         
24837         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24838
24839         * appdomain.c: Bump corlib version.
24840
24841         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24842         be visible in other appdomains.
24843
24844 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24845
24846         * threads.c: Interlocked inc and dec for longs were messed up,
24847         use a KISS based impl for this. Fixes 70234
24848
24849 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24850
24851         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24852
24853 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24854
24855         * icall.c: fix to follow policy not to allow struct
24856         arguments in icalls.
24857
24858 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24859
24860         * process.c: make the patch that handles spaces in file paths work
24861         on mono/windows too.
24862
24863 2004-12-06  Martin Baulig  <martin@ximian.com>
24864
24865         * class.c (mono_class_create_generic): Call
24866         mono_class_setup_supertypes() if we're dynamic.
24867         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24868
24869 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24870
24871         * object-internals.h: Add new fields to MonoThread.
24872
24873         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24874
24875         * icall.c threads-types.h threads.c: Add new icalls.
24876
24877         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24878
24879         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24880         managed side.
24881
24882         * appdomain.c: Bump corlib version.
24883
24884         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24885         internal assemblies. Fixes #69181.
24886
24887 2004-12-05  Martin Baulig  <martin@ximian.com>
24888
24889         * class.c (mono_class_inflate_generic_signature): Make this a
24890         no-op if `context' is NULL or we don't have any type parameters;
24891         also copy `sentinelpos'.        
24892
24893 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24894
24895         * image.c: Add unbox_wrapper_cache.
24896
24897         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24898
24899         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24900         function generator.
24901         
24902         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24903         Fixes #70173.
24904
24905         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24906         
24907 2004-12-04  Martin Baulig  <martin@ximian.com>
24908
24909         * loader.c (mono_method_get_signature_full): New public function;
24910         like mono_method_get_signature(), but with an additional
24911         `MonoGenericContext *' argument.
24912
24913         * class.c (mono_class_inflate_generic_signature): Formerly known
24914         as inflate_generic_signature(); make this public.
24915
24916 2004-12-04  Martin Baulig  <martin@ximian.com>
24917
24918         * metadata.c
24919         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24920         instead of a `MonoGenericContainer *'.  
24921         (mono_metadata_parse_array_full): Likewise.
24922         (mono_metadata_parse_signature_full): Likewise.
24923         (mono_metadata_parse_method_signature_full): Likewise.
24924         (mono_metadata_parse_generic_inst): Likewise.
24925         (mono_metadata_parse_generic_param): Likewise.
24926         (mono_metadata_parse_mh_full): Likewise.
24927         (mono_type_create_from_typespec_full): Likewise.
24928
24929 2004-12-03  Martin Baulig  <martin@ximian.com>
24930
24931         * class-internals.h (MonoGenericContainer): Replaced the
24932         `MonoGenericContext * pointer with a `MonoGenericContext'
24933         structure and made it the first element.
24934
24935 2004-12-03  Martin Baulig  <martin@ximian.com>
24936
24937         * class.c
24938         (inflate_generic_type): Set the `context->container' when creating
24939         a new MonoGenericContext.
24940         (mono_class_inflate_generic_method): Likewise.
24941         (mono_class_create_from_typespec): Just use `context->container'
24942         to get the container.
24943
24944         * loader.c (method_from_methodspec): Set `context->parent' from
24945         `context->container' - and if that's a method container, use its
24946         parent.  Also set the `context->container' when creating a new
24947         MonoGenericContext.
24948         (mono_get_method_from_token): Use just `context->container' to get
24949         the container.
24950
24951         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24952         `gclass->context->container'.
24953
24954         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24955         the `context->container' when creating a new MonoGenericContext.
24956
24957 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24958
24959         * reflection.c (compare_genericparam): Sort params with identical
24960         owner by their number. Fixes gen-111 on sparc.
24961
24962 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24963
24964         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24965         around the domain changes.
24966
24967         * appdomain.c (mono_domain_unload): Handle the case when the thread
24968         calling Unload is itself being aborted during unloading. Fixes #70022.
24969
24970         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24971
24972         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24973         checkpoint_func as an icall so it gets a wrapper.
24974         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24975         in the cross-appdomain wrappers too.
24976
24977         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24978
24979         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24980
24981         * reflection.c: Fix some memory leaks.
24982         
24983 2004-12-02  Martin Baulig  <martin@ximian.com>
24984
24985         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24986
24987         * metadata.c (generic_class_cache): New static hashtable.
24988         (mono_metadata_lookup_generic_class): New public method.
24989
24990 2004-12-02  Martin Baulig  <martin@ximian.com>
24991
24992         * class.c (mono_class_create_from_typedef): Call
24993         mono_class_setup_parent() and mono_class_create_mono_type() before
24994         parsing the interfaces.
24995
24996 2004-12-02  Martin Baulig  <martin@ximian.com>
24997
24998         * metadata.c (generic_inst_cache): New static hashtable.
24999         (mono_metadata_lookup_generic_inst): New public function.
25000         (mono_metadata_inflate_generic_inst): New public function.
25001         (mono_metadata_parse_generic_inst): New public function.
25002         (do_mono_metadata_parse_generic_class): Use the new
25003         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
25004         since this'll also use the cache.
25005
25006         * reflection.c (mono_reflection_bind_generic_method_parameters):
25007         Use mono_metadata_lookup_generic_inst() to use the new cache.
25008
25009         * class.c (inflate_mono_type): Use
25010         mono_metadata_inflate_generic_inst() to inflate a generic
25011         instance; this'll also use the new cache.
25012
25013         * loader.c (method_from_methodspec): Use
25014         mono_metadata_parse_generic_inst() and
25015         mono_metadata_inflate_generic_inst() rather than parsing it
25016         manually, so we can use the new cache.
25017
25018 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
25019
25020         * threads.c (wait_for_tids): Do not incorrectly free threads when 
25021         the wait times out.
25022
25023 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
25024
25025         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
25026         iter->args based on whether parameters are passed in registers (i.e.
25027         MONO_ARCH_REGPARMS is defined)
25028
25029 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
25030
25031         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
25032         the exception message. Fixes #70070.
25033         (method_from_methodspec): Fix warnings.
25034
25035 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25036
25037         * process.c: (complete_path) return the path quoted
25038
25039 2004-12-01  Martin Baulig  <martin@ximian.com>
25040
25041         * class-internals.h (MonoGenericInst): New structure.
25042         (MonoGenericClass): Replaced `type_argc', `type_argv' and
25043         `is_open' with `MonoGenericInst *inst'.
25044         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
25045         `is_open' with `MonoGenericInst *inst'.
25046
25047 2004-11-30  Martin Baulig  <martin@ximian.com>
25048
25049         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
25050
25051         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
25052         to `generic_class_cache'.
25053
25054         * metadata.c
25055         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
25056         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
25057         (mono_generic_inst_is_valuetype): Renamed to
25058         mono_generic_class_is_valuetype().
25059
25060         * class-internals.h
25061         (MonoGenericInst): Renamed to MonoGenericClass.
25062         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
25063         (MonoClass): Renamed `generic_inst' to `generic_class'.
25064         (MonoGenericContext): Renamed `ginst' to `gclass'.
25065
25066         * object-internals.h
25067         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25068
25069         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25070         mono_reflection_generic_class_initialize().
25071
25072         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25073         now known as "System.Reflection.MonoGenericClass".
25074         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25075
25076 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25077
25078         * class-internals.h: Added a flag field to MonoClass to cache the
25079         declarative security attributes actions associated with the class.
25080         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25081         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25082         applicable to the JITted method.
25083         * reflection.c|h: Added functions to extract (as flags) which security
25084         actions are available (declaratively) for a method, class or assembly.
25085         * metadata.c|h: Added functions to search the declarative security
25086         table in the metadata.
25087         
25088 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25089
25090         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25091         EXPORTEDTYPES are already in the class name cache, so there is no
25092         need to add extra code here to look at them. Just removes a bit of
25093         cruft.
25094
25095         (ves_icall_System_Environment_get_TickCount): No need for #if
25096         WINDOWS. We already have the code in io-layer.
25097
25098 2004-11-28  Martin Baulig  <martin@ximian.com>
25099
25100         * loader.c
25101         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25102         Fixes gen-112.cs.
25103
25104 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25105
25106         * assembly.c (do_mono_assembly_open): Instead of having a
25107         conditional WITH_BUNDLE, incorporate support for bundles here, by
25108         having a global `bundles' variable holding a pointer to the actual
25109         bundles. 
25110
25111         (mono_register_bundled_assemblies): New API call used by the
25112         bundle code. 
25113
25114         See mkbundle.1 for details.
25115         
25116 2004-11-27  Martin Baulig  <martin@ximian.com>
25117
25118         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25119         the vtable for generic methods.
25120
25121 2004-11-26  Martin Baulig  <martin@ximian.com>
25122
25123         * metadata.c
25124         (mono_metadata_generic_method_hash): New public function.
25125         (mono_metadata_generic_method_equal): Likewise.
25126
25127         * class-internals.h
25128         (MonoGenericContainer): Added `GHashTable *method_hash'.
25129
25130         * reflection.c (ReflectionMethodBuilder): Added
25131         `MonoGenericContainer *generic_container'.
25132         (reflection_methodbuilder_to_mono_method): Don't create a new
25133         MonoGenericContainer each time we're called.
25134         (mono_reflection_bind_generic_method_parameters): Use
25135         `container->method_hash' to cache the results so we don't create a
25136         different method if we're called several times with the same
25137         arguments.
25138
25139         * loader.c (method_from_methodspec): Use the new
25140         `container->method_hash' here, too.
25141
25142 2004-11-26  Martin Baulig  <martin@ximian.com>
25143
25144         * class.c (inflate_generic_signature): Correctly compute
25145         `res->has_type_parameters'.
25146         (mono_class_vtable): Use the `has_type_parameters' flag to
25147         determine whether we're a generic method.
25148
25149         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25150
25151 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25152
25153         * object.c (mono_runtime_run_main): Fix a small memory leak.
25154
25155 2004-11-25  Martin Baulig  <martin@ximian.com>
25156
25157         * class.c (set_generic_param_owner): Fixed the loop.
25158
25159 2004-11-25  Martin Baulig  <martin@ximian.com>
25160
25161         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25162         generic methods.
25163
25164 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25165
25166         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25167         names. Fixes #69787.
25168
25169 2004-11-24  Martin Baulig  <martin@ximian.com>
25170
25171         * class.c (mono_class_create_generic_2): If we don't have a
25172         `ginst->parent', inflate `gklass->parent' to get our parent.
25173
25174 2004-11-24  Martin Baulig  <martin@ximian.com>
25175
25176         * reflection.c (compare_genericparam): Correctly sort the
25177         GenericParam table; fixes #69779.
25178
25179 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25180
25181         * reflection.c: When writing a PE file, don't create a huge
25182         buffer in memory. Just write the arrays we have to the file.
25183         This reduces memory usage.
25184
25185         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25186         globally.
25187
25188 2004-11-17  Martin Baulig  <martin@ximian.com>
25189
25190         * class.c (mono_class_init): Don't setup `class->parent' for
25191         dynamic instances; moved this to mono_class_generic_2().
25192         (mono_class_create_generic): Also set `klass->inited' for dynamic
25193         generic instances.
25194         (mono_class_create_generic_2): Don't do anything for dynamic
25195         generic instances.  Set `klass->parent' here and also call
25196         mono_class_setup_parent() here. 
25197
25198         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25199         `MonoType *parent' argument; set `ginst->parent' before calling
25200         mono_class_create_generic_2(), so we set the correct parent.
25201
25202 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25203
25204         * reflection.c: allow getting attributes from ModuleBuilder
25205         (used by ikvm).
25206
25207 2004-11-17  Martin Baulig  <martin@ximian.com>
25208
25209         * class.c (mono_class_create_from_typedef): If a type parameter is
25210         inherited from an outer class, set its owner to that class.
25211
25212 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25213
25214         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25215           for (int*) written size. This fixes bug #69592.
25216
25217 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25218
25219         * icall.c: Added IsAuthenticodePresnet internal call.
25220         * image.c|h: New function that check a MonoImage for an Authenticode
25221         signature in the certificate PE data directory.
25222         * security.c|h: New internal call to ask the runtime if an 
25223         Authenticode signature seems referenced in the PE header.
25224
25225 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25226
25227         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25228
25229         * reflection.c (mono_image_create_pefile): Free the assembly streams
25230         after writing out the assembly file.
25231
25232         * object.c (mono_runtime_run_main): Fix small memory leak.
25233
25234         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25235         property access modifiers. Fixes #69389.
25236
25237 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25238
25239         * domain.c, object.c, object-internals.h, domain-internals.h,
25240         object.h, marshal.c: keep dynamic code info per domain.
25241
25242 2004-11-15  Martin Baulig  <martin@ximian.com>
25243
25244         * class.c (mono_type_get_name_recurse): Put type arguments in
25245         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25246         see bug #68387.
25247
25248 2004-11-15  Martin Baulig  <martin@ximian.com>
25249
25250         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25251         (mono_class_setup_vtable): When computing `the_cname' for a
25252         generic instance, don't include the namespace since we'd otherwise
25253         add it twice.
25254
25255 2004-11-15  Martin Baulig  <martin@ximian.com>
25256
25257         * class.c (mono_class_create_generic): Changed return type to void.
25258         (mono_class_create_generic_2): New public function; setup
25259         `class->method', `class->field' and `class->interfaces' here
25260         instead of in mono_class_init().
25261
25262         * class.h (mono_class_create_generic): Moved to class-internals.h.
25263
25264 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25265
25266         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25267         rather than writing to memory, write to this file. Right now,
25268         we are just writting into a buffer, and copying that. However
25269         we can avoid the buffer later.
25270
25271         (mono_dynamic_stream_reset): new function
25272
25273         * icall.c, object-internals.h: update for the above.
25274
25275 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25276
25277         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25278         have been using gc'd memory. First it is slower, unlikely
25279         the comment in the source code said, secondly, it increases
25280         our footprint to do it in the gc.
25281
25282         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25283         the method so that it does not have to copy to managed code.
25284
25285 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25286
25287         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25288
25289 2004-11-12  Martin Baulig  <martin@localhost>
25290
25291         * reflection.c (mono_image_create_token): Allow generic method
25292         definitions here, since they may appear in an `.override'; see
25293         gen-98/gen-99 for an example.
25294
25295 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25296
25297         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25298         #69365.
25299
25300         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25301         descriptive.
25302
25303 2004-11-11  Martin Baulig  <martin@ximian.com>
25304
25305         * class.c (mono_class_setup_vtable): In an explicit interface
25306         implementation, the method name now includes the arity.
25307
25308 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25309
25310         * object.c (mono_array_full_copy): Fix warning.
25311
25312 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25313
25314         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25315         mono_class_get_method_from_name() instead.
25316         
25317         * class-internals.h: Added two new types of wrappers. 
25318         Added MonoRemotingTarget enum. Added new trampoline function type, which
25319         takes an additional MonoRemotingTarget value as parameter, so it is
25320         possible to request a trampoline for a specific target.
25321         
25322         * class.c: Added new mono_class_get_method_from_name() method.
25323         
25324         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25325         general remoting sinks and one specific for cross domain calls.
25326         
25327         * debug-helpers.c: Added new wrapper names.
25328         
25329         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25330         of a remote class.
25331         
25332         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25333         
25334         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25335         with several other methods (mono_marshal_get_xappdomain_dispatch,
25336         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25337         and others) can generate a fast remoting wrapper for cross domain calls.
25338         More information can be found in docs/remoting.
25339         Other changes: Removed mono_find_method_by_name, and used
25340         mono_class_get_method_from_name instead.
25341         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25342         is stored in the remoting invoke hashtable.
25343         
25344         * marshal.h: published the new method for getting the xdomain wrapper,
25345         and also added a method for getting the adequate wrapper for a given
25346         method and target.
25347         
25348         * object-internals.h, object.c: Added a couple of methods for capying and
25349         cloning arrays.
25350         Modified mono_install_remoting_trampoline, which takes the new remoting
25351         trampoline that has a remoting target as parameter.
25352         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25353         will return the most suitable vtable for the target.
25354         Added mono_remote_class_vtable, which returns the vtable of a remote class
25355         (which can be the normal remoting vtable or the xdomain vtable).
25356         
25357         * threads.c: the xdomain invoke and dispatch wrappers must also be
25358         protected against interruptions.
25359
25360 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25361
25362         * icall.c: use memmove in BlockCopyInternal when the source and
25363         destination arrays are the same.
25364
25365 2004-11-09  Martin Baulig  <martin@ximian.com>
25366
25367         * class-internals.h (MonoGenericContainer): Removed `method' and
25368         `signature', replaced them with `is_method' and `is_signature'
25369         flags.  Added `context'.
25370
25371         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25372         instead of a `MonoGenericContainer *'.
25373
25374         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25375         for dynamic type parameters.
25376         (mono_metadata_load_generic_params): Setup `container->context'.
25377
25378         * reflection.c (mono_reflection_setup_generic_class): Setup
25379         `tb->generic_container->context'.
25380         (do_mono_reflection_bind_generic_parameters): Use
25381         mono_class_inflate_generic_type() to correctly inflate types,
25382         rather than using our own hack just for MONO_TYPE_VAR.
25383
25384 2004-11-09  Martin Baulig  <martin@ximian.com>
25385
25386         * class.c (mono_class_inflate_generic_method): Small fix; don't
25387         crash here.
25388
25389         * icall.c
25390         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25391         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25392         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25393         (ves_icall_Type_BindGenericParameters): Likewise.
25394         (ves_icall_Type_get_IsGenericInstance): Likewise.
25395         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25396         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25397         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25398         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25399
25400 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25401
25402         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25403         assembly versions and public key tokens. Fixes #69113.
25404
25405 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25406
25407         * metadata.c: fix bug introduced with the type cache changes
25408         on 2004-11-06.
25409
25410 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25411
25412         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25413         the MonoClass pointer instead of the token in exception clauses.
25414         * reflection.c: updates for the above and make the code not depend
25415         on the structure of MonoExceptionClause.
25416
25417 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25418
25419         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25420         Add support for dynamic assemblies. Fixes #69114.
25421
25422         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25423
25424 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25425
25426         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25427         since most only those methods use it. the code member of
25428         MonoMethodPInvoke was dead, so that can be removed too. Also,
25429         remove inline_count (again, not used), and move slot so that it
25430         can share bits with some other flags. This saves 8 bytes in the
25431         structure and gives us about 50 kb back for mcs helloworld.cs
25432
25433         * *.[ch]: Do naming changes for the above.
25434
25435         * loader.c (mono_method_get_header): Lazily init the header
25436         on first access.
25437         (mono_get_method_from_token): don't init the header here
25438         (mono_free_method): the header may never be allocated
25439
25440         Overall, this saves 150 kb of unmanaged allocations
25441         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25442         memory at runtime.
25443         
25444         * loader.c, loader.h (mono_method_get_header): new accessor.
25445
25446         * *.[ch]: use the above method. Prepares us to lazily load
25447         the header.
25448
25449         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25450         three warnings, which are actual bugs (see 69206).
25451
25452         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25453         unused. Saves a cool 4 bytes / method.
25454
25455 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25456
25457         * metadata.c (builtin_types): Add types for System.Object here.
25458         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25459         for a class or valuetype from klass->this_arg or klass->byval_arg.
25460
25461         On mcs for a hello world, this gets us down from 21836 MonoType's
25462         to 14560.
25463
25464         (mono_metadata_free_type): Account for the above change.
25465
25466 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25467
25468         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25469         exception instead of asserting if name is null.
25470         (ves_icall_System_AppDomain_GetData): Ditto.
25471
25472 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25473
25474         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25475         EnumBuilder.
25476
25477         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25478         Return NULL when the domain does not have entry_assembly set.
25479
25480         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25481         Add a 'resource_modules' argument.
25482         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25483
25484         * reflection.c (mono_reflection_create_runtime_class): Move setting
25485         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25486         for enums too.
25487
25488         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25489         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25490         Throw an ArgumentNullException if 'ptr' is null.
25491
25492         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25493         assemblies here. Fixes #69020.
25494
25495 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25496
25497         * reflection.c (build_compressed_metadata): Fix the previous patch for
25498         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25499         the stack.
25500
25501 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25502
25503         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25504         the cultures is false. Fixes #69090.
25505
25506         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25507         detected by valgrind.
25508         
25509         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25510         TypeResolve multiple times for the same type. Fixes #65577.
25511
25512 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25513
25514         * marshal.c: Avoid using ldftn to call managed functions. It is
25515         much slower than just a call.
25516
25517         * reflection.c (mono_module_get_object): free the basename we
25518         allocate here from glib.
25519         
25520         * reflection.c (ensure_runtime_vtable): make sure to free
25521         overrides.  Also, we were allocating an array of MonoMethod not an
25522         array of MonoMethod*.
25523
25524         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25525
25526         * image.c (mono_image_close): free image->guid here.
25527
25528 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25529
25530         * reflection.c: Fix some spec conformance issues with the PE file
25531         structures so mcs compiled apps run on the Net 2.0 beta.
25532
25533 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25534
25535         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25536         Implement this. Fixes #67264.
25537
25538         * debug-helpers.h debug-helpers.c marshal.c: Move 
25539         mono_find_method_by_name to debug-helpers.c.
25540
25541 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25542
25543         * object.c (mono_release_type_locks): type_initialization_hash is
25544         a GHashTable.
25545
25546         * reflection.c object.c object-internals.h: Fix warnings.
25547
25548         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25549         without accessors. Fixes #61561.
25550
25551         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25552         application base from the root domain if not set. Fixes #65641.
25553         (mono_runtime_init): Fix warning.
25554
25555 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25556
25557         * appdomain.c: call mono_thread_pool_init.
25558         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25559         of worker threads based on the number of CPUs and the environment
25560         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25561         for non-windows (windows) systems.
25562
25563 2004-10-27  Chris Toshok  <toshok@ximian.com>
25564
25565         * mono-debug-debugger.c (write_class): don't call mono_class_init
25566         here, as even with the check for (!klass->init_pending), we get
25567         into a situation where we're hitting cycles in class
25568         initialization.  Fixes #68816.
25569
25570 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25571
25572         * image.c: Avoid overwriting values in the loaded_images_hash when an
25573         assembly is loaded multiple times. Fixes #61152.
25574
25575         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25576         so multiple satellite assemblies for the same name can be loaded.
25577         Fixes #68259.
25578
25579         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25580         not NULL.
25581
25582         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25583         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25584
25585         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25586         pending finalizers are not invoked after the appdomain has been 
25587         unloaded. Fixes #67862.
25588
25589 2004-10-22  Martin Baulig  <martin@ximian.com>
25590
25591         * mono-debug-debugger.c
25592         (mono_debugger_runtime_invoke): Don't box valuetypes.
25593
25594 2004-10-22  Chris Toshok  <toshok@ximian.com>
25595
25596         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25597         don't hide private methods.
25598
25599 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25600
25601         * icall.c: Allows the runtime to "share" (when known) the public key
25602         token of an assembly. This avoid the need to recalculate the token 
25603         (from the public key) in managed code.
25604
25605 2004-10-21  Chris Toshok  <toshok@ximian.com>
25606
25607         * debug-helpers.c (append_class_name): argh, revert last patch.
25608         
25609 2004-10-21  Chris Toshok  <toshok@ximian.com>
25610
25611         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25612         not '/', so that it matches what the debugger uses to look up
25613         methods.
25614
25615 2004-10-21  Martin Baulig  <martin@ximian.com>
25616
25617         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25618         public method; this is called each time an exception is thrown and
25619         allows the debugger to use exception catch points.
25620
25621 2004-10-21  Martin Baulig  <martin@ximian.com>
25622
25623         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25624         the stack pointer and the exception object in some struct and pass
25625         that to the debugger.
25626
25627 2004-10-21  Chris Toshok  <toshok@ximian.com>
25628
25629         * mono-debug-debugger.c (do_write_class): add instance/static
25630         event support.  We don't expose "raise" or "other" yet.
25631         (event_is_static): new method.
25632
25633 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25634
25635         * mono-debug-debugger.c
25636         (mono_debugger_handle_exception): Remove
25637         bogus return value for fussy compilers.
25638
25639 2004-10-20  Martin Baulig  <martin@ximian.com>
25640
25641         * mono-debug-debugger.c
25642         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25643         (mono_debugger_handled_exception): Likewise.
25644
25645 2004-10-20  Martin Baulig  <martin@ximian.com>
25646
25647         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25648         MONO_DEBUGGER_EVENT_EXCEPTION.
25649
25650         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25651         public function to send the debugger a notification for an
25652         exception and inform it about a catch/finally clause.
25653
25654 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25655
25656         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25657         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25658         fix 2.95 build. 
25659
25660         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25661
25662 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25663
25664         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25665         marshalled as [In,Out]. Fixes #58325.
25666
25667 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25668
25669         * reflection.c (mono_method_body_get_object): Implement some fields.
25670
25671 2004-10-12  Martin Baulig  <martin@ximian.com>
25672
25673         * reflection.c (mono_reflection_bind_generic_parameters): Small
25674         fix, correctly retrieve our parent from a generic instance.
25675
25676 2004-10-12  Martin Baulig  <martin@ximian.com>
25677
25678         * metadata.c (mono_metadata_generic_param_equal): We always have
25679         an owner.
25680
25681         * class.c
25682         (mono_class_from_generic_parameter): We need to have an owner.
25683         (my_mono_class_from_generic_parameter): Likewise.
25684
25685         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25686         mono_reflection_create_generic_class() and added a new
25687         mono_reflection_setup_generic_class().  
25688         (mono_reflection_initialize_generic_param): If we're a nested
25689         generic type and inherited from the containing class, set our
25690         owner to the outer class.
25691
25692 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25693
25694         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25695
25696         * reflection.c (mono_method_body_get_object): New function to create
25697         a MethodBody object.
25698
25699         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25700
25701 2004-10-11  Martin Baulig  <martin@ximian.com>
25702
25703         * metadata.c (_mono_metadata_type_equal): Renamed to
25704         do_mono_metadata_type_equal() and made static.
25705
25706 2004-10-11  Martin Baulig  <martin@ximian.com>
25707
25708         * appdomain.c: Bump corlib version number to 28.
25709
25710 2004-10-10  Martin Baulig  <martin@ximian.com>
25711
25712         * class-internals.h
25713         (MonoGenericInst): Added `MonoGenericContainer *container'.
25714         (MonoGenericMethod): Likewise.
25715         (MonoGenericContext): Likewise.
25716         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25717
25718         * metadata.c
25719         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25720         (do_mono_metadata_parse_generic_inst): Likewise.
25721         (mono_metadata_parse_type_full): New public method.  This is the actual
25722         mono_metadata_parse_type() implementation - with an additional
25723         `MonoGenericContainer *' argument.
25724         (mono_metadata_parse_array_full): Likewise.
25725         (mono_metadata_parse_signature_full): Likewise.
25726         (mono_metadata_parse_method_signature_full): Likewise.
25727         (mono_metadata_parse_mh_full): Likewise.
25728         (mono_type_create_from_typespec): Likewise.
25729         (mono_metadata_interfaces_from_typedef_full): New public method;
25730         this is similar to the other _full() methods, but we take a
25731         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25732         (mono_metadata_parse_generic_param): Take an additional
25733         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25734         from that container.
25735         (mono_metadata_generic_param_equal): New static method to compare
25736         two type parameters.
25737         (_mono_metadata_type_equal): New static method; takes an
25738         additional `gboolean signature_only' argument - if true, we don't
25739         compare the owners of generic parameters.
25740         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25741         with a TRUE argument - do a signature-only comparision.
25742
25743         * loader.c: Use the new _full() methods and pass the
25744         MonoGenericContainer to them.
25745
25746         * object-internals.h (MonoReflectionTypeBuilder): Added
25747         `MonoGenericContainer *generic_container' field.
25748         (MonoReflectionMethodBuilder): Likewise.
25749
25750 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25751
25752         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25753         case initial images of dynamic assemblies.
25754
25755         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25756
25757         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25758
25759         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25760         length of event->other array.
25761         (typebuilder_setup_events): Ditto.
25762
25763         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25764         'assembly_by_name' and add an 'assemblies' list.
25765
25766         * assembly.h assembly.c: Add a new search hook for determining whenever
25767         an assembly is already loaded. Use this instead of searching in the
25768         loaded_assemblies list.
25769
25770         * domain.c appdomain.c: Implement the new search hook so loaded 
25771         assemblies are now scoped by appdomain. Fixes #67727.
25772
25773 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25774
25775         * threads.c (mono_thread_attach): Initialize synch_lock field so
25776         mono_thread_detach works again.
25777
25778         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25779         'lib' too. Fixes #63130.
25780
25781 2004-10-06  Jackson Harper  <jackson@ximian.com>
25782
25783         * culture-info-tables.h: regenerated.
25784
25785 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25786
25787         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25788         implemented by other interfaces in the result. Fixes #65764.
25789         
25790         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25791         Handle unloadable modules without crashing.
25792
25793         * image.c (load_modules): Revert the previous patch since modules must
25794         have a fixed index inside the array.
25795         
25796         * image.c (load_modules): Don't include native modules in the modules
25797         array.
25798
25799 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25800
25801         * reflection.h: Add param_defaults field.
25802
25803         * reflection.c: Add support for parameter defaults in dynamic methods.
25804         Fixes #64595.
25805
25806         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25807         an empty string when a type has no namespace. Fixes #64230.
25808
25809 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25810
25811         * tabledefs.h: Added "internal" security actions to support non-CAS
25812         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25813         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25814
25815 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25816
25817         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25818         constructor of abstract class. Fixes #61689.
25819
25820 2004-10-04  Martin Baulig  <martin@ximian.com>
25821
25822         * class-internals.h (MonoGenericContainer): New type.
25823         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25824         `MonoGenericContainer *generic_container'.
25825         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25826         `MonoGenericContainer *generic_container'.
25827
25828         * metadata.c (mono_metadata_load_generic_params): Return a
25829         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25830         removed the `num' argument.
25831
25832 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25833
25834         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25835         for dynamic images.
25836
25837         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25838         machine fields.
25839
25840         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25841
25842         * reflection.c: Save pe_kind and machine values into the generated
25843         image file.
25844
25845         * appdomain.c: Bump corlib version number.
25846
25847         * object-internals.h: Reorganize layout of LocalBuilder.
25848
25849         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25850         New helper function.
25851
25852         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25853         created MonoType for dynamic types. Fixes #66180.
25854
25855 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25856
25857         * threadpool.c: the ares hashtable needs a critical section around it.
25858         this prevents some nasty segfaults
25859
25860 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25861
25862         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25863         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25864         bug 67324).
25865         
25866 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25867
25868         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25869         
25870 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25871
25872         * image.c: Always canonicalize image file names, to avoid loading
25873         the same assembly twice when referenced using a relative path.
25874
25875 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25876
25877         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25878
25879         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25880
25881         * marshal.c: Fix warnings.
25882
25883 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25884
25885         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25886         attempting to marshal the delegate_trampoline as the method_addr.
25887         This patch has a static hashtable of marshalled delegates so that 
25888         we can map delegate_trampoline addresses back to delegates.  This
25889         allows a delegate passed to managed code to be passed back into native
25890         code.  Fixes #67039
25891
25892 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25893
25894         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25895
25896         * reflection.c (method_encode_code): Align method headers properly.
25897         Fixes #66025.
25898
25899 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25900
25901         * marshal.c: In the runtime invoke wrapper, reset the abort
25902         exception if it is cached. This avoids the automatic rethrowal of 
25903         the exception after the catch of the wrapper. Also check for pending
25904         interruptions before calling the managed method. This is done using
25905         the new method emit_thread_force_interrupt_checkpoint, since the
25906         normal checkpoint method is ignored when running the invoke wrapper.
25907         * object.c: If the abort exception is rethrown, set the abort_exc
25908         field of the thread, so it will be rethrown aftere every catch.
25909         * threadpool.c: Only run an interruption checkpoint if what has been
25910         requested is a stop of the thread (aborts will be ignored).
25911         * threads.c: By default, a thread will now never be interrumped while
25912         running the runtime invoke wrapper (this ensures that runtime_invoke
25913         will always return to the caller if an exception pointer is provided).
25914         There is a new special method mono_thread_force_interruption_checkpoint()
25915         to force an interruption checkpoint even if running a protected
25916         wrapper, which is used by the same runtime invoke wrapper to do a check
25917         at a safe point.
25918
25919 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25920
25921         * object.c, object-internals.h: Implemented mono_release_type_locks,
25922         which releases the cctor locks held by a thread.
25923         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25924         by a thread. Added mono_thread_exit() method to be used to safely stop
25925         a thread.
25926
25927 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25928
25929         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25930         Move null check before dereference.  Avoid indexing beyond the end
25931         of the 'modules' array.
25932
25933 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25934
25935         * metadata-internals.h (MonoImage): Add module_count field.
25936         * image.c (load_modules): Set image->module_count.
25937         (mono_image_load_file_for_image): Use image->module_count.
25938         * reflection.c (mono_image_load_module): Append to image->modules array 
25939         of dynamic assembly.
25940         (mono_module_get_object): Fix loop to actually increment index.
25941         Use image->module_count.
25942         * assembly.c (mono_assembly_load_references): Use image->module_count.
25943         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25944         Likewise.
25945
25946 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25947
25948         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25949         Avoid assert on generic types.
25950
25951 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25952
25953         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25954
25955         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25956
25957         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25958         function to convert a MarshalSpec structure to its managed counterpart.
25959
25960         * reflection.c: Fix warnings.
25961         
25962         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25963         field.
25964
25965         * icall.c (mono_create_icall_signature): Fix build.
25966
25967 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25968
25969         * icall.c: Add MakePointType icall.
25970
25971         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25972         warnings.
25973
25974 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25975
25976         * threadpool.c: reuse allocated slots in the queue.
25977
25978 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25979
25980         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25981
25982         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25983
25984         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25985         previous change.
25986
25987         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25988         ThrowOnUnmappableChar.
25989
25990         * icall.c (ves_icall_Type_GetPacking): New icall.
25991
25992 2004-09-24  Martin Baulig  <martin@ximian.com>
25993
25994         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25995
25996 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25997
25998         * appdomain.c:
25999         (mono_domain_set): allow setting a domain that is being unloaded.
26000         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
26001         being unloaded.
26002
26003 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26004
26005         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
26006         the GetCustomAttributes icall.
26007
26008 2004-09-23  Martin Baulig  <martin@ximian.com>
26009
26010         * object-internals.h (MonoReflectionGenericParam): Replaced
26011         'has_ctor_constraint', `has_reference_type' and `has_value_type'
26012         with `guint32 attrs'.
26013
26014 2004-09-23  Martin Baulig  <martin@ximian.com>
26015
26016         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
26017
26018 2004-09-23  Martin Baulig  <martin@ximian.com>
26019
26020         * object-internals.h (GenericParameterAttributes): New enum.
26021
26022 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
26023
26024         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
26025         
26026         * class.c (init_events): Fill out event->other field.
26027
26028         * class.c: Fix warnings.
26029
26030         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
26031
26032 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
26033
26034         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
26035         walk which doesn't supply the IL offset.
26036
26037 2004-09-22  Martin Baulig  <martin@ximian.com>
26038
26039         * reflection.c (mono_reflection_setup_internal_class): If we're
26040         System.ValueType, System.Object or System.Enum, set
26041         `klass->instance_size' and create the vtable.
26042         (mono_reflection_create_internal_class): If we're an enum type,
26043         get the base class from our current corlib.
26044
26045 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
26046
26047         * reflection.h (MonoResolveTokenError): New type.
26048
26049         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
26050         icall.
26051
26052         * icall.c: Add an 'error' argument to the ResolveToken icalls.
26053
26054 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
26055
26056         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
26057         Support also calling constructors, but only for already allocated objects.
26058
26059 2004-09-17  Geoff Norton <gnorton@customerdna.com>
26060
26061         * reflection.c (type_get_qualified_name): If the klass is null
26062         return the typename to avoid a NullRefEx.
26063         (encode_cattr_value): Get the qualified name of the boxed type,
26064         not the underlying enumtype.  Fixes #62984.
26065
26066 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
26067
26068         * marshal.c: Fix problems with previous checkin.
26069
26070 2004-09-21    <vargaz@freemail.hu>
26071
26072         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26073         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26074
26075         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26076
26077 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26078
26079         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26080         should only return a type for pointers, arrays, and passbyref types.
26081         Fixes bug #63841.
26082
26083 2004-09-21  Martin Baulig  <martin@ximian.com>
26084
26085         * domain.c (mono_debugger_check_runtime_version): New public
26086         function.
26087
26088         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26089
26090 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26091
26092         * reflection.c: Added missing sort to the declarative security 
26093         attributes table. MS implementation stops seeing the attributes if the
26094         token number regress in the table (as shown by ildasm and permview).
26095
26096 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26097
26098         * object-internals.h (MonoReflectionModule): Add 'token' field.
26099         
26100         * reflection.c (mono_reflection_get_token): Add support for Module
26101         and Assembly.
26102         (mono_module_get_object): Set 'token' field.
26103         (mono_module_file_get_object): Set 'token' field.
26104
26105         * icall.c: Add new Assembly and Module icalls.
26106
26107         * appdomain.c: Bump corlib version.
26108
26109 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26110
26111         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26112         tokens of metadata objects.
26113
26114         * reflection.h reflection.c (mono_reflection_get_token): New function
26115         to obtain the token of a metadata object.
26116
26117         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26118
26119 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26120
26121         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26122         
26123         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26124
26125 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26126
26127         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26128         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26129         AssemblyBuilder to access the permissions set in the class lib.
26130         * reflection.c: Added security attributes encoding step in 
26131         mono_image_build_metadata.
26132         * tabledefs.h: Added new security actions defined in 2.0:
26133         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26134
26135 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26136
26137         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26138         macro parameter.
26139
26140 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26141  
26142         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26143           finalized. There where random SIGSEVs at program termination, when
26144           an object being finalized was trying to do a string comparison and
26145           the current culture was already finalized.
26146  
26147 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26148
26149         * threads.c: call thread_cleanup before finishing the thread if we get
26150         there.
26151
26152 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26153
26154         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26155         assemblies from the parent. Fixes #65665.
26156
26157 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26158
26159         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26160         modifiers.
26161
26162 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26163
26164         * reflection.h: add prototype for mono_get_dbnull_object
26165         * reflection.c: add prototypes for get_default_param_value_blobs 
26166         and mono_get_object_from_blob for fussier compilers
26167
26168 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26169  
26170         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26171         false deadlock checks in class initialization.
26172  
26173 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26174
26175         * image.c (mono_image_addref): Fix comment.
26176
26177         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26178         possible.
26179
26180 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26181
26182         * reflection.c (mono_param_get_objects): Modified to return
26183         ParameterInfo.DefaultValue object.
26184
26185         (get_default_param_value_blobs):
26186         (mono_get_object_from_blob):
26187         (mono_get_dbnull_object): New helper routines. 
26188
26189         * object.c (mono_get_constant_value_from_blob): New helper routine
26190         carved out from get_default_field_value ()
26191
26192         * object-internals.h (mono_get_constant_value_from_blob): Added
26193         function declaration.
26194
26195 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26196
26197         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26198         referenced assemblies. Fixes #62135.
26199
26200         * exception.h exception.c (mono_get_exception_file_not_found2): New
26201         helper function.
26202
26203 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26204
26205         * class.h class.c: Add mono_type_get_underlying_type ().
26206
26207 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26208
26209         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26210         Fix GetTypes() to support dynamically created assemblies.
26211
26212 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26213
26214         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26215         
26216         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26217         previous patch.
26218
26219         * reflection.h reflection.c loader.c: Allow dynamic construction of
26220         pinvoke methods. Fixes #65571.
26221         
26222         * reflection.c (mono_reflection_get_type): Revert previous change since
26223         it causes regressions.
26224
26225 2004-09-08  Martin Baulig  <martin@ximian.com>
26226
26227         * class.c (class_compute_field_layout): Don't call
26228         mono_class_layout_fields() for open generic instances.
26229
26230 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26231         * threads.c appdomain.c: fix typo in GC macro
26232
26233 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26234
26235         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26236         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26237
26238 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26239
26240         * image.c (mono_image_close): Applied patch from 
26241         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26242         assembly is loaded multiple times from data.
26243         
26244         * image.c (mono_image_open): Fix warning.
26245
26246 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26247
26248         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26249         once. Fixes #58334.
26250         
26251         * reflection.c (mono_reflection_create_runtime_class): Initialize
26252         klass->nested_classes. Fixes #61224.
26253
26254 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26255
26256         * threads.c: sched_yield() on exit, to allow threads to quit.
26257
26258 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26259
26260         * object.c (mono_unhandled_exception): Remove leftover debug code.
26261
26262 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26263
26264         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26265
26266 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26267
26268         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26269         
26270         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26271
26272 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26273
26274         * marshal.c (emit_marshal_array): Null terminate string arrays.
26275         
26276         * marshal.c (raise_auto_layout_exception): Fix warning.
26277
26278         * reflection.c (mono_param_get_objects): Initialize the default value
26279         with DBNull.Value, not null. Fixes #62123.
26280
26281 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26282
26283         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26284         throw an exception with a cute explanation.
26285
26286 2004-09-06  Dick Porter  <dick@ximian.com>
26287
26288         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26289         Close the new process's thread handle, as we don't use it.  The
26290         handle stays around forever otherwise.
26291
26292 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26293
26294         * object.c (arith_overflow): Fix warning.
26295
26296         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26297         calling conventions in method refs. Fixes #65352.
26298
26299         * reflection.c: Fix warnings.
26300
26301 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26302
26303         * icall.c: Add a new icall for Array.Clear
26304
26305 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26306
26307         * object.c: When allocating an array, we have to throw
26308         an overflow exception if any of the lengths are < 0.
26309
26310 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26311
26312         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26313         properly. Also move implementation of string array marshalling to 
26314         managed code. Fixes #42316.
26315
26316 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26317
26318         * assembly.c: provide more information when loading an assembly fails.
26319
26320 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26321
26322         * filewatcher.c: don't expect the development fam package to be
26323         installed.
26324
26325 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26326
26327         * marshal.c: Make a copy of the signature cookie since it will be
26328         freed by the caller.
26329         
26330         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26331
26332         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26333
26334         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26335         marshal specs.
26336
26337         * marshal.c: More refactoring.
26338         
26339         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26340         smaller functions.
26341
26342 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26343
26344         * object.c: In mono_message_invoke, fill the output parameter array after
26345           calling the managed method (it was done before the call). This fixes
26346           bug #59299.
26347
26348 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26349
26350         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26351         as well.
26352
26353 2004-09-02  Martin Baulig  <martin@ximian.com>
26354
26355         * class.c (mono_class_instance_size): Don't allow generic type
26356         definitions or open generic instances.
26357         (mono_class_array_element_size): If we're a value type, call
26358         mono_class_instance_size() on the original class.
26359
26360         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26361         handle generic instances.
26362
26363         * mono-debug-debugger.c (write_type): Handle generic instances
26364         like classes.
26365
26366 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26367
26368         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26369         the allocation request fails. Fixes #65089.
26370
26371         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26372         
26373         * object.c (mono_runtime_free_method): New function to free a dynamic
26374         method.
26375
26376         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26377         delegate trampoline.
26378
26379         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26380         with hasthis as dynamic,
26381
26382         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26383
26384         * domain.c (mono_jit_info_table_remove): New function to remove an
26385         entry from the jit info table.
26386
26387         * class-internals.h (MonoMethod): Add 'dynamic' field.
26388
26389         * loader.c: Fix warnings.
26390
26391 2004-09-01  Martin Baulig  <martin@ximian.com>
26392
26393         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26394         instead of mono_debugger_lock() because the latter one is a no-op
26395         unless running in the debugger.
26396
26397 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26398
26399         * class.c (class_compute_field_layout): Classes with auto-layout or
26400         reference fields are not blittable.
26401         
26402 2004-09-01  Dick Porter  <dick@ximian.com>
26403
26404         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26405         mono_image_get_filename() to get the assembly location.
26406
26407         * icall.c:
26408         * metadata.h: Fix compile warnings
26409
26410 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26411
26412         * class.c (class_compute_field_layout): System.Object is blittable.
26413
26414         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26415         as in/out. Fixes #59909.
26416
26417 2004-09-01  Martin Baulig  <martin@ximian.com>
26418
26419         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26420         mono_metadata_generic_inst_is_valuetype() if we're a generic
26421         instance to check whether our underlying type is a reference type.
26422
26423 2004-09-01  Martin Baulig  <martin@ximian.com>
26424
26425         * metadata.c (mono_type_size): If we're a generic instance, call
26426         mono_class_value_size() for value types.
26427
26428 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26429
26430         * marshal.c: Implement more custom marshalling functionality. Fixes
26431         #64915.
26432
26433 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26434
26435         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26436
26437 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26438
26439         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26440
26441         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26442
26443         * icall.c: Fix some warnings.
26444
26445         * threads.c (abort_appdomain_thread): Fix unref errors.
26446         (mono_thread_current): Fix THREAD_DEBUG define.
26447
26448 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26449
26450         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26451
26452         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26453
26454 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26455
26456         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26457         string arrays.
26458
26459 2004-08-28  Martin Baulig  <martin@ximian.com>
26460
26461         * metadata.c
26462         (mono_metadata_generic_inst_is_valuetype): New public function.
26463
26464         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26465         mono_metadata_generic_inst_is_valuetype() if we're a generic
26466         instance to check whether our underlying type is a valuetype.
26467
26468 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26469
26470         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26471         #63768.
26472
26473 2004-08-25  Martin Baulig  <martin@ximian.com>
26474
26475         * loader.c (mono_get_method_from_token): Abstract methods can also
26476         be generic and thus have type parameters.
26477
26478         * metadata-internals.h
26479         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26480
26481         * reflection.c (mono_image_get_generic_param_info): Don't create a
26482         metadata row, just add an entry to the `gen_params' array.
26483         (build_compressed_metadata): Sort the `gen_params' array and then
26484         actually create the metadata.
26485
26486 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26487
26488         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26489
26490 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26491
26492         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26493
26494 2004-08-24  Martin Baulig  <martin@ximian.com>
26495
26496         * class.cs (mono_class_is_subclass_of): Like an interface, a
26497         generic instance also derives from System.Object.
26498
26499 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26500
26501         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26502         custom modifiers to be in any order. Fixes #61990.
26503
26504 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26505
26506         * object.c: Register mono_object_new_fast icall.
26507         
26508         * object.c (mono_class_get_allocation_ftn): Return to calling
26509         mono_object_new_fast, since it seems faster to compute the object 
26510         size in unmanaged code than passing it as a parameter.
26511
26512         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26513
26514         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26515         this function with Boehm as the oom handler, so we don't have to check
26516         the result of GC_malloc.
26517
26518         * object.c: Remove checks for oom.
26519
26520         * object.h object.c (mono_class_get_allocation_ftn): New function to
26521         return the icall which can be used to allocate an instance of a given
26522         class. 
26523
26524         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26525
26526         * class-internals.h: Add 'enabled' field.
26527
26528 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26529
26530         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26531
26532 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26533         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26534         value 0x0010.
26535
26536 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26537
26538         * appdomain.c: use the Tls function for appdomain too,
26539         at Zoltan's request. Actually return in mono_context_get
26540
26541         * appdomain.c, profiler.c, threads.c: use __thread
26542
26543 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26544
26545         * appdomain.c threads.c: Call GC_CreateThread on windows.
26546
26547         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26548         multiple libraries since this don't work on windows.
26549
26550 2004-08-18  Martin Baulig  <martin@ximian.com>
26551
26552         * class-internals.h
26553         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26554         MonoMethodHeader.
26555
26556         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26557         MonoMethodNormal since we also need it for abstract and interface
26558         methods.
26559
26560         * reflection.c
26561         (build_compressed_metadata): Sort the GenericParam table.
26562         (mono_image_create_token): Added `gboolean create_methodspec'
26563         argument; this is false when generating a MethodImpl token.
26564         (reflection_methodbuilder_to_mono_method): Abstract and interface
26565         methods may also have generic parameters.
26566
26567 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26568
26569         * appdomain.c: thread local alloc
26570
26571 2004-08-17  Martin Baulig  <martin@ximian.com>
26572
26573         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26574
26575         * icall.c
26576         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26577         argument.
26578
26579         * class.c (mono_type_get_full_name): New public function.
26580         (mono_type_get_name): Don't include the type arguments.
26581
26582 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26583
26584         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26585         for inclusion into the mono executable.
26586
26587 2004-08-16  Martin Baulig  <martin@ximian.com>
26588
26589         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26590         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26591
26592 2004-08-14  Martin Baulig  <martin@ximian.com>
26593
26594         * class.c (dup_type): Also copy the `byref' field.
26595
26596 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26597
26598         * reflection.c (create_dynamic_mono_image): Revert the last change 
26599         since it breaks bootstrap.
26600
26601 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26602
26603         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26604
26605         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26606         not free them with g_free.
26607
26608 2004-08-11  Martin Baulig  <martin@ximian.com>
26609
26610         * reflection.c (mono_reflection_setup_internal_class): Also call
26611         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26612
26613 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26614
26615         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26616         called during default (first) AppDomain creation. Keep track of
26617         Evidence when loading assemblies.
26618
26619 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26620
26621         * opcodes.c, opcodes.h: reduce runtime relocations.
26622
26623 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26624
26625         * culture-info.h, locales.c: fixes and chages to sue the new
26626         optimized format of the locale data.
26627         * culture-info-tables.h: regenerated.
26628
26629 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26630         
26631         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26632
26633 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26634
26635         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26636         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26637         * domain-internals.h: icall declaration.
26638         * icall.c: icall registration.
26639         * object-internals.h: New fields in MonoAssembly for CAS.
26640
26641 2004-08-05  Duncan Mak  <duncan@ximian.com>
26642
26643         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26644         CEE_LDELEM_ANY.
26645
26646 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26647
26648         * reflection.c: fix to deal with object[] arrays in custom ctors
26649         (bug #62550).
26650
26651 2004-08-05  Martin Baulig  <martin@ximian.com>
26652
26653         * class.c (mono_class_array_element_size): Added support for
26654         generic instances and correctly handle "recursive" types.
26655
26656 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26657
26658         * assembly.c: Fix warnings.
26659
26660 2004-08-04  Martin Baulig  <martin@ximian.com>
26661
26662         * class.c
26663         (mono_type_get_name_recurse): Added `gboolean include_arity'
26664         argument specifying whether or not we should include the generic
26665         arity in the type name.
26666         (_mono_type_get_name): New static function.
26667         (mono_class_setup_vtable): If we're a generic instance, don't
26668         include the generic arity in the names of explicit method
26669         implementations.        
26670
26671 2004-08-03  Martin Baulig  <martin@ximian.com>
26672
26673         * class.c (mono_type_get_name_recurse): Enclose the generic type
26674         arguments in `<', '>'.
26675
26676 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26677
26678         * gc.c: make GC warning messages use the trace API, they are just
26679         noise to most of the users.
26680
26681 2004-08-03  Martin Baulig  <martin@ximian.com>
26682
26683         * debug-mono-symfile.c (read_string): Correctly read the string.
26684
26685 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26686
26687         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26688         
26689         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26690         icalls.
26691         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26692
26693 2004-07-30  Martin Baulig  <martin@ximian.com>
26694
26695         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26696         Reflect latest symbol writer changes.   
26697
26698 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26699
26700         * object.c: always create an object if null is passed
26701         to Invoke() where a valuetype is expected.
26702
26703 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26704
26705         * marshal.c (mono_marshal_init): make managed
26706         signatures match native ones better for 64bits.
26707
26708 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26709
26710         * appdomain.c: hack to build correctly the private bin path on windows.
26711         Fixes bug #61991.
26712
26713 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26714
26715         * assembly.c: Load mscorlib from the correct framework directory
26716           (mono/<version>/mscorlib.dll).
26717         * appdomain.h: Added prototypes for new functions.
26718         * internals.h: Added some prototypes.
26719         * domain.c: When initializing the runtime, get from the executable and
26720           the configuration files the runtime version that the app supports.
26721           Added support methods for reading app.exe.config. Added list of versions
26722           supported by the JIT. Added two new methods: mono_init_from_assembly,
26723           which initializes the runtime and determines the required version from
26724           the provided exe file, and mono_init_version, which initializes
26725           the runtime using the provided version.
26726         * icall.c: Get machine.config from version-specific directory.
26727         * reflection.c: When generating an image, embed the version number
26728           of the current runtime.
26729
26730 2004-07-28  Dick Porter  <dick@ximian.com>
26731
26732         * socket-io.c
26733         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26734         returned sockaddr size before creating the remote address object.
26735         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26736         61608.
26737
26738 2004-07-28  Dick Porter  <dick@ximian.com>
26739
26740         * locales.c (string_invariant_compare_char): Fix invariant char
26741         compares between upper and lower cases.  Fixes bug 61458.
26742
26743 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26744         
26745         * marshal.c: actually cache stelem.ref wrappers.
26746         
26747 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26748
26749         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26750         sections and remove the mono_cli_rva_map () function.
26751
26752 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26753
26754         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26755         by Geoff Norton (<gnorton@customerdna.com>).
26756
26757 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26758
26759         * class.c: fix class loads for pointer types (typeof(int) !=
26760         typeof(int*)).
26761
26762 2004-07-27  Martin Baulig  <martin@ximian.com>
26763
26764         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26765         reading the debugging information from an external ".mdb" file.
26766
26767 2004-07-24  Martin Baulig  <martin@ximian.com>
26768
26769         * reflection.c (mono_image_get_type_info): Only write a class
26770         layout entry if we actually have a size or a packing size.
26771
26772 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26773
26774         * reflection.c (type_get_fully_qualified_name): 
26775         insert cast to get type checking of ?: with non-gcc compilers
26776
26777 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26778
26779         * rand.c: use g_getenv for both lookups of
26780         MONO_EGD_SOCKET
26781
26782 2004-07-17  Martin Baulig  <martin@ximian.com>
26783
26784         * reflection.c (mono_reflection_bind_generic_method_parameters):
26785         Set `gmethod->reflection_info'.
26786
26787 2004-07-17  Martin Baulig  <martin@ximian.com>
26788
26789         * class.c (mono_class_create_from_typedef): Insert the newly
26790         created class into the hash table before computing the interfaces
26791         since we could be called recursively.
26792
26793 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26794
26795         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26796         function to implement stelem.ref in managed code
26797         * class-internals.h, debug-helpers.c: a new wrapper type
26798         for the above.
26799
26800 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26801
26802         * gc.c: allow GC handles to work even when no GC is compiled in.
26803         Fix part of bug #61134 (GetAddrOfPinnedObject).
26804
26805 2004-07-13  Peter Williams  <peter@newton.cx>
26806  
26807         * process.c (complete_path): Make sure we don't attempt to execute
26808         directories.
26809  
26810 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26811
26812         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26813           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26814           and will add/subtract the hour if needed
26815
26816 2004-07-12  Martin Baulig  <martin@ximian.com>
26817
26818         * reflection.c (mono_field_get_object): If we have
26819         `field->generic_info', take the attributes from
26820         `field->generic_info->generic_type'.    
26821
26822 2004-07-12  Martin Baulig  <martin@ximian.com>
26823
26824         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26825         This function must be called before initializing the runtime.
26826         (mono_debug_init_1): New function; call this after initializing
26827         the runtime, but before loading the assembly.  It tells the
26828         debugger to load corlib and the builtin types.
26829
26830         * mono-debug-debugger.c: Did some larger changes in the debugging
26831         code; support recursive class declarations, make sure we actually
26832         add all classes.
26833
26834 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26835
26836         * debug-helpers.c: undo my previous patch and fixed the real issue in
26837         ../mini/exceptions-x86.c
26838
26839 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26840
26841         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26842         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26843         called from other .cctors.
26844
26845 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26846
26847         * loader.c: Removed the mono_loader_wine_init hack now that we are
26848         doing a managed version of Windows.Forms.
26849
26850 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26851
26852         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26853         threadpool.c, threads.c: remove static data from rootset.
26854
26855 2004-07-09  Dick Porter  <dick@ximian.com>
26856
26857         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26858         Don't do any more processing if the matched length was 0.  It was
26859         increasing the size of the string before.  Fixes bug 61167.
26860
26861 2004-07-09  Dick Porter  <dick@ximian.com>
26862
26863         * socket-io.h:
26864         * socket-io.c
26865         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26866         Add support for SO_PEERCRED if its available.
26867
26868 2004-07-09  Peter Bartok <pbartok@novell.com>
26869         * loader.c: winelib.exe.so error message is now only displayed if
26870         MONO_DEBUG is set. To help us avoid questions when people are trying
26871         out the new Managed.Windows.Forms.
26872
26873 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26874
26875         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26876         for isinst and castclass wrappers.
26877
26878         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26879         to libmetadata from the JIT, so they could be used by the marshalling
26880         code and the interpreter.
26881
26882         * marshal.c: Register marshalling related JIT icalls here instead of
26883         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26884         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26885
26886         * metadata.h: Remove unneeded marshalling conversions.
26887
26888         * opcodes.c: Update for new opcodes.
26889         
26890 2004-07-08  Martin Baulig  <martin@ximian.com>
26891
26892         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26893         (mono_debug_get_domain_data): Make this function static.
26894
26895 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26896
26897         * gc.c, object.h: add nice GC handle API for embedders.
26898
26899 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26900
26901         * reflection.c: more changes for the new api
26902
26903         * object.c: When we reflect on a field w/ a constant value, it
26904         will not have a memory location, so we must access metadata. Also,
26905         allow easier reading of strings so that we can read them from
26906         the constant data.
26907
26908         * class.c (mono_class_layout_fields): no need for literal fields here.
26909
26910         * class-internals.h: api changes for const fields
26911
26912         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26913
26914 2004-07-06  Martin Baulig  <martin@ximian.com>
26915
26916         * mono-debug.h: Increment version number to 44.
26917
26918         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26919         now a gpointer, rewrote this whole method.
26920
26921         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26922         function.  Add information about the wrapper in a new "misc table".
26923
26924         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26925         for the new misc table.
26926
26927 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26928
26929         * metadata-internals.h image.c: Add a cache for helper signatures.
26930
26931         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26932
26933 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26934
26935         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26936         delegates from a delegate. Fixes #61033.
26937         
26938         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26939         marshalling of stringbuilder arrays. Fixes #59900.
26940
26941 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26942
26943         * icall.c: Add EnumBuilder:setup_enum_type icall.
26944
26945 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26946
26947         * icall.c: Added a new icall for the property version of
26948         OffsetOfStringData.
26949
26950 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26951
26952         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26953         it has a constant size across platforms.
26954
26955         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26956         stack trace.
26957
26958 2004-06-29  Martin Baulig  <martin@ximian.com>
26959
26960         * mono-debug.c (mono_debug_add_method): Protect the whole function
26961         in mono_debugger_lock(), not just parts of it.
26962
26963 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26964
26965         * reflection.c: make sure padding bytes in heaps are zeroed.
26966
26967 2004-06-24  David Waite  <mass@akuma.org>
26968
26969         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26970         image.c, loader.c, locales.c, marshal.c, metadata.c,
26971         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26972         string-icalls.c, threads.c: change to C90-style comments from C99 /
26973         C++ -style
26974
26975 2004-06-24  Dick Porter  <dick@ximian.com>
26976
26977         * threads.c
26978         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26979         return createdNew.  Fixes bug 60412.
26980
26981         * threads-types.h: 
26982         * icall.c: Add createdNew parameter to CreateMutex icall
26983
26984 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26985
26986         * reflection.c, object-internals.h: save default value in params.
26987
26988 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26989
26990         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26991         no need to build a new path combining that with the application base.
26992         Fixes bug #60442.
26993
26994 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26995
26996         * reflection.c: fixed minor standard compliance issues.
26997
26998 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26999
27000         * reflection.c: fixed issue with encoding some custom attributes
27001         (arrays in properties and fields, bug #60411).
27002
27003 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27004
27005         * reflection.c: fix start address when copying the public key token.
27006
27007 2004-06-23  Martin Baulig  <martin@ximian.com>
27008
27009         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
27010         the `exc' object in a static object to put it into the GC's root set.
27011
27012 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
27013
27014         * reflection.c: make mono_reflection_setup_internal_class ()
27015         callable a second time to setup a new parent class.
27016
27017 2004-06-23  Dick Porter  <dick@ximian.com>
27018
27019         * threads.c: Check for WAIT_IO_COMPLETION return values.
27020
27021 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
27022
27023         * appdomain.c: Removed the g_free on the public key token. Now copy 
27024         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
27025         * assembly.c: Added public key token string value when loading 
27026         assemblies. Fix bug #60439.
27027         * icall.c: Added missing informations (like public key) in 
27028         GetReferencedAssemblies. Fix #60519.
27029         * image.h: Changed definition for public key token from const char*
27030         public_tok_value to guchar public_key_token [17];
27031         * reflection.c: Updated for changes to public key token.
27032
27033 2004-06-22  Lluis Sanchez Gual
27034
27035         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
27036         for the field in base classes.
27037
27038 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27039
27040         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
27041         mark headers as not supported, they are installed only for use by the
27042         debugger.
27043
27044 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
27045
27046         * *.c, *.h: avoid namespace pollution in public headers.
27047
27048 2004-06-21  Martin Baulig  <martin@ximian.com>
27049
27050         * exception.c (mono_get_exception_security): It's in
27051         "System.Security", not in "System".
27052
27053         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
27054         the exception classes.
27055
27056 2004-06-21  Martin Baulig  <martin@ximian.com>
27057
27058         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
27059         Protect the exception object from being finalized.
27060
27061 2004-06-21  Martin Baulig  <martin@ximian.com>
27062
27063         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
27064         public function.
27065
27066 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
27067
27068         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27069         if it was not loaded before. Fix parts of #60439.
27070
27071 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27072
27073         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27074         code that was broken since Ben's change: wrappers are now
27075         dependent on the method signature only again.
27076
27077 2004-06-21  Martin Baulig  <martin@ximian.com>
27078
27079         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27080         added interface support.
27081
27082 2004-06-21  Martin Baulig  <martin@ximian.com>
27083
27084         * class.c (mono_vtable_get_static_field_data): New public method.
27085
27086 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27087
27088         * filewatcher.c : Windows build fix to be compliant with API changes.
27089
27090 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27091
27092         * class.h, class.c: more accessors.
27093         * metadata.h, metadata.c: prepare for hiding MonoType and
27094         MonoMethodSignature: people should use the accessors from now on
27095         outside of the tree.
27096
27097 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27098
27099         * *.c, *.h: more API cleanups.
27100
27101 2004-06-18  Jackson Harper  <jackson@ximian.com>
27102
27103         * assembly.c: Trace loading assemblies.
27104         * loader.c: Trace loading native libraries.
27105         * mono-config.c: Trace loading config files.
27106         
27107 2004-06-18  Dick Porter  <dick@ximian.com>
27108
27109         * locales.c: Tell ICU the lengths of strings, it can cope with
27110         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27111
27112 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27113
27114         * image.c: swapped name/filename;
27115
27116 2004-06-18  Martin Baulig  <martin@ximian.com>
27117
27118         * mono-debug-debugger.c (write_class): Write the parent class at
27119         the end of the header.
27120
27121 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27122
27123         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27124
27125 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27126
27127         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27128         (bundle_obj): New conditional define.
27129         (BUILT_SOURCES): Remove.
27130         ($(bundle_srcs)): Make parallel-make safe.
27131         (libmonoruntime_la_LIBADD): Make unconditional.
27132         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27133         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27134
27135 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27136
27137         * culture-info-tables.h: It was inconsistent with the latest
27138           supp info files.
27139
27140 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27141
27142         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27143         be loaded.
27144
27145         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27146         with gcc 2.95.
27147
27148 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27149
27150         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27151         cleaned up public header threads.h.
27152
27153 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27154
27155         * Makefile.am, *.c, *.h: more API cleanups.
27156
27157 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27158
27159         * Makefile.am: removed monosn from compilation.
27160         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27161         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27162         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27163         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27164         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27165         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27166
27167 2004-06-15  Jackson Harper  <jackson@ximian.com>
27168
27169         * assembly.c: Make locales lower case when searching the GAC for
27170         assemblies. gacutil will always make locales lowercase when
27171         installing so this effectively makes them case insensitive.
27172         
27173 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27174
27175         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27176         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27177           parameter which allows to choose whether the wait can be interrupted or 
27178           not. Also added the method mono_monitor_enter(), which locks the monitor
27179           using an infinite wait and without allowing interruption.
27180           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27181           interrupted.
27182         * object.h: Added new fields in MonoThread. suspend_event holds the event
27183           used to susped/resume the thread. synch_lock is the lock object to use for
27184           modifying the thread state.
27185         * threads.c: Use the new synch_lock object for locking, instead of "this",
27186           which can generate deadlocks.
27187           Moved thread state change in Thread.Sleep and Thread.Join from managed
27188           to unmanaged code. This avoids a deadlock when the thread was suspended
27189           just after acquiring the thread lock.
27190           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27191           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27192           which is not fully implemented in the io-layer.
27193         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27194
27195 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27196
27197         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27198         threads-types.h: more API cleanups.
27199
27200 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27201
27202         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27203         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27204         threadpool.c, threads.c: first pass at the exported API cleanup.
27205
27206 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27207
27208         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27209
27210 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27211
27212         * icall.c: added internalGetHome.
27213
27214 2004-06-14  Dick Porter  <dick@ximian.com>
27215
27216         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27217         possible to return successfully when '.' or '..' were the only
27218         entries in a directory, but were skipped.  The MonoIOStat was not
27219         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27220         Fixes bug 59574.
27221
27222 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27223
27224         * reflection.c: make binaries run on .Net 1.1 by default.
27225
27226 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27227
27228         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27229
27230 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27231
27232         * marshal.c: keep track of struct size with explicit layout
27233         (bug #59979).
27234
27235 2004-06-12  Martin Baulig  <martin@ximian.com>
27236
27237         * mono-debug-debugger.c: Comment out a debugging g_message().
27238
27239 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27240
27241         * reflection.c, reflection.h: do not free custom attrs that are cached.
27242         * icall.c: use braces to make code clearer.
27243
27244 2004-06-11  Martin Baulig  <martin@ximian.com>
27245
27246         * class.h (MonoInflatedField): New type.
27247         (MonoClassField): Replaced `MonoType *generic_type' with
27248         `MonoInflatedField *generic_info'.
27249
27250         * icall.c
27251         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27252
27253 2004-06-11  Martin Baulig  <martin@ximian.com>
27254
27255         * reflection.c (mono_image_create_method_token): Correctly encode
27256         varargs methods.
27257
27258 2004-06-11  Martin Baulig  <martin@ximian.com>
27259
27260         * metadata.c (mono_metadata_parse_method_signature): When parsing
27261         a MethodDef which has VarArgs, also set sentinelpos if we don't
27262         have any parameters.
27263
27264 2004-06-11  Martin Baulig  <martin@ximian.com>
27265
27266         * verify.c (mono_method_verify): In CEE_CALL, use
27267         mono_method_get_signature() to get the method's signature, unless
27268         we're a PInvoke method.
27269
27270 2004-06-10  Jackson Harper  <jackson@ximian.com>
27271
27272         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27273         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27274         logical name as the supplied path is just a prefix to the gac not
27275         the direct path to it.
27276         
27277 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27278
27279         * reflection.c: make the token for a created method match
27280         the token of the MethodBuilder it was created from
27281         (IKVM requires this behaviour now).
27282
27283 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27284
27285         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27286         reflection.c, socket-io.c: leak fixes.
27287
27288 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27289
27290         * icall.c: handle sentinel pos in vararg methods in position different
27291         from 0.
27292
27293 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27294
27295         * culture-info-tables.h: freshly generated.
27296
27297 2004-06-09  Martin Baulig  <martin@ximian.com>
27298
27299         * loader.c (mono_get_method_constrained): Call `mono_class_init
27300         (constrained_class)'.   
27301
27302 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27303
27304         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27305         any methods. Fixes #59629.
27306
27307 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27308
27309         * culture-info-tables.h: reflecting locale-builder updates.
27310
27311 2004-06-08  Dick Porter  <dick@ximian.com>
27312
27313         * object.h:
27314         * locales.c: Fixed compile warnings, including a real bug in
27315         CompareInfo_internal_compare.
27316         
27317 2004-06-08  Dick Porter  <dick@ximian.com>
27318
27319         * locales.c
27320         (ves_icall_System_Globalization_CompareInfo_internal_index):
27321         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27322         Double-check the resuls of usearches, because ICU currently
27323         ignores most of the collator settings here.  Fixes bug 59720.
27324         
27325 2004-06-08  Dick Porter  <dick@ximian.com>
27326
27327         * locales.c
27328         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27329         Fix memory leak and segfault-causing typo.  No idea how this one
27330         lasted so long without being noticed.
27331
27332 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27333
27334         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27335         any methods. Fixes #59629.
27336
27337 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27338
27339         * assembly.c:
27340         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27341         own the critical section before). Removed dead code (that's done
27342         in the preload hook).
27343
27344         (mono_assembly_load_with_partial_name): call the preload hook.
27345
27346 2004-06-08  Martin Baulig  <martin@ximian.com>
27347
27348         * metadata.c (mono_metadata_signature_alloc): Default
27349         `sentinelpos' to -1.
27350
27351         * reflection.c (mono_image_get_array_token): Likewise.
27352
27353 2004-06-08  Martin Baulig  <martin@ximian.com>
27354
27355         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27356
27357         * metadata.c (mono_metadata_parse_method_signature): When parsing
27358         a MethodDef which has VarArgs, set sentinelpos.
27359
27360         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27361         `gint16' since we're using -1 for non-varargs methods.
27362
27363         * reflection.c
27364         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27365         (method_encode_signature): Added varargs support.
27366         (method_builder_encode_signature): Likewise.
27367         (mono_image_get_varargs_method_token): New static method.
27368         (mono_image_create_method_token): New public method; this is
27369         called via an icall instead of mono_image_create_token() when
27370         calling a varargs method.       
27371
27372 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27373
27374         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27375
27376 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27377
27378         * culture-info-tables.h : Reflecting the latest locale-builder that
27379           fixed empty array representation ({} to {0}).
27380
27381 2004-06-07  Jackson Harper  <jackson@ximian.com>
27382
27383         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27384         looking up extra gac paths. This allows MONO_GAC_PATH to act
27385         exactly like a prefix.
27386         
27387 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27388
27389         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27390         type name before modifying it. Fixes #59405.
27391
27392 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27393
27394         * culture-info.h: added fields for "all datetime patterns".
27395         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27396           _construct_datetime_format ()): fill xxx_patterns fields.
27397         * object.h: added fields for "all datetime patterns" to
27398           MonoDateTimeFormatInfo.
27399         * culture-info-tables.h: reflecting locale-builder updates.
27400
27401 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27402
27403         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27404         the event has no add and remove methods. Fixes #59629.
27405
27406 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27407
27408         * object.c: Fixed possible integer overflow when allocating large
27409         strings.
27410
27411 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27412
27413         * culture-info-tables.h: reflecting locale-builder updates.
27414
27415 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27416
27417         * culture-info-tables.h: reflecting locale-builder updates.
27418
27419 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27420
27421         * culture-info-tables.h: reflecting locale-builder updates.
27422
27423 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27424
27425         * threads.c: Made Thread.Sleep abortable.
27426
27427 2004-06-02  Martin Baulig  <martin@ximian.com>
27428
27429         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27430
27431         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27432
27433 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27434
27435         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27436
27437 2004-05-30  Jackson Harper  <jackson@ximian.com>
27438
27439         * reflection.c: Do not hardcode assembly versions or public key
27440         tokens anymore. All of this except the corlib section was dead
27441         code anyways.
27442         
27443 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27444
27445         * object.c (mono_runtime_invoke_array): Automatically create boxed
27446         objects for byref valuetypes if needed. Fixes #59300.
27447         
27448         * object.c (mono_method_return_message_restore): Handle 
27449         MONO_TYPE_OBJECT as well.
27450
27451 2004-05-28  Jackson Harper  <jackson@ximian.com>
27452
27453         * reflection.c: The modified type encoding was causing build
27454         problems. Reverted for now.
27455         
27456 2004-05-28  Jackson Harper  <jackson@ximian.com>
27457
27458         * reflection.c/h: Take an assembly ref so that we dont create
27459         fully qualified names when encoding types in the same assembly as
27460         the custom attribute being emitted.
27461         * appdomain.c: Increment version number.
27462         
27463 2004-05-26  Duncan Mak  <duncan@ximian.com>
27464
27465         * icall.c
27466         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27467         Set the full version number (major, minor, build, revision).
27468
27469 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27470
27471         * marshal.c (emit_struct_conv): increment src/dst after blit
27472         (mono_marshal_get_managed_wrapper,
27473         mono_marshal_get_native_wrapper): make sure we have marshalling
27474         info before marshalling params (info computation affects
27475         blittable)
27476
27477         * class.c (class_compute_field_layout): correctly deal with
27478         blittable
27479         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27480         value types (as per what windows dows by default)
27481         (mono_class_setup_mono_type): System.ValueType is blittable
27482         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27483         blittable
27484
27485         * marshal.c (mono_marshal_load_type_info): flag types  as
27486         non-blittable if the native layout doesn't match the managed
27487         layout
27488
27489 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27490
27491         * appdomain.c: don't add stuff in the private search path that is
27492         above the application base. If application base is not set, there's
27493         no private search path.
27494
27495 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27496
27497         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27498         byref struct arguments in native->managed marshalling.
27499
27500 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27501
27502         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27503         cache methods using signature (special case for methods
27504         that are value type or string class)
27505         
27506         * image.c (mono_image_close): clean up allocated GSList's
27507         in runtime_invoke_cache.
27508
27509 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27510
27511         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27512         there's no MONO_CFG_DIR environment variable defined.
27513
27514 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27515
27516         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27517
27518 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27519
27520         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27521           is interrumped.
27522         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27523           before waiting for it, and call CloseHandle after the wait to unref it.
27524           This will make sure that handles are not disposed too early.
27525
27526 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27527
27528         * appdomain.c:
27529         * appdomain.h:
27530         * icall.c: removed
27531         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27532         needed now.
27533
27534         * object.c: se the application_base only for the domain that runs
27535         Main. Fixes bug #59216,
27536
27537 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27538
27539         * appdomain.c:
27540         * object.c: only the domain in which Main is run have
27541         SetupInformation.ConfigurationFile set, so moved a few lines from
27542         appdomain.c to object.c.
27543
27544 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27545
27546         * appdomain.c: we tried to load [name].(dll|exe), but according
27547         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27548         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27549         There's a test case attached to bug #58922.
27550
27551 2004-05-27  Dick Porter  <dick@ximian.com>
27552
27553         * icall.c:
27554         * file-io.c: Implemented icalls for locking and unlocking regions
27555         in a file.
27556         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27557         FALSE on error (fixes both compiler warning and real bug.)
27558
27559 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27560
27561         * culture-info-tables.h: reflecting locale-builder updates.
27562
27563           (Added missing ChangeLog entry for 05/26)
27564
27565 2004-05-27  Jackson Harper  <jackson@ximian.com>
27566
27567         * locales.c: Fix some cut and paste errors.
27568         
27569 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27570
27571         * mono-config.c: set the correct path for config. directory on windows.
27572
27573 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27574
27575         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27576           on win32.
27577
27578 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27579
27580         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27581         from pinvoke functions.
27582         
27583         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27584
27585 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27586
27587         * culture-info-tables.h: reflecting locale-builder updates.
27588
27589 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27590
27591         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27592         #59086.
27593
27594 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27595
27596         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27597         * icall.c: Modified icalls for RNG.
27598         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27599         Windows (CryptoAPI).
27600
27601 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27602
27603         * locales.c: Fix build.
27604
27605 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27606
27607         * culture-info-tables.h: reflecting locale-builder updates.
27608
27609 2004-05-25  Jackson Harper  <jackson@ximian.com>
27610
27611         * locales.c: When creating the current culture use the $LANGs
27612         specific culture. So DateTimeFormat and NumberFormat entries are created.
27613         
27614 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27615
27616         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27617         a char array as parameter.
27618
27619 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27620
27621         * image.c: In mono_image_open(), always use an absolute path name to
27622           look for already loaded images.
27623
27624 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27625
27626         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27627         missing in the windows build (like older cygwin include files).
27628
27629 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27630
27631         * icall.c: Fixed check for possible integer overflow in Buffer_
27632         BlockCopy icall. Replaced comments style // by /* */.
27633
27634 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27635
27636         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27637         
27638         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27639         check after MONO_VTADDR. Fixes pinvoke2.exe.
27640
27641         * marshal.h marshal.c metadata.h: Add beginnings of support for
27642         ftnptr -> delegate marshalling.
27643
27644 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27645
27646         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27647         * threads.c: Fix warnings.
27648
27649 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27650
27651         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27652         * icall.c: Registered icalls for Suspend and Resume.
27653         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27654           Thread.Abort.
27655         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27656         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27657         * process.c: Use WaitForSingleObjectEx.
27658         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27659           checkpoints.
27660         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27661           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27662           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27663           background threads. Added basic support for Abort in Windows.
27664           Start new threads using a managed delegate invoke wrapper. This wrapper
27665           has an interruption checkpoint that is needed since an interruption
27666           can be requested before the thread leaves the unmanaged code that starts 
27667           the thread.
27668         * marshal.c: Added interruption checkpoint after every native call, and
27669           also before managed calls for wrappers called from unmanaged code to
27670           go into managed code.
27671         * object.h: Added new field in MonoThread to keep track of interruption
27672           requests.
27673
27674 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27675
27676         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27677         calls.
27678
27679 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27680
27681         * appdomain.c:
27682         * assembly.c:
27683         * gc.c:
27684         * locales.c:
27685         * mono-config.c:
27686         * rand.c: getenv -> g_getenv (windows!)
27687
27688         * process.c: complete_path is also used on non-windows platforms.
27689
27690 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27691
27692         * icall.c: new signature for Process_Start.
27693
27694         * process.[ch]: new signature for Process_Start. If we're on windows
27695         and UseShellExecute is false, we have to search for the program by
27696         ourselves if we don't get a full path.
27697
27698 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27699
27700         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27701         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27702
27703 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27704
27705         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27706         Fixes bug #58373.
27707
27708 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27709
27710         * process.c: use double quotes to quote program name and arguments on
27711         windows. Fixes bug #58575.
27712
27713 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27714
27715         * file-io.c: don't return "." and ".." when using windows Find*File.
27716
27717 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27718
27719         * marshal.c: Don't pass wrappers to message init because method 
27720         addressed used to lookup metadata. part of remoting[2|3] fix.
27721
27722 2004-05-15  Jackson Harper  <jackson@ximian.com>
27723
27724         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27725         path is essentially the same as MONO_PATH except that it points to
27726         GACs instead of lib directories.
27727         * loader.h: The user gac is gone so we dont need function to
27728         enable/disable it.
27729         * mono-config.c: user gac option is now gone.
27730         
27731 2004-05-15  Jackson Harper  <jackson@ximian.com>
27732
27733         * culture-info.h: Make defines more consistent, add calendar data
27734         to the culture info table.
27735         * culture-info-tables.h: Add basic calendar data. Basically
27736         everyone gets default gregorian until all the data is
27737         updated.
27738         * locales.c: Use the new consistent defines. Set calendar data for
27739         culture info objects.
27740         * object.h: add a field for calendar data to CultureInfo
27741         
27742 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27743
27744         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27745         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27746         a signature.
27747         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27748         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27749         an extra param that is the pointer of the method to invoke. The IL for
27750         the invoke method is no longer specific to the method, but to the
27751         signature of the method. Thus, we can share the same code for multiple
27752         methods. This reduces the number of methods that have to be compiled.
27753
27754 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27755
27756         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27757
27758         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27759
27760         * icall.c: Optimize Buffer.BlockCopy.
27761
27762 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27763
27764         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27765         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27766         quote). Changed them to "MMMM yyyy".
27767
27768 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27769
27770         * rand.c
27771         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27772
27773 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27774
27775         * reflection.h: Updated after changes to managed structures.
27776
27777         * appdomain.c: Bump corlib version.
27778
27779 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27780
27781         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27782         windows.
27783
27784 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27785
27786         * Makefile.am: link to ../os/libmonoos.la on windows.
27787
27788         * assembly.c:
27789                 -If MONO_DEBUG, warn about non-existing directories in
27790                 MONO_PATH.
27791                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27792                 compile time variable.
27793                 -Removed init_default_path and call mono_set_rootdir from
27794                 libmonoos.a instead (windows only).
27795
27796         * assembly.h: declare mono_assembly_getrootdir().
27797
27798         * domain.c:
27799         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27800
27801         * loader.c: s/getenv/g_getenv/
27802
27803 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27804
27805         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27806
27807         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27808
27809         * metadata.h: Add new marshalling conversions.
27810
27811         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27812         function.
27813
27814         * reflection.c (mono_reflection_get_type): Lookup the type in all
27815         modules of a multi-module assembly. Fixes #58291.
27816
27817 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27818
27819         * threads.c: Before aborting a background, set the StopRequested
27820         state.  This avoids throwing the Abort exception.
27821         In mono_thread_manage, don't continue with the shutdown until all
27822         aborted threads have actually stopped.
27823
27824 2004-05-10  Jackson Harper  <jackson@ximian.com>
27825
27826         * locales.c: Remove the modifier from culture names.
27827         
27828 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27829
27830         * Makefile.am: monosn is not installed any more. It has been deprecated
27831         in favor of sn.
27832
27833 2004-05-07  Jackson Harper  <jackson@ximian.com>
27834
27835         * locales.c
27836         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27837         Fix array construction, add bailout if the length is 0.
27838
27839 2004-05-07  Dick Porter  <dick@ximian.com>
27840
27841         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27842         machine doesn't have a DNS entry.  Patch by Urs Muff
27843         (umuff@quark.com), fixes bug 57928.
27844
27845 2004-05-06  Jackson Harper  <jackson@ximian.com>
27846
27847         * reflection.c: Handle null PublicTokens properly. alloc mem for
27848         assembly names culture so we dont crash when freeing it.
27849         
27850 2004-05-06  Jackson Harper  <jackson@ximian.com>
27851
27852         * assembly.c: Check the usergac when loading with partial names.
27853         
27854 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27855
27856         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27857         does nothing for now (not required for Linux/Windows) but the class
27858         library can call it (and a newer or modified runtime could need it).
27859         * icall.c: Registred icall.
27860
27861 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27862
27863         * loader.c: prints a message on module loading error we set MONO_DEBUG
27864         environment variable.
27865
27866 2004-05-05  Jackson Harper  <jackson@ximian.com>
27867
27868         * appdomain.c: Handle PublicKeyToken=null properly.
27869         
27870 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27871
27872         * environment.c|h: Added icall ves_icall_System_Environment_
27873         GetOSVersionString to get the current OS version as a string.
27874         * icall.c: Registred icall.
27875
27876 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27877
27878         * object.c: in mono_object_get_virtual_method(), take into account that
27879         non-virtual methods don't have a slot in the vtable. Check needed when
27880         the object is a proxy.
27881
27882 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27883
27884         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27885         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27886
27887         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27888
27889         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27890         passed when a valuetype is expected.
27891
27892         * object.c (mono_unhandled_exception): Only set the exit code if the
27893         exception happens in the main thread. Fixes thread5.exe.
27894
27895         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27896         invalid names. Fixes #58047.
27897
27898 2004-05-03  Jackson Harper  <jackson@ximian.com>
27899
27900         * assembly.c: This line was committed accidently and is unneeded.
27901         
27902 2004-05-03  Jackson Harper  <jackson@ximian.com>
27903
27904         * icall.c: Add new icall for Assembly::LoadWithPartialName
27905         * assembly.c/.h: new function that probes the GAC to load partial
27906         assembly names by Paolo Molaro.
27907         
27908 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27909
27910         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27911         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27912         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27913         full type name.
27914
27915 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27916
27917         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27918         * reflection.c: fix bug when parsing a full type name and Version is not
27919         the last thing in the string.
27920
27921 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27922
27923         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27924         crashes when it is freed.
27925
27926 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27927
27928         * assembly.c: print the compat warning to stderr.
27929
27930 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27931
27932         * assembly.c (mono_assembly_load_references): Add a compatibility
27933         hack to run old applications that might be still referencing the
27934         3300-based assemblies, only do this for System.xxx.
27935
27936 2004-05-01  Jackson Harper  <jackson@ximian.com>
27937
27938         * appdomain.c: If the culture is neutral we set it to "".
27939         
27940 2004-04-29  Jackson Harper  <jackson@ximian.com>
27941
27942         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27943
27944 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27945  
27946         * string-icalls.c: added low overhead function for copying chars
27947         * icall.c: added needed icall for the above function
27948  
27949 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27950
27951         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27952         Environment.GetLogicalDrives.
27953
27954 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27955
27956         * rand.c: try and talk to egd or prngd
27957         for random bytes if opening devices fail.
27958
27959 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27960
27961         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27962         alignment for the type using the native alignment of its members 
27963         instead of using klass->min_align.
27964
27965         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27966
27967 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27968
27969         * file-io.c:
27970         * socket-io.c: added check for sys/aio.h.
27971
27972 2004-04-28  Dick Porter  <dick@ximian.com>
27973
27974         * threads.c: Don't abort a thread thats already aborting, when
27975         terminating everything.
27976
27977 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27978
27979         * icall.c: added 2 new async calls for Socket.
27980
27981         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27982         IO on *nix systems.
27983
27984         * threadpool.c: removed unused variable.
27985
27986 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27987
27988         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27989
27990 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27991
27992         * locales.c: put back string_invariant_tolower () and
27993         string_invariant_toupper ().
27994
27995 2004-04-26 David Waite <mass@akuma.org>
27996
27997         * file-io.h:
27998         * socket-io.h:
27999         * threads.h:
28000         * unicode.h: remove comma from end of enumeration declarations
28001
28002 2004-04-26 David Waite <mass@akuma.org>
28003
28004         * debug-mono-symfile.h:
28005         * decimal.c:
28006         * mono_debug.h:
28007         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
28008
28009
28010 2004-04-26  Jackson Harper  <jackson@ximian.com>
28011
28012         * appdomain.c: Increment version number.
28013         
28014 2004-04-26  Jackson Harper  <jackson@ximian.com>
28015
28016         * appdomain.c: Set assembly references public token value when
28017         PublicKeyToken is specified, not the hash_value. Free public token
28018         values when free assembly name data. Previously the public key
28019         token was hex decoded, however we are using hex encoded public key
28020         tokens, so this is not neccasary.
28021         * assembly.c: Lookup assemblies in the gac if their public token
28022         value is set. Add function to allow enabling user gac
28023         lookups. Specify whether or not the assembly was loaded from the
28024         GAC. Compare full assembly names when checking the cache for
28025         assemblies (Temporarily disabled see comment in code). Remove
28026         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
28027         specifies trace-loader they get extra info to stdout on the
28028         loading of assemblies.
28029         * image.h: Add a field for an assembly references public token
28030         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
28031         whether an assembly has been loaded from the GAC.
28032         * image.c: Remove a corlib -> mscorlib name mapping.
28033         * loader.h: Add function to enable/disable the user gac.
28034         * mono-config.c: Check if the usergac is enabled in the config
28035         file.
28036         * icall.c: New icall to determine whether or not an assembly has
28037         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
28038         * tabldefs.h: Add constant for assemblyref flag that specifies a
28039         full public key is used instead of a public token.
28040         * reflection.c: Remove mscorlib -> corlib mappings. Set
28041         PublicTokenValue instead of hash value. This value is a hex
28042         string so it does not need to be expanded.
28043
28044 2004-04-26  Martin Baulig  <martin@ximian.com>
28045
28046         * mono-debug-debugger.c (mono_debugger_initialize): Set
28047         `mono_debugger_initialized' before calling mono_debug_lock().
28048
28049 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
28050
28051         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
28052           InternalToUpper/InternalToLower.
28053         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
28054           removed invariant culture shortcut.  This is now done in managed code.
28055         * locales.c: (string_invariant_toupper/tolower) removed.
28056
28057 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28058
28059         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
28060         Added Poll internal call.
28061
28062         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
28063         call for Poll. Select was too heavy for polling a single socket.
28064
28065         * threadpool.[ch]: added mono_threadpool_cleanup.
28066         * threads.c: use it. Don't use Thread_Abort on windows.
28067
28068 2004-04-23  Martin Baulig  <martin@ximian.com>
28069
28070         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28071
28072 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28073
28074         * icall.c: Registred new icalls for key pair protection and added an
28075         icall for Environment.GetFolderPath on Windows.
28076         * security.c|h: Added new icalls for key pair protection.
28077
28078 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28079
28080         * socket-io.c: don't display the non-supported family warning for known
28081         families. Now this is not displayed on windows when checking support
28082         for IPv4/IPv6.
28083
28084 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28085
28086         * class.c: don't display the layout warning for static fields.
28087
28088 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28089
28090         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28091         * locales.c, locales.h: Added new icalls for culture-specific
28092         Char.ToLower and Char.ToUpper.
28093
28094 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28095
28096         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28097         by David Waite.
28098
28099 2004-04-20  Martin Baulig  <martin@ximian.com>
28100
28101         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28102         of the type name before passing it to mono_reflection_type_from_name().
28103
28104 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28105
28106         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28107         encodings here. Fixes #56965.
28108
28109 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28110
28111         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28112         fix test on strstr result not that I can see anything that
28113         relies on the result.
28114
28115 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28116
28117         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28118         Fixes #57081.
28119
28120         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28121
28122         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28123         function to determine which marshalling to use for strings. Fixes
28124         #56965.
28125
28126         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28127
28128         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28129
28130 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28131
28132         * icall.c: #include mono-config.h
28133
28134 2004-04-15  Jackson Harper  <jackson@ximian.com>
28135
28136         * culture-info-tables.h: Fix date formats for en-US culture.
28137         
28138 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28139
28140         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28141         ThreadPool.SetMinThreads.
28142         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28143         ThreadPool.SetMinThreads.
28144
28145 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28146
28147         * mono-config.c: also load the .config file in the directory
28148         where the assembly was found.
28149
28150 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28151
28152         * assembly.c: load per-assembly config files.
28153         * icall.c: decrapified code to get the config dir and moved to
28154         mono-config.c.
28155         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28156         per-assembly config files. When doing a dll map lookup give precedence
28157         to the per-assembly data.
28158
28159 2004-04-14  Martin Baulig  <martin@ximian.com>
28160
28161         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28162         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28163         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28164
28165         * mono-debugger-debugger.c: While the debugger is locked, remember
28166         whether the symbol tables have changes and send one single
28167         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28168
28169 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28170
28171         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28172
28173         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28174         function.
28175
28176         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28177         account when marshalling string arrays. Fixes #56965.
28178
28179 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28180
28181         * icall.c: Add new icalls mapping for security.
28182         * security.c|h: Add internal calls for WindowsIdentity,
28183         WindowsImpersonationContext and WindowsPrincipal.
28184
28185 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28186
28187         * class.c: Added comment to ensure the System.MonoDummy class
28188         is removed when no longer necessary
28189
28190 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28191
28192         * appdomain.c: Pass arguments to the bootstraping exceptions to
28193         minimize JITed methods at boot
28194
28195         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28196         second string to be null.
28197
28198         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28199         Change the protocol to minimize the JIT methods at startup.  Now
28200         it Returns the internal codepage, if the value of "int_code_page"
28201         is 1 at entry, and we can not compute a suitable code page
28202         number, returns the code page as a string.
28203
28204 2004-04-13  Jackson Harper  <jackson@ximian.com>
28205
28206         * culture-info-tables.h: Fix number of decimal digits for all
28207         english locales.
28208
28209 2004-04-13  Jackson Harper  <jackson@ximian.com>
28210
28211         * icall.c: Clairfy out of sync error message. It is not always
28212         your corlib that is out of sync.
28213
28214 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28215
28216         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28217         properties when only the set accessor is overriden. Fixes #55874.
28218
28219 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28220
28221         * assembly.c (mono_assembly_load_references): Make this thread safe.
28222         Fixes #56327.
28223
28224 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28225
28226         * monosn.c: Add missing initialization calls.
28227
28228 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28229
28230         * locales.c:
28231         ves_icall_System_Globalization_CultureInfo_construct_number_format
28232         Fix g_assert so it compiles on fussier compilers re int/ptr
28233         mismatch
28234
28235 2004-04-08  Dick Porter  <dick@ximian.com>
28236
28237         * socket-io.h:
28238         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28239         53992.  Also rearrange the code so that the internal calls return
28240         an error value and exceptions are thrown from managed code.
28241
28242         * icall.c: Add type info to the socket icalls.
28243
28244 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28245
28246         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28247         owes me a beer.
28248
28249 2004-04-07  Martin Baulig  <martin@ximian.com>
28250
28251         * class.c (mono_class_from_generic_parameter): Don't default
28252         `klass->parent' to `mono_defaults.object_type'.
28253
28254 2004-04-07  Martin Baulig  <martin@ximian.com>
28255
28256         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28257         `param->pklass->reflection_info'.       
28258
28259 2004-04-07  Jackson Harper  <jackson@ximian.com>
28260
28261         * culture-info-tables.h: Fix date separator symbol.
28262         
28263 2004-04-07  Martin Baulig  <martin@ximian.com>
28264
28265         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28266         from System.Type to System.MonoType.
28267
28268 2004-04-07  Martin Baulig  <martin@ximian.com>
28269
28270         * reflection.h
28271         (MonoReflectionGenericParam): Added `has_reference_type' and
28272         `has_value_type' fields.
28273
28274         * reflection.c (mono_image_get_generic_param_info): Encode the
28275         correct flags if we have the `class' or `struct' constraint.
28276
28277 2004-04-07  Martin Baulig  <martin@ximian.com>
28278
28279         * reflection.h
28280         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28281
28282 2004-04-07  Jackson Harper  <jackson@ximian.com>
28283
28284         * appdomain.c: Revert extra patches, just wanted to bump the
28285         version number.
28286         
28287 2004-04-07  Jackson Harper  <jackson@ximian.com>
28288
28289         * Makefile.am: Add culture-info private headers.
28290         * icall.c: Add new icalls for contructing locales.
28291         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28292         * locales.h: Declare new culture info construction methods.
28293         * object.h: Add new fields used to avoid the CultureMap to
28294         MonoCultureInfo.
28295         * culture-info.h: Definition of structs used in the culture info
28296         tables.
28297         * culture-info-tables.h: Autogenerated tables that contain culture
28298         info data. This file was generated with the locale-builder tool.
28299         * appdomain.c: Incement corlib version number.
28300         
28301 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28302
28303         * appdomain.c: (mono_runtime_init) move mono_thread_init
28304         to before mono_object_new calls so critical sections
28305         are initialized before use.
28306
28307 2004-04-07  Martin Baulig  <martin@ximian.com>
28308
28309         * icall.c
28310         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28311         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28312         (ves_icall_MonoGenericParam_initialize): Removed.
28313         (monogenericparam_icalls): Removed.
28314         (generictypeparambuilder_icalls): Added new table for
28315         System.Reflection.Emit.GenericTypeParameterBuilder.
28316
28317         * reflection.c
28318         (mono_reflection_define_generic_parameter): Removed.
28319         (mono_reflection_initialize_generic_parameter): This is now called
28320         from GenericTypeParameterBuilder's .ctor.
28321
28322 2004-04-06  Martin Baulig  <martin@ximian.com>
28323
28324         * class.c (mono_class_init): Don't inflate nested classes in a
28325         generic instance.
28326         (mono_type_get_name_recurse): Include the generic arguments for
28327         generic instances and generic type declarations.
28328         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28329         (_mono_class_get_instantiation_name): Removed.
28330         (mono_class_create_generic): Always use `gklass->name' as our name.
28331
28332         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28333
28334         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28335         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28336         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28337         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28338         closed generic methods here.
28339
28340         * reflection.c
28341         (mono_reflection_generic_inst_get_nested_types): Removed.
28342         (inflate_mono_method): Copy the generic parameters from the
28343         MonoMethodHeader into out MonoGenericMethod.
28344
28345 2004-04-06  Martin Baulig  <martin@ximian.com>
28346
28347         * row-indexes.h
28348         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28349
28350         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28351
28352         * reflection.c (build_compressed_metadata): If we have any entries
28353         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28354         set the header version to 1.1.
28355
28356 2004-04-06  Martin Baulig  <martin@ximian.com>
28357
28358         * class.c (mono_class_init): If we're a generic instance,
28359         initialize our nested classes, too.
28360         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28361         suffix. 
28362
28363 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28364
28365         * process.c: quote the argument passed to the shell on windows.
28366
28367 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28368
28369         * threads.c (mono_alloc_special_static_data): Allow this to be
28370         called during startup.
28371
28372 2004-04-02  Martin Baulig  <martin@ximian.com>
28373
28374         * icall.c
28375         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28376
28377 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28378
28379         * icall.c: Fix build.
28380
28381 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28382
28383         * Makefile.am: Added security.c|h.
28384         * icall.c: Added icall for get_UserName;
28385         * security.c: New file for security related icalls. Added function
28386         get_UserName for System.Environment (fix #56144).
28387         * security.h: New. Header file for security.c
28388
28389 2004-04-02  Dick Porter  <dick@ximian.com>
28390
28391         * icall.c: Deleted the icalls that were obsoleted some time ago
28392         by the ICU string code, and which were mixed into the icall
28393         rearranging.  Fixes bug 55969.
28394
28395         * string-icalls.h: 
28396         * string-icalls.c: Deleted the code that those icalls reference.
28397
28398 2004-04-01  Martin Baulig  <martin@ximian.com>
28399
28400         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28401
28402         * class.c (mono_class_from_generic_parameter): Don't set 
28403         TYPE_ATTRIBUTE_INTERFACE.
28404         (my_mono_class_from_generic_parameter): Likewise.
28405
28406 2004-04-01  Martin Baulig  <martin@ximian.com>
28407
28408         * loader.c (find_method): Added an optional `MonoClass *ic'
28409         argument to search in a specific interface.
28410         (mono_get_method_constrained): New public function.
28411
28412 2004-04-01  Martin Baulig  <martin@ximian.com>
28413
28414         * reflection.c (mono_image_get_generic_field_token): Use the
28415         `handleref' cache here.
28416
28417 2004-04-01  Martin Baulig  <martin@ximian.com>
28418
28419         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28420
28421         * reflection.c (create_generic_typespec): Use the `typespec' hash
28422         here, not the `typeref' one.    
28423
28424 2004-04-01  Martin Baulig  <martin@ximian.com>
28425
28426         * class.c (mono_class_inflate_generic_type): Moved the
28427         functionality into a new static inflate_generic_type() which
28428         returns NULL if it didn't do anything.  Only increment the
28429         `mono_stats.inflated_type_count' if we actually inflated
28430         something.
28431         (mono_class_get_full): Check the classes type to see whether we
28432         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28433
28434 2004-04-01  Jackson Harper  <jackson@ximian.com>
28435
28436         * reflection.c: Set culture for assembly references.
28437         
28438 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28439
28440         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28441
28442 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28443
28444         * assembly.c:
28445         (do_mono_assembly_open): the critical section also covers
28446         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28447
28448 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28449
28450         * threads.c:
28451         (mono_manage_threads): abort the background threads when finishing.
28452         Fixes bug #47232.
28453
28454 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28455
28456         * gc.c: only close the done_event handle if there was no timeout.
28457         C-ified comments.
28458
28459 2004-03-30  Martin Baulig  <martin@ximian.com>
28460
28461         * icall.c (icall_entries): It's called "System.Activator", not
28462         "System.Activation".    
28463
28464 2004-03-30  Martin Baulig  <martin@ximian.com>
28465
28466         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28467         (mono_class_create_from_typespec): Likewise.
28468
28469 2004-03-30  Martin Baulig  <martin@ximian.com>
28470
28471         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28472         `has_ctor_constraint' and `initialized'.
28473
28474 2004-03-30  Martin Baulig  <martin@ximian.com>
28475
28476         * reflection.c (encode_new_constraint): New static function to add
28477         the constructor constraint attribute to a type parameter.
28478         (encode_constraints): Call encode_new_constraint() if necessary.
28479
28480         * reflection.h
28481         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28482
28483         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28484         
28485 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28486
28487         * reflection.c, icall.c: add support for pinning variables. 
28488
28489 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28490
28491         * marshal.c (mono_marshal_get_managed_wrapper):
28492         init bool local with zero rather than null.
28493
28494 2004-03-29  Martin Baulig  <martin@ximian.com>
28495
28496         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28497         the "official" behavior here.
28498         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28499
28500 2004-03-29  Martin Baulig  <martin@ximian.com>
28501
28502         * icall.c: Reflect latest API changes.
28503
28504 2004-03-29  Martin Baulig  <martin@ximian.com>
28505
28506         * loader.c (mono_get_method_from_token): Also call
28507         mono_metadata_load_generic_params () for abstract and interface
28508         methods; replace the type arguments in the method signature with
28509         the ones which are loaded from the metadata.
28510
28511 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28512
28513         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28514         of the lock is not the current thread. MS.NET don't do it, in spite of
28515         what the documentation says. See bug #56157.
28516
28517 2004-03-28  Martin Baulig  <martin@ximian.com>
28518
28519         * class.c (mono_class_init): Don't call init_properties() and
28520         init_events() for generic instances; set `prop->parent' when
28521         inflating properties.
28522
28523         * reflection.c (mono_generic_inst_get_object): Call
28524         `mono_class_init (ginst->klass)'.
28525         (mono_type_get_object): Only create a MonoGenericInst if your
28526         generic type is a TypeBuilder.
28527         (do_mono_reflection_bind_generic_parameters): Only set
28528         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28529
28530 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28531
28532         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28533         Fixes #56091.
28534
28535 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28536
28537         * icall.c: added Kill_internal icall.
28538         * process.[ch]: added Kill_internal icall.
28539
28540 2004-03-25  Martin Baulig  <martin@ximian.com>
28541
28542         * class.h (MonoStats): Added `generic_instance_count',
28543         `inflated_method_count', `inflated_type_count' and
28544         `generics_metadata_size'.       
28545
28546 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28547
28548         * reflection.c: no warnings now.
28549
28550 2004-03-25  Martin Baulig  <martin@ximian.com>
28551
28552         * class.c (mono_class_get_full): New public function; does a
28553         mono_class_get(), but also takes a `MonoGenericContext *'.
28554
28555         * loader.c (mono_field_from_memberref): Renamed to
28556         `field_from_memberref', made static and added `MonoGenericContext *'
28557         argument.
28558         (mono_field_from_token): Added `MonoGenericInst *' argument.
28559         (method_from_memberef): Likewise.
28560         (mono_get_method_from_token): Likewise.
28561         (mono_get_method_full): New public function; does a
28562         mono_get_method(), but also takes a `MonoGenericContext *'.
28563
28564         * verify.c (mono_method_verify): Get the method's generic context
28565         and pass it to mono_field_from_token(), mono_get_method_full() and
28566         mono_class_get_full().
28567
28568 2004-03-25  Martin Baulig  <martin@ximian.com>
28569
28570         * class.c (mono_class_inflate_generic_type): Take a
28571         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28572         `MonoGenericMethod *'.
28573
28574 2004-03-25  Martin Baulig  <martin@ximian.com>
28575
28576         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28577         instead of the MonoGenericMethod here.
28578
28579 2004-03-25  Martin Baulig  <martin@ximian.com>
28580
28581         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28582         each time we create a new MonoGenericInst, we also create a new
28583         context which points back to us.
28584
28585         * class.c (inflate_method): Use `ginst->context' instead of
28586         creating a new context.
28587
28588         * loader.c (method_from_memberref): Use
28589         `klass->generic_inst->context' instead of creating a new context.
28590
28591 2004-03-25  Martin Baulig  <martin@ximian.com>
28592
28593         * class.h (MonoGenericContext): New struct.
28594         (MonoGenericMethod): Removed `generic_inst'.
28595
28596         * class.c (mono_class_inflate_generic_method): Take a
28597         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28598
28599 2004-03-25  Martin Baulig  <martin@ximian.com>
28600
28601         * loader.h (MonoMethodInflated): New typedef.
28602
28603         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28604         `generic_param_count' consume just 30 bits, added `is_inflated'
28605         and `has_type_parameters' flags (one bit each).
28606
28607         * class.c (mono_class_inflate_generic_method): Create a
28608         MonoMethodInflated instead of a MonoMethodNormal and set
28609         `is_inflated' in the method signature.
28610
28611         * class.h (MonoGenericMethod): Removed `generic_method'.
28612
28613 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28614
28615         * image.c: Make sure the name of a MonoImage is always an absolute path.
28616           This fixes bug #54415.
28617
28618 2004-03-24  Martin Baulig  <martin@ximian.com>
28619
28620         * class.c (mono_class_setup_vtable): If we're a generic instance,
28621         use our generic type's vtable size.
28622
28623 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28624
28625         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28626         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28627         problems.
28628
28629 2004-03-23  Martin Baulig  <martin@ximian.com>
28630
28631         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28632         `MonoEvent *events'.
28633
28634         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28635         (typebuilder_icalls): Added "get_event_info"; calls
28636         mono_reflection_event_builder_get_event_info(). 
28637
28638         * reflection.c (mono_reflection_generic_inst_initialize): Added
28639         `MonoArray *events'.
28640         (mono_reflection_event_builder_get_event_info): New function.
28641
28642 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28643
28644         * object.h: add mono_type_initialization_init
28645
28646         * object.c (mono_runtime_class_init): 
28647         implement class constructor synchronization rules
28648         to cope with threading issues.  
28649         add mono_type_initialization_init
28650
28651         * appdomain.c (mono_runtime_init): call 
28652         mono_type_initialization_init
28653
28654         * class.h: removing initializing field from MonoVTable
28655
28656 2004-03-23  Martin Baulig  <martin@ximian.com>
28657
28658         * class.c (my_mono_class_from_generic_parameter): Use
28659         `param->name' if it's not NULL. 
28660
28661 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28662
28663         * class.c: do not insert non-virtual methods in the vtable.
28664         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28665         that means the method is non-virtual. This never would have
28666         happened before.
28667
28668 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28669
28670         * profiler.c: Added lock for accessing coverage_hash.
28671
28672 2004-03-22  Martin Baulig  <martin@ximian.com>
28673
28674         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28675         `method->method->signature->generic_param_count != 0' to make it
28676         work for interface methods.
28677
28678 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28679
28680         * process.c: quote the string passed to the shell using g_shell_quote.
28681
28682 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28683
28684         * threads.c:
28685         (mono_threads_manage): don't remove the finalizer thread and self
28686         from the threads hash table so that mono_thread_manage can be called
28687         more than once.
28688
28689 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28690
28691         * process.c: quote the arguments when UseShellExecute is true. Fixes
28692         bug #55790.
28693
28694 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28695
28696         * threads.c: set mono_thread_detach as a cleanup routine for every
28697         thread. This way it's always executed upon thread termination, either
28698         aborted or finished normally. No more xsp hangs!
28699
28700 2004-03-17  Martin Baulig  <martin@ximian.com>
28701
28702         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28703         `int count_nested' and a `MonoType **nested'.
28704
28705         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28706         most of the functionality into a new static
28707         do_mono_reflection_bind_generic_parameters() and don't take a
28708         `MonoType *nested_in' argument any more.  Don't compute nested
28709         types here.
28710         (mono_reflection_generic_inst_get_nested_types): New public method
28711         to get nested types.
28712
28713         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28714         we're a nested class.
28715
28716         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28717         mono_reflection_generic_inst_get_nested_types() to compute the
28718         nested types.
28719
28720 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28721
28722         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28723         descriptive error message under windows.
28724         
28725 2004-03-17  Martin Baulig  <martin@ximian.com>
28726
28727         * class.c (dup_type): Added `const MonoType *original' argument;
28728         copy the attrs from the original type.
28729
28730 2004-03-17  Martin Baulig  <martin@ximian.com>
28731
28732         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28733         `m->generic_inst_cache' here.
28734
28735 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28736
28737         * exception.h exception.c: Add stack_overflow_exception.
28738
28739 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28740
28741         * threadpool.c:
28742         (overlapped_callback): call SetEvent *after* invoking the callback.
28743         No need to call CloseHandle.
28744
28745 2004-03-16  Martin Baulig  <martin@ximian.com>
28746
28747         * reflection.c (mono_image_get_fieldref_token): Take a
28748         `MonoReflectionField *' instead of a `MonoClassField *' and a
28749         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28750
28751 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28752
28753         * appdomain.c: don't add the culture to the filename we're looking for
28754         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28755
28756 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28757
28758         * locales.c: don't ignore symbols when doing case insensitive compares.
28759         Thanks Dick! Fixes bug #54046.
28760
28761         * threads.c: surround 'threads' usage with enter/leave in
28762         mono_thread_manage.
28763
28764 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28765
28766         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28767         implicitly marshalled as [Out]. Fixes #55450.
28768
28769         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28770         an exception.
28771
28772 2004-03-16  Martin Baulig  <martin@ximian.com>
28773
28774         * class.c (mono_class_from_generic_parameter): Use the actual
28775         parameter name. 
28776
28777 2004-03-16  Martin Baulig  <martin@ximian.com>
28778
28779         * reflection.c (type_get_signature_size): New static function.
28780         Compues the size of the type in a method signature.
28781         (method_get_signature_size): New static function; calls
28782         type_get_signature_size() to compute the actual size of the
28783         method's signature.
28784         (method_encode_signature): Use method_get_signature_size() to get
28785         the signature's size rather than using `nparams * 10'.
28786
28787 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28788
28789         * file-io.h: define here WapiOverlapped on windows. I don't want the
28790         regular OVERLAPPED one.
28791
28792         * file-io.c:
28793         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28794         Disabling AIO on windows.
28795
28796 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28797
28798         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28799         bug #55385.
28800
28801 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28802
28803         * appdomain.c: upgraded corlib version.
28804
28805         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28806         and BeginWrite. Allow opening files for asynchrnous operations.
28807
28808         * file-io.h: new struct that maps FileStreamAsyncResult.
28809         * icall.c: added new icalls.
28810         * process.[ch]: support setting child process environment variables
28811         and use the SHELL or COMSPEC when UseShellExecute is true.
28812
28813         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28814         callback for async. IO is here and also BindHandle.
28815
28816         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28817         from here.
28818
28819 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28820
28821         * reflection.c (create_custom_attr): Allow len == 0.
28822
28823         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28824         computation on big-endian machines.
28825
28826 2004-03-13  Martin Baulig  <martin@ximian.com>
28827
28828         * class.h (MonoGenericInst): Added `int count_ifaces'.
28829
28830         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28831         `ginst->count_ifaces' instead `klass->interface_count' since we
28832         may get called before the vtable is created.
28833
28834         * loader.c (mono_method_get_param_names): If we're a generic
28835         instance, return and don't initialize the class.
28836
28837         * reflection.c (mono_reflection_setup_generic_class): Don't call
28838         ensure_runtime_vtable().
28839         (mono_reflection_bind_generic_parameters): Set
28840         `ginst->count_ifaces'.
28841
28842 2004-03-11  Jackson Harper <jackson@ximian.com>
28843
28844         * icall.c:
28845         * unicode.c:
28846         * unicode.h: Remove unused System.Char icalls.
28847         
28848 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28849
28850         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28851         code when we P/Invoke the first library in Windows.Forms, instead
28852         of when we first open the assembly.
28853
28854         * assembly.c: Drop the lookup from here.
28855
28856 2004-03-10  Martin Baulig  <martin@ximian.com>
28857
28858         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28859         class for properties, fields and events.  Finally fixes #54945.
28860
28861 2004-03-10  Martin Baulig  <martin@ximian.com>
28862
28863         * metadata.c (mono_metadata_class_equal): New static function;
28864         checks whether two generic instances or two generic parameters are
28865         equal.
28866         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28867         compare classes.        
28868
28869 2004-03-10  Martin Baulig  <martin@ximian.com>
28870
28871         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28872
28873         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28874         argument and write it into the `reflection_info' field.
28875
28876         * icall.c
28877         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28878         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28879
28880 2004-03-09  Jackson Harper  <jackson@ximian.com>
28881
28882         * char-conversions.h: use 8 bits for numeric data its all we need
28883         * icall.c: numeric data is only 8 bits now.
28884
28885 2004-03-09  Martin Baulig  <martin@ximian.com>
28886
28887         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28888
28889         * class.c (init_properties, init_events): Initialize the new
28890         `parent' field.
28891
28892         * reflection.c (typebuilder_setup_properties): Likewise.
28893         (typebuilder_setup_events): Likewise.
28894
28895         * reflection.h (MonoEventInfo): Replaced `parent with
28896         `declaring_type' and `reflected_type'.
28897
28898         * icall.c (ves_icall_get_property_info): Distinguish between
28899         declaring and reflected type.
28900         (ves_icall_get_event_info): Likewise.
28901
28902 2004-03-09  Martin Baulig  <martin@ximian.com>
28903
28904         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28905         (ves_icall_Type_GetField): Correctly set field->klass.
28906
28907 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28908
28909         * loader.h: Fix warning.
28910
28911 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28912
28913         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28914         library routine if present.  Notice that it will still continue
28915         executing even if its missing, for those working on the Gtk#
28916         edition of Windows.Forms.
28917
28918         * assembly.c (do_mono_assembly_open): If loading the
28919         System.Windows.Forms call mono_loader_wini_init.
28920
28921 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28922
28923         * class.h: Added MonoRemoteClass struct.
28924         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28925         function for MonoStrings.
28926         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28927         Added internal call for getting the proxy type.
28928         * marshal.c: Get the type of transparent proxies from its remote_class.
28929         Added methods that generate the IL for type checks and casts:
28930         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28931         mono_marshal_get_proxy_cancast.
28932         * marshal.h: Declaration of the previous new methods.
28933         * object.c: Added new moethods for creating and updating MonoRemoteClass
28934         instances: mono_remote_class, mono_upgrade_remote_class, 
28935         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28936         * verify.c: FIx transparent_proxy_fields layout.
28937         * appdomain.c: Bump corlib version.
28938
28939 2004-03-04  Jackson Harper  <jackson@ximian.com>
28940
28941         * icall.c: Add icall to access char conversion tables.
28942         * char-conversions.h: Character conversion tables.
28943         * Makefile.am: Add char-conversions.h private header file.
28944         
28945 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28946
28947         * appdomain.c (unload_thread_main): Increase unloading timeout to
28948         10 sec as a temporary workaround for Nant problems.
28949
28950 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28951
28952         * gc.c: Add checks for GC_enable and GC_disable.
28953
28954         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28955         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28956         (bug #54988).
28957         
28958 2004-02-27  Martin Baulig  <martin@ximian.com>
28959
28960         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28961         `MonoReflectionType *' instead of a `MonoType *'.
28962
28963 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28964
28965         * gc.c (run_finalize): Avoid finalizing the object representing the
28966         finalizer thread.
28967         (finalizer_thread): Fix warning.
28968
28969 2004-02-25  Martin Baulig  <martin@ximian.com>
28970
28971         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28972         argument for nested types.
28973         (mono_class_create_generic): Added support for nested generictypes.
28974
28975         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28976         `GList *nested'.
28977
28978         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28979
28980         * reflection.c (method_encode_signature): Increase the minimum
28981         value of `size' from 10 to 11.
28982         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28983         and `MonoType **types' arguments instead of the `MonoArray
28984         *types'; added `MonoType *nested_in'.  Recursively instantiate
28985         nested classes. 
28986
28987 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28988
28989         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28990         stack_overflow_ex members which are used by exception handling.
28991
28992         * appdomain.c (mono_runtime_init): Initialize the new members.
28993
28994         * gc.c (mono_gc_enable): New helper function.
28995         * gc.c (mono_gc_disable): New helper function.
28996
28997 2004-02-23  Martin Baulig  <martin@ximian.com>
28998
28999         * icall.c: I must have been really stupid - make it actually work
29000         this time ;-)
29001
29002 2004-02-23  Martin Baulig  <martin@ximian.com>
29003
29004         * loader.c (method_from_memberref): Only inflate the method if
29005         it's in another klass.
29006
29007 2004-02-23  Martin Baulig  <martin@ximian.com>
29008
29009         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
29010         (mono_class_init): If we're a generic instance and an interface,
29011         compute `class->interface_id'; also create `class->interfaces'
29012         here and inflate them.
29013
29014         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
29015         `ginst->is_open'.
29016         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
29017
29018         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
29019
29020 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
29021
29022         * reflection.c (method_encode_code): Improved the error message
29023         generated by the exception.
29024
29025 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29026
29027         * icall.c: Martin did not do what he said in the ChangeLog for
29028         2004-02-18, but put back the changes for properties and events.
29029         Commenting those changes out again and adding comment to bug #54518.
29030         
29031         * process.c: removed warning.
29032
29033 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
29034
29035         * marshal.c (emit_struct_conv): Print an error message instead of
29036         asserting when a type does not have the StructLayout attribute.
29037
29038 2004-02-20  Martin Baulig  <martin@ximian.com>
29039
29040         * reflection.c (mono_type_get_object): Also use the cache for
29041         generic instances.
29042         (mono_reflection_bind_generic_parameters): Always compute
29043         `ginst->ifaces'.        
29044
29045 2004-02-20  Martin Baulig  <martin@ximian.com>
29046
29047         * class.h (MonoGenericMethod): Removed `klass'.
29048
29049         * class.c (mono_class_inflate_generic_method): Added `MonoClass
29050         *klass' argument.
29051
29052 2004-02-20  Martin Baulig  <martin@ximian.com>
29053
29054         * reflection.c (method_encode_methodspec): Actually use the
29055         uninflated signature for the memberref.
29056
29057 2004-02-20  Martin Baulig  <martin@ximian.com>
29058
29059         * class.h (MonoGenericMethod): Removed `declaring'.
29060
29061         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
29062         is NULL, compute it here.
29063
29064 2004-02-20  Martin Baulig  <martin@ximian.com>
29065
29066         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
29067
29068         * metadata.c (mono_metadata_generic_inst_hash): New method.
29069         (mono_metadata_generic_inst_equal): New method.
29070
29071         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29072         `klass->image->generic_inst_cache' cache to avoid creating
29073         duplicate MonoGenericInst's.
29074
29075         * class.c (mono_class_inflate_generic_type): Use the cache.
29076
29077 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29078
29079         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29080
29081 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29082
29083         * icall.c: added Socket.WSAIoctl icall.
29084
29085         * socket-io.[ch]: implemented
29086         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29087
29088 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29089
29090         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29091
29092 2004-02-18  Urs C Muff  <umuff@quark.com>
29093
29094         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29095         this work on PPC and other big-endian architectures.
29096
29097         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29098         fields with an underscore to make sure they're only accessed by
29099         the read32() macro.
29100
29101 2004-02-18  Martin Baulig  <martin@ximian.com>
29102
29103         * icall.c: Put the klass->refclass changes back for methods and
29104         fields, but not for properties and events.  We're currently not
29105         distinguishing between DeclaringType and ReflectedType for
29106         properties and events, that's what caused the regressions.
29107
29108 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29109
29110         * object.c:
29111         (mono_async_result_new): the handle can be NULL.
29112
29113         * threadpool.c: Use an event instead of a semaphore, don't initialize
29114         it until needed. This saves quite a few semaphores from being created
29115         when using the threadpool.
29116
29117 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29118
29119         * object.c (mono_string_is_interned_lookup): Fix interning of long
29120         strings. Fixes #54473.
29121
29122         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29123
29124         * icall.c: Revert the klass->refclass changes since they introduce
29125         regressions (bug #54518).
29126
29127 2004-02-18  Martin Baulig  <martin@ximian.com>
29128
29129         * class.c (mono_class_init): If we're a generic instance and don't
29130         come from a TypeBuilder, inflate our members here.
29131         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29132         (mono_class_create_generic): New public method.
29133         (mono_class_initialize_generic): Removed.
29134         (get_instantiation_name): Renamed to
29135         _mono_class_get_instantiation_name() and made it public.
29136
29137 2004-02-18  Martin Baulig  <martin@ximian.com>
29138
29139         * class.c (mono_class_inflate_generic_type): Clear the new
29140         instance's `nginst->klass' when inflating a generic instance.
29141         (mono_class_is_subclass_of): Added (basic) support for generic
29142         instances.
29143
29144 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29145
29146         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29147         MonoMempool to hold compiled native code.
29148
29149 2004-02-17  Martin Baulig  <martin@ximian.com>
29150
29151         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29152         `properties'.
29153
29154         * reflection.c (mono_reflection_generic_inst_initialize): Added
29155         `MonoArray *properties' argument.
29156
29157         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29158
29159 2004-02-17  Martin Baulig  <martin@ximian.com>
29160
29161         * icall.c (ves_icall_Type_GetFields): Renamed to
29162         ves_icall_Type_GetFields_internal() and added a
29163         `MonoReflectionType *rtype' argument; pass it to
29164         mono_field_get_object() to set the field's "reflected" type.
29165         (ves_icall_Type_GetConstructors): Likewise.
29166         (ves_icall_Type_GetEvents): Likewise.
29167         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29168         argument; pass it to mono_method_get_object() to set the method's
29169         "reflected" type.       
29170
29171 2004-02-17  Martin Baulig  <martin@ximian.com>
29172
29173         * class.h (MonoDynamicGenericInst): New type.
29174         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29175
29176         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29177         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29178         (ves_icall_MonoGenericInst_GetFields): New interncall.
29179
29180         * class.c (mono_class_from_generic): Don't call
29181         mono_class_initialize_generic() if this is a dynamic instance;
29182         ie. it's being created from a TypeBuilder.
29183         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29184         `class->byval_arg.type'.
29185
29186         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29187         to `inflate_method' and made static.
29188         (mono_reflection_inflate_field): Removed.
29189         (mono_reflection_generic_inst_initialize): New public method.
29190
29191         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29192         `ctors' and `fields'; added `initialized'.
29193
29194 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29195
29196         * debug-helpers.c (mono_method_full_name): Fix output for empty
29197         namespaces.
29198
29199 2004-02-12  Martin Baulig  <martin@ximian.com>
29200
29201         * class.h (MonoClassField): Added `MonoType *generic_type'.
29202
29203         * reflection.c (mono_image_get_fieldref_token): Added support for
29204         instantiated generic types.
29205         (field_encode_inflated_field): Removed.
29206         (mono_image_get_inflated_field_token): Removed.
29207         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29208
29209         * reflection.h (MonoReflectionInflatedField): Removed.
29210
29211 2004-02-12  Martin Baulig  <martin@ximian.com>
29212
29213         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29214         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29215
29216         * reflection.c (mono_image_get_methodspec_token): Take a
29217         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29218         (mono_image_create_token): Check whether we have a
29219         `method->signature->gen_method' and call
29220         mono_image_get_methodspec_token() if appropriate.
29221         (inflated_method_get_object): Removed.
29222         (mono_reflection_bind_generic_method_parameters): Return a
29223         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29224         (mono_reflection_inflate_method_or_ctor): Likewise.
29225
29226         * reflection.h (MonoReflectionInflatedMethod): Removed.
29227
29228 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29229
29230         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29231         for custom valuetype marshalling.
29232
29233         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29234
29235 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29236
29237         * icall.c: fixed WSAGetLastError_internal name.
29238
29239 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29240
29241         * threads.c (mono_thread_attach): Allow this to be called multiple
29242         times for a thread.
29243         
29244         * threads.c (build_wait_tids): Do not wait for ourselves.
29245
29246         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29247         appdomain list is empty.
29248
29249         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29250         memory returned by mono_string_builder_to_utf16, since it points into
29251         managed memory. Thanks to Bernie Solomon for noticing this.
29252
29253         * icall.c: Add AppDomainSetup icalls.
29254
29255         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29256
29257         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29258         types.
29259
29260         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29261         custom attributes to the method_aux struct. Also fix array indexes etc.
29262
29263         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29264         
29265 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29266
29267         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29268         (both static and runtime) and reduce startup time.
29269
29270 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29271
29272         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29273         AsAny marshalling conversion instead of crashing.
29274
29275         * marshal.c: Fix warnings.
29276
29277 2004-02-09  Martin Baulig  <martin@ximian.com>
29278
29279         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29280
29281         * reflection.h (MonoReflectionInflatedMethod): Removed the
29282         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29283
29284         * reflection.c (method_encode_methodspec): Removed the `method'
29285         argument; we get it from `gmethod->declaring'.
29286         (inflated_method_get_object): Removed the `declaring' argument.
29287
29288 2004-02-09  Martin Baulig  <martin@ximian.com>
29289
29290         * class.h (MonoGenericMethod): New type.
29291         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29292         `generic_method'.
29293
29294         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29295         a `MonoGenericMethod *gen_method' one.
29296
29297         * class.c (mono_class_inflate_generic_type): Take an additional
29298         `MonoGenericMethod * argument.  This is only non-NULL if we're
29299         inflating types for a generic method.   
29300         (mono_class_inflate_generic_signature): Renamed to
29301         inflate_generic_signature() and made static; take a
29302         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29303         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29304         instead of a `MonoGenericInst *' one.
29305         (mono_class_inflate_generic_method): Likewise.
29306
29307         * reflection.c (encode_generic_method_sig): Take a
29308         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29309         (method_encode_methodspec): Likewise.
29310         (inflated_method_get_object): Likewise. 
29311
29312         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29313         field with a `MonoGenericMethod *gmethod' one.  
29314
29315 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29316
29317         * class.h (mono_class_has_parent): add parens to expansion
29318         so you can ! this.
29319
29320 2004-02-08  Martin Baulig  <martin@ximian.com>
29321
29322         * image.h (MonoImage): Removed `generics_cache'.
29323
29324         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29325         instead of a `MonoType *' argument; removed the `inflate_methods'
29326         argument.  Don't inflate methods here.
29327
29328         * loader.c (find_method): If it's a generic instance, call
29329         mono_class_init() on the `sclass->generic_inst->generic_type'.
29330
29331         * metadata.c (mono_type_size): Make this work on uninitialized
29332         generic instances; call it on the `ginst->generic_type's class.
29333
29334         * reflection.c (mono_reflection_bind_generic_parameters): Call
29335         mono_class_from_generic() to create the `ginst->klass'.
29336
29337 2004-02-08  Martin Baulig  <martin@ximian.com>
29338
29339         * class.h (MonoClass): Changed type of `generic_inst' from
29340         `MonoType *' to `MonoGenericInst *'.
29341
29342 2004-02-08  Martin Baulig  <martin@ximian.com>
29343
29344         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29345         mono_type_get_object(), this is now creating a `MonoGenericInst'
29346         for MONO_TYPE_GENERICINST.
29347         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29348         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29349
29350         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29351         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29352         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29353         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29354         and reflected type.
29355
29356         * reflection.h (MonoReflectionInflatedMethod): Removed
29357         `declaring_type' and `reflected_type'.
29358
29359 2004-02-08  Martin Baulig  <martin@ximian.com>
29360
29361         * class.h (MonoGenericInst): Added `MonoType *parent' and
29362         `MonoType **ifaces'.
29363
29364         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29365         `parent' and `interfaces'.
29366
29367         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29368         `MonoType *' argument and return a `MonoType *'.
29369
29370         * icall.c
29371         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29372         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29373
29374 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29375
29376         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29377         valuetype marshalling.
29378
29379 2004-02-06  Martin Baulig  <martin@ximian.com>
29380
29381         * class.c
29382         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29383         (my_mono_class_from_generic_parameter): Likewise.
29384
29385 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29386
29387         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29388         contents of the symbol files lazily.
29389
29390         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29391
29392         * threads.h threads.c icall.c: New icalls for getting and setting the
29393         threads name.
29394
29395 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29396
29397         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29398         Raise an exception when the domain is not found.
29399
29400 2004-02-03  Martin Baulig  <martin@ximian.com>
29401
29402         * reflection.c (mono_image_get_methodspec_token): Use the
29403         uninflated signature; fixes gen-33.
29404
29405 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29406
29407         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29408         the finalizer code can use thread functionality.
29409
29410         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29411         the finalizer thread.
29412
29413         * threads.c: Make some functions more robust.
29414
29415         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29416
29417         * metadata.h: Add new marshalling conventions.
29418
29419         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29420         stringbuilder marshalling. Fixes #53700.
29421
29422         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29423
29424         * reflection.c (mono_image_get_type_info): Save declarative security
29425         info.
29426
29427         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29428         unmanaged fields as well.
29429
29430         * appdomain.c: Bump corlib version.
29431
29432 2004-02-01  Martin Baulig  <martin@ximian.com>
29433
29434         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29435         method type arguments.  
29436
29437 2004-01-30  Duncan Mak  <duncan@ximian.com>
29438
29439         * marshal.h: Add prototype for
29440         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29441         and
29442         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29443         fix the build.
29444
29445 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29446
29447         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29448         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29449
29450 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29451
29452         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29453         custom marshalling of valuetypes.
29454
29455         * marshal.c: Fix some warnings.
29456
29457 2004-01-29  Martin Baulig  <martin@ximian.com>
29458
29459         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29460         for generic method parameters.
29461
29462         * reflection.c (method_encode_methodspec): Write the uninflated
29463         signature into the methodspec table.
29464         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29465         is always the uninflated method.
29466         (reflection_methodbuilder_to_mono_method): Copy the generic
29467         parameters from the MethodBuilder into `header->gen_params'.
29468
29469 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29470
29471         * class.c (mono_class_from_generic_parameter): Fix warning.
29472
29473 2004-01-27  Martin Baulig  <martin@ximian.com>
29474
29475         * class.c (mono_class_from_generic_parameter): Don't create
29476         `klass->methods' here.  
29477
29478 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29479
29480         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29481         extension since it does not work with libraries named lib<FOO>.dll.so.
29482
29483 2004-01-25  Martin Baulig  <martin@ximian.com>
29484
29485         * class.c (mono_class_inflate_generic_type): Added support for
29486         MONO_TYPE_GENERICINST.
29487
29488         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29489         inflate methods on open constructed types.      
29490
29491 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29492
29493         * object.c: fire ProcessExit event in the root AppDomain after running
29494         Main. Fixes bug #53299.
29495
29496 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29497
29498         * socket-io.c: include the new socket-wrappers.h header.
29499         Use the wrappers instead of the unix socket functions to make the code
29500         more clear.
29501
29502 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29503
29504         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29505
29506         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29507         Fixes #22532.
29508
29509 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29510
29511         * reflection.c (mono_image_create_pefile): Handle the case when the
29512         entry point is not a MethodBuilder.
29513
29514         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29515         field to ReflectionMethod since it is not allways a builder.
29516
29517         * reflection.c (type_get_fully_qualified_name): New helper function to
29518         return the fully qualified name of a type.
29519
29520         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29521         type name for custom marshallers.
29522
29523         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29524
29525         * class.c (mono_class_setup_vtable): If a parent class already 
29526         implements an interface, use the implementing methods from that class.
29527         Fixes #53148.
29528
29529 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29530
29531         * threadpool.c: just return instead of ExitThread to allow for thread
29532         clean up earlier.
29533
29534 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29535
29536         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29537         when closing resource modules.
29538
29539         * reflection.c (mono_image_create_pefile): Handle the case when the
29540         entry point is not a MethodBuilder.
29541
29542         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29543         field to ReflectionMethod since it is not allways a builder.
29544
29545 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29546
29547         * marshal.c (mono_marshal_get_managed_wrapper): 
29548         mono_marshal_alloc takes native int so CONV_I
29549         the arg for 64bits.
29550
29551 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29552
29553         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29554         tokens in the cattr table. Fixes #53108.
29555
29556 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29557
29558         * loader.c: don't trim ".dll" before looking up in the config file.
29559         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29560
29561 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29562
29563         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29564         Return the module which contains the resource as well.
29565         (ves_icall_System_Reflection_Module_Close): New icall.
29566
29567         * appdomain.c: Bump corlib version number.
29568
29569         * image.c (mono_image_addref): New public function.
29570
29571         * assembly.c: Call mono_image_addref.
29572
29573         * reflection.c (mono_module_get_object): Increase reference count of 
29574         the image.
29575
29576         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29577         Fixes #22532.
29578
29579         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29580         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29581         proper exceptions on DllImport problems.
29582
29583 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29584
29585         * class.c, metadata.c: eliminate CSIZE macro.
29586
29587 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29588
29589         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29590         * object.h: Added async_callback field in MonoAsyncResult.
29591         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29592         * verify.c: Added async_callback in MonoAsyncResult layout.
29593
29594 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29595
29596         * reflection.c (mono_reflection_get_custom_attrs): Add support
29597         for Modules.
29598
29599 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29600
29601         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29602         marshalling.
29603         (mono_marshal_method_from_wrapper): Add null pointer check.
29604
29605 2004-01-16  Martin Baulig  <martin@ximian.com>
29606
29607         * debug-mono-symfile.h: Set version number to 36 and reflect
29608         latest symbol writer changes.
29609
29610 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29611
29612         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29613         multi-dimensional arrays.
29614         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29615         (mono_class_from_mono_type): Use bounded_array_class_get.
29616         
29617         * class.c (mono_bounded_array_class_get): New function which takes
29618         a 'bounded' bool argument to distinguish vectors from one dimensional
29619         arrays.
29620
29621         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29622         bounded_array_class_get if the array has bounds.
29623
29624         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29625         Search modules loaded using AssemblyBuilder:AddModule as well.
29626
29627 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29628
29629         * appdomain.c: increased corlib version.
29630         * filewatcher.c: removed g_print.
29631         * icall.c:
29632         (get_property_info): only allocate what is actually requested.
29633         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29634
29635 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29636
29637         * Makefile.am: added filewatcher.[ch]
29638         * filewatcher.[ch]: FileSystemWatcher runtime support.
29639         * icall.c: added new FSW icalls.
29640
29641 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29642
29643         * string-icalls.c: fix stringbuilder regression as suggested by
29644         Iain McCoy <iain@mccoy.id.au>.
29645
29646 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29647
29648         * process.c (process_read_stringtable_block): Recognize '007f' as
29649         a language neutral stringtable block.
29650
29651 2004-01-12  Patrik Torstensson
29652
29653         * object.h (MonoStringBuilder) : Changed layout to support our
29654         new stringbuilder class.
29655         * marshal.c: Change marshalling to support the new layout of 
29656         string builder.
29657         * appdomain.c: increased version number because new layout of
29658         string builder.
29659
29660 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29661
29662         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29663         assembly name as an string instead of an AssemblyName, since it is
29664         easier to extract info from it.
29665
29666         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29667         the culture subdirectories too. Fixes #52231.
29668
29669 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29670
29671         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29672         It takes 2 new parameters with an optional name for the method to look
29673         for and case ignoring info.
29674
29675         * threadpool.c: removed unused variable.
29676
29677 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29678
29679         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29680         It takes 2 new parameters with an optional name for the property to look
29681         for and case ignoring info.
29682         Fixes bug #52753.
29683
29684 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29685
29686         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29687         Fix #52451.
29688
29689 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29690
29691         * appdomain.c:
29692         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29693         Fixes bug #52630.
29694
29695 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29696
29697         * reflection.c: Add support for more than one unmanaged resource.
29698
29699         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29700         in field->def_value, as done in all other cases.
29701
29702         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29703         TypeBuilders.
29704
29705         * reflection.c (mono_reflection_create_runtime_class): Remove 
29706         errorneous assignment to klass->element_class, since it is already
29707         done in mono_reflection_setup_internal_class.
29708
29709 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29710
29711         * gc.c: added missing LeaveCriticalSection.
29712         * icall.c: indented a couple of lines.
29713         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29714         if we call EndInvoke inside a callback. Fixes bug #52601.
29715
29716 2004-01-07  Martin Baulig  <martin@ximian.com>
29717
29718         * mono-debug-debugger.h
29719         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29720
29721 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29722
29723         * appdomain.c: Use messages in NotImplementedException.
29724
29725         * exception.c (mono_get_exception_not_implemented): Now this takes
29726         a message argument.
29727
29728         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29729         exception instead of g_asserting an aborting when something is not
29730         implemented.
29731
29732         Add some inline docs.
29733
29734 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29735
29736         * reflection.h: Update after changes to object layout.
29737
29738         * reflection.c: Implement saving of unmanaged aka win32 resources.
29739
29740         * appdomain.c: Bump version number.
29741
29742         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29743         Handle missing domains gracefully.
29744
29745 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29746
29747         * file-io.c : On Windows, there are much more invalid_path_chars.
29748
29749 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29750
29751         * class.h, object.c: prepare for GetType () speedup.
29752
29753 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29754
29755         * profiler.c: workaround for --profile null reference exception on
29756           cygwin. Patch by Patrik Torstensson.
29757
29758 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29759
29760         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29761         make work for unaligned access.
29762
29763 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29764
29765         * class.c: small cleanup (class->fields [i] -> field).
29766         * image.c: check address of metadata is valid.
29767
29768 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29769
29770         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29771         search the list of loaded assemblies.
29772
29773         * reflection.c (mono_reflection_type_from_name): Use 
29774         mono_assembly_loaded instead of mono_image_loaded.
29775
29776         * reflection.c: Fix warnings.
29777
29778 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29779
29780         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29781         is dynamic. This is needed since an assembly can contain both dynamic and
29782         non-dynamic images.
29783
29784         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29785         assembly->dynamic.
29786
29787         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29788
29789         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29790         to store modules loaded using AddModule.
29791
29792         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29793         on Modules.
29794
29795         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29796
29797         * reflection.c (mono_image_fill_export_table_from_module): New function to
29798         fill out the EXPORTEDTYPES table from a module.
29799
29800         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29801         into a separate function. Also handle loaded non-dynamic modules.
29802
29803         * reflection.c (mono_image_basic_init): Fix memory allocation.
29804
29805         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29806
29807         * assembly.c (mono_assembly_load_references): Make this public.
29808
29809 2003-12-19  Martin Baulig  <martin@ximian.com>
29810
29811         * class.c (mono_class_initialize_generic): Made this static, take
29812         a `MonoGenericInst *' instead of a `MonoClass *'.
29813         (mono_class_from_generic): Call mono_class_initialize_generic()
29814         unless we're already initialized or being called from
29815         do_mono_metadata_parse_generic_inst().
29816
29817         * class.h (MonoGenericInst): Added `initialized' and
29818         `init_pending' flags.
29819
29820         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29821         `mono_class_init (gklass)' or mono_class_initialize_generic()
29822         here; set `generic_inst->init_pending' while parsing the
29823         `type_argv'.
29824
29825 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29826
29827         * locales.c: include string.h for memxxx prototypes
29828
29829 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29830
29831         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29832         constructor when accessing literal fields.
29833
29834 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29835
29836         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29837
29838         * reflection.c (assembly_add_resource_manifest): New function to fill
29839         the MANIFESTRESOURCE table.
29840
29841         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29842
29843         * reflection.h: Update to changes in class layout.
29844
29845         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29846         Reenable call to mono_runtime_is_shutting_down ().
29847
29848         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29849         determine if the runtime is shutting down.
29850
29851 2003-12-16  Jackson Harper <jackson@ximian.com>
29852
29853         * icall.c: comment out call to mono_runtime_is_shutting_down to
29854         fix build.
29855         
29856 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29857
29858         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29859         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29860
29861 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29862
29863         * reflection.c: move definition of swap_with_size
29864         to before its first call
29865
29866 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29867
29868         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29869
29870         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29871         icall.
29872
29873         * object.c: Fix warnings.
29874
29875         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29876         members if FlattenHierarchy is set.
29877
29878         * reflection.c (mono_image_add_decl_security): New function to emit
29879         declarative security.
29880
29881         * reflection.h reflection.c: Add support for declarative security.
29882
29883         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29884         
29885 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29886
29887         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29888         
29889         * appdomain.c verify.c: Moved corlib version checking into its own
29890         function in appdomain.c since it needs to create vtables etc.
29891
29892 2003-12-13  Patrik Torstensson <p@rxc.se>
29893
29894         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29895         instead of unwrapped server.
29896
29897 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29898
29899         * verify.c (check_corlib): Fix field index.
29900
29901 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29902
29903         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29904         GetGacPath icall.
29905
29906 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29907
29908         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29909         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29910         cope with sizeof(size_t) != sizeof(guint32).
29911
29912 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29913
29914         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29915         in case of failure.
29916
29917 2003-12-10  Mark Crichton <crichton@gimp.org>
29918
29919         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29920         in managed code.
29921
29922         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29923
29924 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29925
29926         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29927         marked as deleted.
29928
29929 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29930
29931         * verify.c (check_corlib): Handle the case when the version field is 
29932         initialized by a static constructor.
29933
29934 2003-12-08  Patrik Torstensson  <p@rxc.se>
29935
29936     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29937
29938 2003-12-08  Martin Baulig  <martin@ximian.com>
29939
29940         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29941         a MonoReflectionGenericParameter, also take the parameter index
29942         and name as arguments.
29943         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29944         (ves_icall_MonoGenericParam_initialize): New interncall.
29945         (ves_icall_Type_make_byref_type): New interncall.
29946
29947         * reflection.h (MonoReflectionGenericParam): Derive from
29948         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29949         `index' fields.
29950
29951         * reflection.c (mono_reflection_define_generic_parameter): Create
29952         and return a new MonoReflectionGenericParam; don't initialize the
29953         constraints here.
29954         (mono_reflection_initialize_generic_parameter): New public method;
29955         initializes the constraints and creates the `param->pklass'.
29956
29957 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29958
29959         * reflection.h reflection.c: Use the new fields 'num_types', 
29960         'num_fields' and 'num_methods' to track the number of types etc.
29961
29962         * verify.c (check_corlib): Check corlib version number.
29963
29964 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29965
29966         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29967         function works on all methods.
29968
29969 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29970
29971         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29972         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29973         the custom_type_info flag of the transparent proxy.
29974         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29975         objects that supports IRemotingTypeInfo.
29976         * object.h: Added custom_type_info field in transparent proxy.
29977
29978 2003-12-06  Martin Baulig  <martin@ximian.com>
29979
29980         * class.c (mono_class_create_from_generic): Removed.
29981         (mono_class_from_generic): Check `ginst->klass' before doing
29982         anything else.  This is important to fully support "recursive"
29983         generic types.
29984
29985         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29986         empty `generic_inst->klass' before doing anything else.
29987
29988 2003-12-06  Dick Porter  <dick@ximian.com>
29989
29990         * verify.c: 
29991         * object.h:
29992         * icall.c:
29993         * locales.c: Use C structs to access class fields.  Don't do a
29994         conversion between MonoString and UChar because both are
29995         platform-endian UTF-16.  Compare now takes startindex and count
29996         parameters.  Add a char overload for IndexOf.  Speed up the
29997         invariant string IndexOf.
29998
29999 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
30000
30001         * Makefile.am (monosn_LDADD): Fix parallel build.
30002
30003 2003-12-04  Martin Baulig  <martin@ximian.com>
30004
30005         * icall.c
30006         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30007         (ves_icall_Type_make_array_type): New interncall.       
30008
30009 2003-12-04  Martin Baulig  <martin@ximian.com>
30010
30011         * locales.c: also change it in the !HAVE_ICU case.
30012
30013 2003-12-04  Dick Porter  <dick@ximian.com>
30014
30015         * icall.c:
30016         * locales.c: construct_compareinfo is now in CompareInfo, not
30017         CultureInfo.
30018
30019 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
30020
30021         * image.c (mono_image_load_file_for_image): Cache loaded images in the
30022         image->files array.
30023
30024         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
30025         table as well.
30026
30027         * assembly.c (mono_assembly_load_references): Only load references
30028         once.
30029
30030         * class.c (mono_class_from_name): Avoid linear search of the 
30031         EXPORTEDTYPE table.
30032
30033         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
30034
30035 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
30036
30037         * image.h (MonoImage): Add 'field_cache' field.
30038
30039         * loader.c (mono_field_from_token): Cache field lookups.
30040         
30041         * reflection.c (mono_module_get_object): Fix name property.
30042
30043         * icall.c (ves_icall_get_enum_info): Update after changes to 
30044         mono_metadata_get_constant_index ().
30045
30046         * icall.c: Get rid of get_type_info icall, use a separate icall for
30047         each type property to avoid needless memory allocations. Fixes #51514.
30048
30049         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
30050         to avoid needless binary searches.
30051
30052         * class.c (class_compute_field_layout): Move the initialization of
30053         field->def_value to mono_class_vtable ().
30054
30055         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
30056         non-corlib types.
30057
30058         * object.c (mono_object_allocate): Make it inline.
30059
30060         * object.c (mono_object_allocate_spec): Make it inline.
30061         
30062 2003-12-02  Dick Porter  <dick@ximian.com>
30063
30064         * locales.c (create_NumberFormat): NumberFormatInfo construction.
30065         Patch by Mohammad DAMT (mdamt@cdl2000.com).
30066
30067 2003-12-01  Dick Porter  <dick@ximian.com>
30068
30069         * threads.c: Fix signature and call in CreateMutex and
30070         CreateEvent.
30071
30072 2003-12-01  Dick Porter  <dick@ximian.com>
30073
30074         * icall.c: 
30075         * locales.c: Implement string compares and searching
30076
30077         * object.h: Add extra Thread field
30078
30079 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30080
30081         * reflection.c (fixup_method): Add support for MonoCMethod.
30082
30083 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30084
30085         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30086
30087         * reflection.c (assembly_name_to_aname): Allow extra characters in
30088         assembly names. Fixes #51468.
30089
30090 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30091
30092         * exception.c (mono_exception_from_name_domain): New helper function.
30093
30094         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30095         exception object in the correct domain.
30096
30097         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30098         formatting + make a copy a the input data.
30099
30100         * loader.c (mono_get_method_from_token): Methods which contain
30101         native code do not have entries in the ImplMap.
30102
30103         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30104         Thanks to Gonzalo for spotting this.
30105         
30106         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30107         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30108
30109         * assembly.h (mono_assembly_load_from): Split the second part of 
30110         assembly loading into a new public function.
30111
30112         * exception.h (mono_get_exception_bad_image_format): New function.
30113
30114 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30115
30116         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30117         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30118         
30119         * icall.c: Add new icall for creating dynamic methods.
30120
30121         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30122
30123         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30124
30125         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30126         create a dynamic method.
30127
30128         * reflection.c (resolve_object): New helper function.
30129
30130         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30131         which manipulate it so they can also work on dynamic methods.
30132
30133         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30134         creating the MonoReflectionMethodAux structure if it is not needed.
30135         
30136         * reflection.h verify.c: Update after changes to object layout.
30137
30138         * reflection.c (method_builder_encode_signature): Fix compilation on
30139         gcc 2.95.x.
30140
30141 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30142
30143         * appdomain.h: Added support for context static fields. Added static_data
30144           field to MonoAppContext and renamed thread_static_fields to a more
30145           generic special_static_fields in MonoAppDomain, since it can now contain
30146           context static fields.
30147         * domain.c: Updated hashtable name.
30148         * object.c: Replaced field_is_thread_static() for a more generic
30149           field_is_special_static() which also checks for context static attribute.
30150           In mono_class_vtable(), added support for static context fields.
30151         * threads.c: Changed methods that manage thread static fields to more
30152           generic methods so they can be reused both for thread and context static
30153           data.
30154         * threads.h: Declared some new methods.
30155
30156 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30157
30158         * reflection.h: Update after changes to the managed types.
30159
30160         * reflection.c (encode_custom_modifiers): New helper function.
30161
30162         * reflection.c (method_encode_signature): Emit custom modifiers.
30163
30164         * reflection.c (field_encode_signature): Emit custom modifiers.
30165
30166 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30167
30168         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30169
30170         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30171         implementation.
30172
30173         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30174         icall.
30175
30176         * object.c (mono_field_get_value_object): New function.
30177
30178         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30179         specific.
30180
30181 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30182
30183         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30184         return a preallocated out-of-memory exception instance.
30185
30186         * object.c (out_of_memory): Use the new function.
30187
30188         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30189         flag is before the custom modifiers. Fixes #49802.
30190
30191 2003-11-16  Martin Baulig  <martin@ximian.com>
30192
30193         * class.c (mono_class_is_open_constructed_type): Implemented the
30194         MONO_TYPE_GENERICINST case.
30195
30196 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30197
30198         * assembly.c (mono_assembly_fill_assembly_name): New function to
30199         fill out the MonoAssemblyName structure.
30200         (mono_assembly_open): Use the new function.
30201
30202         * icall.c (fill_reflection_assembly_name): New helper function.
30203
30204         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30205         new function.
30206
30207         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30208
30209 2003-11-15  Martin Baulig  <martin@ximian.com>
30210
30211         * class.c (mono_class_is_open_constructed_type): New public
30212         function; checks whether a type is an open constructed type,
30213         ie. whether it still contains type parameters.
30214         (mono_class_inflate_generic_type): If we're a type parameter and
30215         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30216         type.
30217
30218         * class.h (MonoGenericInst): Added `guint32 is_open'.
30219
30220         * loader.c (method_from_methodspec): Check whether we're an open
30221         or closed constructed type and set `ginst->is_open'.
30222
30223         * reflection.c (mono_reflection_bind_generic_parameters): Check
30224         whether we're an open or closed constructed type and set
30225         `ginst->is_open'.
30226         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30227         from open constructed types.
30228
30229 2003-11-15  Martin Baulig  <martin@ximian.com>
30230
30231         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30232         a generic instance (instead of a generic type declaration) with
30233         unbound generic parameters, bind them to our actual types.
30234
30235 2003-11-14  Martin Baulig  <martin@ximian.com>
30236
30237         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30238
30239         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30240         an interface type, populate `res->interfaces' with instantiated
30241         versions of all the interfaces we inherit.
30242
30243 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30244
30245         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30246         when MONO_PATH is set but doesn't contain the install dir.
30247
30248 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30249
30250         * icall.c:
30251         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30252         it's also implemented in base classes. Fixes bug #50927.
30253
30254 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30255
30256         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30257         if this method is called from a finalizer. Fixes #50913.
30258
30259 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30260
30261         * threads.c: Implement VolatileRead/VolatileWrite
30262
30263         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30264
30265 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30266
30267         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30268         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30269         2.95.3.
30270
30271         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30272         from Peter Ross (pro@missioncriticalit.com).
30273         
30274 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30275
30276         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30277
30278 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30279
30280         * assembly.c (mono_assembly_load_references): Disable check because it
30281         triggers on older corlibs which lots of people have.
30282
30283 2003-11-12  Jackson Harper  <jackson@ximian.com>
30284
30285         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30286         load corlib.dll if mscorlib.dll is not found.
30287         * assembly.h: Remove corlib name define.
30288         * class.c:
30289         * domain.c:
30290         * image.c: Change corlib name to mscorlib.
30291         
30292 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30293
30294         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30295
30296 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30297
30298         * appdomain.h: Added loader_optimization here to sync with the C#
30299         code, and add disallow_binding_redirects field.
30300
30301 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30302
30303         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30304
30305         * reflection.c (mono_image_build_metadata): Fix crash on modules
30306         with no types.
30307
30308         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30309
30310         * icall.c (ves_icall_get_method_info): Return callingConvention as
30311         well.
30312
30313         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30314         namespaces from the EXPORTEDTYPE table as well.
30315
30316         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30317         from all modules inside the assembly.
30318         
30319 2003-11-11  Martin Baulig  <martin@ximian.com>
30320
30321         * reflection.c (mono_reflection_bind_generic_parameters): Make
30322         this work for interfaces.
30323
30324 2003-11-11  Martin Baulig  <martin@ximian.com>
30325
30326         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30327
30328 2003-11-11  Martin Baulig  <martin@ximian.com>
30329
30330         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30331         "MonoInflatedMethod" and "MonoInflatedCtor".
30332
30333 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30334
30335         * reflection.c (resolution_scope_from_image): Use the assembly table
30336         from the manifest module, since other modules don't have it.
30337
30338         * debug-helpers.c (mono_type_full_name): New helper function.
30339
30340         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30341
30342         * image.c (mono_image_load_file_for_image): New public function which
30343         is a replacement for the load_file_for_image in class.c.
30344
30345         * assembly.c (mono_assembly_load_module): A wrapper for the function
30346         above which does assembly association and reference loading too.
30347
30348         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30349
30350 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30351
30352         * appdomain.c: not all of the attributes for the full assembly name
30353         are required and the order doesn't matter. Fixes bug #50787.
30354
30355 2003-11-10  Dick Porter  <dick@ximian.com>
30356
30357         * locales.c: Use platform-endian UTF16
30358
30359 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30360
30361         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30362         
30363 2003-11-10  Martin Baulig  <martin@ximian.com>
30364
30365         * metadata.c
30366         (mono_metadata_load_generic_params): Make this actually work.
30367
30368         * reflection.c (mono_reflection_bind_generic_parameters): If our
30369         parent is a generic instance, pass all the `types' to it, no
30370         matter whether it has the same number of type parameters or not.
30371
30372 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30373
30374         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30375
30376         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30377         assignment code to this function so it gets called recursively for all
30378         modules.
30379
30380         * image.c (load_modules): Remove the assembly assignment since it is
30381         now done by mono_assembly_load_references.
30382         
30383         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30384         Add 'module' argument.
30385         (mono_module_get_types): New helper function.
30386         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30387
30388 2003-11-08  Martin Baulig  <martin@ximian.com>
30389
30390         * class.c (mono_class_inflate_generic_method): Interface method
30391         don't have a header.
30392
30393         * reflection.c (mono_image_get_methodspec_token): Take an
30394         additional `MonoGenericInst *' argument instead of reading it from
30395         the header; this is necessary to support interfaces.
30396         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30397         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30398         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30399         argument.
30400
30401         * reflection.h (MonoReflectionInflatedMethod): Added
30402         `MonoGenericInst *ginst'.
30403
30404 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30405
30406         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30407
30408 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30409
30410         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30411
30412 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30413
30414         * reflection.c 
30415         (reflection_methodbuilder_from_method_builder):
30416         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30417         initialize a ReflectionMethodBuilder structure.
30418         (mono_image_get_methodbuilder_token):
30419         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30420         tokens which point to types in another module inside the same assembly.
30421
30422         * reflection.c: Use the new helper functions.
30423         
30424         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30425
30426         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30427         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30428
30429         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30430         neccesary.
30431
30432         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30433         current module. Emit the manifest only for the main module.
30434
30435         * reflection.c (mono_image_create_token): Add assertion when a 
30436         memberref needs to be created.
30437
30438         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30439
30440         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30441         larger buffer for the custom attribute blob. Fixes #50637.
30442         
30443 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30444
30445         * threadpool.c: notify listener on async processing handles after
30446         invoking the async callback. Thanks to Zoltan.
30447
30448 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30449
30450         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30451         avoid code duplication.
30452
30453         * reflection.h (MonoDynamicImage): New type which is currently unused,
30454         but will be used through the ref.emit code in place of 
30455         MonoDynamicAssembly.
30456
30457         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30458         object layout.
30459
30460         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30461         a MonoDynamicImage instead of just a MonoImage.
30462         
30463         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30464         icalls to ModuleBuilder but keep their semantics, so they will work
30465         with moduleb->assemblyb. This will change later.
30466         
30467 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30468
30469         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30470         object layout.
30471
30472         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30473         main module, since it is now done by the managed code.
30474
30475 2003-11-03  Martin Baulig  <martin@ximian.com>
30476
30477         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30478         `ginst->klass' here.
30479         (method_encode_methodspec): Don't use the `ginst->generic_method's
30480         klass if it's a generic instance, use `ginst->klass' in this case.
30481
30482 2003-11-03  Martin Baulig  <martin@ximian.com>
30483
30484         * reflection.c (mono_image_get_generic_method_param_info):
30485         Removed, use mono_image_get_generic_param_info() instead.
30486         (mono_image_get_type_info): Write the GenericParam table before
30487         the Method table.  This is neccessary because in the GenericParam
30488         table, type parameters of the class (ie. '!0' etc.) must come
30489         before the ones from its generic methods (ie. '!!0' etc).
30490
30491 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30492
30493         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30494
30495 2003-11-02  Martin Baulig  <martin@ximian.com>
30496
30497         * reflection.c (create_generic_typespec): Take a
30498         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30499         the generic parameters from it.
30500
30501 2003-11-02  Martin Baulig  <martin@ximian.com>
30502
30503         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30504         instead of a `MonoClassField *' since we just need the type.
30505         (create_generic_typespec): New static function.  Creates a
30506         TypeSpec token for a generic type declaration.
30507         (mono_image_get_generic_field_token): New static function.
30508         (mono_image_create_token): If we're a FieldBuilder in a generic
30509         type declaration, call mono_image_get_generic_field_token() to get
30510         the token.
30511
30512 2003-11-02  Martin Baulig  <martin@ximian.com>
30513
30514         * reflection.h
30515         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30516         `MonoReflectionGenericInst *declaring_type' and
30517         `MonoReflectionGenericInst *reflected_type' fields.
30518
30519         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30520         `MonoReflectionGenericInst *declaring_type' and a
30521         `MonoReflectionGenericInst *reflected_type' argument instead of a
30522         single `MonoReflectionGenericInst *type' one.  Set
30523         `res->declaring_type' and `res->reflected_type' from them.
30524         (mono_reflection_inflate_field): Likewise.      
30525
30526 2003-11-02  Martin Baulig  <martin@ximian.com>
30527
30528         * class.c (mono_class_setup_vtable): Don't store generic methods
30529         in the vtable.  
30530
30531 2003-11-02  Martin Baulig  <martin@ximian.com>
30532
30533         * reflection.h (MonoReflectionGenericInst): Added
30534         `MonoReflectionType *declaring_type'.
30535
30536         * reflection.c (mono_reflection_bind_generic_parameters): Use
30537         `if (tb->parent)' instead of `klass->parent'.
30538
30539 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30540
30541         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30542         with an empty ASSEMBLY table.
30543
30544         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30545         variable in the inner and outer loops.
30546
30547 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30548
30549         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30550         argument.
30551
30552         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30553         
30554         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30555         icalls. Instead, do everything in managed code. This is needed since
30556         it is hard to restore the original domain etc. in unmanaged code in the
30557         presence of undeniable exceptions.
30558
30559         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30560         New icalls to push and pop appdomain refs.
30561
30562 2003-10-31  Martin Baulig  <martin@ximian.com>
30563
30564         * class.c (inflate_generic_type): Renamed to
30565         mono_class_inflate_generic_type() and made it public.
30566
30567         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30568         New interncall.
30569
30570         * loader.c (mono_field_from_memberref): Also set the retklass for
30571         typespecs.
30572
30573         * fielder.c (mono_image_get_inflated_field_token): New static
30574         method; creates a metadata token for an inflated field.
30575         (mono_image_create_token, fixup_method): Added support for
30576         "MonoInflatedField".
30577         (fieldbuilder_to_mono_class_field): New static function.
30578         (mono_reflection_inflate_field): New public function.
30579
30580         * reflection.h
30581         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30582         (MonoReflectionInflatedField): New typedef.     
30583
30584 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30585
30586         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30587         for Solaris and other platforms without s6_addr16
30588
30589 2003-10-30  Martin Baulig  <martin@ximian.com>
30590
30591         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30592         argument instead of two.
30593         (mono_class_inflate_generic_signature): Likewise.
30594         (inflate_generic_header): Likewise.
30595         (mono_class_inflate_generic_method): Likewise.  In addition, if
30596         `ginst->klass' is set, it becomes the new `method->klass'.
30597
30598         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30599         field.
30600
30601         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30602         first byte. [FIXME]
30603         (method_encode_methodspec): If we have generic parameters, create
30604         a MethodSpec instead of a MethodRef.
30605         (fixup_method): Added support for "MonoInflatedMethod" and
30606         "MonoInflatedCtor".
30607         (mono_image_create_token): Added support for "MonoInflatedMethod"
30608         and "MonoInflatedCtor".
30609         (inflated_method_get_object): New static function; returns a
30610         managed "System.Reflection.MonoInflatedMethod" object.
30611         (mono_reflection_bind_generic_method_parameters): Return a
30612         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30613         (mono_reflection_inflate_method_or_ctor): Likewise.
30614         (mono_image_get_generic_method_param_info): Initialize unused
30615         fields to zero.
30616         (mono_image_get_generic_param_info): Likewise.
30617
30618         * reflection.h (MonoReflectionInflatedMethod): New public
30619         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30620         "S.R.MonoInflatedCtor" classes.
30621
30622         * loader.c (method_from_memberref): If we're a TypeSpec and it
30623         resolves to a generic instance, inflate the method.
30624
30625 2003-10-28  Dick Porter  <dick@ximian.com>
30626
30627         * object.c (mono_runtime_run_main): Convert command-line arguments
30628         into utf8, falling back to the user's locale encoding to do so.
30629
30630 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30631
30632         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30633         at this time.
30634
30635         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30636
30637         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30638         up icalls at method definition time. Partially fixes #33569.
30639
30640 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30641
30642         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30643         marshalling of arrays. Fixes #50116.
30644
30645         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30646
30647         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30648         points to a vtable in the dying appdomain.
30649
30650         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30651         listeners into unmanaged code inside the lock.
30652
30653         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30654         domains and add some comments.
30655
30656 2003-10-25  Martin Baulig  <martin@ximian.com>
30657
30658         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30659
30660         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30661
30662         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30663         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30664         currently parsing.  Create the generic class and store it in
30665         `generic_inst->klass' before parsing the type arguments.  This is
30666         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30667         for an example.
30668         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30669         to support recursive typespec entries.
30670
30671         * class.c (mono_class_setup_parent): If our parent is a generic
30672         instance, we may get called before it has its name set.
30673         (mono_class_from_generic): Splitted into
30674         mono_class_create_from_generic() and mono_class_initialize_generic().
30675
30676 2003-10-25  Martin Baulig  <martin@ximian.com>
30677
30678         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30679         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30680         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30681         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30682
30683         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30684         (create_typespec): Likewise.
30685         (mono_reflection_bind_generic_parameters): Return a
30686         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30687         (mono_reflection_inflate_method_or_ctor): New public function.
30688
30689         * reflection.h (MonoReflectionGenericInst): New typedef.        
30690
30691 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30692
30693         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30694         inside the domain lock. Fixes #49993.
30695         
30696         * object.c (mono_class_vtable): When typed allocation is used, 
30697         allocate vtables in the GC heap instead of in the mempool, since the
30698         vtables contain GC descriptors which are used by the collector even
30699         after the domain owning the mempool is unloaded.
30700
30701         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30702
30703         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30704         reflect what it does. Also invalidate mempools instead of freeing
30705         them if a define is set.
30706
30707         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30708         of the appdomain.
30709         
30710         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30711         hold the finalizable objects in this domain.
30712
30713         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30714         appdomain.
30715
30716         * appdomain.c (mono_domain_set): New function to set the current
30717         appdomain, but only if it is not being unloaded.
30718
30719         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30720         appdomain which is being unloaded.
30721         
30722         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30723         unloading of the root appdomain.
30724
30725         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30726         icall to execute a method in another appdomain. Intended as a 
30727         replacement for InternalSetDomain, which can confuse the code 
30728         generation in the JIT.
30729
30730         * appdomain.c (mono_domain_is_unloading): New function to determine
30731         whenever an appdomain is unloading.
30732
30733         * appdomain.c (mono_domain_unload): New function to correctly unload
30734         an appdomain.
30735
30736         * assembly.c (mono_assembly_load_references): Check that an assembly
30737         does not references itself.
30738
30739         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30740         domain manually, it asks the finalizer thread to do it, then waits for
30741         the result. Also added a timeout.
30742
30743         * icall.c: Register the new icalls.
30744
30745         * threads.h threads.c: Export the mono_gc_stop_world and 
30746         mono_gc_start_world functions.
30747         
30748         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30749         function to fill out the mempool with 0x2a.
30750
30751 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30752
30753         * reflection.h (MonoReflectionMethodAux): New structure to store
30754         information which is rarely used, thus is not in the MonoMethod
30755         structure.
30756
30757         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30758         store the aux info.
30759
30760         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30761         and marshalling info into the aux structure.
30762
30763         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30764         from the aux structure.
30765
30766         * loader.c (mono_method_get_param_names): Retrieve the param names from
30767         the aux structure.
30768         
30769 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30770
30771         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30772         warning.
30773
30774 2003-10-21  Dick Porter  <dick@ximian.com>
30775
30776         * socket-io.c
30777         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30778         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30779
30780 2003-10-21  Martin Baulig  <martin@ximian.com>
30781
30782         * reflection.c (mono_reflection_bind_generic_parameters):
30783         `klass->parent' is NULL for interfaces.
30784
30785 2003-10-21  Martin Baulig  <martin@ximian.com>
30786
30787         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30788
30789 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30790
30791         * exception.c (mono_exception_from_name_msg): New helper function for
30792         creating exceptions and initializing their message field.
30793
30794         * exception.c: Simplify functions using the new helper.
30795
30796         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30797         New function.
30798
30799         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30800         mono_raise_exception, since otherwise gcc doesn't generate the function
30801         epilog for raise_exception, confusing the stack unwinding in the JIT.
30802         Fixes #45043.
30803
30804         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30805         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30806         Fixes #49499.
30807
30808 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30809
30810         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30811         utf8.
30812
30813 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30814
30815         * icall.c: Removed GetUninitializedObject method because
30816           AllocateUninitializedClassInstance does the same.
30817
30818 2003-10-18  Martin Baulig  <martin@ximian.com>
30819
30820         * class.c (inflate_generic_signature): Renamed to
30821         mono_class_inflate_generic_signature() and made it public.
30822         (my_mono_class_from_generic_parameter): New static function; if we
30823         don't already have the generic parameter's MonoClass, create a
30824         very simple one which is just used internally in the runtime and
30825         not passed back to managed code.
30826
30827         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30828
30829         * metadata.h (MonoMethodSignature): Moved the
30830         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30831         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30832
30833         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30834         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30835         interncall on the MonoMethod class, not on MethodInfo.
30836         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30837         calling mono_reflection_bind_generic_method_parameters() directly.
30838
30839         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30840         return the already computed `method->signature'.
30841         (method_from_methodspec): New static function to load a method
30842         from a MethodSpec entry.
30843         (mono_get_method_from_token): Call the new method_from_methodspec()
30844         for MethodSpec tokens.  
30845         (mono_get_method_from_token): If we're a generic method, load the
30846         type parameters.
30847
30848         * reflection.c (mono_image_get_memberref_token): Allow
30849         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30850         table.
30851         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30852         (mono_image_create_token): First check whether it's a generic
30853         method (so we'd need to create a MethodSpec), then do the other
30854         two alternatives.
30855         (mono_reflection_bind_generic_method_parameters): Return a
30856         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30857         called directly from the interncall.
30858
30859 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30860
30861         * reflection.c (load_public_key): Move loading of the public key
30862         into managed code.
30863
30864         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30865
30866         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30867         fields.
30868
30869         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30870         culture, hash_alg and public_key. Fixes #49555.
30871
30872 2003-10-17  Martin Baulig  <martin@ximian.com>
30873
30874         * class.h (MonoGenericInst): Moved this declaration here and added
30875         `MonoMethod *generic_method'.
30876
30877         * icall.c
30878         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30879         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30880
30881         * metadata.c (mono_metadata_type_equal): Two types of
30882         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30883         index; ie. don't compare the address of the `MonoGenericParam'
30884         structure.
30885         (mono_metadata_load_generic_params): Removed the `MonoMethod
30886         *method' argument.
30887
30888         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30889         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30890
30891         * reflection.c (method_encode_signature): Encode the number of
30892         generic parameters.
30893         (encode_generic_method_sig): New static function.
30894         (method_encode_methodspec): New static function; creates an entry
30895         in the MethodSpec table for a generic method.
30896         (mono_image_get_methodspec_token): New static function.
30897         (mono_image_create_token): Call mono_image_get_methodspec_token()
30898         for generic methods.
30899         (mono_reflection_bind_generic_method_parameters): New public
30900         function.  Instantiates a generic method.
30901
30902 2003-10-16  Martin Baulig  <martin@ximian.com>
30903
30904         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30905         *gen_params' here from MonoMethodHeader.
30906
30907         * metadata.c (mono_metadata_parse_method_signature): If we have
30908         generic parameters, initialize `method->gen_params' and then set
30909         the correct `type->data.generic_param' in all the parameters.
30910
30911 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30912
30913         * threads.c (mono_threads_get_default_stacksize): New function to 
30914         return the default stacksize.
30915
30916         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30917         termination of the finalizer thread, since the previous method had
30918         race conditions. Fixes #49628.
30919
30920         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30921         as for the other managed threads.
30922
30923 2003-10-16  Martin Baulig  <martin@ximian.com>
30924
30925         * class.c (inflate_generic_signature): Copy `generic_param_count'
30926         and `gen_params'.
30927
30928         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30929         New interncall.
30930
30931         * metadata.c (mono_metadata_parse_method_signature): Actually set
30932         the `method->generic_param_count' here.
30933         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30934
30935 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30936
30937         * object.h: Add a new field to TypedRef to simplify the implementation
30938         of the REFANY opcodes in the JIT.
30939
30940         * icall.c: Make use of the new field.
30941
30942         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30943         dynamically.
30944
30945 2003-10-15  Martin Baulig  <martin@ximian.com>
30946
30947         * class.c (mono_class_from_gen_param): Renamed to
30948         mono_class_from_generic_parameter() and moved most of the
30949         functionality from mono_reflection_define_generic_parameter()
30950         here; ie. we create a "real" class here.
30951         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30952         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30953         previously been called.
30954
30955         * class.h (MonoGenericParam): Moved the declaration of this struct
30956         here from metadata.h and added `MonoMethod *method'.
30957
30958         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30959         interncall.
30960
30961         * loader.c (mono_get_method_from_token): If we have any generic
30962         parameters, call mono_metadata_load_generic_params() to read them
30963         from the MONO_TABLE_GENERICPAR.
30964
30965         * metadata.c (mono_metadata_load_generic_params): Added
30966         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30967
30968         * metadata.h (MonoMethodSignature): Replaced
30969         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30970         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30971
30972         * reflection.c (mono_reflection_define_generic_parameter): Moved
30973         most of the functionality into the new
30974         mono_class_from_generic_parameter(); set the `method' field if
30975         we're a method parameter.       
30976
30977 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30978
30979         * marshal.c (emit_struct_conv): if native size is 0
30980         emit no code.
30981
30982 2003-10-14  Martin Baulig  <martin@ximian.com>
30983
30984         * icall.c: The generics API has changed in the spec since it was
30985         added to System.Type; these modifications make it match the spec
30986         again.
30987         (ves_icall_Type_GetGenericParameters): Renamed to
30988         `ves_icall_Type_GetGenericArguments'.
30989         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30990         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30991         `ves_icall_MonoType_get_HasGenericArguments'.
30992         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30993         `ves_icall_MonoType_get_IsGenericParameter'.
30994         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30995         this is no interncall anymore.
30996         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30997         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30998
30999 2003-10-14  Martin Baulig  <martin@ximian.com>
31000
31001         * reflection.c (mono_reflection_bind_generic_parameters): Also
31002         inflate generic methods if we're reading the class from IL.
31003
31004 2003-10-13  Martin Baulig  <martin@ximian.com>
31005
31006         * reflection.c (mono_reflection_define_generic_parameter): This
31007         method isn't called directly from the icall anymore; take a
31008         `MonoReflectionAssemblyBuilder *' so we can use this for type and
31009         method generic parameters.
31010         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
31011         (method_builder_encode_signature): Encode generic parameters.
31012         (mono_image_get_method_info): Write generic params to the
31013         MONO_TABLE_GENERICPARAM table.
31014
31015         * reflection.h (MonoReflectionMethodBuilder): Added
31016         `MonoArray *generic_params'.
31017
31018         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
31019
31020         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
31021         wrapper for mono_reflection_define_generic_parameter().
31022         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
31023
31024 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
31025
31026         * marshal.h: Add missing function to fix build.
31027
31028         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
31029         the SetLastError pinvoke attribute.
31030
31031         * marshal.c (mono_marshal_set_last_error): New helper function called
31032         by the generated code.
31033         
31034         * marshal.c (mono_mb_emit_branch): New helper function.
31035
31036         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
31037
31038         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31039         classes as parameters and return values of delegates. Fixes #29256. 
31040
31041 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
31042
31043         * locales.c: use gint32 in non HAVE_ICU case
31044
31045 2003-10-11  Martin Baulig  <martin@ximian.com>
31046
31047         * mono-debug.c (mono_debug_add_method): Added a workaround for
31048         bug #48591.
31049
31050 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
31051
31052         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
31053         delegates passed to native code must use the STDCALL calling 
31054         convention. Fixes #35987.
31055
31056 2003-10-10  Martin Baulig  <martin@ximian.com>
31057
31058         * class.c (inflate_generic_type): If we're inflating for a generic
31059         type instance (and not for a generic method), return
31060         MONO_TYPE_MVAR unchanged.
31061
31062 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31063
31064         * string-icalls.c: Join ignores null strings in the source array.
31065         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
31066         * threads.c: GetAvailableTheads is slightly more accurate.
31067
31068 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31069
31070         * threads.h threads.c : add mono_threads_set_default_stacksize
31071         and pass default to CreateThread calls.
31072
31073 2003-10-09  Dick Porter  <dick@ximian.com>
31074
31075         * icall.c:
31076         * locales.h:
31077         * locales.c: Internal calls for constructing CultureInfo and
31078         related objects from libicu (if its available.)
31079
31080 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31081
31082         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31083
31084 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31085
31086         * threadpool.c: added an argument to async_invoke_thread that is the
31087         item to process, pass the MonoAsyncResult to the thread start function
31088         when creating a new thread. This way we don't need to acquire any lock
31089         when we're creating a new thread. Readded a semaphore for faster
31090         response times (instead of that Sleep i added).
31091
31092 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31093
31094         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31095         get daylight change dates better on Windows, fix handling
31096         of platforms without tm_gmtoff.
31097
31098 2003-10-06  Martin Baulig  <martin@ximian.com>
31099
31100         * class.c (inflate_generic_method): Renamed to
31101         mono_class_inflate_generic_method() and made public.
31102         (mono_class_init): Don't inflate the generic methods here.
31103         (mono_class_from_generic): Added `gboolean inflate_methods'
31104         argument.  Inflate the methods here.
31105
31106         * loader.c (mono_method_get_param_names): Ignore instances of
31107         generic types for the moment.
31108
31109         * reflection.c (fixup_method): Added support for inflated methods.
31110         (mono_image_create_token): Use mono_image_get_methodref_token()
31111         for inflated methods.
31112         (mono_custom_attrs_from_param): Ignore instances of generic types
31113         for the moment.
31114         (mono_reflection_bind_generic_parameters): New public function.
31115         Moved all the functionality from
31116         ves_icall_Type_BindGenericParameters() here and added support for
31117         dynamic types.
31118         (mono_reflection_define_generic_parameter): Initialize
31119         `klass->methods' here.
31120
31121         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31122         functionality into mono_reflection_define_generic_parameter().
31123         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31124         TypeBuilder, return that TypeBuilder.
31125
31126 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31127
31128         * appdomain.c: removed mono_delegate_semaphore.
31129
31130         * threadpool.c:
31131         (mono_thread_pool_add): moved hash table creation inside and the thread 
31132         creation outside of the critical region.
31133         (mono_thread_pool_finish): removed obsolete code.
31134         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31135         continue or exit the thread depending on the queue.
31136
31137 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31138
31139         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31140         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31141         handle more bool marshalling options
31142
31143 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31144
31145         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31146         arrays of structs. Also add a more descriptive error message when
31147         a structure member is marshalled as LPArray.
31148
31149 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31150
31151         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31152         marshalling arrays of complex types. Fixes #29098. Also remove an
31153         usused and incomplete function.
31154
31155 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31156
31157         * gc.c: report heap_size - free_bytes as total memory allocated
31158         (bug#49362).
31159
31160 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31161
31162         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31163         fix timezone handling problems on Windows.
31164         
31165         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31166         asserts when the year is outside the range handled by ms the functions.
31167
31168         * class.c (setup_interface_offsets): If the class is an interface,
31169         fill out its interface_offsets slot.
31170
31171 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31172
31173         * threadpool.c: mark threadpool threads as background.
31174
31175 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31176
31177         * decimal.c - define DECINLINE to nothing if not using GCC
31178
31179 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31180
31181         * assembly.c: More refcount fixes.
31182
31183 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31184
31185         * string-icalls.c: if we're not trimming, return the same string.
31186         When not splitting, don't create a new string.
31187
31188 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31189
31190         * image.c:
31191         (mono_image_open): increment the ref_count inside the critical section.
31192
31193 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31194
31195         * image.c (mono_image_open): Fix reference counting bug.
31196
31197 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31198
31199         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31200         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31201         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31202         mono_lookup_pinvoke_call throws.        
31203
31204 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31205
31206         * reflection.c (mono_reflection_parse_type): Fix #49114.
31207
31208         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31209         temporary workaround for cygwin header problem.
31210
31211         * object.c (mono_object_isinst): Synchronize this with the code
31212         generated by the JIT for casts.
31213
31214 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31215
31216         * reflection.c (encode_type): Fix #38332.
31217
31218 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31219
31220         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31221         the original method from the wrapper method.
31222
31223 2003-09-25  Martin Baulig  <martin@ximian.com>
31224
31225         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31226         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31227         (ves_icall_Type_get_IsGenericInstance): New interncall.
31228
31229 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31230
31231         * object.c: fix cast warning in big endian code.
31232
31233 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31234
31235         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31236         
31237 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31238
31239         * assembly.c: don't call check_env from mono_assembly_load. It's
31240         already done once in mono_assemblies_init and may cause headaches when
31241         multiple threads are loading assemblies.
31242
31243 2003-09-19  Martin Baulig  <martin@ximian.com>
31244
31245         * reflection.c (mono_reflection_define_generic_parameter): Don't
31246         allocate `klass->methods', set `klass->flags' to
31247         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31248
31249 2003-09-18  Martin Baulig  <martin@ximian.com>
31250
31251         * class.c (mono_class_init): Don't create `class->methods' if it's
31252         already initialized.
31253
31254         * metadata.c (mono_metadata_load_generic_params): Make this
31255         actually work.
31256
31257         * reflection.c (mono_reflection_define_generic_parameter): Set
31258         parent class and interfaces from the constraints.
31259
31260         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31261         to keep this struct in sync with the declaration in TypeBuilder.cs.
31262
31263 2003-09-17  Martin Baulig  <martin@ximian.com>
31264
31265         * metadata.h (MonoType): Replaced the data's `int type_param'
31266         field with `MonoGenericParam *generic_param'.
31267         (MonoGenericParam): Added `MonoClass *klass'.
31268
31269         * class.c (mono_class_from_gen_param): Removed the
31270         `MonoImage *image' and `int type_num' arguments.
31271
31272         * metadata.c (mono_metadata_parse_generic_param): New static
31273         method; creates a MonoGenericParam which just contains the index.
31274         (do_mono_metadata_parse_type): Call
31275         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31276         MONO_TYPE_MVAR.
31277
31278         * reflection.c (mono_image_typedef_or_ref): Generic type
31279         parameters may be in the same assembly, but never use a typedef
31280         for them.
31281         (mono_reflection_define_generic_parameter): We're now creating a
31282         "real" class for the type parameter; it's now safe to call
31283         mono_class_from_mono_type() on the class'es type, it'll do the
31284         right thing.
31285
31286 2003-09-16  Martin Baulig  <martin@ximian.com>
31287
31288         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31289         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31290         the `symfile' data structure must be fully initialized before it
31291         gets added to the table.
31292
31293 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31294
31295         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31296
31297         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31298         class init trampolines.
31299
31300 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31301
31302         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31303         to the built-in profiler to turn off time and allocation profiling
31304         respectively.
31305
31306 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31307
31308         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31309         g_direct_equal.
31310
31311         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31312         in human readable form.
31313
31314 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31315
31316         * reflection.c icall.c: Fixed warnings.
31317
31318         * image.c (load_class_names): Use a temporary hash table to hold the
31319         namespaces in order to avoid doing many string comparisons.
31320
31321         * image.h: Fix typo.
31322
31323         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31324         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31325         since the NULL case is short-circuited inside g_hash_table_lookup, 
31326         leading to better performance.  
31327
31328         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31329         obtain the first custom attribute for a given index. Depends on the
31330         CustomAttribute table being sorted by the parent field.
31331
31332         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31333         for better performance.
31334
31335 2003-09-07  Martin Baulig  <martin@ximian.com>
31336
31337         * class.c (mono_class_init): If we're a generic instance, inflate
31338         all our methods instead of loading them from the image.
31339         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31340
31341 2003-09-07  Martin Baulig  <martin@ximian.com>
31342
31343         * mono-debug-debugger.c: Added support for constructors.
31344
31345 2003-09-06  Martin Baulig  <martin@ximian.com>
31346
31347         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31348         New interncall.
31349
31350         * reflection.c (mono_reflection_setup_generic_class): Call
31351         ensure_runtime_vtable() to create the vtable.
31352
31353 2003-09-05  Martin Baulig  <martin@ximian.com>
31354
31355         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31356         MONO_TYPE_MVAR.
31357
31358 2003-09-04  Martin Baulig  <martin@ximian.com>
31359
31360         * reflection.c (mono_reflection_define_generic_parameter): Generic
31361         parameters start with zero.
31362
31363 2003-09-04  Martin Baulig  <martin@ximian.com>
31364
31365         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31366
31367         * reflection.h (MonoReflectionGenericParam): New typedef.
31368         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31369         the generic parameters from the managed TypeBuilder.
31370
31371         * reflection.c (mono_reflection_define_generic_parameter): New function.
31372         (mono_reflection_create_runtime_class): Encode generic parameters.
31373         (mono_reflection_setup_generic_class): New function; this is
31374         called after adding adding all generic params to the TypeBuilder.
31375         (encode_type): Added MONO_TYPE_VAR.
31376
31377 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31378
31379         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31380         here from the JIT.
31381
31382         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31383         load hook.
31384
31385 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31386
31387         * reflection.h reflection.c class.h class.c: Delete duplicate 
31388         definition of mono_type_get_name () from reflection.c and export the
31389         one in class.c.
31390
31391         * class.c: Class loading fixes from Bernie Solomon 
31392         (bernard@ugsolutions.com).
31393
31394         * reflection.c: Endianness fixes from Bernie Solomon 
31395         (bernard@ugsolutions.com).
31396         
31397 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31398
31399         * assembly.h assembly.c: Define a file format version for AOT
31400         libraries.
31401         
31402         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31403
31404         * appdomain.h (MonoJitInfo): New field to determine whenever the
31405         code is domain neutral.
31406         
31407 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31408
31409         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31410
31411 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31412
31413         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31414         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31415         Avoid caching the result since strings must be domain specific. Fixes
31416         #48050.
31417
31418 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31419
31420         * marshal.c (mono_marshal_init): Make this callable multiple times
31421         since it is hard to find a correct place to call it.
31422
31423         * object.c (mono_runtime_class_init): Execute static constructors in
31424         the correct appdomain.
31425
31426         * image.c (build_guid_table): Handle the case when multiple images have
31427         the same GUID.
31428
31429 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31430
31431         * icall.c: added a couple of icalls for System.Web.
31432
31433 2003-08-28  Martin Baulig  <martin@ximian.com>
31434
31435         * icall.c (ves_icall_Type_BindGenericParameters): Use
31436         `klass->generic_inst' instead of `&klass->byval_arg' in the
31437         mono_type_get_object() call.  The returned type must be
31438         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31439
31440 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31441
31442         * NOTES: New file.
31443
31444         * object.c (mono_class_proxy_vtable): Make it thread safe.
31445
31446         * pedump.c: Fix warning.
31447
31448         * object.c appdomain.h: Get rid of metadata_section. 
31449         It is no longer needed and it was causing deadlocks with domain->lock.
31450
31451         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31452
31453 2003-08-26  Martin Baulig  <martin@ximian.com>
31454
31455         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31456
31457 2003-08-26  Martin Baulig  <martin@ximian.com>
31458
31459         * pedump.c (main): Call mono_metadata_init(),
31460         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31461         and mono_loader_init().
31462
31463 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31464
31465         * loader.h: Add missing include to fix build.
31466
31467         * image.h: mono_image_load_references is no more.
31468
31469         * assembly.c: Reworked assembly loading to make it really thread safe.
31470         After these changes, the assembly returned by mono_assembly_open is
31471         fully initialized, i.e. all its references assemblies are loaded.
31472
31473         * assembly.c (mono_image_load_references): Renamed to 
31474         mono_assembly_load_references, and made private, since clients no
31475         longer need to call it.
31476
31477         * class.c: Removed calls to mono_assembly_load_references, since it was
31478         a source of deadlocks.
31479
31480         * loader.h loader.c class.h class.c: Protect data structures using a 
31481         new lock, the loader lock.
31482
31483         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31484         GPtrArrays only when needed.
31485
31486         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31487         into empty structures by mcs. Fixes pinvoke7.cs.
31488         
31489         * domain.c (mono_init): Call a new initialization function.
31490
31491         * appdomain.c (mono_runtime_init): Call the new initializer function
31492         of the marshal module.
31493
31494         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31495         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31496
31497         * marshal.h marshal.c: Added locks around the wrapper caches to make
31498         this module thread safe.
31499
31500         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31501         this argument. Fixes pinvoke1.exe.
31502
31503 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31504
31505         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31506         enumeration of values. Removed fields to store remote call output values in
31507         MonoAsyncResult. Not needed any more.
31508         * object.c: Initialize call_type and async_result fields in mono_message_init.
31509         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31510         dispatching the message.
31511         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31512         async call to finish. To do it use a message with EndInvoke call type.
31513
31514 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31515
31516         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31517         determines whenever a method has marshalling info.
31518
31519 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31520
31521         * assembly.c: fix the build on windows.
31522
31523 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31524
31525         * object.cs: Fixed bug #47785.
31526
31527 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31528
31529         * string-icalls.c (StringReplace): If their are no occurances of
31530         the old string found return a reference to the supplied
31531         string. This saves some memory and matches MS behavoir.
31532         
31533 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31534
31535         * socket-io.c: fixed compilation for systems that define AF_INET6
31536         and don't define SOL_IP/SOL_IPV6.
31537
31538 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31539
31540         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31541         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31542
31543         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31544
31545         * domain.c: Make this module thread safe.
31546
31547         * domain.c (mono_init): Call new initialization function.
31548
31549         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31550         reference types too. Fixes #38812.
31551
31552         * image.c (mono_image_init): Fixed warnings.
31553
31554         * class.c (mono_class_from_typeref): Handle assembly load failure
31555         correctly.
31556
31557         * appdomain.c (add_assemblies_to_domain): Handle the case when
31558         the references of an assembly are not yet loaded.
31559
31560         * metadata.c image.c assembly.c: Moved initialization of global
31561         variables to a separate function called at startup since lazy 
31562         initialization of these variables is not thread safe.
31563         
31564         * image.c assembly.c: Made this module thread safe by adding locks in 
31565         the appropriate places.
31566
31567         * domain.c (mono_init): Call the new initialization functions of the
31568         three modules.
31569
31570 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31571
31572         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31573           make a direct call. It is proxy's work to make the call asynchronous.
31574           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31575           the return values.
31576         * object.cs: mono_method_call_message_new(): read AsyncResult and
31577           state object from parameters list, if this info is requested.
31578         * object.h: Added fields to store remote call output values in
31579           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31580
31581 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31582
31583         * object.h: add needed fields to MonoThread.
31584         * threads.c, threads.h: allow registering a function to cleanup data
31585         allocated per thread by the JIT.
31586
31587 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31588
31589         * loader.h: portability fix by Bernie Solomon
31590         * <bernard@ugsolutions.com>.
31591
31592 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31593
31594         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31595         return a MonoArray. This simplifies the code and also ensures that
31596         the cache allways contains an object reference as a value.
31597
31598         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31599         function.
31600
31601 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31602
31603         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31604         fixes a problem with byte ordering when getting the address family for
31605         a socket.
31606
31607 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31608
31609         * .cvsignore: Added monosn.
31610
31611         * reflection.h reflection.c loader.c: Added support for parameter
31612         marshalling to dynamically created types. Fixes #47295.
31613
31614 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31615
31616         * rand.c: remove useless warnings.
31617
31618 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31619
31620         * class.c: implemented ldtoken for methods and fieldrefs.
31621
31622 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31623
31624         * threadpool.c: when mono_async_invoke was called, no one took care of
31625         monitoring the queue. So if the method invoked took some time and we
31626         got new async invoke requests after 500 ms (the thread created waited
31627         that long in WaitForSingleObject), the new async invoke was not called
31628         until the previous one finished.
31629
31630         This is fixed now. Thanks to Totte for helping with it.
31631
31632 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31633
31634         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31635
31636 2003-08-11  Martin Baulig  <martin@ximian.com>
31637
31638         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31639
31640 2003-08-06  Martin Baulig  <martin@ximian.com>
31641
31642         * mono-debug-debugger.c: Added support for static fields,
31643         properties and methods.
31644
31645 2003-08-06  Martin Baulig  <martin@ximian.com>
31646
31647         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31648         make this work for applications with multiple application domains.
31649
31650 2003-08-04  Martin Baulig  <martin@ximian.com>
31651
31652         * mono-debug-debugger.c: Completely reworked the type support; the
31653         most important thing is that we're now just using one single
31654         `MonoType' instance per type.
31655
31656 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31657
31658         * mono-endian.h, mono-endian.c, icall.c: Added icall
31659         ves_icall_System_Double_AssertEndianity to assert double word endianity
31660         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31661
31662 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31663
31664         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31665         support, icalls and fixes.
31666
31667 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31668
31669         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31670         classes that are a punctuation character in .NET is not the same a
31671         g_unichar_ispunct.
31672
31673 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31674
31675         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31676
31677 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31678
31679         * icall.c: Add new MemCopy internalcall.
31680         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31681         Simplified code; It is not necessary to handle all the cases here,
31682         as the C# code takes care of it.  Only handle the case of the name
31683         resource embedded into the assembly.
31684
31685         Changed signature to return the data pointer and the size of the
31686         data. 
31687
31688 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31689
31690         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31691         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31692
31693 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31694
31695         * socket-io.c: ignore EINTR error in select.
31696
31697 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31698
31699         * class.h, class.c: removed unused subclasses field in MonoClass.
31700
31701 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31702
31703         * icall.c: improve fix of get_base_definition(). If the parent class
31704           doesn't have the mehod, look at the parent of the parent.
31705         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31706           to check if a parameter is an in or out parameter
31707           (PARAM_ATTRIBUTE_IN is not set by default).
31708           mono_method_return_message_restore(): Use mono_class_value_size to
31709           get the size of a value type. mono_type_stack_size (parameterType)
31710           does not return the correct value if parameterType is byRef.
31711           mono_load_remote_field(), mono_load_remote_field_new(),
31712           mono_store_remote_field(), mono_store_remote_field_new():
31713           raise exception if the remote call returns an exception.
31714
31715 2003-07-28  Martin Baulig  <martin@ximian.com>
31716
31717         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31718         method.  This is a wrapper around mono_runtime_invoke() which
31719         boxes the instance object if neccessary.
31720
31721 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31722
31723         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31724         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31725
31726 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31727
31728         * icall.c: disable mcs bug workaround.
31729
31730 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31731
31732         * object.c (mono_runtime_class_init): Take the metadata_section
31733         mutex before obtaining the domain mutex.
31734
31735         * appdomain.h: Added definition of metadata_section mutex here. 
31736
31737         * object.c: define metadata_mutex here.
31738
31739 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31740
31741         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31742         fixed.
31743
31744 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31745
31746         * reflection.c: Fix bug #46669
31747
31748 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31749
31750         * exception.c:
31751         * exception.h:
31752         * icall.c:
31753         * object.h: fill in the type name for TypeLoadException.
31754
31755 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31756
31757         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31758         relationship between TypeBuilders while compiling corlib) and bug
31759         45993 (Array types returned from the runtime while compiling
31760         corlib were from the loaded corlib).
31761
31762 2003-07-22  Martin Baulig  <martin@ximian.com>
31763
31764         * mono-debug-debugger.c: Reworked the type support a bit more;
31765         distinguish between types and classes.
31766
31767 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31768
31769         * icall.c: add IsArrayImpl icall.
31770
31771 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31772
31773         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31774         initializing real_size only once. Also fix bug #46602.
31775
31776 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31777
31778         * object.c: Renamed mono_metadata_section to metadata_section.
31779
31780 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31781
31782         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31783           empty array if the type is an array. Fixed.
31784           ves_icall_MonoMethod_get_base_definition: if the base method
31785           is abstract, get the MethodInfo from the list of methods of
31786           the class.
31787         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31788           and it was 1-based. Fixed in mono_param_get_objects.
31789
31790 2003-07-20  Martin Baulig  <martin@ximian.com>
31791
31792         * mono-debug.h: Set version number to 31.
31793         (mono_debug_init): Added `MonoDomain *' argument.
31794
31795         * mono-debug-debugger.c: Reworked the type support; explicitly
31796         tell the debugger about builtin types; pass the `klass' address to
31797         the debugger.
31798
31799 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31800
31801         * image.c: Allow new metadata tables to be loaded without a
31802         warning. Also update the warning message to give the new constant value.
31803                 
31804 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31805
31806         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31807         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31808         array type representation changes.
31809
31810 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31811
31812         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31813         on Environment.Exit () call.
31814
31815 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31816
31817         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31818         requires a matching corlib.
31819
31820 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31821
31822         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31823           Committed again without the CRs.
31824         
31825 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31826
31827         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31828           getting it from the "this" socket instance. Did not work
31829           if the socket is a subclass of Socket.
31830           Also fixed bug #35371.
31831
31832 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31833
31834         * metadata.c: fixed size for TypedByRef.
31835         * loader.c: when searching for a method, consider the vararg amrker.
31836         * unicode.c, decimal.c: constify some arrays.
31837
31838 2003-07-15  Dick Porter  <dick@ximian.com>
31839
31840         * socket-io.c: Fixed compilation for gcc < 3.2.
31841
31842         Fixed compilation for machines that don't have AF_INET6 (thanks to
31843         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31844
31845         Fixed compile warnings.
31846         
31847         Fixed formatting and line endings.
31848
31849 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31850
31851         * socket-io.h:
31852         * socket-io.c: Added IPv6 support.
31853
31854 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31855
31856         * class.c (mono_class_is_assignable_from): New function to implement
31857         the is_assignable_from logic. Used by mono_object_isinst, 
31858         Type::IsAssignableFrom () and the interpreter.
31859
31860         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31861         Object, even interfaces.
31862         
31863         * object.c (mono_object_isinst): Implement in terms of 
31864         is_assignable_from.
31865
31866         * icall.c (ves_icall_type_is_assignable_from): New icall.
31867
31868 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31869
31870         * domain.c (foreach_domain): fix compiler warning.
31871
31872 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31873
31874         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31875         not available on all plattforms
31876
31877 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31878
31879         * image.h image.c: Store the metadata version string in MonoImage.
31880         * icall.c: New icall to retrieve the image version.
31881         * reflection.c (create_dynamic_image): Fill in the image version field
31882         * reflection.c (build_compressed_metadata): Use the image version
31883         from the image structure.
31884
31885 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31886
31887         * appdomain.c: modified comment.
31888         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31889         That will be its last iteration when mono_gc_cleanup is called from
31890         mono_runtime_cleanup and before the domain is unloaded.
31891
31892         Fixes bug #45962.
31893
31894 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31895
31896         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31897         attributes.
31898
31899 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31900
31901         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31902         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31903         Bernie Solomon <bernard@ugsolutions.com>.
31904
31905 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31906
31907         * object.c, object.h: provide mono_object_new_fast() for faster
31908         allocation in some special cases.
31909
31910 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31911
31912         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31913         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31914
31915 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31916
31917         * threadpool.c: fix leaks.
31918
31919 2003-07-01  Dick Porter  <dick@ximian.com>
31920
31921         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31922         using MonoGHashTables.  Fixes threadpool bug posted to list.
31923
31924 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31925
31926         * image.h, image.c: added support to load an assembly from a byte array.
31927         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31928         assembly bundle support.
31929
31930 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31931
31932         * threadpool.c (mono_thread_pool_add): keep a reference to the
31933         AsyncResult to prevent GC
31934
31935 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31936
31937         * class.c: leak fix.
31938
31939 2003-06-25  Dick Porter  <dick@ximian.com>
31940
31941         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31942         for the async object, the WaitHandle object will close the handle.
31943         Fixes bug 45321.
31944
31945 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31946
31947         * class.c: in mono_array_class_get (), lookup from the hash with the
31948         same type we insert: this works around a bug in
31949         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31950         lluis. The real fix will have to wait for after the release.
31951
31952 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31953
31954         * icall.c: fix memory leak when getting type members.
31955
31956 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31957
31958         * reflection.c: added more pubtoken special cases.
31959
31960 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31961
31962         * class.c: handle field offset correctly when class size
31963         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31964
31965 2003-06-20  Martin Baulig  <martin@ximian.com>
31966
31967         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31968         *image' field.
31969
31970 2003-06-20  Martin Baulig  <martin@ximian.com>
31971
31972         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31973
31974 2003-06-20  Martin Baulig  <martin@ximian.com>
31975
31976         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31977         just distinguish between variables in registers and variables at
31978         an offset relative to a register.
31979
31980 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31981
31982         * icall.c: #ifdef out latest changes until mcs is fixed.
31983
31984 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31985
31986         * icall.c: return members in metadata order.
31987
31988 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31989
31990         * icall.c: avoid infinite loop in GetTimeZoneData.
31991
31992 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31993
31994         * icall.c: added Marshal.Prelink/All icalls.
31995
31996 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31997
31998         * object.c, object.h: fix warnings and do some overflow checking
31999         when creating arrays.
32000
32001 2003-06-17  Dick Porter  <dick@ximian.com>
32002
32003         * file-io.h:
32004         * file-io.c: File attributes need to be tweaked slightly when
32005         passed from the managed to the w32 world.
32006
32007 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32008         * profiler.h profiler-private.h profiler.c: Rework last patch
32009         based on suggestion by Paolo.
32010         
32011 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
32012
32013         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
32014         instruction level coverage data collection.
32015         * profiler.h profiler.c (: Added new callback function which can be
32016         used by the profiler to limit which functions should have coverage
32017         instrumentation.
32018         * profiler.c (mono_profiler_load): Call g_module_build_path to
32019         generate the file name of the profiler library.
32020
32021 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
32022
32023         * profiler.c, profiler.h, profiler-private.h: added basic block 
32024         coverage profiling API.
32025
32026 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
32027
32028         * reflection.c (mono_reflection_create_runtime_class): Add support
32029         for events in dynamically generated code.
32030
32031         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
32032         not allocated.
32033
32034 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
32035
32036         * icall.c: when getting timezone info, return reasonable values if we
32037         can't get the actual data.
32038
32039 2003-06-14  Dick Porter  <dick@ximian.com>
32040
32041         * threads.c (start_wrapper): Remove the reference to the thread
32042         object in the TLS data, so the thread object can be finalized.
32043         This won't be reached if the thread threw an uncaught exception,
32044         so those thread handles will stay referenced :-( (This is due to
32045         missing support for scanning thread-specific data in the Boehm GC
32046         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
32047
32048 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
32049
32050         * reflection.c: ensure streams and tables are first allocated with
32051         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
32052
32053 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
32054
32055         * icall.c: fixed GetElementType for byrefs (bug# 44792).
32056
32057 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
32058
32059         * reflection.c (mono_reflection_create_runtime_class): Add support for
32060         properties to dynamically created classes.
32061         * reflection.c: Fix a few places where non-MonoObjects were inserted
32062         into the tokens hashtable.
32063
32064 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32065
32066         * object.c: some support to handle out of memory exceptions.
32067
32068 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32069
32070         * marshal.c (mono_marshal_get_native_wrapper): support reference
32071         return types
32072
32073 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32074
32075         * object.h, object.c: more portability stuff from Bernie Solomon.
32076         Unexport mono_object_allocate(). Added mono_object_unbox ().
32077         Set exitcode when an unhandled exception is thrown.
32078
32079 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32080
32081         * marshal.c (mono_marshal_get_native_wrapper): use custom
32082         marshaler for return types.
32083
32084 2003-06-10  Dick Porter  <dick@ximian.com>
32085
32086         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32087         ip_mreq is available
32088
32089 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32090
32091         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32092         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32093         by Bernie Solomon <bernard@ugsolutions.com>.
32094
32095 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32096
32097         * gc.c (mono_gc_init): Avoid error message on shutdown when
32098         GC_DONT_GC=1 is used.
32099
32100         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32101         New icall to return the GUID of a module.
32102
32103 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32104
32105         * class.c: ensure instance size always includes the parent's size
32106         even whem class size is set explicitly (fixes bug#44294).
32107
32108 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32109
32110         * profiler.h, profiler.c: made the simple profiler thread-safe,
32111         get more accurate timing info. Allow the loading of an
32112         externally-developed profiler module.
32113
32114 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32115
32116         * marshal.c (mono_marshal_get_native_wrapper): improved
32117         class/byref arguments.
32118         (mono_marshal_get_native_wrapper): better string marshaling support.
32119
32120 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32121
32122         * class.c: ensure .pack and .size are handled correctly and
32123         simplified layout of static fields.
32124
32125 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32126
32127         * appdomain.c
32128         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32129
32130         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32131         current directory (fix bug 44008)
32132
32133 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32134
32135         * marshal.c (mono_marshal_get_native_wrapper): started support for
32136         custom marshalers.
32137         (mono_delegate_to_ftnptr): consider marshalling specifications
32138
32139 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32140
32141         * reflection.c, reflection.h: emit custom marshal info.
32142
32143 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32144
32145         * object.c: free the GError.
32146         * icall.c: added CloseEvent_internal.
32147         * threads.[ch]:
32148         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32149         call.
32150
32151 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32152
32153         * loader.c (mono_method_get_signature): Add support for dynamic
32154         assemblies.
32155
32156 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32157
32158         * reflection.c: fixed bug #43905.
32159
32160 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32161
32162         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32163         handling TypedReference and ArgIterator.
32164         * loader.c, loader.h: added function to get signature at call site.
32165
32166 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32167
32168         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32169         data readonly. Buglets and warning fixes. Some MethodSpec support.
32170
32171 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32172
32173         * class.h, class.c, object.c: remove relative numbering support.
32174
32175 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32176
32177         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32178         free the string, until we get a chance to fix Gtk#
32179
32180 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32181
32182         * marshal.c: revert last patch.
32183
32184 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32185
32186         * icall.c: updates for new mono_class_vtable() not calling
32187         the type constructor anymore.
32188
32189 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32190
32191         * object.h, object.c: separate vtable creation from type
32192         initialization. Make running the .cctor thread safe.
32193
32194 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32195
32196         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32197
32198 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32199
32200         * loader.c (mono_get_method): consider calling convention
32201
32202 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32203
32204         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32205         to return the invisible global type for a module.
32206
32207         * reflection.c (mono_image_build_metadata): Emit global fields too.
32208
32209 2003-05-20  Peter Williams  <peterw@ximian.com>
32210
32211         * loader.c (mono_lookup_internal_call): Add a few newlines.
32212
32213 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32214
32215         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32216         literal strings.
32217
32218         * appdomain.c (set_domain_search_path): Recalculate search path when
32219         AppDomainSetup.PrivateBinPath changes.
32220
32221         * object.c (mono_class_compute_gc_descriptor): It turns out some
32222         parts of the class libs (like System.Thread) holds pointers to
32223         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32224         to treat native int a pointer type here.
32225         
32226 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32227
32228         * appdomain.h, domain.c: add hashtable for jump target resolution.
32229
32230 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32231
32232         * reflection.h reflection.c icall.c: Added new icalls 
32233         GetManifestResourceInfoInternal, GetModulesInternal and support
32234         infrastructure.
32235
32236 2003-05-16  Dick Porter  <dick@ximian.com>
32237
32238         * icall.c:
32239         * file-io.h:
32240         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32241
32242 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32243
32244         * object.c: mono_store_remote_field: little fix to previous patch.
32245
32246 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32247
32248         * class.c: add constructors to array classes.
32249         * icall.c: special case array construction for InternalInvoke (),
32250
32251 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32252
32253         * class.h class.c reflection.c object.c: Added support for field
32254         defaults in dynamically generated classes.
32255
32256 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32257
32258         * reflection.c: properly encode charset for ddlimport.
32259
32260 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32261
32262         * threads.c: allow compiling without GC.
32263
32264 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32265
32266         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32267         handling of thread static data.
32268
32269 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32270
32271         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32272
32273 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32274
32275         * class.c (mono_array_class_get): always set the serializable flags
32276         (mono_array_class_get): always set the SEALED attribute for array types
32277
32278 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32279
32280         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32281         attributes (fix for bug 42021).
32282
32283 2003-05-12  Dick Porter  <dick@ximian.com>
32284
32285         * gc.c: Don't run finalizers when the finalizer thread is
32286         finishing up, because the default domain has already been
32287         destroyed.
32288
32289 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32290
32291         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32292         value is null, we should throw an exception.   This is slightly
32293         different than the other conventions used for the constructor.
32294
32295 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32296
32297         * socket-io.c: fixed windows build.
32298
32299 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32300
32301         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32302
32303 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32304
32305         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32306         compilers.
32307
32308 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32309
32310         * class.c (mono_class_layout_fields): Add experimental GC aware
32311         auto layout facility. Requires class library changes to work correctly.
32312
32313         (mono_class_setup_vtable): Avoid overriding explicit interface
32314         method implementations. Fixes iface3.exe test.
32315
32316         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32317         object reference.
32318         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32319         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32320
32321         * metadata.h: Add new type classification macro which determines
32322         whenever the type holds an object reference.
32323
32324 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32325
32326         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32327
32328 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32329
32330         * gc.c (finalizer_thread): Work around a GC bug.
32331
32332 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32333
32334         * marshal.c (emit_struct_conv): allow unions
32335
32336         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32337
32338 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32339
32340         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32341
32342 2003-05-06  Martin Baulig  <martin@ximian.com>
32343
32344         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32345
32346 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32347
32348         * socket-io.c:
32349         (Select_internal): allow NULLs, don't create arrays if not needed.
32350         Coupled with Socket.cs changes.
32351
32352         * threadpool.c:
32353         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32354         register a finalizer for it that will close the semaphore handle. This
32355         fixes the leak and make Lupus' test run with > 4080 loops.
32356
32357 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32358
32359         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32360         Jerome Laban (bug #42287)
32361
32362 2003-05-02  Martin Baulig  <martin@ximian.com>
32363
32364         * debug-mono-symfile.h
32365         (MonoSymbolFile): Moved declaration into mono-debug.h.
32366         (MonoDebugMethodJitInfo): Likewise.
32367         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32368         argument.
32369         (_mono_debug_address_from_il_offset): Take a
32370         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32371
32372         * mono-debug.h
32373         (MonoDebugDomainData): New struct.
32374         (mono_debug_get_domain_data): New function.
32375         (mono_debug_add_method): Take an additional `MonoDomain *'
32376         argument.
32377         (mono_debug_source_location_from_address): Likewise.
32378         (mono_debug_il_offset_from_address): Likewise.
32379         (mono_debug_address_from_il_offset): Likewise.
32380
32381 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32382
32383         * reflection.c: one more check for null type in custom attrs.
32384
32385 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32386
32387         * reflection.c: avoid warning (comparison is always false due to limited
32388         range of data type).
32389
32390 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32391
32392         * icall.c: throw an exception in Type.GetField if the argument 'name'
32393         is NULL.
32394
32395 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32396
32397         * reflection.c: fixed handling of enums in named arguments to custom
32398         attributes (bug #42123).
32399
32400 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32401
32402         * reflection.c: use the right array element type and handle
32403         a null for a Type argument, too.
32404
32405 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32406
32407         * reflection.c: handle arrays as arguments to custom attributes.
32408
32409 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32410
32411         * reflection.c: handle a string value in a custom attr
32412         ctor that takes an object.
32413
32414 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32415
32416         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32417         (fix bug #42063)
32418
32419 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32420
32421         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32422
32423 2003-04-27  Martin Baulig  <martin@ximian.com>
32424
32425         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32426         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32427         MONO_DEBUGGER_EVENT_BREAKPOINT.
32428         (mono_breakpoint_trampoline_code): Removed.
32429         (mono_debugger_event_handler): The last argument is now a
32430         `guint32'.
32431         (mono_debugger_insert_breakpoint_full): Removed the
32432         `use_trampoline' argument.
32433         (mono_debugger_method_has_breakpoint): Likewise.
32434         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32435         mono_debugger_breakpoint_callback(); take the method and
32436         breakpoint number as arguments.
32437
32438 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32439
32440         * metadata.c: fix off by one when loading parameters attributes.
32441
32442 2003-04-24  Martin Baulig  <martin@ximian.com>
32443
32444         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32445
32446 2003-04-24  Martin Baulig  <martin@ximian.com>
32447
32448         * mono-debug-debugger.c: Moved all code which interacts with the
32449         Mono Debugger here.
32450
32451         * debug-mono-symfile.c: This code now just deals with the symbol
32452         file itself, the debugger code is now in mono-debug-debugger.c.
32453
32454 2003-04-23  Martin Baulig  <martin@ximian.com>
32455
32456         * mono-debug.c (mono_debug_source_location_from_il_offset):
32457         New method; like mono_debug_source_location_from_address(), but
32458         takes an IL offset instead of a machine address.
32459
32460 2003-04-23  Martin Baulig  <martin@ximian.com>
32461
32462         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32463         `line' field; this is now computed by the debugger.
32464
32465 2003-04-23  Martin Baulig  <martin@ximian.com>
32466
32467         * mono-debug.[ch]: New files.  This is the new debugging interface.
32468
32469         * mono-debug-debugger.[ch]: New files.  Moved all code which
32470         interacts with the Mono Debugger here.
32471
32472 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32473
32474         * domain.c (mono_init): initialize mono_defaults.monitor_class
32475
32476 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32477
32478         * reflection.c (method_encode_code): Add a spicy exception to help
32479         future compiler authors.
32480
32481 2003-04-21  Martin Baulig  <martin@ximian.com>
32482
32483         * icall.c
32484         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32485         Make this work with relative pathnames; g_filename_to_uri() needs
32486         an absolute filename.
32487
32488 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32489
32490         * icall.c: Track name changes in Object and ValueType.
32491
32492 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32493
32494         * metadata.c (mono_type_stack_size): size should be a multiple of
32495         sizeof (gpointer)
32496
32497 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32498
32499         * gc.c:
32500         (internal_domain_finalize): moved into mono_domain_finalize. No need
32501         to create another thread because the finalizers will be run in the
32502         finalizer thread.
32503         
32504         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32505         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32506         to be run (MS does this too).
32507
32508 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32509
32510         * object.c (mono_class_compute_gc_descriptor): Update comment.
32511
32512         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32513
32514         * image.h: Add synchronized wrapper cache.
32515
32516         * image.c (do_mono_image_open): Initialize cache.
32517
32518         * reflection.c (create_dynamic_mono_image): Initialize cache.
32519
32520 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32521
32522         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32523         ves_icall_System_Buffer_ByteLengthInternal.
32524
32525 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32526
32527         * reflection.c: setup klass->nested_in earlier. Allow
32528         a dash in the assembly name.
32529
32530 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32531
32532         * metadata.c (mono_type_to_unmanaged): dont access
32533         type->data.klass for MONO_TYPE_OBJECT
32534         (mono_type_to_unmanaged): consider System.Delegate class
32535
32536 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32537
32538         * class.c: just setup supertypes in the proper place instead of
32539         initializing the full element class for arrays.
32540
32541 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32542
32543         * class.c: ensure the element class of arrays is initialized.
32544         Setup the supertype info for array classes, too.
32545
32546 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32547
32548         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32549
32550 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32551
32552         * Makefile.am: re-added -m option when running cygpath. This way,
32553         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32554         separator.
32555         * mono-config.c: same codepath for locating mono config file for WIN32
32556         and the rest.
32557         * assembly.c: if mono_assembly_setrootdir is called, don't override
32558         the value set.
32559
32560 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32561
32562         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32563         MONO_ASSEMBLIES variable.
32564
32565 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32566
32567         * icall.c: added Assembly::GetNamespaces() icall.
32568
32569 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32570
32571         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32572
32573 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32574
32575         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32576         * object.c: fixed bug in the construction of vtable for proxies
32577
32578 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32579
32580         * object.c (mono_array_new): Mark mono_array_new as an icall.
32581
32582 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32583
32584         * class.c: fixed test for public method when overriding interfaces.
32585         Closes bug #40970.
32586
32587 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32588
32589         * appdomain.h, domain.c: added mono_domain_foreach() to
32590         be able to access the currently loaded appdomains.
32591         * object.c: make string interning work across sppdomains.
32592         Mark some functions for use as icalls.
32593
32594 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32595
32596         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32597
32598         * reflection.h reflection.c: Allocate long living data using 
32599         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32600
32601         * reflection.c: Double the allocation size in streams instead of
32602         increasing it, to prevent unneccesary copying on large assemblies.
32603         
32604         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32605         creation if the assembly does not have the Run flag set.
32606
32607 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32608
32609         * class.h: avoid the C++ keywords in header files (Jerome Laban
32610         spotted and fixed this).
32611
32612 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32613
32614         * object.c:
32615         (mono_unhandled_exception): fill in the arguments for the
32616         UnhandledException event. Only trigger that event for the default
32617         domain (as MS does).
32618
32619 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32620
32621         * object.c: Improve typed allocation stuff based on suggestions from
32622         Paolo. Also turn it on if the GC library supports it.
32623
32624 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32625
32626         * object.c object.h class.h: Added experimental typed allocation
32627         facility using the interfaces in gc_gcj.h.
32628
32629         * os/gc_wrapper.h: Added new include files.
32630         
32631 2003-04-03  Martin Baulig  <martin@ximian.com>
32632
32633         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32634         which is not yet enabled by default.
32635
32636         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32637         functions.
32638         (mono_gc_lock, mono_gc_unlock): New static functions.
32639
32640         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32641         functions; stop/start the world for the garbage collector.  This
32642         is using the windows API; we need to complete the SuspendThread()/
32643         ResumeThread() implementation in the io-layer to make this work on Unix.
32644         (mono_gc_push_all_stacks): New public function; tells the garbage
32645         collector about the stack pointers from all managed threads.
32646
32647 2003-04-03  Martin Baulig  <martin@ximian.com>
32648
32649         * object.h (MonoThread): Added `gpointer stack_ptr'.
32650
32651         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32652
32653 2003-04-03  Martin Baulig  <martin@ximian.com>
32654
32655         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32656
32657 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32658
32659         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32660         field.last.
32661
32662 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32663
32664         * loader.c (mono_lookup_internal_call): Report the corlib that is
32665         out of sync.
32666
32667 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32668
32669         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32670         System.DBNull (it's class not valuetype).
32671
32672 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32673
32674         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32675         if the array method was already assigned a token (fixes bug#40646).
32676
32677 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32678
32679         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32680         if no assembly is given.
32681
32682 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32683
32684         * metadata.h: Added the new tables.
32685
32686         * row-indexes.h: Added definitions for new tables.
32687
32688         * metadata.c: Add schemas for new tables, and add support for
32689         computing the sizes of them.
32690
32691         * class.c: Update for handling the new type cases.
32692
32693 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32694
32695         * metadata.h (MONO_TYPE_IS_VOID): new macro
32696
32697 2003-03-31  Martin Baulig  <martin@ximian.com>
32698
32699         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32700
32701         * threads.c (mono_thread_new_init): Call `thread_created' in the
32702         mono_thread_callbacks.
32703
32704 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32705
32706         * loader.h: added marshalbyrefobject_class to mono_defaults
32707         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32708         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32709           generation of output parameters.
32710           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32711         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32712           contextbound and the target object belongs to the context of the caller.
32713         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32714         * object.c: Implemented support for interfaces and abstract classes
32715           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32716           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32717
32718 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32719
32720         * class.h class.c (mono_class_is_subclass_of): New function.
32721         
32722         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32723         routines for most common case (calls from ArrayList::ToArray).
32724
32725         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32726         routine so programs which call Environment::Exit() can be profiled.
32727
32728         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32729         Added MONO_ARCH_SAVE_REGS.
32730
32731         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32732
32733 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32734
32735         * blob.h: Add a couple of new MonoType types definitions.
32736
32737         * tabledefs.h: Add a couple of new call convs.
32738
32739 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32740
32741         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32742         the layout of the class.
32743
32744         * reflection.c (alloc_table): double the size on overflow to avoid
32745         unnecessary copying.
32746
32747         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32748         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32749         null so it can be garbage collected.
32750         
32751 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32752
32753         * reflection.c (mono_reflection_get_type): Return the resolved type
32754         only if it is in the assembly we searched.
32755
32756         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32757
32758         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32759         method.
32760
32761 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32762
32763         * appdomain.c:
32764         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32765         the right one is 'file:///blah', but MS allows it.
32766         * assembly.c:
32767         (mono_assembly_open): allow 'file://blah'
32768
32769         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32770
32771 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32772
32773         * socket-io.c: fixes bug #40310.
32774
32775 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32776
32777         * reflection.c (mono_reflection_parse_type): handle deeply nested
32778         types correctly.
32779
32780         * reflection.c (mono_image_create_token): Use unique token values
32781         since they will be put into a hash table.
32782
32783         * class.c (mono_class_setup_vtable): If a method occurs in more than
32784         one place in the vtable, and it gets overriden, then change the
32785         other occurances too.
32786
32787         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32788         object as return type.
32789
32790 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32791
32792         * icall.c: Deleted "ToString" implementation for double and float
32793         because they are full implemented in managed code.
32794
32795 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32796
32797         * reflection.c, reflection.h: implemented and exported functions
32798         to retrieve info about custom attributes.
32799
32800 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32801
32802         * appdomain.c: moved Uri handling to assembly.c
32803         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32804         work when using a file Uri in *nix and windows.
32805
32806         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32807         GetReferencedAssemblies.
32808
32809 2003-03-18  Dick Porter  <dick@ximian.com>
32810
32811         * icall.c: Rename a couple of internal calls
32812
32813         * threads.c: Set the thread state to Stopped when a thread exits.
32814         Fixes bug 39377.
32815
32816 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32817
32818         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32819         New icall.
32820
32821         * object.c (mono_class_vtable): fix warning.
32822
32823 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32824
32825         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32826
32827         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32828         memory.
32829         (method_encode_clauses): Create exception info structures in the right
32830         order.
32831         (mono_reflection_setup_internal_class): Initialize supertypes field.
32832
32833         * class.c object.c: Handle interfaces which implement other interfaces 
32834         correctly.
32835
32836         * class.h class.c: Move the supertypes array initialization code into 
32837         a separate function so it can be used for dynamic types too. Also call
32838         it earlier, in mono_class_init(), since it can be used before the
32839         type is initialized.
32840
32841 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32842
32843         * Makefile.am:
32844         * assembly.c:
32845         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32846
32847         * appdomain.c:
32848         * appdomain.h:
32849         * marshal.c:
32850         * object.c: remove warnings.
32851
32852 2003-03-13  Martin Baulig  <martin@ximian.com>
32853
32854         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32855         (MonoDebugLexicalBlockEntry): New types.
32856
32857         * debug-mono-symfile.c
32858         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32859
32860 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32861
32862         * process.c: ret can be any non-zero value accroding to MS doc.
32863
32864 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32865
32866         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32867         fixing a warning for a miss-used prototype, would have cause
32868         random memory corruption.
32869
32870 2003-03-07  Martin Baulig  <martin@ximian.com>
32871
32872         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32873         getting really annoying ....
32874
32875 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32876
32877         * reflection.c (fixup_method): added support for array methods.
32878
32879 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32880
32881         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32882         (pointed out by Michael Adams).
32883
32884 2003-03-04  Dick Porter  <dick@ximian.com>
32885
32886         * icall.c: Temporarily reverted the Double and Single ToString()
32887         change, because it broke nunit.
32888
32889 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32890
32891         * object.h, threads.h: make include files compatible with C++
32892         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32893
32894 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32895
32896         * icall.c: Erased ToString helper functions for Double and Single.
32897         Now, that implementations ar all in managed code (Double and Single
32898         Formatters).
32899
32900 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32901
32902         * appdomain.c: Added method for initializing the default context of
32903         a domain. Added internal call for getting the default context.
32904         * appdomain.h: Added context variable in MonoDomain struct.
32905         * domain.c: mono_domain_set also sets the default context of the domain
32906         * icall.c: Mapped internal method InternalGetDefaultContext.
32907         * object.c: mono_object_get_virtual_method returns always a remoting
32908         wrapper if the object is a transparent proxy.
32909         mono_runtime_invoke_array: when creating an object by calling the
32910         constructor, if the created object is a proxy, then the constructor should
32911         be called using the a remoting wrapper.
32912
32913 2003-03-03  Dick Porter  <dick@ximian.com>
32914
32915         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32916         variable so it compiles on solaris.  Problem spotted by
32917         Christopher Taylor <ct@cs.clemson.edu>
32918
32919 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32920
32921         * appdomain.c:
32922         (get_info_from_assembly_name): don't leak value.
32923
32924         * icall.c:
32925         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32926         result.
32927
32928 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32929
32930         * assembly.c: export mono_image_load_references ().
32931         * class.c: handle function pointers. mono_class_from_name() now
32932         supports nested type names directly.
32933
32934 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32935
32936         * reflection.h reflection.c: Encode already created dynamic methods 
32937         and fields correctly as a DEF instead of a REF.
32938
32939         * reflection.c: Get rid of the force_ref argument to 
32940         mono_image_typedef_or_ref since it was wrong in the first place.
32941
32942         * string-icalls.c: add error checking to string constructors according
32943         to the MSDN docs.
32944
32945         * reflection.c: Emit types in the order their TypeBuilders were 
32946         created. Previously, a new table index was assigned to each type before
32947         the tables were emitted. This was wrong because the signature blob
32948         might already refer to a type by its original table index.
32949
32950 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32951
32952         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32953         change.
32954         
32955 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32956
32957         * Makefile.am: make assemblies dir have \ instead of / on windows.
32958
32959 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32960
32961         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32962         iterate over the NESTEDCLASS table using a linear search since the
32963         table is not guaranteed to be sorted by the secondary key.
32964
32965         * class.c (mono_class_create_from_typedef): fixed up call to
32966         mono_metadata_nesting_typedef.
32967         
32968 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32969
32970         * marshal.c (mono_string_to_byvalstr): clear the memory as
32971         suggested by Jerome Laban <jlaban@wanadoo.fr>
32972
32973 2003-02-26  Dick Porter  <dick@ximian.com>
32974
32975         * process.c: Cope with padding in .rsrc blocks
32976
32977 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32978
32979         * metadata.h: reverted the filter_len change, it breaks reflection
32980         
32981 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32982
32983         * metadata.h: added a new field to store the filter_len
32984         
32985
32986 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32987
32988         * reflection.c: handle custom attributes for types and members
32989         created with Reflection.Emit (bug#38422).
32990
32991 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32992
32993         * reflection.c: define RTSpecialName automatically for constructors for
32994         compatibility with MS.NET.
32995
32996         * reflection.c (mono_reflection_create_runtime_class): initialize
32997         nested_in field of dynamically created classes.
32998
32999 2003-02-22  Martin Baulig  <martin@ximian.com>
33000
33001         * debug-mono-symfile.h: Incremented version number.
33002
33003 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33004
33005         * object.h icall.c process.c: fix warnings.
33006
33007 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
33008
33009         * appdomain.h appdomain.c:
33010         (mono_domain_try_type_resolve): split the 
33011         name_or_tb argument into a name and a tb argument.
33012         (mono_domain_has_type_resolve): new function to check whenever the
33013         application has registered a TypeResolve event handler.
33014         
33015         * icall.c reflection.h reflection.c: move the type resolve logic into
33016         mono_reflection_get_type () so it will be invoked when 
33017         Assembly::GetType () is called.
33018
33019         * reflection.c:
33020         (mono_reflection_get_type): renamed to get_type_internal.
33021         (mono_reflection_get_type): fixed type name generation so it works 
33022         for nested types too.
33023         (mono_reflection_get_type): call has_type_resolve () to avoid the 
33024         costly type name generation if there is no resolve event handler.
33025
33026 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33027
33028         * class.c, image.c: load exported types from file references.
33029
33030 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
33031
33032         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
33033           used to cache the managed methods used to create proxies and make 
33034           remote invocation of methods.
33035         * class.h: Added in MonoVTable a flag to indicate that a class needs 
33036           to be remotely created.
33037         * object.c: Modified the method mono_class_vtable(). It now initializes 
33038           the remote flag of the vtable. Modified mono_object_new_specific(), 
33039           so now it checks the remote flag.
33040         * icall.c: Added a couple of internal methods, one for enabling instance 
33041           creation interception for a type, and one for creating objects bypassing
33042           the remote check.
33043
33044 2003-02-18  Martin Baulig  <martin@ximian.com>
33045
33046         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
33047         New interncall to get a method's metadata token.
33048
33049         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
33050         New interncall for the debugger.
33051
33052 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
33053
33054         * class.c (mono_class_setup_vtable): allocate supertype array
33055
33056 2003-02-18  Martin Baulig  <martin@ximian.com>
33057
33058         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
33059
33060 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33061
33062         * reflection.c:
33063         (assembly_name_to_aname): jump over unknown properties (i've found
33064         something like: 'type, assembly, version=xxx, custom=null, public...',
33065         so now will ignore custom=null and still get the rest of the values).
33066
33067 2003-02-17  Dick Porter  <dick@ximian.com>
33068
33069         * threads.c: Have Thread.Start() wait for a semaphore to signal
33070         that the thread has set up all its local data.  This fixes bug
33071         34323, where Abort() raced the new thread's TLS data.
33072
33073         Also removes the handle_store() call from start_wrapper, because
33074         threads are now always created suspended and there is no longer a
33075         race between the parent and child threads to store the info.
33076
33077 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33078
33079         * image.c: explain the #- heap issue in a message, hopefully
33080         avoiding FAQs on mono-list.
33081
33082 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33083
33084         * icall.c:
33085         (GetEntryAssembly): if the domain has not invoked
33086         AppDomain.ExecuteAssembly yet, return the assembly of the default
33087         AppDomain.
33088
33089 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33090
33091         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33092
33093 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33094
33095         * metadata.c, reflection.c: simple speedup to type hash
33096         and equals code.
33097
33098 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33099
33100         * image.c, image.h, class.c, assembly.c: move module loading
33101         to MonoImage. When loading metadata, consider alignemnet from
33102         the start of metadata, not from the metadata address in memory.
33103
33104 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33105
33106         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33107         AssemblyBuilder objects. Factored out custom attribute creation into
33108         a separate function.
33109         (create_custom_attr): new function to create custom attributes.
33110
33111 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33112
33113         * Makefile.am: Got tired of typing the full pathname to pedump.
33114         Until there is another option, am installing this.
33115
33116 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33117
33118         * class.c (class_compute_field_layout): always set field->parent 
33119         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33120
33121 2003-02-11  Dick Porter  <dick@ximian.com>
33122
33123         * threads-types.h:
33124         * monitor.c: Rewrote Monitor, making lock much faster and
33125         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33126         creates them as needed.
33127
33128         * exception.c: Added SynchronizationLockException
33129
33130         * threads.c: Deleted old Monitor implementation.  The new one is
33131         in a new file.
33132
33133 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33134
33135         * class.c: handled TypedReference type code. Set the correct size for
33136         class data. Setup interface_offsets for interface classes, too.
33137
33138 2003-02-09  Martin Baulig  <martin@ximian.com>
33139
33140         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33141
33142 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33143
33144         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33145         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33146         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33147         * verify.c: check for code that runs after the end of the method.
33148
33149 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33150
33151         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33152         "System.Math::Round2".
33153         * sysmath.h: Added Floor, Round and Round2 definitions.
33154         * sysmath.c: Modified certain functions that were not 100% compliant
33155         with MS.NET (math precision) and added the implementation of Floor,
33156         Round and Round2.
33157
33158 2003-02-07  Martin Baulig  <martin@ximian.com>
33159
33160         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33161
33162 2003-02-07  Martin Baulig  <martin@ximian.com>
33163
33164         * debug-mono-symfile.c: Reflected latest symwriter changes.
33165         (mono_debug_create_mono_symbol_file): Removed.
33166         (mono_debug_open_mono_symbol_file): Take an argument which
33167         specifies whether to create a dynamic symbol file.
33168
33169 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33170
33171         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33172
33173 2003-02-05  Martin Baulig  <martin@ximian.com>
33174
33175         * reflection.c (mono_image_build_metadata): Make this public,
33176         protect it against being called multiple times, don't create
33177         resources and don't build the compressed metadata here.
33178         (mono_image_create_pefile): Do this here.
33179
33180         * icall.c
33181         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33182
33183 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33184
33185         * socket-io.c: fixed bug #36322.
33186
33187 2003-02-06  Piers Haken <piersh@friskit.com>
33188
33189         * appdomain.[ch]:
33190         * class.h:
33191         * debug-mono-symfile.c:
33192         * icall.c:
33193         * loader.c:
33194         * mono-config.c:
33195         * monosn.c:
33196         * reflection.c:
33197         * socket-io.c: warning cleanups
33198
33199 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33200
33201         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33202         function. works like remoting invoke, but does a check for the Proxy first.
33203
33204 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33205
33206         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33207
33208 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33209
33210         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33211         array of pointers.
33212         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33213         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33214
33215         * object.c (mono_store_remote_field_new): used by the new jit
33216         instead of mono_store_remote_field
33217         (mono_load_remote_field_new): used by the new jit
33218         instead of mono_load_remote_field
33219
33220 2003-02-05  Patrik Torstensson
33221
33222         * appdomain.c: changed unload to take the domain id instead
33223         of domain
33224         
33225         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33226
33227
33228 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33229
33230         * appdomain.c: don't look for assemblies in ApplicationBase if
33231         PrivateBinPathProbe is set.
33232
33233 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33234
33235         * object.c: make the first argument in main_args contain the absolute
33236         path to the assembly. Fixes bug #37511.
33237
33238 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33239
33240         * icall.c: get correct UTC offset for countries not using daylight
33241         time saving. Fixes bug #30030.
33242
33243 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33244
33245         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33246         and 1 are the family).
33247
33248 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33249
33250         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33251
33252         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33253
33254 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33255
33256         * reflection.c: added support for SignatureHelper tokens, which is
33257         needed by the Calli opcode.
33258
33259         * reflection.h: track changes to SignatureHelper class.
33260
33261         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33262
33263 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33264
33265         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33266
33267 2003-02-03  Patrik Torstensson
33268         * appdomain.[c|h], domain.c : 
33269          - Added support for getting a domain via domain id
33270          - Support for setting and getting domain from System.AppDomain 
33271            (used in cross appdomain channel)
33272          - Added support for get/set for a MonoAppContext on a thread 
33273            (Context class in System.Runtime.Remoting.Contexts),
33274          - Removed hack in Get/SetData and ExecuteAssembly.
33275         
33276         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33277         the managed world to get control when a proxy is created.
33278
33279         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33280         
33281 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33282
33283         * icall.c
33284         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33285         Populate the codebase field as well.
33286
33287 2003-02-02  Martin Baulig  <martin@ximian.com>
33288
33289         * debug-mono-symfile.c
33290         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33291         (mono_debug_symfile_add_method): Allow interncalls.
33292
33293 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33294
33295         * icall.c: throw parse exception if strtod fails or the string is empty.
33296
33297 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33298
33299         * marshal.c: handle object type separately from defined
33300         class types.
33301
33302 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33303
33304         * marshal.c: handle NATIVE_LPSTR for strings when it's
33305         explicitly specified.
33306
33307 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33308
33309         * reflection.c, reflection.h, icall.c: setup the reflection
33310         handle cache for ModuleBuilders and AssemblyBuilders.
33311
33312 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33313
33314         * reflection.c (reflection_methodbuilder_to_mono_method): set
33315         pinvoke flag
33316
33317 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33318
33319         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33320
33321 2003-01-29  Dick Porter  <dick@ximian.com>
33322
33323         * threads.c: No need for the fake_thread kludge now that Thread
33324         doesn't run a class constructor
33325         
33326 2003-01-29  Dick Porter  <dick@ximian.com>
33327
33328         * threads.c: Use g_direct_hash instead of the rather bogus
33329         g_int_hash
33330
33331 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33332
33333         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33334         (fix pinvoke12.exe)
33335         (mono_marshal_get_struct_to_ptr): generate valid IL code
33336         (mono_marshal_get_ptr_to_struct): generate valid IL code
33337         (*): correctly set sig->pinvoke, we need to memdup the signature
33338         to do that
33339
33340 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33341
33342         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33343         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33344
33345 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33346
33347         * profiler.c: provide more callers information.
33348
33349 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33350
33351         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33352
33353         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33354
33355         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33356
33357 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33358
33359         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33360         exception instead of going into an infinite loop on dates which it 
33361         can't yet handle.
33362
33363         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33364         out-of-range exception if needed.
33365
33366         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33367         an implementation for an interface method and to override an inherited
33368         method at the same time. 
33369         Imagine a scenario when a virtual method is used to override a
33370         virtual abstract method in a parent class, and this same method 
33371         provides an implementation for an method inherited from an interface. 
33372         In this case, the interface resolution code will set im->slot, which 
33373         means that the virtual method override pass will skip this method 
33374         which means a pointer to the abstract method inherited from the parent
33375         will remain in the vtable of this non-abstract class.
33376
33377         * class.c: (mono_class_setup_vtable): continue search for a real 
33378         method if only an abstract method is found.     
33379
33380 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33381
33382         * reflection.c: add size to encoding for ByValStr and ByValArray
33383         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33384
33385 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33386
33387         * class.c (mono_class_setup_vtable): pass the override info as an
33388         argument.
33389
33390         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33391         correctly.
33392         
33393         * reflection.c (ensure_runtime_vtable); add support for method 
33394         overrides.
33395         
33396 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33397
33398         * reflection.c (resolution_scope_from_image): Hack to work to work with
33399         dynamic assemblies.
33400
33401         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33402         added a 'force_ref' argument to force this function to allways return 
33403         a TypeRef. This is needed by mono_image_get_memberref_token ().
33404         
33405 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33406
33407         * reflection.c (mono_image_get_type_info): interfaces really don't have
33408         a parent.
33409
33410         * reflection.c (mono_image_basic_init): fill out missing fields of
33411         image structure.
33412
33413         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33414         dynamic assemblies. This is required so dynamic assemblies show up in
33415         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33416         Type::GetType() etc. This is consistent with MS behaviour.
33417
33418         * image.c image.h reflection.c: add newly created classes to the name 
33419         cache so mono_class_get () will find them.      
33420
33421 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33422
33423         First part of changes to get IKVM.NET running under mono.
33424         
33425         * appdomain.h, appdomain.c: added new function 
33426         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33427         This function will call AppDomain::DoTypeResolve to do the actual work.
33428
33429         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33430         moved existing code dealing with dynamic tokens to a new function 
33431         called mono_reflection_lookup_dynamic_token (). This function will 
33432         raise TypeResolve events when appropriate. Since reflection.c is not 
33433         part of libmetadata, a new hook function called 
33434         mono_lookup_dynamic_token() is added to class.c which will call this.
33435
33436         * assembly.h assembly.c: make the invoke_load_hook function public,
33437         so it can be called for dynamic assemblies.
33438
33439         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33440
33441         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33442         type isn't found.
33443
33444         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33445         MonoGHashTable, since it contains pointers to objects which the GC 
33446         needs to track.
33447
33448         * assembly.c (search_loaded): remove unused variable.
33449         
33450 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33451
33452         * object.c: fixed issue exposed by gcc-generated IL programs
33453         that use RVA data for pointers.
33454
33455 2003-01-25  Martin Baulig  <martin@ximian.com>
33456
33457         * threads.c (start_wrapper): Moved the initialization of
33458         `start_func' above the mono_new_thread_init() call to which we
33459         pass it as argument.
33460
33461 2003-01-24  Martin Baulig  <martin@ximian.com>
33462
33463         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33464         the MonoThread pointer.
33465
33466 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33467
33468         * icall.c: Rename `PowImpl' to Pow.
33469
33470 2003-01-23  Dick Porter  <dick@ximian.com>
33471
33472         * threads.c (start_wrapper): Create a Thread object if needed, so
33473         the Main() thread can do the class initialisation in a subthread
33474         that has been set up to allow managed code execution.
33475
33476         Pass the thread ID instead of the MonoThread pointer to the thread
33477         start and attach callbacks.  This change is required, because the
33478         jit thread start callback must be called _before_ the Thread
33479         object can be created.
33480         
33481         (mono_thread_init): Removed much object creation code that is no
33482         longer needed.  No managed code is called from here now.
33483
33484         * object.c (mono_runtime_exec_managed_code): Create a subthread
33485         for Main, and call back to the runtime to use it.
33486         Set the exit code when Main exits.
33487
33488         * gc.c: Make sure domain finalisation happens in a subthread.
33489         Re-enable threaded GC, fixing bug 31333 (again).
33490
33491         * environment.c: System.Environment internall calls (so far just
33492         ExitCode is here, the others are still in icall.c)
33493
33494         * appdomain.c (mono_runtime_cleanup): All threads running managed
33495         code should have finished before mono_runtime_cleanup() is
33496         reached, so no need to clean up threads.
33497
33498 2003-01-22  Martin Baulig  <martin@ximian.com>
33499
33500         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33501         `gpointer func' arguments.      
33502         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33503         but added `MonoThread *thread' argument.
33504         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33505
33506         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33507         and pass it to the mono_thread_start_cb callback.
33508         (mono_install_thread_callbacks): New public function to install a
33509         set of callbacks which are set by the debugger.
33510         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33511
33512 2003-01-22  Martin Baulig  <martin@ximian.com>
33513
33514         * Makefile.am: Install debug-mono-symfile.h.
33515
33516 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33517
33518         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33519
33520 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33521
33522         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33523         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33524         (mono_array_class_get): correctly set access levels of arrays
33525
33526 2003-01-20      Patrik Torstensson
33527         * image.h (MonoAssemblyName): changed major, minor, build, revision
33528         from signed to unsigned.
33529
33530 2003-01-20  sean kasun <skasun@azstarnet.com>
33531
33532         * reflection.c (load_cattr_value): Now this handles
33533         MONO_TYPE_SZARRAY.  Fixes bug #35629
33534
33535 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33536
33537         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33538         integer value
33539
33540 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33541
33542         * decimal.c: fixed bug #26056.
33543
33544 2003-01-17  Martin Baulig  <martin@ximian.com>
33545
33546         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33547
33548 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33549
33550         * exception.[ch]:
33551         (mono_get_exception_type_initialization): new function.
33552
33553         * object.c: throw a TypeInitializationException when an exception is
33554         thrown invoking the class constructor.
33555
33556 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33557
33558         * reflection.c: fixed attribute reading.
33559
33560 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33561
33562         * icall.c:
33563         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33564         provided, look for the type in the calling assembly and then in
33565         mscorlib; if the assembly name is provided, only try that one.
33566
33567 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33568
33569         * object.c: register the vtable before there is a chance it's
33570         queried again recursively.
33571
33572 2003-01-13  Duncan Mak  <duncan@ximian.com>
33573
33574         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33575         gc-internal.h. 
33576         
33577 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33578
33579         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33580
33581 2003-01-11  Martin Baulig  <martin@ximian.com>
33582
33583         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33584         this to 20 for the release.
33585
33586 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33587
33588         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33589
33590         * loader.c (mono_method_get_marshal_info): bug fix
33591
33592         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33593         structures with explicit layout
33594
33595 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33596
33597         * profiler.c: made the output more readable (and sorted). 
33598         Added caller information for the allocation profiler.
33599
33600 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33601
33602         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33603
33604 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33605
33606         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33607         to get value types.
33608         
33609 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33610
33611         * object.c, profiler.h, profiler.c, profiler-private.h:
33612         Added object allocation profiler.
33613
33614 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33615
33616         * reflection.h, reflection.c: handle global methods.
33617         Compress blob entries.
33618
33619 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33620
33621         * marshal.c: fix compilation.
33622
33623 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33624
33625         * loader.c (mono_method_get_marshal_info): impl.
33626
33627         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33628
33629 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33630
33631         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33632         for reference types.
33633
33634 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33635
33636         * loader.c: fixed off by one error in loaded parameter names.
33637
33638 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33639
33640         * marshal.c (mono_marshal_get_icall_wrapper): like
33641         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33642         instead of a MonoMethod.
33643
33644 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33645
33646         * decimal.c: fixed bug #36537.
33647
33648 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33649
33650         * marshal.c: throw a missing method exception if a
33651         P/Invoke method is not found.
33652
33653 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33654
33655         * icall.c: allow a null this for constructors.
33656
33657 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33658
33659         * icall.c: raise the proper exceptions if the arguments to the
33660         internal Invoke are incorrect.
33661
33662 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33663
33664         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33665
33666 2003-01-03  Martin Baulig  <martin@ximian.com>
33667
33668         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33669
33670 2002-12-31  Martin Baulig  <martin@ximian.com>
33671
33672         * debug-mono-symfile.c: Completely rewrote the type section.
33673         Instead of using individual malloc()ed fields, we use one big
33674         continuous memory area and offsets into this area.
33675         See the comments in the source code for details.
33676
33677 2002-12-30  Martin Baulig  <martin@ximian.com>
33678
33679         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33680
33681 2002-12-30  Martin Baulig  <martin@ximian.com>
33682
33683         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33684         line number table in this data blob instead of using an external
33685         pointer.
33686
33687 2002-12-28  Martin Baulig  <martin@ximian.com>
33688
33689         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33690
33691 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33692
33693         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33694         as a boxed return type.
33695
33696 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33697
33698         * appdomain.c
33699         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33700         g_build_filename to properly get separators on the filename created.
33701
33702         * object.h: Small change, introduce MonoMarshalByRefObject to
33703         track the layout of that structure in the C# universe as we make
33704         changes there.
33705
33706 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33707
33708         * object.c: removed assert to allow static fields on interfaces.
33709         * loader.c: a TypeSpec may be used for any type, not just arrays.
33710
33711 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33712
33713         * class.c, class.h: added mono_class_array_element_size ().
33714         Ignore static methods in interfaces.
33715
33716 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33717
33718         * threads.c: fixed the build under cygwin.
33719
33720 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33721
33722         * reflection.c: handle nullref constants. Allocate keys for
33723         reflection handles with the GC.
33724
33725 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33726
33727         * threads.c, threads.h: added mono_thread_get_abort_signal()
33728         to get a suitable signal for thread abort.
33729
33730 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33731
33732         * metadata.c: fix handling of ExportedType table.
33733
33734 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33735
33736         * icall.c: added WriteWindowsDebugString internal call.
33737
33738 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33739
33740         * reflection.h: added fields to match C# implementation.
33741
33742 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33743
33744         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33745
33746 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33747
33748         * gc.h, gc-internal.h: Rename header for GC internal calls to
33749         gc-internal.h from gc.h as to not clash with Boehm GC having its
33750         header installed as <gc.h> in outside include paths.
33751         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33752         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33753
33754 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33755
33756         * icall.c: assign minor, build and revision in FillName.
33757
33758 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33759
33760         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33761         Added support for running code generated by Reflection.Emit.
33762
33763 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33764
33765         * appdomain.c: check for NULL argument in LoadFrom.
33766
33767 2002-12-10  Dick Porter  <dick@ximian.com>
33768
33769         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33770
33771 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33772
33773         * appdomain.c: fix buglet when building exe file name.  Handle full
33774         assembly name (needed after latest changes to AssemblyName).
33775         * image.c:
33776         (mono_image_close): free some hashtables.
33777
33778 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33779
33780         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33781         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33782         on some systems (redhat 7.3) 
33783
33784 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33785
33786         * threads.c: delete the critical section of a sync block,
33787         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33788
33789 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33790
33791         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33792
33793 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33794
33795         * appdomain.[ch]: handle the assembly preload event to try loading the
33796         assemblies using the paths we have in the current domain.
33797
33798         * assembly.[ch]: created an assembly preload hook that is called to try
33799         loading the assembly by other means that the ones provided here.
33800
33801         * domain.c: initialize the domain search path.
33802
33803         From now on, assemblies (TODO: except corlib and System) are loaded
33804         according to these rules when using mono_assembly_load ():
33805
33806                 1. It tries to load the assembly from the ApplicationBase
33807                 of the current domain appending .dll and .exe (TODO: have to
33808                 try loading from name/name.dll and name/name.exe).
33809
33810                 2. It tries the search path specified in PrivateBinPath for the
33811                 current domain (if any).
33812
33813                 3. Previous behavior.
33814
33815 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33816
33817         * icall.c: implemented GetInterfaceMap() related icall.
33818         * domain.c, loader.h: load MethodInfo in mono_defaults.
33819
33820 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33821
33822         * gc.c: disable the finalizer thread for now, untill all the issues
33823         with it are resolved.
33824
33825 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33826
33827         * string-icalls.c: handle embedded nulls in string ctor when the
33828         length is specified.
33829
33830 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33831
33832         * class.c: look for explicit interface implementation in parent
33833         classes, too.
33834
33835 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33836
33837         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33838
33839 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33840
33841         * gc.c: protect handles with a critical section.
33842
33843 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33844
33845         * icall.c:
33846         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33847         parameters. If no assembly specified, try getting the type from all
33848         the assemblies in the current domain, else, load the assembly and get
33849         the type from it.
33850
33851 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33852
33853         * marshal.c: applied patch from Aleksey Demakov that fixes
33854         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33855
33856 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33857
33858         * icall.c: fixed get_location.
33859
33860 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33861
33862         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33863         declarations to make it work with older gcc. 
33864
33865         * loader.c (mono_get_method): set signature->pinvoke for native calls
33866
33867 2002-11-20  Dick Porter  <dick@ximian.com>
33868
33869         * threads.c (mono_thread_init): Set the main thread's handle
33870
33871 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33872
33873         * gc.c: allow compilation without GC support. Changed to match the
33874         mono coding style.
33875
33876 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33877
33878         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33879
33880 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33881
33882         * reflection.c: set a public key token on the core assemblies.
33883
33884 2002-11-18  Dick Porter  <dick@ximian.com>
33885
33886         * threads.c: Split out some thread initialisation so that other
33887         files can set the start callback function.
33888
33889         * gc.c: Run finalisers in a separate thread, to avoid stack
33890         overflow.  Fixes bug 31333.
33891
33892         * appdomain.c: Set up GC finalisation thread.
33893
33894         * reflection.c: 
33895         * object.c: 
33896         * domain.c: Use gc.h macros for GC_malloc
33897         
33898 2002-11-15  Dick Porter  <dick@ximian.com>
33899
33900         * threadpool.c: 
33901         * threads.c:
33902         * appdomain.c: Removed mono_runtime_init_with_attach(),
33903         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33904         merging the extra parameter with the existing function.  Removed
33905         unneeded code in mono_thread_attach().
33906
33907 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33908
33909         * image.c (mono_image_loaded_by_guid): a method to get loaded
33910         images by guid. 
33911         (load_metadata_ptrs): we store the guid as string.
33912
33913 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33914
33915         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33916
33917         * metadata.c (mono_guid_to_string): imported method form Zoltan
33918         Varga (slightly modified)
33919
33920         * assembly.c (mono_assembly_open): load precompiled code
33921
33922         * loader.h (MonoMethod): we store the method token for use in the
33923         aot compiler. 
33924
33925 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33926
33927         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33928         the hook function called when an assembly is loaded.
33929         
33930         * domain.c: Modified file.
33931         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33932
33933         Fixes bug #33196.
33934
33935 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33936
33937         * reflection.c: Map PEFileKind to the value expected by the WinNT
33938         image loader. 
33939
33940 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33941
33942         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33943         Read until the buffer is filled completely.
33944
33945 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33946
33947         * icall.c: implemented MonoType.InternalGetEvent ().
33948
33949 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33950
33951         * appdomain.c: implemented InitAppDomainSetup. Delayed
33952         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33953         the entry_assembly.
33954
33955         * assembly.c: base_dir is now an absolute path ending with
33956         G_DIR_SEPARATOR.
33957
33958         * icall.c: modified get_location according to the above changes.
33959
33960         * object.c: init AppDomain.SetupInformation for the default domain after
33961         we have the entry assembly.
33962
33963         * domain.c: when unloading a domain, setup = NULL.
33964
33965 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33966
33967         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33968
33969 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33970
33971         * object.h, object.c: introduced mono_object_get_virtual_method ()
33972         to lookup the method invoked on an object when a callvirt is done on
33973         a method.
33974         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33975
33976 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33977
33978         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33979         current domain when loaded an assembly and failed to load it.
33980
33981         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33982
33983 2002-10-31  Dick Porter  <dick@ximian.com>
33984
33985         * icall.c: 
33986         * file-io.h: 
33987         * file-io.c: Return the error status in a parameter, as the
33988         GetLastError() value has long since been blown away if we try and
33989         look it up in a subsequent internal call invocation.  Delete the
33990         GetLastError() internal call, because it's useless.
33991
33992 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33993
33994         * class.[ch]: added cast_class to fix bug 29517
33995
33996 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33997
33998         * marshal.c: create valid IL code in the filter clause:
33999         the new JIT is less forgiving:-)
34000
34001 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34002
34003         * icall.c: removed get_property internal call.
34004
34005 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
34006
34007         * appdomain.h domain.c: Added an ID to appdomains.
34008         
34009         * threads.c threads.h icall.c: Implement icall
34010         Thread:GetDomainID(), and remove unused icall 
34011         CurrentThreadDomain_internal.
34012
34013 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34014
34015         * icall.c: Don't recurse through the base types in GetConstructor.
34016         Fixes bug #32063. 
34017
34018 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34019
34020         * mempool.h, mempool.c: added mono_mempool_empty() and
34021         mono_mempool_stats().
34022
34023 2002-10-23  Dick Porter  <dick@ximian.com>
34024
34025         * file-io.c: 
34026         * file-io.h: 
34027         * icall.c: Added MonoIO.GetFileType internal call
34028
34029 2002-10-17  Dick Porter  <dick@ximian.com>
34030
34031         * appdomain.c (mono_runtime_cleanup): Don't signal the async
34032         delegate semaphore before waiting for all threads to finish,
34033         because new threads can also call async delegates.  Fixes bug
34034         32004.
34035
34036         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
34037         of 3 seconds, in case another async job is queued.  (This part is
34038         needed because the bug fix reintroduced the 3s exit lag.)  This
34039         makes the mono_runtime_shutdown flag superfluous.
34040
34041 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34042
34043         * reflection.c: include ehader size in method section headers.
34044         Really check for suplicated modules entries.
34045
34046 2002-10-17  Martin Baulig  <martin@gnome.org>
34047
34048         * debug-mono-symfile.c: Added back support for locals.
34049
34050 2002-10-14  Martin Baulig  <martin@gnome.org>
34051
34052         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
34053         MONO_TYPE_VOID.
34054
34055 2002-10-14  Martin Baulig  <martin@gnome.org>
34056
34057         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
34058         mono_class_get() instead of looking in the class cache. 
34059
34060 2002-10-13  Martin Baulig  <martin@gnome.org>
34061
34062         * debug-mono-symfile.c: Set version number to 28, include the
34063         signature in method names.
34064
34065 2002-10-13  Martin Baulig  <martin@gnome.org>
34066
34067         * debug-mono-symfile.h: Set version number to 27.
34068
34069 2002-10-11  Martin Baulig  <martin@gnome.org>
34070
34071         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34072
34073 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34074
34075         * metadata.c, metadata.h: added helper function to allocate signatures.
34076
34077 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34078
34079         * icall.c: added internal call to get the location of machine.config.
34080
34081 2002-10-08  Martin Baulig  <martin@gnome.org>
34082
34083         * debug-mono-symfile.c: Ignore classes with a pending init for the
34084         moment.
34085
34086 2002-10-03  Dick Porter  <dick@ximian.com>
34087
34088         * threads.c: Freebsd pthread_t is a pointer
34089
34090 2002-10-03  Dick Porter  <dick@ximian.com>
34091
34092         * socket-io.c: Implemented GetHostName_internal
34093
34094 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34095
34096         * mono-config.c:
34097         (mono_config_parse_file): don't leak the text.
34098
34099 2002-10-02  Martin Baulig  <martin@gnome.org>
34100
34101         * debug-mono-symfile.c: Added support for methods.
34102
34103 2002-10-01  Martin Baulig  <martin@gnome.org>
34104
34105         * debug-mono-symfile.c: Don't emit methods and line numbers for
34106         the dynamic symbol file, just write the type table.  We can easily
34107         have an external helper program which creates a symbol file for an
34108         IL file.        
34109
34110 2002-10-01  Dick Porter  <dick@ximian.com>
34111
34112         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34113         Only add the handle to the cleanup array when we're about to
34114         launch the thread.  Bug 31425 deadlocked when the test was run on
34115         mono under w32.
34116
34117 2002-10-01  Martin Baulig  <martin@gnome.org>
34118
34119         * debug-mono-symfile.c: Added support for properties.
34120
34121 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34122
34123         * reflection.c: unaligned store fix from Mark Crichton
34124         <crichton@gimp.org>.
34125
34126 2002-09-27  Martin Baulig  <martin@gnome.org>
34127
34128         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34129         New interncall.
34130
34131 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34132
34133         * assembly.h, assembly.c: use a sane API to hook into the assembly
34134         loading process instead of a useless special-purpouse hack
34135         (ngen needs a hook, too, for example).
34136
34137 2002-09-27  Dick Porter  <dick@ximian.com>
34138
34139         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34140         io-layer can set up some process handle info.  Not needed on w32,
34141         but doesn't hurt either.
34142
34143         * process.c: Pass the program name in the second parameter to
34144         CreateProcess, so the path is searched.  Include the working
34145         directory. Implemented process name, process enumeration, and some
34146         process detail internal calls.
34147         
34148         * icall.c: Added internal calls for process lookup, and some
34149         process details
34150
34151 2002-09-26  Martin Baulig  <martin@gnome.org>
34152
34153         * assembly.c (mono_install_open_assembly_hook): New global
34154         function to install a function to be invoked each time a new
34155         assembly is loaded.
34156         (mono_assembly_open): Run this callback function if set.
34157
34158         * debug-mono-symfile.c: Put back line numbers for the dynamic
34159         symbol file and also record the .il file as source file.  This
34160         allows us to install the temporary symbol file as `file.dbg' just
34161         like a compiler-generated one.
34162
34163 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34164
34165         * Corrected typo in gc.c (BOHEM vs BOEHM).
34166
34167 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34168
34169         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34170         GetProperties. Also avoid calling g_slist_length in GetProperties and
34171         GetMethods.
34172
34173 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34174
34175         * reflection.c: avoid unaligned stores (bug spotted by
34176         Mark Crichton  <crichton@gimp.org>).
34177
34178 2002-09-25  Martin Baulig  <martin@gnome.org>
34179
34180         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34181         instead of guint64 for addresses and added prologue/epilogue info.
34182
34183 2002-09-25  Martin Baulig  <martin@gnome.org>
34184
34185         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34186         store line number info.  For the dynamic symbol file, we only need
34187         to provide the JIT generated dynamic line number info for the dynamic
34188         symbol file.
34189
34190 2002-09-25  Martin Baulig  <martin@gnome.org>
34191
34192         * debug-mono-symfile.h: Incremented version number.
34193
34194 2002-09-24  Martin Baulig  <martin@gnome.org>
34195
34196         * class.c (mono_debugger_class_init_func): New global function
34197         pointer variable.
34198         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34199         call it.
34200
34201         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34202         function.  This is called via the mono_debugger_class_init_func
34203         hook to add all types to the dynamic type table.
34204         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34205         from its metadata token.
34206
34207         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34208         New interncall for the debugger.
34209
34210 2002-09-24  Nick Drochak <ndrochak@gol.com>
34211
34212         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34213         before using it in case it is null.
34214         
34215 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34216
34217         * metadata.c: allow custom modifiers in local var signatures
34218         (bug spotted by Zoltan Varga).
34219
34220 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34221
34222         * class.c: deal with the <Module> class that may have a NULL vtable.
34223         Eliminate warnings.
34224
34225 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34226
34227         * image.c, image.h: more strong name helpers.
34228         * monosn.c: more work: convert pem keys to cryptoapi format.
34229
34230 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34231
34232         * string-icalls.c: speedup IndexOf.
34233
34234 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34235
34236         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34237
34238 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34239
34240         * icall.c: cleanup: use mono_object_domain ().
34241
34242 2002-09-23  Martin Baulig  <martin@gnome.org>
34243
34244         * debug-mono-symfile.c: Improved type support.
34245
34246 2002-09-22  Martin Baulig  <martin@gnome.org>
34247
34248         * debug-mono-symfile.c: Added support for reference types and strings.
34249
34250 2002-09-22  Martin Baulig  <martin@gnome.org>
34251
34252         * debug-mono-symfile.c: Started to work on the type table.
34253
34254 2002-09-21  Martin Baulig  <martin@gnome.org>
34255
34256         * debug-mono-symfile.c: Largely reworked the symbol table format.
34257         The symbol table is now incrementally updated each time a new
34258         method is added.  We're now also using our own magic and version
34259         so that you don't need to recompile all your classes if the
34260         dynamic table changes.
34261         (mono_debug_update_mono_symbol_file): Removed.
34262         (mono_debug_symfile_add_method): New function to add a method.
34263
34264 2002-09-21  Martin Baulig  <martin@gnome.org>
34265
34266         * icall.c
34267         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34268         New interncall.
34269
34270         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34271         New interncall to get a method from its metadata token.
34272
34273 2002-09-21  Martin Baulig  <martin@gnome.org>
34274
34275         * debug-mono-symfile.c: Create type table.
34276
34277 2002-09-20  Martin Baulig  <martin@gnome.org>
34278
34279         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34280
34281 2002-09-20  Martin Baulig  <martin@gnome.org>
34282
34283         * debug-mono-symfile.c: Provide information about params and locals.
34284
34285 2002-09-20  Martin Baulig  <martin@gnome.org>
34286
34287         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34288         New interncall.
34289
34290         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34291         interncall to get a method from its metadata token.
34292
34293 2002-09-20  Martin Baulig  <martin@gnome.org>
34294
34295         * debug-mono-symfile.c: Added a few checks for method->header
34296         being non-NULL.  This should never happen, but for the moment
34297         let's use a g_warning() rather than a g_assert().
34298
34299 2002-09-19  Mark Crichton  <crichton@gimp.org>
34300
34301         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34302         even if support for it isn't present.  Added an #ifdef to fix this.
34303
34304         * socket-io.c: Added checks back for Solaris support.
34305
34306 2002-09-19  Martin Baulig  <martin@gnome.org>
34307
34308         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34309         changes in the symbol file format.
34310
34311 2002-09-18  Martin Baulig  <martin@gnome.org>
34312
34313         * debug-mono-symfile.c: Set version number to 21.
34314
34315 2002-09-18  Dick Porter  <dick@ximian.com>
34316
34317         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34318         on netbsd.  Fixes bug 30051.
34319
34320 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34321
34322         * reflection.c:
34323         (set_version_from_string): little fix.
34324
34325 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34326
34327         * monosn.c, Makefile.am: added strong name utility.
34328         * reflection.h, reflection.c: implemented delayed signing,
34329         locale, version and hash id assembly attributes.
34330
34331 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34332
34333         * loader.c, metadata.c: load param attributes in signatures.
34334
34335 2002-09-16  Martin Baulig  <martin@gnome.org>
34336
34337         * debug-mono-symfile.c: Added string table with all method names.
34338
34339 2002-09-14  Martin Baulig  <martin@gnome.org>
34340
34341         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34342         fast method lookup.
34343
34344 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34345
34346         * reflection.c: record the public key token of referenced assemblies.
34347
34348 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34349
34350         * image.c, image.h: added functions to get the strong name and the
34351         public key of an assembly.
34352         * pedump.c: use them.
34353
34354 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34355
34356         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34357
34358 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34359
34360         * marshal.c (mono_marshal_get_managed_wrapper): Added
34361         MONO_TYPE_BOOLEAN 
34362
34363 2002-09-11  Martin Baulig  <martin@gnome.org>
34364
34365         * gc.c: Call GC_unregister_disappearing_link() on all links when
34366         finalizing them, this is necessary to aviod a crash in boehm's
34367         finalize handler.
34368
34369 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34370
34371         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34372         nick@chemlab.org.
34373
34374 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34375
34376         * icall.c: implemented MonoType::Module.
34377         * reflection.c, reflection.h: mono_module_get_object () from
34378         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34379
34380 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34381
34382         * icall.c: ignore overridden methods in GetMethods ().
34383         Fix for FieldInfo::SetValue().
34384         * object.c: handle float/double in runtime invoke.
34385
34386 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34387
34388         * object.c: allow a constructor to be called again on an object.
34389
34390 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34391
34392         * class.h, class.c: move field layout code to it's own function and
34393         export it. Get an interface id earlier. Move fields in MonoClass
34394         so they are more cache friendly and align the bitfields.
34395         * loader.c: temporary handle get_param_names() for a runtime method.
34396         * reflection.c, reflection.h: more code to handle runtime creation of
34397         types.
34398
34399 2002-09-09  Martin Baulig  <martin@gnome.org>
34400
34401         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34402         signature with the pinvoke field being set for the actual call.
34403
34404 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34405
34406         * icall.c: removed some unused icalls. Start of map of glib charsets
34407         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34408
34409 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34410
34411         * debug-helpers.c: break infinite loop (found and fixed by
34412         Holger Arnold <harnold@gmx.de>).
34413
34414 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34415
34416         * icall.c: target may be null in create_delegate.
34417
34418 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34419
34420         * marshal.c: handle a boolean return type.
34421
34422 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34423
34424         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34425
34426 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34427
34428         * gc.c: fix weakreferences.
34429
34430 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34431
34432         * icall.c: added icall to get default codepage.
34433
34434 2002-09-03  Dick Porter  <dick@ximian.com>
34435
34436         * threads.h: 
34437         * threads.c: Use MonoThread instead of MonoObject where
34438         apropriate.
34439
34440         Store running thread objects in a hash table, so that we have all
34441         the info to hand when waiting for them to finish
34442         (means we don't need OpenThread() any more, so mingw builds should
34443         be fully functional again.)
34444
34445         * verify.c:
34446         * object.h: Added thread ID to MonoThread
34447
34448 2002-09-03  Martin Baulig  <martin@gnome.org>
34449
34450         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34451
34452 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34453
34454         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34455
34456 2002-09-03  Martin Baulig  <martin@gnome.org>
34457
34458         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34459         argument to store the end address of the disassembled instruction.
34460
34461         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34462         here from debug-symfile.h.
34463         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34464         JIT into this struct.
34465         (MonoSymbolFile): Added `char *image_file' field.
34466         (MonoDebugGetMethodFunc): Removed.
34467         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34468         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34469         (mono_debug_find_method): New method.
34470
34471         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34472         create a full symbol file.
34473         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34474         and static symbol files.
34475         (mono_debug_find_method): The symbol file keeps an internal method hash,
34476         call this to get a MonoDebugMethodInfo from a MonoMethod.
34477
34478         * debug-symfile.[ch]: Removed.
34479
34480 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34481
34482         * image.c (do_mono_image_open): Remove linker version check.
34483
34484 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34485
34486         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34487         wrappers for instance methods.
34488         
34489 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34490
34491         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34492
34493 2002-08-28  Dick Porter  <dick@ximian.com>
34494
34495         * Makefile.am: Export HOST_CC for w32 builds
34496
34497 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34498
34499         * file-io.c process.c: MonoString are null terminated, no
34500         need for mono_string_to_utf16() anymore.
34501
34502 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34503
34504         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34505
34506 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34507
34508         * icall.c, reflection.h: speedup System.MonoType.
34509
34510 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34511
34512         * reflection.c: allow null as the value of a string argument in
34513         custom attributes constructors.
34514
34515 2002-08-27  Martin Baulig  <martin@gnome.org>
34516
34517         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34518         `trampoline_address' field.
34519
34520 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34521
34522         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34523         check (fixes bug #29486) 
34524
34525 2002-08-27  Martin Baulig  <martin@gnome.org>
34526
34527         * debug-mono-symfile.c: Changed the file format in a way that allows us
34528         open it read-only and to use a specially malloced area for all the
34529         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34530         debugging IL code and there is no MCS generated symbol file for it.
34531
34532 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34533
34534         * object.c: added a define for a good string and array
34535         creation speedup (not enabled by default because we need to deal with
34536         the synch stuff).
34537
34538 2002-08-26  Martin Baulig  <martin@gnome.org>
34539
34540         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34541         function to create a dynamic symbol file.  This is used by the
34542         debugger to create a symbol file for IL code on-the-fly.
34543
34544 2002-08-26  Martin Baulig  <martin@gnome.org>
34545
34546         * loader.c (mono_lookup_pinvoke_call): Include the error message
34547         from g_module_error() in the error message.
34548
34549 2002-08-24  Martin Baulig  <martin@gnome.org>
34550
34551         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34552         function to update the symbol file.  The symbol file is mmap()ed
34553         writable, but private.  This allows us to install the symbol file
34554         together with the assembly.
34555
34556 2002-08-24  Martin Baulig  <martin@gnome.org>
34557
34558         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34559         but they can read the new symbol file format which mcs is now creating.
34560
34561         * debug-symfile.c (mono_debug_find_source_location): Moved to
34562         debug-mono-symfile.c; this is now operating on the new symbol file.
34563
34564 2002-08-23  Martin Baulig  <martin@gnome.org>
34565
34566         * debug-helpers.c (mono_method_desc_from_method): New function to get
34567         a MonoMethodDesc from a MonoMethod.
34568
34569 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34570
34571         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34572         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34573
34574 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34575
34576         * string-icalls.[ch]: make helper methods static.
34577
34578 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34579
34580         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34581         types to it and to SetValueInternal.
34582
34583         * object.c: Moved handle_enum label to its proper place. This was the
34584         f... bug! ;-)
34585
34586         This time i compiled mcs and gtk-sharp and they both work.
34587
34588 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34589
34590         * icall.c: reverted partially my previous patch until 
34591         object.c:set_value handles enums correcly.
34592
34593 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34594
34595         * icall.c:
34596         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34597         (ves_icall_System_Environment_get_MachineName): removed warning when
34598         compiling under cygwin.
34599
34600 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34601
34602         * object.c: fixed field_get_value() for reference types.
34603
34604 2002-08-22  Dick Porter  <dick@ximian.com>
34605
34606         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34607         Don't free a buffer while it's still needed.  Patch from Jonathan
34608         Liger <Jonathan.liger@wanadoo.fr>
34609
34610 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34611
34612         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34613         internal call.
34614
34615 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34616
34617         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34618         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34619
34620         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34621         we call unmanaged code which throws exceptions.
34622
34623 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34624
34625         * appdomain.h: added per-domain entry_assembly.
34626         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34627         arguments.
34628         * icall.c: Assembly::GetEntryAssembly icall.
34629         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34630         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34631
34632 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34633
34634         * appdomain.h, gc.c: added mono_domain_finalize ().
34635
34636 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34637
34638         * object.c:
34639         (mono_print_unhandled_exception): changed g_warning by g_printerr
34640         because g_log has a 1024 characters limit (yeah, i got a big stack
34641         trace). Don't print exception name, that should be in ToString 
34642         returned string.
34643
34644 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34645
34646         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34647         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34648
34649 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34650
34651         * object.c:
34652         (mono_print_unhandled_exception): after previous commit, i realized
34653         that MS calls ToString on the exception. I changed this function to
34654         do that. This way we get stack_trace for free.
34655
34656 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34657
34658         * object.c:
34659         (mono_print_unhandled_exception): invoke Message property instead of
34660         getting 'message' field from Exception. Don't allocate memory for
34661         'trace' and 'message' if not needed.
34662
34663 2002-08-18  Dick Porter  <dick@ximian.com>
34664
34665         * unicode.c: Fix asserts to match Encoder.cs checks
34666
34667 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34668
34669         * marshal.c: fix unaligned store issue and a few wrong
34670         opcode argument types.
34671
34672 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34673
34674         * icall.c: added GetUninitializedObjectInternal internal call.
34675
34676 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34677
34678         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34679         to the right domain.
34680
34681 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34682
34683         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34684
34685         * class.c (class_compute_field_layout): set blittable to false for Strings
34686
34687         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34688
34689 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34690
34691         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34692         first chunk of code to create types at runtime. Code to
34693         handle ReflectedType/DeclaringType. Make reflection handles
34694         domain specific.
34695
34696 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34697
34698         * class.c: set correct name in arrays.
34699
34700 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34701
34702         * appdomain.c (mono_domain_transfer_object): make it work with
34703         valuetypes. bug fixes.
34704
34705 2002-08-12  Dick Porter  <dick@ximian.com>
34706
34707         * object.h: Rename some parameters to avoid c++ keywords (Patch
34708         from Joseph Wenninger <kde@jowenn.at>)
34709
34710 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34711
34712         * icall.c: added icall to implement Assembly.GetFile*.
34713
34714 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34715
34716         * reflection.h, reflection.c: code to embed managed resources.
34717
34718 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34719
34720         * class.c: move all the type size stuff into
34721         class_compute_field_layout().
34722
34723 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34724
34725         * class.c: ensure enums have always the correct instance size.
34726         * unicode.c: remove wrong assert.
34727
34728 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34729
34730         * assembly.c: fix mem corruption issue.
34731         * image.h, image.c: added mono_image_get_resource () to access
34732         managed resources.
34733         * icall.c: implemented Assembly.EntryPoint property and some
34734         Managed Resources related internalcalls.
34735
34736
34737 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34738
34739         * image.c, image.h: impemented mono_image_get_entry_point ().
34740         * appdomain.c: use mono_image_get_entry_point.
34741
34742 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34743
34744         * reflection.c: support the object type argument when loading
34745         custom attributes.
34746
34747 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34748
34749         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34750         String as return type.
34751
34752 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34753
34754         * reflection.c: fix encoding of named args for custom attrs to match
34755         the ms implementation. Read them back when instantiating custom
34756         attributes.
34757
34758 2002-08-02  Radek Doulik  <rodo@ximian.com>
34759
34760         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34761         by Dietmar as quick fix
34762         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34763         16 as stack size, used on more places as quick fix before Dietmar
34764         will fix it properly
34765
34766 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34767
34768         * object.h, object.c: added accessors for fields and properties.
34769
34770 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34771
34772         * class.c, class.h: made mono_class_get_field_from_name ()
34773         loop on parent types.
34774         Added mono_class_get_property_from_name ().
34775
34776 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34777
34778         * class.c, class.h: move the code to setup the type vtable in its own
34779         function so that it can be reused also for types created at runtime.
34780         Eliminate the "class" identifier from the header file.
34781         * reflection.c: setup the vtable for enums so that we can create
34782         objects for use in SetConstant ().
34783
34784 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34785
34786         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34787         instead of the delegate itself as this pointer (bug #28383)
34788
34789 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34790
34791         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34792         conversions.
34793
34794 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34795
34796         * loader.c: don't set the pinvoke bit on icalls.
34797
34798 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34799
34800         * debug-helpers.c (mono_method_full_name): only print a number to
34801         indicate wrapper type (so that the output is more readable in traces).
34802
34803 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34804
34805         * class.c (mono_class_init): include method override patch from Paolo
34806
34807 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34808
34809         * icall.c: fixed GetTypeCode().
34810
34811 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34812
34813         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34814         use real delegate invoke function to make it work with multicast
34815         delegates (fix bug# 28291).
34816
34817 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34818
34819         * object.c: load constant strings.
34820
34821 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34822
34823         * reflection.c: no magic numbers.
34824         * tabledefs.h: security action enum.
34825
34826 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34827
34828         * assembly.c: fix possible memory corruption.
34829
34830 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34831
34832         * reflection.h, reflection.c: added support for linking resources.
34833         * verify.c: check we have an updated corlib.
34834
34835 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34836
34837         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34838         string arrays.
34839         (mono_marshal_string_array): null terminate unmanaged string arrays.
34840         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34841
34842 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34843
34844         * icall.c: Type.GetType () can now return also types from the
34845         calling assembly.
34846
34847 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34848
34849         * loader.h, loader.c: stack walking support.
34850         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34851         GetCallingAssembly.
34852
34853 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34854
34855         * marshal.c: added optimisations for blittable types 
34856
34857         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34858         (mono_class_setup_mono_type): set blittable attribute for single
34859         and double.
34860
34861         * marshal.c (mono_string_utf8_to_builder): impl.
34862         (mono_string_builder_to_utf8): impl.
34863         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34864
34865 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34866
34867         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34868         (mono_marshal_get_managed_wrapper): impl. byref types
34869
34870 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34871
34872         * icall.c:
34873         (search_method): don't display debug message. 
34874
34875 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34876
34877         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34878
34879 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34880
34881         * appdomain.c: set the missing filename when throwing exception.
34882
34883 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34884
34885         * metadata.c (mono_type_size): code cleanup
34886         (mono_type_stack_size): removed some test code
34887
34888 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34889
34890         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34891         mono_get_exception_file_not_found now.
34892
34893         * exception.c (mono_exception_from_name_two_strings): New version
34894         that will call a constructor with two string arguments. 
34895         (mono_get_exception_file_not_found): New helper routine, used to
34896         report file-not-found errors.
34897
34898 2002-07-20  Dick Porter  <dick@ximian.com>
34899
34900         * process.h:
34901         * process.c: Pass file handles to CreateProcess
34902         
34903         * icall.c:
34904         * file-io.h:
34905         * file-io.c: Implemented CreatePipe
34906
34907 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34908
34909         * metadata.c (mono_get_param_info): set alignment for value types
34910
34911 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34912
34913         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34914         Constify mono_domain_assembly_open().
34915         * loader.c: handle null namespace in icalls.
34916
34917 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34918
34919         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34920         (emit_str_to_ptr_conv): marshal object as structs
34921
34922         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34923
34924         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34925
34926 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34927
34928         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34929         (mono_marshal_get_native_wrapper): we an now return value types
34930
34931 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34932
34933         * verify.c: more checks implemented.
34934
34935 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34936
34937         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34938         (fix bug #27695)
34939         (mono_marshal_get_native_wrapper): allow byref arguments
34940         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34941         impl. PtrToStringXXX methods
34942         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34943         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34944         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34945         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34946         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34947
34948 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34949
34950         * reflection.c: fix buglet in parsing an assembly name.
34951
34952 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34953
34954         * marshal.c (emit_ptr_to_str_conv): first impl.
34955
34956 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34957
34958         * object.c, class.h: cache the vtable in the class as suggested by
34959         vargaz@freemail.hu (Zoltan Varga).
34960
34961 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34962
34963         * class.h, loader.c: added mono_field_from_token().
34964         * verify.c: first cut of type checking code.
34965
34966 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34967
34968         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34969
34970 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34971
34972         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34973         (fix bug #27782)
34974         (mono_marshal_get_remoting_invoke): impl.
34975         (mono_delegate_begin_invoke): impl.
34976         (mono_mb_emit_save_args): impl.
34977         (mono_delegate_end_invoke): impl.
34978         (mono_marshal_get_delegate_begin_invoke):
34979         (mono_marshal_get_delegate_end_invoke):
34980         (mono_marshal_get_delegate_invoke): generate a special name for
34981         those methods (including the signature) and associate them whith
34982         the delegate class. 
34983
34984 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34985
34986         * reflection.[ch]: 
34987         (mono_reflection_type_from_name): now it has a MonoImage parameter
34988         which is used as the default image to search the type in. If the image
34989         is NULL or getting the type from it fails, it defaults to corlib.
34990
34991         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34992         new parameter.
34993
34994 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34995
34996         * reflection.c: update the parameter table index.
34997
34998 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34999
35000         * domain.c: don't include the mark byte in the string hash.
35001
35002 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35003
35004         * icall.cs: icall for Type.GetTypeCode ().
35005         * verify: a couple of fixes and disabled local initialization checks.
35006
35007 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
35008
35009         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
35010
35011         * debug-helpers.c (mono_method_full_name): print the type of the
35012         runtime wrapper
35013
35014         * metadata.c (mono_signature_hash): a hash function for signatures
35015         (mono_signature_hash): better hash algorithm
35016
35017         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
35018
35019         * debug-helpers.c (mono_method_full_name): this can now generate
35020         method names with signatures
35021
35022         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
35023         method dont have this pointers.
35024
35025 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35026
35027         * reflection.c: fixup typebuilder tokens.
35028         * image.c: fix buglet.
35029         * marshal.h: remove whitespace.
35030         * metadata.h, metadata.c: reinstate code that was removed.
35031         * verify.c: handle catch directives and fix another couple of bugs.
35032
35033 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
35034
35035         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
35036         (mono_marshal_get_native_wrapper): make it comp. with the old code
35037         (mono_marshal_get_native_wrapper): support boolean
35038         (mono_marshal_get_managed_wrapper): support more types
35039
35040 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
35041
35042         * class.c (class_compute_field_layout): compute class->blittable attribute.
35043
35044 2002-07-09  Dick Porter  <dick@ximian.com>
35045
35046         * threads.c: Make the thread cleaning up cope with threads that
35047         call ExitThread()
35048
35049 2002-07-08  Radek Doulik  <rodo@ximian.com>
35050
35051         * reflection.c (method_encode_code): use non-translated values to
35052         compute finally_start, this fixes exception handling on ppc, yay!
35053
35054         * decimal.h (struct signscale): fix endianess
35055
35056 2002-07-07  Radek Doulik  <rodo@ximian.com>
35057
35058         * reflection.c: swap box_val and not val
35059
35060 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35061
35062         * reflection.c, reflection.h: handle full assembly info in type name.
35063         Handle Type arguments when loading custom attributes.
35064         * icall.c: updated to use new mono_reflection_type_from_name () method.
35065
35066 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35067
35068         * loader.c:
35069         (method_from_memberref): also print assembly name when method not found.
35070
35071 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35072
35073         * icall.c:
35074         (ves_icall_TypeGetProperties): fixed bug #27473. 
35075
35076 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35077
35078         * reflection.c: display image name and token when cannot find the
35079         .ctor for an attribute.
35080
35081 2002-07-05  Martin Baulig  <martin@gnome.org>
35082
35083         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35084
35085 2002-07-04  Dick Porter  <dick@ximian.com>
35086
35087         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35088         compile on mingw.  This will cause mingw builds to not wait for
35089         subthreads to terminate after the main thread does.  I've lodged a
35090         bug with the mingw developers for them to wrap OpenThread().
35091
35092 2002-07-03  Dick Porter  <dick@ximian.com>
35093
35094         * threads.c: Store thread IDs instead of handles, because
35095         GetCurrentThread() returns a pseudohandle and therefore stores
35096         useless values.  mono_thread_cleanup() continues checking the
35097         array of threads until it is empty, to cope with subthreads
35098         spawning new threads after the main thread has finished.
35099
35100         * profiler.h:
35101         * profiler.c:
35102         * profiler-private.h: Pass the thread ID to thread profiler
35103         functions, instead of a handle
35104
35105 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35106
35107         * verify.c: fixes to make it more usable.
35108         * pedump.c: added --verify code to verify IL code in an assembly.
35109
35110 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35111
35112         * reflection.c: turn errors into warnings to allow compiling corlib.
35113
35114 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35115
35116         * reflection.c: add special cases to compile corlib.
35117
35118 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35119
35120         * reflection.c: handle properties with only a set method.
35121
35122 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35123
35124         * opcodes.h: add enum with opcodes in opval order.
35125
35126 2002-07-01  Dick Porter  <dick@ximian.com>
35127         
35128         * object.h:
35129         * object.c (mono_runtime_run_main): Removed unneeded argument
35130
35131 2002-06-28  Martin Baulig  <martin@gnome.org>
35132
35133         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35134
35135 2002-06-27  Dick Porter  <dick@ximian.com>
35136
35137         * threads.c: Store the handle in both the parent thread and in the
35138         subthread, to minimise the time between starting a new thread and
35139         storing its ID.
35140
35141 2002-06-26  Dick Porter  <dick@ximian.com>
35142
35143         * appdomain.c (mono_runtime_cleanup): Close the socket library
35144         after all the threads have finished, not before
35145
35146 2002-06-26  Martin Baulig  <martin@gnome.org>
35147
35148         * debug-symfile.c (mono_debug_find_source_location): Added
35149         `guint32 *line_number' argument.  If it's not NULL, store the line number
35150         there and return the file name without the line number.
35151
35152 2002-06-25  Dick Porter  <dick@ximian.com>
35153
35154         * icall.c:
35155         * process.h:
35156         * process.c: Process forking and other support functions
35157
35158 2002-06-25  Dick Porter  <dick@ximian.com>
35159
35160         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35161         things dont happen when the image is closed.
35162         (mono_image_lookup_resource): Walk the resource section looking
35163         for a particular entry
35164
35165         * cil-coff.h: PE resource section decoding
35166
35167 2002-06-25  Dick Porter  <dick@ximian.com>
35168         
35169         * assembly.h:
35170         * assembly.c: 
35171         (mono_assembly_foreach): Accessor functions to walk the list of
35172         loaded assemblies
35173         (mono_assembly_set_main):
35174         (mono_assembly_get_main): Process methods need to know which
35175         assembly is the "main" one
35176
35177         * object.c (mono_runtime_run_main): Record the main assembly
35178
35179         * debug-helpers.c: Fix typo
35180
35181 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35182
35183         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35184         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35185
35186 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35187
35188         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35189
35190 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35191
35192         * image.c (do_mono_image_open): Initialize reference count,
35193         otherwise we leak the MonoImage.
35194
35195 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35196
35197         * reflection.c: small tweak to handle self-hosting.
35198
35199 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35200
35201         * reflection.c: fix type name parse code.
35202
35203 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35204
35205         * reflection.c: break out of the loop.
35206         * image.c: special case corlib.
35207
35208 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35209
35210         * reflection.c: add all the custom attrs at the end to ensure the
35211         ctors have been properly initialized when the attributes are defined
35212         in the current assembly.
35213
35214 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35215
35216         * reflection.c: handle correctly multiple-nested types.
35217
35218 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35219
35220         * row-indexes.h: fix typos.
35221         * reflection.c: adjust for typos and fix method_def_or_ref
35222         encoding in MethodImpl table.
35223
35224 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35225
35226         * reflection.c: fix entry point patching (thanks Serge!).
35227
35228 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35229
35230         * verify.c: add check for System.Exception
35231
35232 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35233
35234         * image.c, class.c: minifix for code just c&p'ed.
35235         * reflection.c: warning fix.
35236         * object.h, loader.h, domain.c: load also StringBuilder.
35237
35238 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35239
35240         * marshal.h, marshal.c: some support code to handle complex marshaling.
35241
35242 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35243
35244         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35245         Better signatures with vtable error dump.
35246
35247 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35248
35249         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35250
35251 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35252
35253         * icall.c (ves_icall_Type_GetField): impl.
35254
35255 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35256
35257         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35258         to retrieve a marshal description blob for a field or param.
35259
35260 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35261
35262         * reflection.h, reflection.c: change order of nested type emission
35263         to avoid table corruption. The NestedTypes table is sorted.
35264         * icall.c: change order of GetConstructor results to workaround mcs bug.
35265
35266 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35267
35268         * reflection.h, reflection.c: handle field and param marshal
35269         information.
35270
35271 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35272
35273         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35274
35275 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35276
35277         * reflection.c: fix call convention.
35278
35279 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35280
35281         * reflection.h, reflection.c: mono_image_get_memberref_token()
35282         takes a type instead of a class, now. Added
35283         mono_image_get_array_token() to create tokens for the special
35284         multi-dim array methods.
35285
35286 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35287
35288         * assembly.c: handle modules (no assembly table). Split
35289         loading references in its own function.
35290         * class.c: handle moduleref resolution scope.
35291         * image.c, image.h: cache module name in image.
35292
35293 2002-06-07  Martin Baulig  <martin@gnome.org>
35294
35295         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35296         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35297
35298 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35299
35300         * icall.c: more signature fixes that used uint instead of int.
35301
35302 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35303
35304         * reflection.c: fixed signature of field refs.
35305
35306 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35307
35308         * class.c, reflection.c: handle typerefs of nested types
35309         (both on read and when writing files).
35310
35311 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35312
35313         * icall.c: fix method signatures that tried to workaround the previous
35314         typo, d'oh!
35315
35316 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35317
35318         * debug-helpers.c: fix typo.
35319
35320 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35321
35322         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35323         rewrote the PE/COFF writing code (our programs are understood by the
35324         ms runtime, now).
35325
35326 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35327
35328         * gc.c, gc.h, icall.c: weakreference support.
35329
35330 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35331
35332         * Makefile.am, mono-config.c: use $(sysconfdir).
35333
35334 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35335
35336         * icall.c: changed default precision of Double.ToString() to 15.
35337         Fixed memory leak. Unified with Single.ToString.
35338
35339 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35340
35341         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35342
35343 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35344
35345         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35346         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35347         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35348         and myself.
35349
35350 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35351
35352         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35353
35354 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35355
35356         * reflection.c, socket-io.c: more compilation fixes.
35357
35358 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35359
35360         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35361         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35362         unicode.c: warning and compiler compatibility fixes.
35363
35364 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35365
35366         * class.h, metadata.c: fixed warnings/compilation errors.
35367
35368 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35369
35370         * Makefile.am, mono-config.c, mono-config.h: configuration file
35371         support routines.
35372         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35373         config file. Export methods to insert and lookup mappings.
35374
35375 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35376
35377         * reflection.c: handle types and boxed objects in custom attr
35378         constructors.
35379
35380 2002-05-30  Martin Baulig  <martin@gnome.org>
35381
35382         * debug-symfile.c
35383         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35384
35385 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35386
35387         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35388         to lookup the implmap row for a P/Invoke method.
35389         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35390         P/Invoke method from the runtime on an as needed basis.
35391
35392 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35393
35394         * metadata.c (mono_metadata_parse_signature): impl.
35395
35396 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35397
35398         * class.c: handle .pack directive.
35399
35400 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35401
35402         * object.c: initialize static fields with RVA data.
35403
35404 2002-05-25  Martin Baulig  <martin@gnome.org>
35405
35406         * debug-symfile.c
35407         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35408
35409 2002-05-24  Martin Baulig  <martin@gnome.org>
35410
35411         * debug-symfile.c
35412         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35413         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35414         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35415
35416 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35417
35418         * object.c: special case string ctros in invoke.
35419         * gc.c: silly whitespace changes.
35420
35421 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35422
35423         * threadpool.[ch]: impl. a threadpool that can
35424         be used by mint and mono.
35425
35426 2002-05-22  Martin Baulig  <martin@gnome.org>
35427
35428         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35429         The first argument is now a `MonoReflectionModuleBuilder *', the return
35430         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35431         `methods' field to get the method builder.  The `token' argument is the
35432         unfixed token.
35433
35434         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35435         invalid characters instead of g_assert_not_reached()ing.  This seems
35436         to be the behaviour of mscorlib.
35437
35438 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35439
35440         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35441         Hestilow to fix bug #25104
35442
35443 2002-05-21  Martin Baulig  <martin@gnome.org>
35444
35445         * debug-symfile.c (mono_debug_find_source_location): New function.
35446         Looks up an IL offset in the line number table and returns the source
35447         location as a string.
35448
35449 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35450
35451         * icall.c:
35452         (mono_double_ToStringImpl): changed %f by %g until we have something
35453         better.
35454
35455 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35456
35457         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35458         parameters first in C#.
35459
35460 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35461
35462         * icall.c, reflection.h: added icall to get info about an event.
35463
35464 2002-05-20  Radek Doulik  <rodo@ximian.com>
35465
35466         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35467         endian
35468         (mono_value_box): don't use memcpy for small sizes on
35469         architectures with unaligned access
35470
35471 2002-05-20  Martin Baulig  <martin@gnome.org>
35472
35473         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35474         if `tb->parent == NULL'.
35475         (mono_reflection_create_internal_class): New function.  This is
35476         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35477         for enum types.
35478
35479         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35480         New interncall.
35481
35482 2002-05-19  Martin Baulig  <martin@gnome.org>
35483
35484         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35485         argument to get the length, don't default to the array length.
35486
35487 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35488
35489         * assembly.c (mono_assembly_setrootdir): New function used to
35490         override the MONO_ASSEMBLIES directory.
35491
35492 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35493
35494         * icall.c: ValueType_GetHashCode() initialize local var.
35495
35496 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35497
35498         * reflection.c: sort custom attributes table.
35499
35500 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35501
35502         * reflection.c: support named args in custom attributes (write support).
35503
35504 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35505
35506         * reflection.c: fix finally position calculation.
35507
35508 2002-05-15  Radek Doulik  <rodo@ximian.com>
35509
35510         * reflection.c: fixed endianess at many places
35511
35512         * icall.c (ves_icall_InitializeArray): comment out debug msg
35513
35514 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35515
35516         * object.c (mono_unhandled_exception): new function to handle
35517         unhandled exceptions.
35518         (mono_unhandled_exception): call the UnhandledException event.
35519         (mono_runtime_delegate_invoke): impl.
35520
35521 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35522
35523         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35524         returns the RVA, not the direct pointer to the data. Handle the case
35525         when the class size is fixed.
35526
35527 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35528
35529         * reflection.c: fix some endianess issues.
35530
35531 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35532
35533         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35534
35535         * threads.c (mono_thread_init): added a callback which is invoked
35536         at thread start.
35537
35538 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35539         
35540         * icall.c: make GetHashCode return non-negative values.
35541
35542 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35543
35544         * object.c, icall.c, gc.c: revert to address-based hashcode.
35545
35546 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35547
35548         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35549
35550 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35551
35552         * icall.c, class.c: special case <Module>.
35553
35554 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35555
35556         * icall.c: fix bug in GetNow().
35557
35558 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35559
35560         * object.c (mono_runtime_class_init): make sure that we call all
35561         static class constructors.
35562
35563 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35564
35565         * reflection.c: sort methodsemantics table.
35566
35567 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35568
35569         * reflection.h, reflection.c: honour init locals setting.
35570
35571 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35572
35573         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35574
35575 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35576
35577         * reflection.c: support ContructorBuilders in attribute blob creation.
35578
35579 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35580
35581         * reflection.c: some changes to build a binary that can be run
35582         directly in windows.
35583
35584 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35585
35586         * loader.c: print a big message when an icall can't be found.
35587
35588 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35589
35590         * string-icalls.c: fix bug 24248.
35591
35592 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35593
35594         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35595         icall.c, reflection.h: separate assembly loading by pathname and by
35596         assembly name. Use the MONO_PATH env var to search for assemblies.
35597
35598 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35599
35600         * assembly.c, image.h: add some support for assemblies
35601         with multiple modules.
35602         * class.c, class.h: export mono_class_from_typeref().
35603         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35604         instead.
35605
35606 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35607
35608         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35609         documentation says (the ECMA one is correct).
35610
35611 2002-05-02  Dick Porter  <dick@ximian.com>
35612
35613         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35614         Don't name the synchronisation mutex.
35615
35616 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35617
35618         * rand.c
35619         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35620         Make the prototypes match.
35621         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35622         Same.
35623
35624         * icall.c
35625         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35626         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35627         all systems have tm.tm_zone, so use strftime() with %Z to print
35628         the timezone abreviation into a temp string.
35629
35630         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35631         rather than mono_array_addr() on a MonoString on Big Endian
35632         machines.
35633
35634 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35635
35636         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35637         fix bug 24041
35638
35639 2002-04-30  Dick Porter  <dick@ximian.com>
35640
35641         * socket-io.c: Cope with SOCKET being an integer rather than a
35642         pointer now.
35643
35644         * threads.c: Added Thread_free_internal, to deal with thread
35645         handle cleanup.  Moved calls to handle_store() and handle_remove()
35646         to start_wrapper(), so each can only be called once.  Allocate
35647         synchronisation blocks with GC_malloc(), and use GC finalisation
35648         to close the handles.
35649
35650         * icall.c: added System.Threading.Thread::Thread_free_internal
35651
35652 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35653
35654         * icall.c: support Environment.Exit, CommandLineArgs().
35655
35656 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35657
35658         * object.c, object.h: added mono_runtime_run_main () and
35659         mono_runtime_get_main_args () for use in System.Environment.
35660
35661 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35662
35663         * gc.c: fix thinko, enable actual finalization since the jit is now
35664         fixed.
35665
35666 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35667
35668         * gc.c, object.c: take into account that an object may be offset wrt the address
35669         returned by GC_malloc().
35670
35671 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35672
35673         * image.c: handle files without entries in the assembly table (modules).
35674
35675 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35676
35677         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35678         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35679         allowed to be null when it's System.Object class setup.
35680
35681 2002-04-27  Martin Baulig  <martin@gnome.org>
35682
35683         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35684         if `tb->parent == NULL' rather than crashing.
35685
35686 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35687
35688         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35689         calling acos() where asin() should have been called.
35690
35691 2002-04-26  Martin Baulig  <martin@gnome.org>
35692
35693         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35694         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35695         there's a subdirectory called `System', but we don't want to read that
35696         subdirectory as an assembly.
35697
35698 2002-04-25  Martin Baulig  <martin@gnome.org>
35699
35700         * debug-symfile.c: Reflect latest MonoString changes.
35701
35702 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35703
35704         * rand.c, rand.h: instance method icalls need to have an explicit
35705         this pointer as first argument in the C implementation.
35706
35707 2002-04-25  Nick Drochak <ndrochak@gol.com>
35708
35709         * icall.c: Fix typo in map for GetNonZeroBytes
35710
35711 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35712
35713         * string-icalls.c : String does now passes unit tests without any 
35714         errors, the following changes has been made:
35715         
35716         Implemented replace methods.
35717         Renaming of methods to (try) follow the standard.
35718         Fixed compare ordinal
35719         Made all memory allocated directly to function instead of via icall function.
35720         Small performance fix in is_in_array function
35721                         
35722  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35723
35724         c (mono_string_Internal_ctor_charp_int_int):
35725         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35726         sindex < 0, throw ArgumentOutOfRangeException instead of
35727         ArgumentNullException.
35728
35729         Added new check for length == 0, however
35730         I need to make it return String.Empty from the C code.
35731         
35732         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35733         that calculate the length for us here.
35734         
35735         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35736         mono_string_new_utf16 with mono_string_new, since value is utf8.
35737
35738 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35739
35740         * object.c: register the object for finalization if needed.
35741         Allocate one more char in the string for the terminating 0 char.
35742
35743 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35744
35745         * class.c, class.h, image.c: check if a type implemenst a destructor.
35746         Use the proper key for array class lookups.
35747         * icall.c: register the icalls in the System.GC class.
35748         * gc.c, gc.h: GC-related functions and icalls.
35749
35750 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35751
35752         * icall.c:
35753         * socket-io.c:
35754         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35755         changed a couple of free () by g_free ().
35756
35757         * decimal.c: one-liner in the comments for decimal2string ().
35758
35759 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35760
35761         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35762
35763 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35764
35765         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35766         * object.c (mono_runtime_invoke_array) : handle null in params
35767
35768 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35769
35770         * string-icalls.c: fixed bug in split (one off bug)
35771
35772 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35773
35774         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35775         * icalls.c: added String::Equals as internal method
35776
35777 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35778
35779         * threads.c: fixed bug in the double interlocked functions
35780
35781 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35782
35783         * threads.c: implemented all of the new interlocked icalls.
35784         * string-icalls.c: fix a bug in insert.
35785         * icalls.c: added the icalls for interlocked, removed old string functions.
35786         
35787 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35788
35789         * loader.c: fix off-by-one error when reading argument names.
35790
35791 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35792
35793         * profiler.c: win32 counter implementation (untested).
35794         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35795         (the latter needs testing and more complete impl. from win32 folks).
35796
35797 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35798
35799         * object.c: mono_array_new_full workaround mono_array_class_get
35800         problem.
35801
35802 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35803
35804         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35805         * object.h (mono_string_chars): Changed casting type.
35806
35807 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35808
35809         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35810                            method signatures to use gunichar2 instead of gint16.
35811
35812 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35813
35814         * object.h, object.c: domain-specific versions of mono_object_new and
35815         mono_array_new.
35816
35817 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35818
35819         * object.c: changed String layout
35820
35821         * string-icalls.c (mono_string_Internal_ctor_chara): added
35822         internal string constructors.
35823
35824 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35825
35826         * threads.c: pass 'this' to the thread start routine.
35827
35828 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35829
35830         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35831         InternalCompareStr don't call twice mono_string_cmp_char for the last
35832         character. Improved performance in mono_string_cmp_char.
35833
35834 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35835
35836         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35837         code into its own library: libmonoruntime.
35838
35839 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35840
35841         * object.h, object.c: changed array format so that szarrays do not
35842         require a bounds structure.
35843         * icall.c, appdomain.c: support for new szarray format.
35844
35845 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35846
35847         * metadata.c: compare also the retuns type when comparing signatures:
35848         we didn't do this as an optimization since really overloaded methods
35849         must differ also in the arguments, but this doesn't work with
35850         low-level IL code (or when using explicit conversion operators: see
35851         bug#23498 for an example).
35852
35853 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35854
35855         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35856
35857 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35858
35859         * icall.c: make MonoType::GetElementType its own icall.
35860
35861 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35862
35863         * icall.c: remove MonoMethod_get_Name().
35864         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35865         object.
35866
35867 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35868
35869         * string-icalls.c: optimized a few methods.
35870
35871 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35872
35873         * icall.c: added all new string internal calls
35874         * string-icalls.c: added, new string internal call implementation.
35875         * object.c: added mono_string_new_size for allocating a string a size
35876
35877 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35878
35879         * object.c (mono_object_isinst): use the same code as in the
35880         optimized x86 version.
35881
35882 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35883
35884         * profiler.c: TSC-based timer code (faster and more accurate).
35885         Not hooked up in configure, yet (set USE_X86TSC to 1).
35886
35887 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35888
35889         * profiler.c, profiler.h: track time spent compiling methods.
35890         * threads.c: track thread creation/destruction.
35891
35892 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35893
35894         * profiler.c, profiler.h, profiler-private.h: profiling interface
35895         and sample implementation. Moved here so that it can be used also by
35896         the jit.
35897
35898 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35899
35900         * reflection.c, reflection.h: keep types and other handles separate in
35901         the hash tables for referred tokens. Add guid for modules.
35902
35903 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35904
35905         * assembly.c: fix bugs found with valgrind.
35906         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35907
35908 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35909
35910         * threads: added icall support for getting current domain for
35911                    the thread.
35912  
35913 2002-04-13  Martin Baulig  <martin@gnome.org>
35914
35915         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35916         (MonoDebugVarInfo): Added `index' field for register based addresses.
35917         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35918         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35919         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35920         `MonoDebugVarInfo *this_var'.
35921
35922         * debug-symfile.c (relocate_variable): New static function to write
35923         a location description for a local variable or method parameter.
35924
35925 2002-04-12  Martin Baulig  <martin@gnome.org>
35926
35927         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35928         stack offset and begin/end scope address of a local variable.
35929         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35930         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35931         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35932
35933         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35934         Added new relocation types for start/end scope of a local variable.
35935
35936 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35937
35938         * object.h: add mono_object_domain() macro.
35939         * reflection.c: handle typespecs.
35940         * icall.c: MonoMethod::get_Name() implementation.
35941
35942 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35943
35944         * icall.c: String::GetHashCode() icall implementation.
35945
35946 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35947
35948         * icall.c: String::IndexOfAny icall.
35949         * object.c, object.h: make array->max_length more useful.
35950         Intrduced mono_object_class() and mono_string_length() macros.
35951
35952 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35953
35954         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35955         instead of g_unichar_isdigit.
35956
35957 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35958
35959         * icall.c: Implement a simple Double.ToString().
35960
35961 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35962
35963         * appdomain.h: only io-layer.h is supposed to be included.
35964         * icall.c: explicitly import environ. Fix warning.
35965
35966 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35967
35968         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35969                 return true even if it's not Daylight Savings time.
35970                 Only return false for the case where the function isn't
35971                 implemented for a plaform (read Windows).
35972
35973 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35974
35975         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35976         data with a mutex.
35977
35978 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35979
35980         * mempool.c (mono_mempool_alloc): only use g_malloc when
35981         absolutely necessary.
35982
35983 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35984
35985         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35986
35987         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35988         (mono_class_proxy_vtable): use domain mempool
35989
35990 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35991
35992         * appdomain.h, appdomain.c: split initialization that requires the
35993         execution engine support into mono_runtime_init().
35994
35995 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35996
35997         * class.c (mono_class_init): don't include vtable inside MonoClass
35998         to save some memory, gather some statistics.
35999         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
36000
36001 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36002
36003         * icall.c: internalcall implementation for ValueType.Equals().
36004
36005 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
36006
36007         * object.c (mono_message_init): moved 
36008         (mono_runtime_exec_main): new arch. independent impl.
36009         (mono_runtime_invoke_array): new method - like
36010         mono_runtime_invoke, but you can pass an array of objects.
36011         (mono_remoting_invoke): new arch. independent impl.
36012         (mono_message_invoke): new arch. independent impl.
36013         (mono_runtime_class_init): new arch. independent impl.
36014         (mono_runtime_object_init): new arch. independent impl.
36015
36016 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
36017
36018         * metadata.c, object.c, reflection.c: documented the exported
36019         functions.
36020
36021 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
36022
36023         * icall.c: simpler code to pass the assembly builder data to corlib.
36024         Implement GetNestedTypes() internalcall.
36025
36026 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
36027
36028         * class.c: warn if a type can't be loaded.
36029
36030 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
36031
36032         * image.h: typedef MonoImageOpenStatus
36033         * types.h: removed unused file
36034         
36035 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
36036
36037         * icall.c: Enum_ToObject accepts enum value arguments.
36038
36039 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
36040
36041         * class.c: move initialization of properties, events and nested
36042         classes, so that they happen for interfaces, too.
36043
36044 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
36045
36046         * icall.c: cleanup some ugly casts in Array_SetValue*.
36047
36048 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
36049
36050         * icall.c: the values array fro enums is of the correct type, now.
36051         Implement (correctly) getFullName instead of assQualifiedName for
36052         MonoType.
36053         * reflection.h, reflection.c: added mono_type_get_name ().
36054
36055 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
36056
36057         * assembly.c, image.h: for each MonoImage, record from wich assembly
36058         it was loaded.
36059         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
36060         Make Type.Assembly work.
36061
36062 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
36063
36064         * debug-symfile.h: use char* instead of gpointer to avoid
36065         unnecessary casts.
36066
36067         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36068
36069         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36070         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36071
36072 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36073
36074         * icall.c (mono_message_init): impl. (code cleanup)
36075         (ves_icall_InternalExecute): impl. FieldGetter
36076
36077         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36078         defined we call all (non-static)methods through the vtable. 
36079
36080 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36081
36082         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36083         finalizer even though the memory is still referenced (and the chunk of
36084         memory is not freed).
36085
36086 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36087
36088         * assembly.c: fix brokeness.
36089
36090 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36091
36092         * class.c: kill some warnings. Check explicit interface method
36093         implementation also without considering the namespace.
36094         Load also literal strings in static class data.
36095
36096 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36097
36098         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36099         (default_assembly_name_resolver): Make the resolver take the
36100         "base" directory where the assembly was originally defined, so we
36101         can load DLLs that are in the same directory as the assembly that
36102         is being referenced.
36103
36104 2002-03-28  Dick Porter  <dick@ximian.com>
36105
36106         * file-io.h: 
36107         * file-io.c:
36108         * socket-io.c: 
36109         * unicode.h: 
36110         * unicode.c: Warning cleanups
36111
36112 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36113
36114         * object.h, reflection.h: use the correct type instead of MonoObject.
36115
36116 2002-03-28  Martin Baulig  <martin@gnome.org>
36117
36118         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36119         (mono_debug_update_symbol_file): Initialize classes if necessary.
36120
36121 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36122
36123         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36124         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36125
36126 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36127
36128         * assembly.h: fix function prototype.
36129         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36130         * mono-endian.h: use const cast.
36131
36132 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36133
36134         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36135
36136 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36137
36138         * loader.c: don't assert when a typeref can't be loaded, give
36139         a chance to the runtime to trow an exception instead.
36140         * loader.h: fix warning.
36141
36142 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36143
36144         * class.c (mono_class_proxy_vtable): added proxy support
36145
36146 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36147
36148         * icall.c: removed last of PAL calls, added System.Environment
36149         * file-io.h, file-io.c: MonoIO implementation
36150         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36151
36152 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36153
36154         * appdomain.c: do not use the byte marker in ldstr table lookup.
36155         * debug-helpers.c: allow two ':' to separate class and method name.
36156         * object.c: allocate arrays bounds with the GC, too.
36157         * verify: add a few more checks.
36158
36159 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36160
36161         * reflection.c: output also literal strings. Allocate parameter data
36162         with GC_malloc() (thanks, Martin, for catching this!).
36163
36164 2002-03-26  Martin Baulig  <martin@gnome.org>
36165
36166         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36167         include the `this' offset in the `param_offsets'.
36168
36169 2002-03-25  Martin Baulig  <martin@gnome.org>
36170
36171         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36172         mono_debug_get_class() function to get the classes. Added new
36173         relocation types for arrays and strings.
36174         (mono_debug_get_class): New static function to search in all
36175         referenced assemblies for a metadata token.
36176
36177         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36178
36179 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36180
36181         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36182         hold gc-allocated objects. Make the string heap a stream like the
36183         others. Removed duplicated code when writing stream info.
36184         Added asserts to catch possible buffer overflows. Set the sorted map
36185         for tables that need sorting. Added some documentation.
36186
36187 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36188
36189         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36190         for interned strings and vtables.
36191
36192 2002-03-24  Martin Baulig  <martin@gnome.org>
36193
36194         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36195         it in the array since it was created with g_slist_prepend().
36196
36197 2002-03-24  Martin Baulig  <martin@gnome.org>
36198
36199         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36200         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36201         (mono_debug_method_from_token): Renamed to
36202         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36203         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36204
36205         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36206         relocation types.
36207
36208         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36209
36210 2002-03-24  Martin Baulig  <martin@gnome.org>
36211
36212         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36213         (mono_debug_method_from_token): New func.
36214
36215         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36216         New interncall, calls mono_debug_local_type_from_signature().
36217         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36218         calls mono_debug_method_from_token().
36219
36220 2002-03-23  Martin Baulig  <martin@gnome.org>
36221
36222         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36223         specifies the number of bytes to be converted, not the array size.
36224         Return the number of chars, not the number of bytes.
36225         (ves_icall_iconv_get_chars): The `byteCount' argument
36226         specifies the number of bytes to be converted, not the array size.
36227
36228 2002-03-23  Martin Baulig  <martin@gnome.org>
36229
36230         * reflection.h (MonoReflectionSigHelper): New type.
36231
36232         * reflection.c (mono_reflection_sighelper_get_signature_local),
36233         (mono_reflection_sighelper_get_signature_local): New functions.
36234
36235         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36236         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36237         interncalls.
36238
36239 2002-03-23  Martin Baulig  <martin@gnome.org>
36240
36241         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36242         is_writeable is set.
36243         (mono_raw_buffer_update): New function to write the modified map
36244         back to disk.
36245
36246         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36247
36248         * debug-symfile.c (mono_debug_update_symbol_file): Call
36249         mono_raw_buffer_update() when done writing.
36250
36251 2002-03-23  Martin Baulig  <martin@gnome.org>
36252
36253         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36254
36255         * debug-symfile.c: Added support for arguments and local variables.
36256
36257 2002-03-23  Dick Porter  <dick@ximian.com>
36258
36259         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36260         protected by ifdefs, hence breaking the w32 build.
36261
36262 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36263
36264         * object.c: implement is_interned() the right way.
36265
36266 2002-03-21  Martin Baulig  <martin@gnome.org>
36267
36268         * debug-symfile.[ch]: New files to handle debugging information
36269         files. There's also support to dynamically update these symbol
36270         files to include machine dependent information.
36271
36272 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36273
36274         * threads.c (mono_thread_create): new function to create thread
36275         from C
36276
36277 2002-03-20  Martin Baulig  <martin@gnome.org>
36278
36279         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36280         method is a constructor.
36281         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36282         points to ves_icall_InternalInvoke().
36283
36284 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36285
36286         * file-io.c: Flush shouldn't throw exceptions.
36287
36288 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36289
36290         * file-io.c: FileStream flush support; FileSetLength now
36291         restores file pointer.
36292
36293 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36294
36295         * class.c: set image for pointer classes.
36296
36297 2002/03/19  Nick Drochak <ndrochak@gol.com>
36298
36299         * sysmath.c: Forgot one.
36300
36301 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36302
36303         * sysmath.c: Avoid redefining existing names.
36304
36305 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36306
36307         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36308         handled by runtime as icall rather than dllimport from libm.so
36309         * file-io.c, file-io.h: fixed handle argument type.
36310
36311 2002-03-18  Dick Porter  <dick@ximian.com>
36312
36313         * reflection.c (mono_image_get_type_info): rename interface to
36314         iface, because of "#define interface struct" on windows.
36315
36316 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36317
36318         * class.c, class.h: rename and export mono_ptr_class_get().
36319         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36320         * reflection.c, reflection.h, icall.c: better/saner type name
36321         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36322         method signatures.
36323
36324 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36325
36326         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36327
36328         * icall.c (ves_icall_InternalInvoke): impl.
36329
36330 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36331
36332         * reflection.c: output the interface map table, too.
36333
36334 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36335
36336         * class.c (class_compute_field_layout): separate computation of 
36337         static field layout
36338
36339 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36340
36341         * icall.c: added System.Buffer support.
36342         * file-io.c: moved file icalls from PAL to FileStream.
36343
36344 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36345
36346         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36347
36348 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36349
36350         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36351
36352 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36353
36354         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36355
36356 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36357
36358         * debug-helpers.{c,h}: moved here from monograph some useful functions
36359         to locate a method by name/signature in a class or image. Included
36360         also a small and flexible IL disassembler.
36361
36362 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36363
36364         * reflection.c: fixup tokens in methods with small header size, too.
36365
36366 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36367
36368         * object.c (mono_string_to_utf8): remove assert(!error), instead
36369         print a warning. 
36370
36371 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36372
36373         * icall.c: update to the new mono_Array_class_get interface.
36374
36375 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36376
36377         * appdomain.c, object.c: Boehm-GC enable.
36378         * icall.c: make get_data_chunk() support split data requests.
36379         Ensure a class is initialized in more cases. Return only the first
36380         property found in GetProperties() or the compiler gets confused. 
36381         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36382         * reflection.h, reflection.c: add fixup mechanism for field and method
36383         tokens. Initialize assembly->typeref in a single place. Output
36384         properties after events. Support custom attributes for events, too.
36385         Typo fix for paramter custom attrs.
36386
36387 2002-03-07  Martin Baulig  <martin@gnome.org>
36388
36389         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36390
36391 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36392
36393         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36394
36395 2002-03-06  Martin Baulig  <martin@gnome.org>
36396
36397         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36398         non-zero lower bounds. See testcases #F10-#F13.
36399
36400 2002-03-05  Martin Baulig  <martin@gnome.org>
36401
36402         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36403
36404         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36405         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36406         here.
36407         (ves_icall_System_Array_SetValue): Likewise.
36408         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36409         as argument and does the actual work. This function is used when copying a
36410         multi-dimensional array.
36411         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36412         now do all the widening conversions of value types.
36413         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36414
36415 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36416
36417         * class.c: remove some magic numbers and use the smbolic names,
36418         instead. Added init_events() to load event info at class init time.
36419         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36420         and mono_metadata_methods_from_event().
36421         * reflection.h, reflection.c: added support for writing out the evnets
36422         related information.
36423
36424 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36425
36426         * reflection.h, icall.c: use a different method (GetInterfaces)
36427         to gather interface info and add isbyref, isprimitive and
36428         ispointer to the ves_icall_get_type_info() return value.
36429
36430 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36431
36432         * class.h: stared adding support for events.
36433         * icall.c: split find_members implementation. Added debug icall to get
36434         the address of an object.
36435         * reflection.c: handle TypeBuilders in mono_type_get_object().
36436
36437 2002-03-01  Martin Baulig  <martin@gnome.org>
36438
36439         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36440         ArgumentOutOfRangeException(), not an ArgumentException().
36441         (ves_icall_System_Array_GetLowerBound): Likewise.
36442         (ves_icall_System_Array_GetValue): Improved argument checking.
36443         (ves_icall_System_Array_SetValue): Improved argument checking.
36444
36445 2002-03-01  Martin Baulig  <martin@gnome.org>
36446
36447         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36448         called with invalid arguments rather than just dying with g_assert().
36449         (ves_icall_System_Array_SetValue): Likewise.
36450         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36451         raise a NotImplementedException instead.
36452         (ves_icall_System_Array_GetLength): Added argument checking.
36453         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36454
36455 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36456
36457         * object.h (mono_assert): new macros mono_assert and
36458         mono_assert_not_reached
36459
36460 2002-02-28  Martin Baulig  <martin@gnome.org>
36461
36462         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36463         and "System::String::IsInterned" to "System::String::_IsInterned".
36464
36465 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36466
36467         * icall.c: remove hacks for typebuilder. Added icall to create a
36468         modified type from a tybebuilder.
36469         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36470         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36471         to create a backing MonoClass for a TypeBuilder.
36472
36473 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36474
36475         * class.c, class.h: more refactoring of class init.
36476         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36477
36478 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36479
36480         * marshal.c, marshal.h: start of marshaling interface.
36481
36482 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36483
36484         * icall.c: fix order in assembly qualified name icall.
36485
36486 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36487
36488         * class.c: do not free str, since we store it in the hash table.
36489         * reflection.h: add label field to MonoILExceptionInfo.
36490         * reflection.c: handle references to more than one assembly. Handle
36491         case when there isn't a module created in the assembly.
36492
36493 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36494
36495         * class.c: Fix typo. Start refactoring of class init code.
36496
36497 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36498
36499         * appdomain.c: exit with 1 on error.
36500         * class.c: we already have the name in MonoClassField.
36501         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36502         MonoStreamHeader instead of an offset of image->raw_metadata.
36503
36504 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36505
36506         * appdomain.c (mono_init): Be even more descriptive about the error.
36507
36508 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36509
36510         * appdomain.c: give the user an informative message when corlib can't
36511         be loaded.
36512
36513 2002-02-26  Martin Baulig  <martin@gnome.org>
36514
36515         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36516         New icall to get the time zone data.
36517
36518 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36519
36520         * reflection.c: set virtual and raw size of section correctly.
36521         * threads.c: transfer domain information to newly created threads.
36522
36523 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36524
36525         * class.c: when instancing a class in a domain, load the default
36526         vaules for static fields from the constant table. Fix System.Enum to
36527         not be an enum.
36528         * icall.c: implement Object::GetType() internalcall. Implemented
36529         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36530         Fixed checking of binding flags in find_members().
36531         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36532         * reflection.c: handle enumerations when writing to the constant
36533         table. Use a different object cache for types.
36534
36535
36536 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36537
36538         * object.c (mono_object_isinst): fix for arrays
36539
36540         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36541
36542 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36543
36544         * object.c: don't use mprotect ()  and fix intern pool hash table
36545         lookup for big endian systems.
36546
36547 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36548
36549         * icall.c: change type_is_subtype_of () signature.
36550
36551 2002-02-21  Mark Crichton  <crichton@gimp.org>
36552
36553         * rand.c, rand.h: Added random number generator for
36554         System.Security.Cryptography classes.
36555
36556         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36557
36558         * icall.c: Added System.Security.Cryptography calls.
36559
36560 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36561
36562         * class.c, icall.c, metadata.c: better support for pointer types.
36563         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36564         * reflection.c: Add support for getting custom attrs for properties
36565         and simplify some code.
36566
36567 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36568
36569         * icall.c: change getToken () and add custom attribute GetBlob()helper
36570         method.
36571         * reflection.h: add custom attrs array to the reflection builder structures.
36572         * reflection.c: encode and emit custom attributes for all the relevant
36573         reflection objects. Cache fieldref and methodref tokens. Change
36574         mono_image_create_token() interface to take a MonoDynamicAssembly.
36575         More complete custom attributes decoder. Load custom attributes for
36576         Assembly, Field, Method and Constructor objects, too. Make the
36577         returned array an Attribute[] one, not object[]. Added
36578         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36579         custom attribute constructor.
36580
36581 2002-02-20  Dick Porter  <dick@ximian.com>
36582
36583         * icall.c:
36584         * rawbuffer.c:
36585         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36586         problem code out for now).
36587
36588 2002-02-19  Radek Doulik  <rodo@ximian.com>
36589
36590         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36591
36592 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36593
36594         * icall.c: register the GetCustomAttributes method.
36595         * object.c, object.h: add mono_string_new_len ().
36596         * reflection.h, reflection.c: added mono_runtime_invoke(),
36597         mono_install_runtime_invoke(). Added
36598         mono_reflection_get_custom_attrs () to load custom attributes and
36599         create the attribute objects.
36600
36601 2002-02-19  Dick Porter  <dick@ximian.com>
36602         * threads-dummy-types.c:
36603         * threads-dummy-types.h:
36604         * threads-dummy.c:
36605         * threads-dummy.h:
36606         * threads-pthread-types.c:
36607         * threads-pthread-types.h:
36608         * threads-pthread.c:
36609         * threads-pthread.h:  Deleted obsolete files
36610
36611 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36612
36613         * class.c (mono_class_vtable): runtime init the class when we
36614         allocate static class data.
36615
36616         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36617
36618         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36619         and String - but we will need generic marshalling support in the
36620         future. 
36621         (mono_init): set the domain name in a ms compatible way
36622
36623         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36624         String[].
36625
36626 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36627
36628         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36629         for sizes
36630
36631         * appdomain.c (mono_domain_unload): impl.
36632
36633 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36634
36635         * appdomain.c, object.c: fix intern pool implementation.
36636         * class.c: fix alignment code.
36637
36638 2002-02-16  Radek Doulik  <rodo@ximian.com>
36639
36640         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36641         and s2 > s1, just copy lower bytes to be compatible with little
36642         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36643         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36644
36645         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36646         force big_endian to be 1 for big endian machines 
36647         (ves_icall_iconv_new_decoder): ditto
36648
36649 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36650
36651         * socket-io.c (convert_sockopt_level_and_name): If the system
36652         doesn't define SOL_IP or SOL_TCP, get them by hand using
36653         getprotobyname() and caching the values (because this could be a
36654         slow operation).
36655         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36656         Use the appropriate struct when the system does support it. Ie,
36657         not all systems have struct ip_mreqn so use struct ip_mreq when
36658         appropriate.
36659
36660 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36661
36662         * reflection.c: handle finally clauses.
36663
36664 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36665
36666         * socket-io.c: use g_snprintf() instead of snprintf.
36667
36668 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36669
36670         * reflection.c (mono_param_get_objects): Cast second argument to
36671         mono_method_get_param_names to a const char** to silence the
36672         compiler warning.
36673
36674         * appdomain.c (mono_domain_assembly_open): Put parens around the
36675         truth statement in the for-loop.
36676
36677         * unicode.c (iconv_convert): Got rid of a compiler warning about
36678         int i being unused when the system has a new iconv.
36679         (iconv_get_length): Same.
36680
36681         * image.c (load_class_names): Cast the second argument to
36682         g_hash_table_insert() to char* to hush compiler warnings about the
36683         arg being a const.
36684         (mono_image_open): Same here.
36685
36686         * socket-io.c: Don't conditionally include sys/filio.h or
36687         sys/sockio.h here anymore since we now get them from
36688         io-layer/io-layer.h
36689         (inet_pton): If the system doesn't support inet_aton, implement
36690         using inet_addr and also #define INADDR_NONE if it isn't defined
36691         by the system.
36692
36693 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36694
36695         * metadata.c, metadata.h: added function to get packing and size info
36696         of a typedef.
36697         * reflection.h, reflection.c: handle field RVA data. Save info about
36698         the table layout if needed. Assign typedef indexes to all the types
36699         before dumping the info about them to avoid forward reference problems.
36700
36701 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36702
36703         * socket-io.c (convert_sockopt_level_and_name): ifdef
36704         SO_ACCEPTCONN because it is not defined on my system (old debian)
36705
36706 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36707
36708         * opcode.c: use stddef.h to get NULL.
36709
36710 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36711
36712         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36713         for FIONBIO, FIONREAD and SIOCATMARK.
36714         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36715         define INADDR_NONE and besides, inet_addr() is deprecated and
36716         should not be used. Use inet_pton() instead - it also has the
36717         added bonus that it can easily handle IPv6 addresses as well.
36718         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36719
36720 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36721
36722         * decimal.c: remove _MSC_VER conditional.
36723
36724 2002-02-13  Dick Porter  <dick@ximian.com>
36725
36726         * socket-io.c: 
36727         * icall.c: Internal calls for Blocking, Select, Shutdown,
36728         GetSocketOption and SetSocketOption
36729
36730 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36731
36732         * assembly.cs: better resolver: use it instead of some kludgy
36733         code.
36734
36735 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36736
36737         * reflection.c: the best way to speed-up the compiler is to avoid
36738         infinite loops.
36739
36740 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36741
36742         * class.c (mono_class_vtable): changed the object layout
36743         (obj->vtable->class). 
36744         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36745
36746 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36747
36748         * assembly.c: look for assemblies in the assembly dir, too.
36749
36750 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36751
36752         * class.c: fix thinko in mono_class_from_type().
36753
36754 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36755
36756         * exception.h, exception.c: added TypeLoadException.
36757         * object.h, object.c: added mono_array_clone ().
36758         * icall.c: handle throwOnError in AssemblyGetType().
36759         Added Array.Clone().
36760         * opcode.h, opcode.c: use a single value for the opcode val.
36761         Compile fix for non-gcc compilers.
36762
36763 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36764
36765         * opcodes.c, opcodes.h: export interesting info about opcodes.
36766
36767 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36768
36769         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36770         icalls. 
36771
36772         * class.c (class_compute_field_layout): set element_class for enums
36773         (mono_class_create_from_typedef): set element_class for normal classes
36774
36775         * icall.c (ves_icall_System_Enum_get_value): impl.
36776
36777         * class.c (mono_class_create_from_typedef): do not set valuetype
36778         flag for System.ValueType and System.Enum
36779
36780 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36781
36782         * unicode.c (iconv_convert): fix big endian problem.
36783
36784 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36785
36786         * class.c: add asserts if we are ever going to scribble over memory.
36787         * socket-io.c: not all systems have AF_IRDA defined.
36788
36789 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36790
36791         * class.c (class_compute_field_layout): do not consider static
36792         fields to compute alignment
36793
36794 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36795
36796         * appdomain.c (mono_appdomain_get): impl.
36797         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36798
36799 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36800
36801         * icall.c: ignore "file://" prefix when loading an assembly.
36802
36803 2002-01-23  Dick Porter  <dick@ximian.com>
36804
36805         * socket-io.c:
36806         * icall.c:
36807         * Makefile.am: Added socket support
36808
36809 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36810
36811         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36812         code back.  This should return the assemblies that are loaded by
36813         the runtime on behalf of an application domain. 
36814
36815         The current implementation is still broken, it just returns every
36816         assembly loaded, but until we get real applications domain this
36817         will do.
36818
36819 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36820
36821         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36822         AppDomain object.
36823
36824 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36825
36826         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36827         the mono_class_from_name lookup.
36828         (ves_icall_get_parameter_info): ditto.
36829         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36830         method.
36831         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36832
36833 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36834
36835         * class.c: load also nested classes on class init.
36836         System.ValueType instance methods gets passed boxed
36837         values, unless methods in derived classed that get a pointer to the
36838         data.
36839         * icall.c: use better name parsing code in GetType().
36840         * image.c, image.h: add mono_image_loaded ().
36841         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36842         * reflection.c, reflection.h: added mono_reflection_parse_type().
36843
36844 2002-01-22  Veronica De Santis <veron78@interfree.it>
36845
36846         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36847         * threads.c : Added the implementation of internal calls for events
36848         * threads.h : Added prototypes of internal calls for events
36849         
36850 2002-01-21  Radek Doulik  <rodo@ximian.com>
36851
36852         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36853
36854 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36855
36856         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36857         (mono_class_value_size): use min_align
36858
36859 2002-01-20  Dick Porter  <dick@ximian.com>
36860
36861         * threads.h:
36862         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36863         so it compiles on w32.
36864
36865 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36866
36867         * metadata.c (mono_type_stack_size): impl.
36868
36869         * class.c (mono_class_get_field): impl. memberref token
36870
36871 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36872
36873         * icall.h : Added the internal calls mapping for CreateMutex_internal
36874                     and ReleaseMutex_internal.
36875         * threads.h : Added the prototype of mutexes internal calls.
36876         * threads.c : Added the implementations of mutexes internal calls.
36877
36878 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36879
36880         * metaparse.h: removed unused file.
36881         * reflection.c, reflection.h: added stream_data_align () function 
36882         to align data in streams and keep stream aligned. Add support for
36883         exception support in method headers.
36884
36885 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36886
36887         * unicode.c: make iconv_convert () return the number of bytess written
36888         in the output buffer.
36889
36890 2002-01-15  Dick Porter  <dick@ximian.com>
36891         * threads.c: Make the runtime's idea of infinite timeouts coincide
36892         with the class library's
36893
36894         Fix a particularly egregious bug in mono_thread_cleanup(). That
36895         code was so utterly bogus it must have been written on a Monday.
36896
36897 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36898
36899         * reflection.h: add subtypes field to TypeBuilder.
36900         * reflection.c: encode constants for literal fields.
36901         Handle subtypes. Fix user string token (and add a zero byte)
36902         at the end.
36903         
36904 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36905
36906         * class.c (mono_class_init): bug fix: assign slot numbers for
36907         abstract methods.
36908
36909 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36910
36911         * reflection.c: don't try to output a code RVA for abstract methods.
36912         Small fixes for method header format. Output parameter info to the
36913         ParamDef table. Save method overriding info to MethodImpl table.
36914         Fix property support. Allow typedef.extends to be a type in the
36915         building assembly.
36916         * verify.c: fix off-by-one error.
36917
36918 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36919
36920         * class.c: fix mono_class_from_mono_type () for szarray types.
36921         Remove unused cache check in mono_class_from_type_spec().
36922         * icall.c: *type_from_name () functions handle simple arrays and byref.
36923         * reflection.c: handle byref and szarray types. Handle methods without
36924         body (gets P/Invoke compilation working). Handle types and fields in
36925         get_token ().
36926         * reflection.h: add rank to MonoTypeInfo.
36927
36928 2002-01-10  Dick Porter  <dick@ximian.com>
36929
36930         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36931         internal calls
36932
36933 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36934
36935         * icall.c: initialize class in type_from_handle ().
36936         Loop also in parent classes for get_method ().
36937         * reflection.c: properly encode class and valuetype types.
36938         Start on encoding TypeBuilder types. Handle fieldrefs.
36939         Use correct length when registering a user string.
36940         Handle ConstructorBuilder and MonoMethod in get_token ().
36941         Make mono_type_get_object () aware of cached types.
36942         * object.c: back out change to mono_string_new ().
36943
36944 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36945         * object.c: mono_string_new should return a NULL when the string 
36946         passed in is NULL -- not try to deference it.
36947         
36948 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36949
36950         * icall.c: hack to make IsSubType work for TypeBuilders.
36951         * reflection.c: emit constructors before methods.
36952         Retrieve param names in mono_param_get_objects().
36953
36954 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36955
36956         * Makefile.am: fix list of headers and sources so automake 1.5
36957         doesn't complain. Removed \# at end of list.
36958
36959 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36960
36961         * reflection.c: get token for a method ref. Set return type of
36962         constructor to void.
36963         * loader.c: debug message.
36964         * class.c: typo fix.
36965
36966 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36967
36968         * icall.c: fix array init with rank > 1. FindMembers
36969         loops in parent class as well.
36970         * image.c: do not insert nested types in name cache.
36971         * reflection.c: warning fix.
36972         * reflection.h: add override method (for interface impl).
36973
36974 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36975
36976         * metadata.c: fix customattr decoding.
36977
36978 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36979
36980         * rawbuffer.cs: Added native Win32 implementation, avoids using
36981         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36982
36983 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36984
36985         * class.c: make the low-level routines handle the cache.
36986
36987 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36988
36989         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36990
36991 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36992
36993         * class.c: fix mono_array_element_size() for objects.
36994         * class.h, class.c: add properties to MonoClass and load them
36995         at init time.
36996         * icall.c: check with isinst() when assigning a value to an array
36997         instead of requiring the classes to match exactly.
36998         Implemented icall for System.Type::GetType().
36999         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
37000         enums. Handle bindingflags when looking for methods and fields.
37001         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
37002         and mono_metadata_methods_from_property().
37003         * reflection.h, reflection.c: added structures for propreties,
37004         parameters and enums. Implemented mono_property_get_object() and
37005         mono_param_get_objects().
37006
37007 2001-12-18  Dick Porter  <dick@ximian.com>
37008
37009         * file-io.c: Use mono_string_to_utf16() instead of
37010         mono_string_chars()
37011
37012         * object.c: Added mono_string_to_utf16(), which copies the non
37013         NULL-terminated MonoString into a new double-null-terminated
37014         buffer.
37015
37016 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
37017
37018         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
37019
37020 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
37021
37022         * file-io.c: raise exceptions if handle is invalid.
37023
37024 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
37025
37026         * assembly.c: yet another check for mscorlib.
37027         * class.c, class.h: load nesting info for classes.
37028         * icall.c: many new functions to support the Reflection classes.
37029         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
37030         * reflection.h, reflection.c: mono_image_create_token(),
37031         mono_assembly_get_object(), mono_type_get_object(),
37032         mono_method_get_object(), mono_field_get_object(): methods to return
37033         objects that parallel the C representation of assemblies, types,
37034         methods, fields.
37035
37036 2001-12-11  Dick Porter  <dick@ximian.com>
37037
37038         * icall.c:
37039         * file-io.c: Internal calls for file IO.
37040
37041 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
37042
37043         * tabledefs.h: missing FileAttributes.
37044         * verify.h, verify.c: use is_valid_string () to simplify and check for
37045         valid strings more correctly. Fix warnings and speeling.
37046         Check more tables: Filed, File, ModuleRef, StandAloneSig.
37047         Check code: branches, maxstack, method calls.
37048
37049 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
37050
37051         * object.c (mono_object_allocate): removed static, so that the jit
37052         can allocate value types.
37053
37054         * icall.c (ves_icall_System_DateTime_GetNow): impl.
37055
37056 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37057
37058         * class.c: init enum types right away and register the
37059         token->MonoClass map in mono_class_create_from_typedef ().
37060         * verify.h, verify.c: first cut of the verifier.
37061         * pedump.c: add --verify switch to verify metadata tables.
37062         * tabledefs.h: add some missing enums.
37063
37064 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
37065
37066         * class.c (mono_install_runtime_class_init): impl.
37067         (mono_class_init): renamed mono_class_metadata_init to
37068         mono_class_init, also removed the metadata_inited flag
37069
37070         * object.c (mono_object_isinst): use faster algorithm
37071
37072 2001-11-30  Radek Doulik  <rodo@ximian.com>
37073
37074         * mono-endian.h: reverted last change
37075         added function prototypes
37076
37077         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37078         add mono-endian.c back
37079
37080         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37081         for unaligned access, I've mistaked it with endianess. I am
37082         sorry.
37083         (mono_read16): fix reverted endianess
37084         (mono_read64): ditto
37085         (mono_read32): ditto
37086
37087 2001-11-30  Dick Porter  <dick@ximian.com>
37088
37089         * exception.c: Implement mono_exception_from_name()
37090
37091 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37092
37093         * metadata.h, metadata.c: remove params_size and locals_size and their
37094         calculation from the metadata code: they are only usefult to the
37095         interp.
37096
37097 2001-11-29  Radek Doulik  <rodo@ximian.com>
37098
37099         * object.c (mono_ldstr): swap bytes here, it's probably not the
37100         best place, but works for me now, I'll redo it once I know mono
37101         better, also note that I add PROT_WRITE and don't reset back, also
37102         note that it's only affects big endians, so x86 should be OK
37103
37104         * mono-endian.h (read16): use just glib macros for both endians
37105
37106         * mono-endian.c: removed as glib macros are used in in
37107         mono-endian.h so we don't need to care about endianess for read
37108         macros as glib does that for us already
37109
37110 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37111
37112         * class.h, class.h: take minimum alignment into consideration so
37113         that the fields of a class remain aligned also when in an array.
37114
37115 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37116
37117         * loader.h, loader.c: add mono_method_get_param_names().
37118         * class.c: 0-init class fields.
37119
37120 2001-11-26  Dick Porter  <dick@ximian.com>
37121
37122         * icall.c:
37123         * threads-types.h:
37124         * threads.c: New file that handles System.Threading on all platforms
37125
37126         * object.c: 
37127         * object.h: Remove the synchronisation struct from MonoObject,
37128         replace it with a pointer that gets initialised on demand
37129
37130         * Makefile.am: Replace all the system-specific threading code with
37131         a single file that uses the new wrapper library
37132
37133 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37134
37135         * class.c, class.h: add mono_install_trampoline() so that the runtime
37136         can register a function to create a trampoline: removes the ugly
37137         requirement that a runtime needed to export arch_create_jit_trampoline.
37138         * object.h, object.c: added mono_install_handler() so that the runtime
37139         can install an handler for exceptions generated in C code (with
37140         mono_raise_exception()). Added C struct for System.Delegate.
37141         * pedump.c: removed arch_create_jit_trampoline.
37142         * reflection.c: some cleanups to allow registering user strings and
37143         later getting a token for methodrefs and fieldrefs before the assembly
37144         is built.
37145         * row-indexes.h: updates and fixes from the new ECMA specs.
37146
37147 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37148
37149         * class.h, class.c: add enum_basetype field to MonoClass.
37150         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37151         to get index in the constant table reated to a field, param or
37152         property.
37153         * reflection.h, reflection.c: handle constructors. Set public-key and
37154         version number of the built assembly to 0.
37155         * row-indexes.h: update from new ECMA spec.
37156
37157 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37158
37159         * class.h, class.c: add a max_interface_id to MonoClass.
37160         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37161         since it's used to do that. Added mono_type_type_from_obj().
37162         Make GetType() return NULL instead of segfaulting if the type was not
37163         found. Handle simple arrays in assQualifiedName.
37164         * object.h: add a struct to represent an Exception.
37165         * reflection.c: output call convention in method signature.
37166         Add code to support P/Invoke methods and fixed offsets for fields.
37167
37168 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37169
37170         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37171         the value.
37172         * icall.c: use mono_array_addr instead of array->vector: fixes the
37173         reflection image writing.
37174         * reflection.c: init call convention byte to 0 in method signature.
37175         Encode the property signature. Don't output property-related methods
37176         twice. Really process the properties for a type (don't cast a field to
37177         a property, my mom always told me that).
37178         Fix 64 bit issues in pointer alignment in a different and more
37179         readable way.
37180
37181 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37182
37183         * loader.h: Removed type class from MonoDefaults, added monotype
37184
37185         * loader.c: Loaded MonoType, removed loading of Type
37186
37187         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37188         and fills in System.Type._impl with a RuntimeTypeHandle rather
37189         than the actual MonoClass *
37190
37191         (ves_icall_type_from_handle): change from type_class to
37192         monotype_class
37193
37194         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37195         implemented
37196
37197         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37198         implemented
37199
37200         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37201
37202         (ves_icall_System_Reflection_Assembly_GetType): implemented
37203
37204         (ves_icall_System_MonoType_assQualifiedName): implemented
37205
37206         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37207
37208 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37209
37210         * assembly.c (mono_assembly_open): Implement a cache for the
37211         assemblies. 
37212
37213         (mono_assembly_close): only destroy the assembly when the last
37214         reference is gone.
37215         
37216 2001-11-09  Dick Porter  <dick@ximian.com>
37217
37218         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37219
37220 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37221
37222         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37223
37224 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37225
37226         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37227         from Martin Weindel.
37228         * object.h: add mono_string_chars ().
37229
37230 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37231
37232         * reflection.c (build_compressed_metadata): Eliminates warnings
37233         and uses 64-bit clean code.
37234
37235         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37236         (mono_type_equal): Change signature to eliminate warnings.
37237
37238 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37239
37240         * icall.c, loader.c: remove the internalcall array constructors.
37241         Changes to match the new MonoArray structure.
37242         * object.h, object.c: an array object doesn't allocate an extra
37243         vector. Add mono_array_new_full () to create jagged arrays easily.
37244
37245 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37246
37247         * metadata.h, metadata.c: add mono_metadata_field_info () to
37248         retreive all the info about a field from vairous tables.
37249         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37250         * class.h, class.c: augment MonoClassField with more info.
37251         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37252         policy and load a field's RVA if needed.
37253
37254 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37255
37256         * class.c (mono_class_metadata_init): create a trampoline for all
37257         virtual functions instead of actually compiling them.
37258
37259 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37260
37261         * class.h, class.c: include name in MonoClassField.
37262         * class.c: fix fundamental type of System.Object and System.String.
37263         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37264         tokens in ldtoken.
37265         * icall.c: remove internalcalls for the Reflection stuff that is now
37266         done in C# code.
37267         * loader.c: mono_field_from_memberref () implementation.
37268         * mono-endian.c: thinko (s/struct/union/g).
37269         * object.c, object.h: make the mono_string_* prototypes actually use
37270         MonoString instead of MonoObject.
37271         * reflection.c, reflection.h: updates for changes in the reflection
37272         code in corlib: we use C structures that map to the actual C# classes.
37273         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37274         fat method header if needed and use the info from the ILGenerator for
37275         methods. Handle fields in types. Misc fixes.
37276
37277 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37278
37279         * class.c (mono_class_metadata_init): bug fix: always allocate
37280         space for static class data
37281
37282 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37283
37284         * class.c (mono_compute_relative_numbering): use relative
37285         numbering to support fast runtime type checks.
37286
37287 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37288
37289         * class.c (mono_class_create_from_typeref): added debugging output
37290         to print class name when MonoDummy is returned instead of real class
37291
37292 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37293
37294         * class.c (mono_class_metadata_init): interface offset table now
37295         contains pointers into the vtable - this is more efficient for the jit
37296
37297 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37298
37299         * class.c (mono_class_metadata_init): use a temporary vtable (the
37300         old algorithm only worked for the interpreter, but not for the jit)
37301
37302 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37303
37304         * loader.c (method_from_memberref): use mono_class_get to get the
37305         class of an array instead of using System.Array directly.
37306         (mono_get_method): also add MEMBERREF methods to the method cache
37307         which usefull for arrays.
37308
37309 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37310
37311         * pedump.c (arch_compile_method): added to compute vtable entry
37312
37313         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37314         number of interfaces.
37315         
37316         * class.h: merged MonoArrayClass into MonoClass
37317
37318         * class.c (mono_class_create_from_typedef): compute the vtable size and
37319         allocate space to include the vtable inside MonoClass
37320         (mono_class_metadata_init): initialize the vtable
37321
37322 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37323
37324         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37325         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37326         * image.c: endian fixes by Laurent Rioux.
37327         * object.h, object.c: rename MonoStringObject to MonoString and
37328         MonoArrayObject to MonoArray. Change some function names to conform to
37329         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37330         guint16* as first argument, so don't use char*.
37331         Provide macros to do the interesting things on arrays in a portable way.
37332         * threads-pthread.c: updates for the API changes and #include <sched.h>
37333         (required for sched_yield()).
37334         * icall.c: updates for the API changes above.
37335         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37336         platforms that need them.
37337
37338 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37339
37340         * class.c: set the correct type for all the fundamental
37341         type when loading the class.
37342
37343 2001-10-05  Dick Porter  <dick@ximian.com>
37344
37345         * threads-pthread.c (pthread_mutex_timedlock): Simple
37346         compatibility version for C libraries that lack this call.
37347
37348 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37349
37350         * class.c: MonoTypes stored in MonoClass are stored as
37351         fundamental MonoTypes when the class represents a
37352         fundamental type (System.Int32, ...).
37353         The TypeHandle return by ldtoken is a MonoType*.
37354         * icall.c: ves_icall_get_data_chunk () write out all the
37355         PE/COFF stuff. Implement ves_icall_define_method (),
37356         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37357         * image.c: properly skip unknown streams.
37358         * loader.h, loader.c: add type_class to mono_defaults.
37359         * metadata.c, metadata.h: export compute_size () as
37360         mono_metadata_compute_size () with a better interface.
37361         Typo and C&P fixes.
37362         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37363         * reflection.c, reflection.h: many cleanups, fixes, output method
37364         signatures and headers, typedef and typeref info, compress the metadata
37365         tables, output all the heap streams, cli header etc.
37366         * row-indexes.h: typo fixes.
37367
37368 2001-10-04  Dick Porter  <dick@ximian.com>
37369
37370         * object.h: Add a synchronisation mutex struct to MonoObject
37371
37372         * object.c (mono_new_object): Initialise the object
37373         synchronisation mutexes
37374
37375         * icall.c: System.Threading.Monitor internal calls
37376         
37377         * threads-pthread.h:
37378         * threads-pthread.c: System.Threading.Monitor internal calls
37379
37380         * threads-types.h: New file, includes the system-specific thread
37381         structures
37382         
37383         * threads-pthread-types.h:
37384         * threads-pthread-types.c: New files, handle pthread-specific
37385         synchronisation types
37386
37387         * threads-dummy-types.h: 
37388         * threads-dummy-types.c: New files of dummy support for
37389         thread-specific types
37390
37391         * metadata.c:
37392         * image.c:
37393         * pedump.c: include mono-endian.h not endian.h
37394         
37395         * Makefile.am: More threads files.
37396         Name mono-endian.h not endian.h
37397
37398 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37399
37400         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37401         stuff and implement a few more bits.
37402         * icall.c: a field needs to be dereferenced twice. Do not use the same
37403         name for two variables in the same scope.
37404         * image.c, image.h: cleanups.
37405
37406 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37407
37408         * class.c (mono_class_metadata_init): bug fix: compute the right size
37409
37410 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37411
37412         * icall.c: implemented some of the Reflection internalcalls.
37413         * image.c, image.h: start writing out the PE/COFF image.
37414         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37415         that does the reverse than decode_blob_size ().
37416         * object.c: use mono_metadata_encode_value (). Move here
37417         temporary implementation of mono_string_to_utf8 ().
37418         * rawbuffer.c: make malloc_map static.
37419
37420 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37421
37422         * metadata.c: fix type comparison for arrays.
37423         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37424         Added a couple of new classes to monodefaults.
37425         * icall.c: added a couple of Reflection-related internalcalls.
37426         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37427         Added a byval_arg MonoType to MonoClass.
37428
37429 2001-09-28  Dick Porter  <dick@ximian.com>
37430
37431         * icall.c:
37432         * threads-pthread.h: 
37433         * threads-pthread.c: Implemented internal calls for
37434         LocalDataStoreSlot operations.  Applied mutexes around all shared
37435         data.  Reworked the thread creation and Start() operations to
37436         avoid a race condition.
37437         
37438         * threads-dummy.h:
37439         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37440
37441 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37442
37443         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37444
37445 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37446
37447         * class.c, loader.c: warn and return NULL instead of erroring out.
37448         * icall.c: added System.AppDomain::getCurDomain().
37449         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37450
37451 2001-09-25  Dick Porter  <dick@ximian.com>
37452
37453         * threads-pthread.h:
37454         * threads-pthread.c: Implemented timed thread joining and added
37455         System.Threading.Thread::Join_internal internal call
37456
37457         * icall.c: Added System.Threading.Thread::Join_internal internal call
37458
37459         * threads-dummy.h:
37460         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37461
37462 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37463
37464         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37465         mono_string_intern () to implement the semantics of the ldstr opcode
37466         and the interning of System.Strings.
37467         * icall.c: provide hooks to make String::IsIntern and String::Intern
37468         internalcalls.
37469
37470 2001-09-23  Dick Porter  <dick@ximian.com>
37471
37472         * threads-dummy.c: 
37473         * threads-dummy.h: New files of dummy threading routines
37474
37475         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37476         support code based on system specifics
37477
37478         Rename PTHREAD_LIBS to THREAD_LIBS
37479         
37480 2001-09-23  Dick Porter  <dick@ximian.com>
37481
37482         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37483         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37484         internal calls.
37485         (mono_thread_init): Set up a Thread object instance to return when
37486         the main thread calls Thread.CurrentThread
37487         (mono_thread_cleanup): Wait for all subthreads to exit
37488
37489         * icall.c: New internal calls for System.Threading.Thread::Sleep
37490         (including Schedule) and CurrentThread
37491
37492         * threads.h: New file, to insulate thread-specific stuff from the
37493         rest of the code
37494
37495 2001-09-21  Dick Porter  <dick@ximian.com>
37496
37497         * threads-pthread.h: 
37498         * threads-pthread.c: New file, for handling pthreads-style
37499         threading support.  Start() now starts a new thread and executes
37500         the ThreadStart delegate instance.
37501
37502         * icall.c: Added the internalcall for
37503         System.Threading.Thread::Start_internal
37504
37505         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37506
37507 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37508
37509         * loader.c: work around the different signatures for delegates
37510         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37511
37512 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37513
37514         * class.h, class.c: add mono_class_get_field_from_name ().
37515         * *: Fix C comments and other ANSI C issues.
37516
37517 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37518
37519         * endian.h, assembly.c: fix some endianness issues.
37520
37521 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37522
37523         * loader.h, load.c: add delegate_class to mono_defaults.
37524         Handle runtime provided methods in mono_get_method ().
37525
37526 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37527
37528         * loader.c (mono_get_method): use pinvoke for internal call
37529
37530         * icall.c: use pinvoke for internal call
37531
37532         * loader.c (method_from_memberref): set the method name
37533
37534 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37535
37536         * metadata.c: help the compiler generate better code for
37537         mono_class_from_mono_type ().
37538
37539 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37540
37541         * class.c (mono_class_metadata_init): delayed computing of the
37542         class size to mono_class_metadata_init ()
37543
37544 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37545
37546         * class.c, class.h: add an interfaces member to MonoClass.
37547         * image.c, image.h: add assembly_name field to MonoImage
37548         from the assembly table.
37549         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37550
37551 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37552
37553         * class.c: Handle Array in mono_class_from_mono_type ().
37554         * metadata.c, pedump.c: some endian fixes.
37555
37556 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37557
37558         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37559         * metadata.c: fix small problem introduced with the latest commit.
37560
37561 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37562
37563         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37564         We don't need a MonoMetadata pointer anymore to compare signatures in
37565         mono_metadata_signature_equal (), update callers.
37566         Reduced memory usage an number of allocations for MonoMethodHeader and
37567         MonoMethodSignature.
37568
37569 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37570
37571         * metadata.c: added compare for szarray.
37572
37573 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37574
37575         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37576         and add a couple more types to it and mono_defaults. Give an hint on
37577         classes that need implementing in our corlib and are referenced
37578         in mscorlib.
37579
37580 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37581
37582         * class.h, class.c: keep track if a class is also an Enum.
37583         * loader.c: Implement a couple more types for use in libffi
37584         marshalling. Gives better diagnostics when failing to dlopen
37585         a library. Set method->klass for P/Invoke methods, too.
37586
37587 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37588
37589         * class.c, class.h: add a MonoType this_arg to MonoClass that
37590         represents a pointer to an object of the class' type that
37591         can be used by the interpreter and later the type cache.
37592         Add best guess alignment info for valuetype objects.
37593
37594 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37595
37596         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37597         into MonoType: one less level of indirection and allocation and
37598         simplifies quite a bit of code. Added cache for MonoTypes that are
37599         used frequently, so that we don't need to allocate them all the time.
37600
37601 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37602
37603         * class.c (mono_class_create_from_typedef): System.Enum is also a
37604         value type, although it does not derive from System.ValueType
37605         (maybe a bug in the ms compiler?)
37606
37607         * metadata.c (mono_type_size): return the right size for value types
37608
37609         * loader.c (mono_get_method): only initialize method header if not abstract
37610
37611         * class.c (mono_class_from_mono_type): use mono_default values. 
37612
37613 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37614
37615         * *: use MonoClass pointers instead of <type_tokens>
37616         
37617         * class.h: new flag: metadata_inited.
37618
37619         * class.c (mono_class_metadata_init): impl.
37620         (mono_class_instance_size): impl.
37621         (mono_class_data_size): impl.
37622
37623 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37624
37625         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37626         MonoClass now has the name and name_space fields. 
37627         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37628         mono_get_method () takes and optional MonoClass as argument.
37629         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37630         instead that takes advantage of a map from class names to typedef
37631         tokens in MonoImage.
37632
37633 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37634
37635         * metadata.c: zero is not a valid alignment boundary.
37636         Merge MONO_TYPE_VOID in default decoding code.
37637
37638 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37639
37640         * image.h: merged MonoMetadata into MonoImage
37641
37642         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37643         identify the type of elements.
37644
37645 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37646
37647         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37648         * cil-coff.h: split MonoMSDOSHeader and add size info.
37649         * image.c: add some consistency checks.
37650         * metadata.c: fix row size computation: one programmer
37651         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37652         add explanation for the locator routine.
37653         Fix decoding of size in method header.
37654         
37655 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37656
37657         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37658         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37659         function from gnome-libs.  This uses the right path separator
37660         based on the OS, and also works around a bug in some systems where
37661         a double slash is not allowed. 
37662         (default_assembly_name_resolver): Use g_concat_dir_and_file
37663         (mono_assembly_open): ditto.
37664
37665 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37666
37667         * metadata.c (mono_metadata_signature_equal): impl.
37668
37669         * *: void is now a realy MonoType (instead of using NULL)
37670         
37671         * metadata.c (do_mono_metadata_parse_type): use
37672         mono_metadata_parse_type to parse void value.
37673
37674 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37675
37676         * metadata.c, metadata.h: in the signature and method header store
37677         only the space required for holding the loca vars and incoming arguments.
37678
37679 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37680
37681         * metadata.c (do_mono_metadata_parse_type): treat void like any
37682         other type (instead of assigning NULL);
37683
37684 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37685
37686         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37687
37688 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37689
37690         * image.c (do_mono_image_open): added a cache for arrays.
37691
37692 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37693
37694         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37695         decode a single column from a row in a metadata table and changes
37696         to take advantage of it in the typedef locator (gives a nice speed up).
37697         Store offset info for function params.
37698
37699 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37700
37701         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37702
37703 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37704
37705         * assembly.c: how could mono_assembly_close () had ever worked?
37706         * metadata.c, metadata.h: provide offset info for local vars.
37707         Implement mono_type_size () to take care of alignment as well
37708         as size (it was mono_field_type_size in cli/class.c before).
37709
37710 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37711
37712         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37713
37714         * assembly.h (CORLIB_NAME): set to corlib.dll
37715
37716         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37717
37718 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37719
37720         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37721         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37722         tokentype.h: massive namespace cleanup.
37723
37724 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37725
37726         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37727
37728 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37729
37730         * metadata.c (mono_metadata_free_type): added check for type !=
37731         NULL (void) before calling mono_metadata_free_type()
37732
37733 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37734
37735         * metadata.h, row_indexes.h: added header with enumerations to use
37736         to index in the columns from tables in metadata and to decode coded
37737         tokens: we should start using this instead of embedding magic numbers
37738         all over the code.
37739
37740 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37741
37742         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37743         Move metadata_t info from cli_image_info_t to MonoImage, where
37744         it's easily accessible. Changed all the uses accordingly.
37745         Added the method and class caches to MonoImage.
37746         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37747         and mono_metadata_decode_value () signature to be more consistent
37748         with the other parse functions (and simplify code). Taken advantage
37749         of zero-length array allocation with GCC. Removed reduntant (and
37750         wrong) MonoFieldType struct and use MonoParam instead. Changed
37751         mono_metadata_parse_field_type () to use common code for parsing.
37752         Added mono_metadata_typedef_from_field () and
37753         mono_metadata_typedef_from_method () to lookup a typedef index from a
37754         field or method token.
37755         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37756
37757 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37758
37759         * metadata.c (mono_metadata_parse_field_type): Implement. 
37760         (do_mono_metadata_parse_type): Split engine from
37761         mono_metadata_parse_type, so that we can create smaller structures
37762         for things that just have one pointer to the MonoType (look at
37763         the MonoFieldType)
37764
37765 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37766
37767         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37768         as Jan Gray found out, it is incorrect. 
37769
37770 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37771
37772         * assembly.c: Implement asssembly loading.  This loads an image
37773         and loads all the referenced assemblies.  Come to think of it, we
37774         could always do lazy loading of the assemblies. 
37775
37776         * image.c (mono_image_open): Keep loaded images in a hashtable.
37777
37778         * image.h (MonoImage): Add reference count.
37779
37780 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37781
37782         * assembly.c (mono_assembly_open): Keep track of the file name in
37783         case the assembly has no ASSEMBLY table.
37784
37785         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37786         from get.c here.
37787
37788 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37789
37790         * metadata.c, metadata.h: decode local vars in method header
37791         parse function. Change callers accordingly.
37792
37793 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37794
37795         * metadata.h, cil-coff.h: protect against multiple inclusion.
37796         Added some new structures to hold information decoded from metadata:
37797         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37798         and relevant decoding/free functions.
37799         * metadata.c: implement decoding functions. Add warning for out of bounds
37800         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37801         all the info about a method signature and invocation. Remove check on
37802         uninitialized local var in parse_mh() and fix memory leak.
37803
37804 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37805
37806         * metadata.h: More macros.
37807
37808         * tokentype.h: New file.
37809
37810 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37811
37812         * assembly.c: added a consistency check and initialize
37813         some structures with g_new0().
37814         * metadata.c: fixed a couple more bugs in table size computation
37815         and add other checks for out-of bound access to metadata.
37816
37817 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37818
37819         * metatada.c: fix bugs computing table sizes. Spew a
37820         warning when index in string heap is out of bounds.
37821
37822 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37823
37824         * metadata.h: Add a couple of macros to manipulate tokens. 
37825
37826 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37827
37828         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37829         cli_section_tables).
37830
37831 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37832
37833         * metadata.c (mono_metadata_user_string): New function, provides
37834         access to the UserString heap. 
37835
37836 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37837
37838         * metadata.c: Add inline documentation.
37839
37840 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37841
37842         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37843         files. 
37844
37845 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37846
37847         * typeattr.h: New file, TypeAttribute flags. 
37848
37849 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37850
37851         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37852         mono_assembly_ensure_section): Section loading code.
37853         (load_section_tables): Load the sections.
37854
37855         * mono/metadata/metadata.c (mono_metadata_locate_token,
37856         mono_metadata_locate): Functions to locate the information
37857         definition given a token or a table and an index.
37858         (mono_metadata_compute_table_bases): New.
37859         (compute_size): New function to compute the sizes of the various
37860         tables.
37861
37862         * mono/metadata/metadata.h: Finish listing the different index
37863         types. 
37864
37865         * mono/metadata/pedump.c: Improve to dump new information.
37866
37867 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37868
37869         * mono/metadata/metadata.c: Entered all the tables matching
37870         Beta2. 
37871
37872         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2